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

prev 1 2
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

bash, perl (under Cygwin if in Winows)

link|flag
vote up 0 vote down

Python -- for text manipulation, things more complex than regexps, etc. Bash -- for file manipulations, automating various tasks, etc.

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 for shell scripts. the way you can just start typing it straight into a terminal for testing is priceless.

And you really can't beat PHP for simple web stuff. Most web servers support it.

link|flag
vote up 0 vote down

It depends on where I am and what I need to do

  • Work: batch files and perl
  • Home: tcsh and perl
link|flag
vote up 0 vote down

Lately, for simple scripts or throw away code, I've been digging on PHP from the command line. For me you can't beat a C-like syntax and the plethora of PHP functions you get out of the box is a winner.

If not PHP it would have to be C/C++.

link|flag
vote up 0 vote down

Flash: I've been mostly doing interactive game-or-toy-like projects. Flash comes in very handy for me to do quick simulations or game prototypes.

Python: The interactive prompt is awesome.. where you can write programs and test/interact at the same time, on the fly

Haven't ever touched Ruby. Just my gut feeling that I will love it more when it comes to projects more complex and complicated then a command prompt can handle.

link|flag
vote up 0 vote down

When scanning text files (and need quick-n-dirty regexps), perl. Otherwise, lisp.

link|flag
vote up 0 vote down

Excel for one-time use reports (unless the report would require VBA)

Python (with the interactive shell) for other throw-away (or semi throw-away) needs

link|flag
vote up 0 vote down

Usually Lua, unless there's a large need for some complicated library function that isn't included. Typically the string matching, input/output, and data structures in Lua suffice for anything I need to do.

link|flag
vote up 0 vote down

Perl scripts that don't fit onto one-liners. Seriously.

A one-liner (in any language) is cool, but sometimes it's just a bit much to type something in and get a syntax error. So the test code goes into its own file in ~/dev where I add a few comments and explain to my future self to object of this mess. Sure, I that know right now, but I won't remember in a few weeks time.

link|flag
vote up 0 vote down

Perl, because of CPAN, regexps and compact code.

link|flag
vote up 0 vote down

It really depends on what I'm doing and what platform I'm on.

On OS X

  • bash
  • REBOL
  • Ruby
  • F-Script
  • Nu

On Windows

  • PowerShell
  • REBOL
  • Ruby
link|flag
vote up 0 vote down

AWK is my scripting hammer of choice for the types of throw away code that I typically need to do. It falls well in to the 80-90% spot of the things I need to do. There are certainly times when it doesn't quite work, like when I need to do some system stuff. AWK has a 'system' call, but it's not quite granular enough for me.

For example, if I had a list of files and I wanted to know which files weren't, say, writable, AWK can't do that. But I can use it to quickly hammer out a shell script that CAN do that (and simply echo the results to another file). It can get a bit Goldbergian, but it works.

In theory I should switch over to Perl or Python or something. But it's kind of the baby duck syndrome. I've been using it for 20 years, and I LOVE the free "line reader loop", free line/field splitting, and the free regex matching.

It's a classic example of the language affecting your thinking, or perhaps using the language that works the way you think. AWK and I are so ingrained, I don't know who influenced who. I just remember have some weird problem at a client site and thinking AWK could solve it, so I dredged through the manual page to make it work.

AWK is small, its approachable, focused, yet powerful and that makes it a handy hammer in any Unix system. I've written everything from powerful code generators and data analysis tools to lowly simple conversion tasks.

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

In the order of decreasing likelihood:

  1. C++ (I have a special "sandbox" workspace where I play with things)
  2. Perl (If I am in a hurry to do something involving string processing)
  3. Windows Scripting language (It just amuses me).
  4. Python (If I also want to learn a trick or two)
link|flag
vote up 0 vote down

For me, Perl. I can never understand what I've done in it after two weeks anyway :-)

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
prev 1 2

Your Answer

Get an OpenID
or

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