Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
782 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
5answers
884 views

Way to have compiled python files in a separate folder?

Is it possible to have Python save the .pyc files to a separate folder location that is in sys.path? /code foo.py foo.pyc bar.py bar.pyc To: /code foo.py bar.py ...
8
votes
2answers
195 views

Getting distutils to install prebuilt compiled libraries?

I manage an open source project (Remix, the source is available there) written in python. We ask users to run python setup.py install to install the software. Recently we added a compiled C++ package ...
6
votes
8answers
755 views

Compiled dynamic language

Greetings, I search for a programming language for which a compiler exists and that supports self modifying code. I’ve heared that Lisp supports these features, but I was wondering if there is a more ...
5
votes
4answers
2k views

How can I use C++ code to interact with PHP?

I know C++ from college, vaguely. But I was reading somewhere that sometimes PHP is simply not fast enough and that real compiled code has to sometimes "Do the heavy lifting" what is the api in C++ ...
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
2answers
715 views

Workaround for LINQ to SQL Entity Identity Caching and Compiled Query Bug?

I've come across what appears to be a bug in linq to sql where identity caching does not work when performing primary key queries inside of a compiled query. I wrote the following sample to ...
4
votes
7answers
190 views

what is the fastest way of calling and executing a function in C?

I have a lot of functions(huge list) defined and compiled. And I use function pointers to call and execute the functions by sending arguments dynamically during runtime. It is an iterative process ...
3
votes
11answers
952 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
4answers
138 views

Is C# partially interpreted or really compiled?

There is a lot of contradicting information about this. While some say C# is compiled (as it is compiled into IL and then to native code when run), others say its interpreted as it needs .NET. EN Wiki ...
2
votes
1answer
58 views

Python find out contents of compiled module?

So have this Python .pyd module (C++), so I can't just open it in a text editor to find out what it contains. So how can I? I just want to know the function names inside it.
2
votes
3answers
104 views

ASP.NET: How to override a non-virtual method from a compiled assembly?

I'm in a bit of a predicament. I've been assigned the task of maintaining an existing ASP.NET web application for which the source code is not available - all code is compiled and put into the bin ...
2
votes
1answer
102 views

Building/testing a Python project with C extensions

I have a project with a python package and a compiled component inside of it. Current directory layout is: <project> foo/ foo/__init__.py foo/... src/ src/c_foo.c tests/ ...
2
votes
2answers
2k views

Is it possible to decompile a compiled .pyc file into a .py file?

Is it possible to get some information out of the .pyc file that is generated from a .py file?
2
votes
1answer
212 views

Cx_freeze - How can I Install the shared libraries to /usr/lib

I am using cx_freeze to compile my python script and when I compile the program, all the files are placed in one specified folder. The executable wont run if the shared libs are not within the same ...
2
votes
5answers
337 views

Need to create a compiled delphi app that can make a separate compiled app

I need to make an app that will let users select some options, click a button, and a separate compiled app is created. Is this possible? I am using delphi 7 and 2010. Thanks for the replies. Here ...
2
votes
1answer
81 views

Referencing an XSL Stylesheet within another

I have a XSL stylesheet that I wish to compile into a dll using the xsltc.exe command. The issue that I am facing is that there is a common stylesheet that is being used and my styleheet is ...
2
votes
7answers
3k views

Javascript compiled or not? Check inside

Note that I am not experienced with Javascript. If a javascript code starts like this: javascript:var ...
2
votes
4answers
825 views

Pre compiling a very large regular expression

