active questions tagged interpreted - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T09:12:22Z http://stackoverflow.com/feeds/tag/interpreted http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/45179/are-there-benefits-to-classic-asp-over-asp-net 21 Are there benefits to Classic ASP over ASP.net Nip 2008-09-05T03:19:57Z 2009-11-11T17:41:26Z <p>Having worked with Classic ASP for about 2 years now by creating a few 100 simple web forms I can't see a good reason for switching to .net; however, I'm not that versed in .net so I'm sure I could be missing a few things.</p> <p>Some points that I often hear around work can be found here: <a href="http://www.packtpub.com/article/Classic-ASP" rel="nofollow">http://www.packtpub.com/article/Classic-ASP</a> (not that I share all of these thoughts, but it's a good jumping off point)</p> <p>I'm very interested to hear what others have to say on this matter.</p> http://stackoverflow.com/questions/1533042/interpreted-vs-compiled-languages-for-web-sites-php-asp-perl-python-etc 2 Interpreted vs. Compiled Languages for Web Sites (PHP, ASP, Perl, Python, etc.) Andrew Swift 2009-10-07T17:25:30Z 2009-10-08T08:08:14Z <p>I build database-driven web sites. Previously I have used Perl or PHP with MySQL.</p> <p>Now I am starting a big new project, and I want to do it in the way that will result in the <strong>most responsive possible site</strong>.</p> <p>I have seen several pages here where questions about how to optimize PHP are criticized with various versions of "it's not worth going to great lengths to optimize PHP since it's an interpreted language and it won't make that much difference".</p> <p>I have also heard various discussions (especiallon on the SO podcast) about the benefits of <strong>compiled vs. interpreted languages</strong>, and it seems as though it would be in my interests to use a compiled language to serve up the site instead of an interpreted language.</p> <p><strong>Is this even possible in a web context?</strong> If so, what would be a reasonable language choice?</p> <p>In addition to speed one benefit I forsee is the possiblity of <strong>finding bugs at compile time</strong> instead of having to debug the web site. Is this reasonable to expect?</p> http://stackoverflow.com/questions/1252987/how-to-use-subversion-for-non-compiled-language 1 How to use Subversion for non-compiled language? Bevan 2009-08-10T03:22:36Z 2009-08-11T03:59:56Z <p>I want to use Subversion with a script based development system, and was wondering what to do differently to my usual situation (C#/.NET).</p> <p>The normal day-to-day update/commit cycle will work fine, as will change tracking and comparison of revisions. Where I'd like some advice is around handling of deployment.</p> <p>With this script system, there's no distinct build step involved - instead, deployment involves uploading a selected script directly into the host application. </p> <p>Changes to a script aren't necessarily included in the next release - they may be destined for the release after that, or the one after that. </p> <p>In an ideal world, I'd like to be able to allocate a script into a given release, say the "September 2009" release, once it's been tested, and then pull out all the scripts for that release with a single command.</p> <p><strong>Update</strong></p> <p>As far as I can tell, neither Tags nor ChangeLists are going to be the answer. </p> <p>ChangeLists aren't persistent (don't exist in the repository) and I need a solution that will allow review much later on.</p> <p>Tags are effectively the same as branches - they contain <em>all</em> files by default, and you just get to choose which revisions. </p> <p>I'm hoping for an approach that would start off with <em>an empty branch</em> into which specific file revisions could be placed as required.</p> <p><strong>Update 2</strong></p> <p>Two examples, showing how I can meet this situation with featues in other tools. Note that I'm not trying to promote these tools at all, as I want to use subversion, I'm just trying to work out how.</p> <p>With <a href="http://www.qumasoft.com/index1.html" rel="nofollow">QVCS</a>, I can achieve my desired result by applying a label to a specific revision of a file. That label would stay in place, attached to that revision of that file. At any time, I could do a clean checkout, into an empty directory, and specify that only files with the specified label should be copied down.</p> <p>Similarly, with <a href="http://www.borland.com/us/products/starteam/index.html" rel="nofollow">StarTeam</a>, I can apply a label to a file revision and check out only files with that label. </p> http://stackoverflow.com/questions/1189535/why-convert-code-in-one-language-to-another 3 Why convert code in one language to another? Neeraj 2009-07-27T17:30:20Z 2009-07-27T18:32:00Z <p>I have heard of some compilers that convert code in one high level language to another<br> e.g <a href="http://shed-skin.blogspot.com/" rel="nofollow">Shedskin</a> that converts python code to optimized C++.<br> I was wondering why would one ever try to do that. Why not directly write in the desired language itself?</p> <p>The only reason I could think of was may be compiled languages like C/C++ are better than interpreted ones performance-wise.</p> <p>Any more insights are welcome<br> thanx</p> http://stackoverflow.com/questions/31412/proprietary-plug-ins-for-gpl-programs-what-about-interpreted-languages 4 Proprietary plug-ins for GPL programs: what about interpreted languages? dF 2008-08-28T00:26:35Z 2009-02-09T08:14:36Z <p>I am developing a GPL-licensed application in Python and need to know if the GPL allows my program to use proprietary plug-ins. This is <a href="http://www.gnu.org/licenses/gpl-faq.html" rel="nofollow">what the FSF has to say</a> on the issue:</p> <blockquote> <p><strong>If a program released under the GPL uses plug-ins, what are the requirements for the licenses of a plug-in?</strong></p> <p>It depends on how the program invokes its plug-ins. If the program uses fork and exec to invoke plug-ins, then the plug-ins are separate programs, so the license for the main program makes no requirements for them.</p> <p>If the program dynamically links plug-ins, and they make function calls to each other and share data structures, we believe they form a single program, which must be treated as an extension of both the main program and the plug-ins. This means the plug-ins must be released under the GPL or a GPL-compatible free software license, and that the terms of the GPL must be followed when those plug-ins are distributed.</p> <p>If the program dynamically links plug-ins, but the communication between them is limited to invoking the ‘main’ function of the plug-in with some options and waiting for it to return, that is a borderline case. </p> </blockquote> <p>The distinction between fork/exec and dynamic linking, besides being kind of artificial, doesn't carry over to interpreted languages: what about a Python/Perl/Ruby plugin, which gets loaded via <code>import</code> or <code>execfile</code>?</p> <p>(edit: I understand why the distinction between fork/exec and dynamic linking, but it seems like someone who wanted to comply with the GPL but go against the "spirit" --I don't-- could just use fork/exec and interprocess communication to do pretty much anything).</p> <p>The best solution would be to add an exception to my license to explicitly allow the use of proprietary plugins, but I am unable to do so since I'm using <a href="http://trolltech.com/products/qt" rel="nofollow">Qt</a>/<a href="http://www.riverbankcomputing.co.uk/software/pyqt/intro" rel="nofollow">PyQt</a> which is GPL.</p> http://stackoverflow.com/questions/366077/c-interpreted-language 1 C# Interpreted Language Dested 2008-12-14T02:11:35Z 2008-12-14T03:42:49Z <p>I am looking to write an interpreted language in C#, where should I start? I know how I would do it using fun string parsing, but what is the correct way?</p> http://stackoverflow.com/questions/33510/what-is-the-best-approach-to-both-modularity-and-platform-independence 2 What is the best approach to both modularity and platform independence? Wing 2008-08-28T22:03:58Z 2008-10-10T07:51:56Z <p>I hope this question does not come off as broad as it may seem at first. I am designing a software application in my <code>&lt;sarcasm&gt;</code><em>voluminous</em><code>&lt;/sarcasm&gt;</code> spare time. I would like it to be both cross-platform and modular. At this point, because I am still in the planning phase, I can pick practically any language and toolset.</p> <p>This makes things harder, not easier, because there are seemingly so many ways of accomplishing both of the goals (modularity, platform agnosticism). </p> <p>My basic premise is that security, data storage, interaction with the operating system, and configuration should all be handled by a "container" application - but most of the other functionality will be supplied through plug-in modules. If I had to describe it at a high level (without completely giving away my idea), it would be a single application that can do many different jobs, all dedicated to the same goal (there are lots of disparate things to do, but all the data has to interact and be highly available).</p> <p>This is not a new idea, and not particularly exotic. Yet I find myself wrestling with not so much how to do it (I can think of lots of ways), but which method is best.</p> <p>For example, I know that Eclipse practically embodies what I am describing, but I find Java applications in general (and Eclipse is no exception) to be too large and slow for what I need. Ditto desktop apps written Python and Ruby (which are excellent languages!) </p> <p>I don't mind recompiling the code base for different platforms as native exectables. Yet, C and C++ have their own set of issues.</p> <p>As a C# developer, I have a preference for managed code. But I am not at all sold on Mono, yet (I could be convinced).</p> <p>Does anyone have any ideas/experiences/ specific favorite frameworks to share?</p> http://stackoverflow.com/questions/3057/speed-comparisons-procedural-vs-oo-in-interpreted-languages 0 Speed Comparisons - Procedural vs. OO in interpreted languages cmcculloh 2008-08-06T03:34:01Z 2008-09-22T18:18:17Z <p>In interpreted programming languages, such as PHP and JavaScript, what are the repercussions of going with an Object Oriented approach over a Procedural approach?</p> <p>Specifically what I am looking for is a checklist of things to consider when creating a web application and choosing between Procedural and Object Oriented approaches, to optimize not only for speed, but maintainability as well. Cited research and test cases would be helpful as well if you know of any articles exploring this further.</p> <p>Bottom line: how big (if any) is the performance hit really, when going with OO vs. Procedural in an interpreted language?</p> http://stackoverflow.com/questions/13586/interpreted-languages-leveraging-the-compiled-language-behind-the-interpreter 4 Interpreted languages - leveraging the compiled language behind the interpreter Brian Warshaw 2008-08-17T11:12:51Z 2008-09-17T19:44:41Z <p>If there are any language designers out there (or people simply in the know), I'm curious about the methodology behind creating standard libraries for interpreted languages. Specifically, what seems to be the best approach? Defining standard functions/methods in the interpreted language, or performing the processing of those calls in the compiled language in which the interpreter is written?</p> <p>What got me to thinking about this was the SO question about a stripslashes()-like function in Python. My first thought was "why not define your own and just call it when you need it", but it raised the question: is it preferable, for such a function, to let the interpreted language handle that overhead, or would it be better to write an extension and leverage the compiled language behind the interpreter?</p>