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.
|
|
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 |
|||
|
|
|
|
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:
I have yet to use C# or VB .NET for throw away stuff. In the future that will change as I accumulate more code. |
|||
|
|
|
|
bash, perl (under Cygwin if in Winows) |
|||
|
|
|
|
Python -- for text manipulation, things more complex than regexps, etc. Bash -- for file manipulations, automating various tasks, etc. |
|||
|
|
|
|
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.
|
|||
|
|
|
|
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. |
|||
|
|
|
|
It depends on where I am and what I need to do
|
|||
|
|
|
|
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++. |
|||
|
|
|
|
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. |
|||
|
|
|
|
When scanning text files (and need quick-n-dirty regexps), perl. Otherwise, lisp. |
|||
|
|
|
|
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 |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
Perl, because of CPAN, regexps and compact code. |
|||
|
|
|
|
It really depends on what I'm doing and what platform I'm on. On OS X
On Windows
|
|||
|
|
|
|
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. |
|||
|
|
In the order of decreasing likelihood:
|
|||
|
|
|
|
For me, Perl. I can never understand what I've done in it after two weeks anyway :-) |
|||
|
|
|
|
I'm with izb -- python for most things, but perl if I need regex or more complex string manipulation. |
|||
|
|
