Tagged Questions
The interpreted tag has no wiki summary.
14
votes
5answers
3k views
If Python is interpreted, what are .pyc files?
I've been given to understand that Python is an interpreted language... however, when I look at my Python source code I see .pyc files, which Windows identifies as "Compiled Python Files". Where do ...
11
votes
5answers
783 views
Interpreted vs. Compiled vs. Late-Binding
Python is compiled into an intermediate bytecode(pyc) and then executed. So, there is a compilation followed by interpretation. However, long-time Python users say that Python is a "late-binding" ...
9
votes
2answers
611 views
Any C/C++ to non-native bytecode compiler/interpreters?
As the title indicates, are there any C/C++ bytecode compilers/interpreters? I'm writing an application in an interpreted language that depends on certain libraries that are fully cross-compilable ...
7
votes
3answers
103 views
How to run a haskell file in interpreted mode
I've been told you can interpret haskell files (which I assume means they will work like Ruby/Python/Perl). Can't find the command line option on ghc to do this, though. It always wants to compile my ...
5
votes
4answers
1k views
Proprietary plug-ins for GPL programs: what about interpreted languages?
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 what the FSF has to say on the issue:
If a program released ...
4
votes
7answers
3k views
Interpreted vs. Compiled Languages for Web Sites (PHP, ASP, Perl, Python, etc.)
I build database-driven web sites. Previously I have used Perl or PHP with MySQL.
Now I am starting a big new project, and I want to do it in the way that will result in the most responsive possible ...
4
votes
5answers
926 views
Interpreted languages - leveraging the compiled language behind the interpreter
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 ...
3
votes
3answers
133 views
Is interpreted language secured?
For example, I have a php script which contains the source code.
I uploaded it to my web server.
For some reason, some attacker could be able to download that file from my web server. They can be able ...
3
votes
11answers
956 views
Why convert code in one language to another?
I have heard of some compilers that convert code in one high level language to another
e.g Shedskin that converts python code to optimized C++.
I was wondering why would one ever try to do that. Why ...
2
votes
6answers
355 views
What is the best approach to both modularity and platform independence?
I hope this question does not come off as broad as it may seem at first. I am designing a software application in my <sarcasm>voluminous</sarcasm> spare time. I would like it to be both ...
1
vote
2answers
53 views
How to use vertical bars “|” (pipes) in a title, header as a string?
A page has the title "Systemadministrator (m/w) | Dresden". I use a vertical line (pipe) letter. When I render the title in typo3 (via dataWrap) it will only show "Systemadministrator (m/w)Dresden" ...
1
vote
1answer
128 views
Compiled expressions run much slower than interpreted versions
I have a rules engine, which supports two modes of operations:
Compilation into a C# program and linked into the engine
Parsing into a reverse-polish stack-based instructions and interpreted
The ...
1
vote
3answers
309 views
Insert text into a textarea using javascript without javascript parsing the text
'<textarea name="textChange" class="signatureChangeText" cols="100" rows="4">'
+ SOME VARIABLE FULL OF TEXT
+ '</textarea>'
The preceding is just part of a simple string that I am using ...
1
vote
6answers
280 views
How to use Subversion for non-compiled language?
I want to use Subversion with a script based development system, and was wondering what to do differently to my usual situation (C#/.NET).
The normal day-to-day update/commit cycle will work fine, as ...
1
vote
3answers
632 views
C# Interpreted Language
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?
0
votes
0answers
15 views
how does apache interpret configuration files
Is there any lib which can be used?
I am working on a project which will require similar kind of configuration file.
0
votes
1answer
39 views
Django template render from db and interprets tags
urls.py
url(r'^/mailing/(?P<pk>\d+)/preview/$', PreView.as_view(), name="preview"),
models.py
class Message(models.Model):
# ... other fields ...
body = models.TextField(_("Body"), ...
0
votes
1answer
26 views
How to get Eclipse to recognize a .target file for OSGI
I moved to a new computer and moved my OSGI project to it. I have a .target file that is now recognized as xml, but in my last setup, I had something installed that made Eclipse interpret it ...
0
votes
2answers
82 views
IIS doesn't interpret a php file
I have a IIS webserver (v 6.1) with a webpage which is accessable from other devices in the LAN. If I try to access a php-page via the IP address I can only download the file. IIS doesn't interpret ...
0
votes
6answers
2k views
Speed Comparisons - Procedural vs. OO in interpreted languages
In interpreted programming languages, such as PHP and JavaScript, what are the repercussions of going with an Object Oriented approach over a Procedural approach?
Specifically what I am looking for ...