What is the "Quickest" Programming Language (and why)? - Stack Overflow [closed]most recent 30 from stackoverflow.com2009-11-27T11:29:48Zhttp://stackoverflow.com/feeds/question/1081546http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081546/what-is-the-quickest-programming-language-and-why0What is the "Quickest" Programming Language (and why)? [closed]Josh Stodola2009-07-04T05:04:02Z2009-07-05T00:47:42Z
<p>If you are under the gun and need to quickly write a simple application with a user-friendly interface (not just something for your own personal use), what would you use, and why?</p>
<p>It's obvious that you would use a language that you are most fluent in, but please share with me what tools/utilities/shortcuts make that language so easy to develop rapidly.</p>
http://stackoverflow.com/questions/1081546/what-is-the-quickest-programming-language-and-why/1081550#10815504Answer by Mitch Wheat for What is the "Quickest" Programming Language (and why)?Mitch Wheat2009-07-04T05:06:34Z2009-07-04T05:13:17Z<p>Not really languages, but higher level tools:</p>
<p><a href="http://www.ironspeed.com/products/default.aspx?c=Google" rel="nofollow">Iron Speed</a> (web)</p>
<p><a href="http://subsonicproject.com/" rel="nofollow">Subsonic</a> (DAL)</p>
<p><a href="http://www.llblgen.com/" rel="nofollow">LLBLGen</a> (DAL)</p>
<p><a href="http://www.nconstruct.com/" rel="nofollow">NConstruct</a> (WinForms)</p>
<p>IMO, Choice of a language is the wrong question. If you want something fast, you need higher level tools that will produce most, if not all, the standard plumbing and basic UI, rather than re-inventing the wheel.</p>
http://stackoverflow.com/questions/1081546/what-is-the-quickest-programming-language-and-why/1081555#10815550Answer by JP for What is the "Quickest" Programming Language (and why)?JP2009-07-04T05:07:07Z2009-07-04T05:07:07Z<p>I dream in C#, so for me, that's the fastest.</p>
http://stackoverflow.com/questions/1081546/what-is-the-quickest-programming-language-and-why/1081558#10815584Answer by Jimmy for What is the "Quickest" Programming Language (and why)?Jimmy2009-07-04T05:08:14Z2009-07-04T05:08:14Z<p>It depends on what you're currently most familiar/fluent in. For me, it would currently be C# or VB.NET because that's what I use every day at work and am currently most used to. In a few months, it might be Python, Java, who knows?</p>
http://stackoverflow.com/questions/1081546/what-is-the-quickest-programming-language-and-why/1081559#10815597Answer by Janusz for What is the "Quickest" Programming Language (and why)?Janusz2009-07-04T05:08:44Z2009-07-04T05:08:44Z<p>I would use the programming language that I know best. The language with the api I can cite while sleeping and I know the tools the sources and the especially the IDE</p>
http://stackoverflow.com/questions/1081546/what-is-the-quickest-programming-language-and-why/1081561#10815612Answer by Alex Martelli for What is the "Quickest" Programming Language (and why)?Alex Martelli2009-07-04T05:12:33Z2009-07-04T05:12:33Z<p>Given my skills and experience, that would be Python (with PyQt if it needs to be a desktop app with a GUI, probably Django if it needs to be a web app but I'm more indecisive in the latter case as many other strong web frameworks compete as my favorite!-).</p>
http://stackoverflow.com/questions/1081546/what-is-the-quickest-programming-language-and-why/1081562#10815620Answer by Bary for What is the "Quickest" Programming Language (and why)?Bary2009-07-04T05:12:50Z2009-07-04T05:12:50Z<p>You need to define what you mean by "quickest" before your question really can be answered...</p>
http://stackoverflow.com/questions/1081546/what-is-the-quickest-programming-language-and-why/1081563#10815631Answer by Sam DeFabbia-Kane for What is the "Quickest" Programming Language (and why)?Sam DeFabbia-Kane2009-07-04T05:13:00Z2009-07-04T05:13:00Z<p>Depends on the application.</p>
<p>I might very well go with PHP and (X)HTML/CSS for the interface. I've been doing a lot of HTML/CSS lately, so if it's an application that lends itself to being put into a web browser I can probably do it most quickly there. PHP is not one of my favorite languages to work in though, so if it needs to be a desktop application or if the focus is more on application logic rather than user interaction I'd write it in Python because that's the scripting language I'm most familiar with. (In that case I'd do any GUI work in PyQt).</p>
http://stackoverflow.com/questions/1081546/what-is-the-quickest-programming-language-and-why/1081566#10815660Answer by landon9720 for What is the "Quickest" Programming Language (and why)?landon97202009-07-04T05:15:33Z2009-07-04T05:15:33Z<p>Pick a language and GUI framework you like, then master them. (The second step will take several years.)</p>
<p>Once you get there, you'll be well equipped to handle the situation described.</p>
http://stackoverflow.com/questions/1081546/what-is-the-quickest-programming-language-and-why/1081568#10815681Answer by Zepplock for What is the "Quickest" Programming Language (and why)?Zepplock2009-07-04T05:16:10Z2009-07-04T05:16:10Z<p>Ruby on Rails.</p>
<p>It is simple, gives you web interface and database.</p>
http://stackoverflow.com/questions/1081546/what-is-the-quickest-programming-language-and-why/1081572#10815720Answer by Douglas for What is the "Quickest" Programming Language (and why)?Douglas2009-07-04T05:21:39Z2009-07-04T05:21:39Z<p><a href="http://electricbeach.org/?p=145" rel="nofollow">SketchFlow</a> in Expression Blend 3 plus your favorite .NET language</p>