I am having a very strange problem. I have a very large regular expression searching for certain words in some text (RegEx looks something like this: (?i)\b(a|b|c|d...)\b; and so on where a, b, c, d, ...
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
3answers
68 views

iOS - app containing another app

I would like to hand my application to another developer to assymilate in his iOS app. The goal is to have, in his app, a shortcut that opens my app directly - not just a link to the appstore. The ...
1
vote
0answers
45 views

what are pros and cons of using scripting language over Compiled language to create web services? [closed]

i recently learnt about web services and read about several frameworks(ex:-Spring,Zend,Cakephp).What i want to know is,is there a any advantages using scripting language over Compiled language to ...
1
vote
2answers
97 views

Modifying compiled executable memory allocation

I have a compiled executable with no access to the source code. Every time it runs a variable is assigned to memory address 0x7B008C. I am trying to make it use a different address rather than that ...
1
vote
3answers
43 views

binary file from one linux to another

is there any possible way to run binary compiled on another Linux ? i know that of course the easiest is to rebuild that on another machine but lets assume that the only thing we can get is a binary ...
1
vote
1answer
92 views

Distributing an application written in Ruby on Rails

We have an existing web application that is written in Ruby 1.9.2 and Rails 3.x. Our original model was software as a service but in investigating in our industry there are times where hosting our ...
1
vote
2answers
115 views

ASP.NET Compiled vs Uncompiled DB qualifiers

We have an ASP.NET application that uses SQL statements, where table names are unqualified. When compiled, it works fine, but when uncompiled, it complains and errors out, saying these tables dont' ...
1
vote
2answers
1k views

Linq Compiled Queries and int[] as parameter

I'm using the following LINQ to SQL compiled query. private static Func<MyDataContext, int[], int> MainSearchQuery = CompiledQuery.Compile((MyDataContext db, int[] online ) => ...
1
vote
3answers
237 views

Advantages of ASP.Net compiled model?

I'm working with a PHP developer who is, shall we say, unhappy with .NET. His complaints include having to rebuild the web application solution for every test (though I pointed out that this is ...
1
vote
8answers
405 views

Compiled, strongly-typed alternative to .NET?

Is there a programming language suitable for building web applications, that is compiled, strongly-typed, and isn't ASP.NET? I thought of using Mono (http://www.mono-project.com/), but I wonder if ...
0
votes
0answers
28 views

How to compile multiple sound files into one sound file, based on order of individual sounds in array?

In my application, I have two lists of sounds from different categories and a playlist. The user of the app must select sounds from either list and create a custom sound sequence. When they are ...
0
votes
2answers
52 views

Change url images on a user control

I have same compiled user controls (.ascx) and I don't have the code behind. This user controls have some images and the source is defined in code behind. Do you have any idea how I can change the ...
0
votes
1answer
42 views

How do I execute an executable file from within a java file on linux?

I am trying to execute an executable file and a perl script from within a java program. I have found many topics similar to this but most of them refer to windows. I know java is platform independent ...
0
votes
1answer
144 views

Reflection vs faster method of read/write a property value

I have read much about lambda,expression trees amd sort of compiled stuff... now where I am confused I would like to know wether there exist a faster method to get the Name of Properties to read and ...
0
votes
0answers
10 views

Is there any way to separate compiled libraries from package libraries?

Say I wanted to use /usr only for distribution packages and /opt for things I compile from source. I make a directory /opt/local and --prefix=/opt/local Openssl when compiling. Now how would I be ...
0
votes
0answers
65 views

Problem with compiled matlab program; not reading and writing from .txt data files unless it's launched from command prompt

My compiled matlab program is not reading and writing txt files properly (although the .m file version behaves fine). I'm using low level read/write functions like fprintf, fscanf, textscan, and ...
0
votes
0answers
147 views

Matlab function compiled with Builder JA does not terminate when called from Java class even if I call System.exit(0) - How can I terminate the JVM?

I have compiled the magicsquare example and it seems to execute correctly when called from a java method. However the JVM doesn't terminate when I call System.exit(0); Below is the code that I'm ...
0
votes
1answer
121 views

c++ like languages [closed]

I think C++ is one of the best known programming languages of all time, especially for low level programming stuff, but what other languages are a bit like C++ in means of capabilities? edit: I want ...
0
votes
2answers
71 views

compiled wget for linux webserver

how do i get a compiled wget for one of my server Linux version 2.6.18-028stab070.5 (root@rhel5-build-x64) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-46)) i dont have root privilege, so cant compile ...
0
votes
1answer
86 views

Git: Dealing with .class files and other compiled objects

Lets say I have a couple branches with different code: BranchA and BranchB. Assume I'm currently on BranchA and run a build. Suppose that my build dumps .class files and other compiled objects into ...
0
votes
2answers
85 views

Reasons to not compile

Having been landed with a Ruby project, I have been sceptical about the decision to use Ruby due to performance. I was excited to discover JRuby with its Java integration. This has made the project ...
0
votes
1answer
379 views

Linq Query Expression reuse

Post Edited Would this be possible ? Have a query expression that is precompiled i.e private static Func<SmwrDataContext, int, IQueryable<Xyz>> _validXyzs = ...
0
votes
6answers
1k views

What is the advantages an interpreted language has over a compiled language? [closed]

Possible Duplicate: What’s with the love of dynamic Languages I have already read this, but I do not get it. What use is making your own interpreter. Also, it says platform ...
-1
votes
3answers
155 views

Examples of compiled programming languages with modern features for the real world [please vote for reopen] [closed]

Apart from C, C++, Delphi, VB, can you put an example of a relatively "modern" COMPILED* programming language* supporting things like OO, collections, GUI libraries? Please do not mention experimental ...
-1
votes
2answers
33 views

which file generated after compilation in C#?

i want to know that after compiling the file in C# which type of file is generated?
-1
votes
1answer
28 views

Uploading Compiled codes on server

i wanted to know whats the advantage and difference between uploading normal content to the server and uploading compiled codes on the server. does it makes any difference in the sites performance if ...