Should I choose scripting or compiled code for small tasks? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T17:53:17Z http://stackoverflow.com/feeds/question/54703 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/54703/should-i-choose-scripting-or-compiled-code-for-small-tasks 5 Should I choose scripting or compiled code for small tasks? Brabster 2008-09-10T17:02:03Z 2008-09-10T17:45:46Z <p>I'm a Java programmer, and I like my compiler, static analysis tools and unit testing frameworks as tools that help me quickly deliver robust and efficient code. The JRE is pretty much everywhere I would work, too.</p> <p>Given that situation, I can't see a reason why I would ever choose to use shell scripting, vb scripting etc, no matter how small the task is if I wear one of my other hats like my cool black sysadmin fedora.</p> <p>I don't wear the other hats too often, <strong>under what circumstances should I choose scripting over writing compiled code?</strong></p> http://stackoverflow.com/questions/54703/should-i-choose-scripting-or-compiled-code-for-small-tasks/54716#54716 1 Answer by Ryan Lanciaux for Should I choose scripting or compiled code for small tasks? Ryan Lanciaux 2008-09-10T17:06:00Z 2008-09-10T17:06:00Z <p>I would say where it makes sense. If it's going to take you longer to open up your IDE, compile the script, etc. than it would to edit a script file and be done with it than use script file. If you're not going to be changing the thing often and are quicker at Java coding then go that route :)</p> http://stackoverflow.com/questions/54703/should-i-choose-scripting-or-compiled-code-for-small-tasks/54717#54717 2 Answer by Craig H for Should I choose scripting or compiled code for small tasks? Craig H 2008-09-10T17:06:00Z 2008-09-10T17:06:00Z <p>If you are comfortable with Java, and the JRE is everywhere you work, then I would say keep using it. There are, however, languages like perl and python that are particularly suited to quickly solving problems. I would suggest learning either perl or python, and then use your judgement on when to use it.</p> http://stackoverflow.com/questions/54703/should-i-choose-scripting-or-compiled-code-for-small-tasks/54720#54720 1 Answer by stimms for Should I choose scripting or compiled code for small tasks? stimms 2008-09-10T17:06:50Z 2008-09-10T17:06:50Z <p>It is usually quicker to write scripts than compiled programmes. You don't have to worry so much about portability between different platforms and environments. A shell script will run pretty much every where on most platforms. Because you're a java developer and you mention that you have java everywhere you might look at groovy (<a href="http://groovy.codehaus.org/" rel="nofollow">http://groovy.codehaus.org/</a>). It is a scripting language written in java with the ability to use java libraries. </p> http://stackoverflow.com/questions/54703/should-i-choose-scripting-or-compiled-code-for-small-tasks/54731#54731 1 Answer by Tom Hawtin - tackline for Should I choose scripting or compiled code for small tasks? Tom Hawtin - tackline 2008-09-10T17:10:18Z 2008-09-10T17:10:18Z <p>The way I see it (others disagree) all your code needs to be maintainable. The smallest useful collection of code is that which a single person maintains. Even that benefits from the language and tools you mentioned.</p> <p>However, there may obviously be tasks where specialised languages are more advantageous than a single general purpose language.</p> http://stackoverflow.com/questions/54703/should-i-choose-scripting-or-compiled-code-for-small-tasks/54740#54740 2 Answer by Brian Warshaw for Should I choose scripting or compiled code for small tasks? Brian Warshaw 2008-09-10T17:13:15Z 2008-09-10T17:13:15Z <p>If I have a small problem that I'd like to solve quickly, I tend to use a scripting language. The code tax is smaller, and, for me at least, the result comes faster.</p> http://stackoverflow.com/questions/54703/should-i-choose-scripting-or-compiled-code-for-small-tasks/54741#54741 1 Answer by Nick for Should I choose scripting or compiled code for small tasks? Nick 2008-09-10T17:13:48Z 2008-09-10T17:13:48Z <p>If you can write it quicker in Java, then go for it.</p> <p>Just try and be aware of what the various scripting languages can do.</p> <p>e.g. Don't make a full blown Java app when you can do the same with a bash one-liner.</p> http://stackoverflow.com/questions/54703/should-i-choose-scripting-or-compiled-code-for-small-tasks/54747#54747 0 Answer by troylar for Should I choose scripting or compiled code for small tasks? troylar 2008-09-10T17:15:41Z 2008-09-10T17:15:41Z <p>Weigh the importance of the tool against popping open a text editor for a quick edit vs. opening IDE, recompiling, redeploying, etc.</p> http://stackoverflow.com/questions/54703/should-i-choose-scripting-or-compiled-code-for-small-tasks/54750#54750 2 Answer by Sarcastic for Should I choose scripting or compiled code for small tasks? Sarcastic 2008-09-10T17:16:07Z 2008-09-10T17:16:07Z <p>Whatever you think will be most efficient for you!</p> <p>I had a co-worker who seemed to use a different language for every task; Perl for quick text processing, PHP for small internal web applications, .NET for our main product, cygwin for filesystem stuff. He preferred to use the technology which was most specific to the task at hand.</p> <p>Personally, I find that context switching between technologies is painful. My day-to-day work is in .NET, so that's pretty much the terms I think in. For most tasks I find it more efficient to knock something up in C# using SnippetCompiler than I would to hack around in PowerShell or a scripting environment.</p> http://stackoverflow.com/questions/54703/should-i-choose-scripting-or-compiled-code-for-small-tasks/54775#54775 0 Answer by TALlama for Should I choose scripting or compiled code for small tasks? TALlama 2008-09-10T17:26:58Z 2008-09-10T17:26:58Z <p>Of course, the prime directive should be to "use whatever you're comfortable with." If Java is getting the job done right and on time, stick to it. But a lot of the scripting languages could save you some time because they're attuned to different problems. If you're using regular expressions, the scripting languages are a good fit. If you're dropping into shell commands, scripts are nice.</p> <p>I tend to use Ruby scripts whenever I'm writing something that's small, because it's quick to write, easy to maintain, and (with Gems) easy to bolt on additional functionality without needed to use JARs or anything. Your milage will, of course, vary.</p> http://stackoverflow.com/questions/54703/should-i-choose-scripting-or-compiled-code-for-small-tasks/54782#54782 0 Answer by John for Should I choose scripting or compiled code for small tasks? John 2008-09-10T17:29:44Z 2008-09-10T17:29:44Z <p>At the end of the day this is a question that only you can answer for yourself. Based on the fact that you said "I can't see a reason why I would ever choose to use shell scripting , ..." then it's probably the case that you should never choose it right now. </p> <p>But if I were you I would pick a scripting language like python, ruby or perl and start trying to solve some of these small problems with this language. Over time you will start to get a feel for when it is more appropriate to write a quick script than build a full-blown solution.</p> http://stackoverflow.com/questions/54703/should-i-choose-scripting-or-compiled-code-for-small-tasks/54827#54827 0 Answer by binil for Should I choose scripting or compiled code for small tasks? binil 2008-09-10T17:45:46Z 2008-09-10T17:45:46Z <p>I use scripting languages for writing programs which are not expected to be maintained beyond few executions. Most of these languages are light on boiler-plate syntax and do have a REPL. Both these features enable rapid prototyping.</p> <p>Since you already know Java, you can try JVM languages like Groovy, JRuby, BeanShell etc. Scala has much lighter syntax than Java, has a REPL, is statically typed and runs on the JVM - you might give that a shot as well.</p>