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.
|
|
Matlab, since most of what I do is data-intensive. The built in math functions make testing algorithms easy. |
|||
|
|
|
|
I like python for my throwaway type programs and if I'm feeling a little adventurous and need to integrate it with .net IronPython |
|||
|
|
|
|
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) |
|||
|
|
|
|
I'm with izb -- python for most things, but perl if I need regex or more complex string manipulation. |
|||
|
|
|
|
Python and C# are favourites for different reasons, and for those reasons I currently am looking at BOO - the best of both worlds! |
|||
|
|
|
|
It rather depends which language is most suitable for the problem domain. Even for throwaway programs. Most recently, sed and xmlstarlet. |
|||
|
|
|
|
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). |
|||
|
|
|
|
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! |
|||
|
|
|
|
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. |
|||
|
|
|
|
Bash scripting if it's easy enough. Otherwise, generally Ruby. |
|||
|
|
|
|
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. |
|||
|
|
|
|
Ruby, .NET(C#) in that order |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
Python is currently my choice du jour. Unless I need lots of regex, then it's Perl. |
|||
|
|
|
|
Python So easy to get quick hitters up and running. |
|||
|
|
|
|
I think Perl is inherently a throw-away language! |
|||
|
|
|
|
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. |
|||
|
|
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. |
|||
|
|
