The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
27 views

Confusion in targets iPhone/iPad in Xcode

I have a question that may look stupid for some of you=) I have a project with 2 targets lets it be "game" and "game-iPad" in summary/devices i choosed iphone for first target and ipad for second I ...
0
votes
1answer
29 views

Inter Type Declaration on Compiled Class File

Is it possible to do Inter Type Declarations with AspectJ on Compiled Class Files at Load Time Weaving? As an example: I compile some Groovy code and want to add fields or methods with IDT.
2
votes
1answer
50 views

Why is my Python 3 code compiling itself?

I was following the Python 3 Docs to learn Multiprocessing, but I noticed something strange that I hadn't noticed before. After running the script the code is then compiled into a working standalone ...
0
votes
1answer
30 views

Symfony2 Compiled Assetic YUI

I've created a new environment called 'staging' which is pretty much the same config as the 'production' environment and I'm trying to use yui_compressor on my css and js files. Please see an example ...
7
votes
3answers
129 views

What's the purpose of adding compiled Func methods together?

I have seen that is is possible to add compiled methods together. Expression<Func<Customer, bool>> ln = c => c.lastname.Equals(_customer.lastName, ...
0
votes
0answers
227 views

Is there a way to open/read .PRI files? (package resource index - used in Windows Store apps)

I need to take some resources from SOURCE.PRI file, modify certain values, then create TARGET.PRI file, which has the exact same content as SOURCE.PRI, except the modified values mentioned above. ...
3
votes
2answers
520 views

AutoCompleteTextView doesn't show suggestions in Android 2.3.5

I'm using a special autocompletetextview for suggestions of thousands of streets. Due to this huge element list, I have to clear and populate the Adapter on the fly depending on the first input ...
6
votes
4answers
177 views

#region descriptions compiled into .exe in .net?

Are #region/#endregion directive "descriptions" compiled into the .EXE in .NET? I understand that comments are NOT, but I often chunk groups of code within a region and give it a useful description. ...
-5
votes
2answers
98 views

Can a compiled script be uncompiled? [closed]

I suspect this is possible, but my searches did not turn up anything. I have a program I wrote that I need to update, but the original was lost when a hard drive died on me. I have compiled ...
0
votes
1answer
97 views

Run compiled Saxon stylesheet using JAXP API

I have a compiled stylesheet that was created with this Saxon command: java net.sf.saxon.Compile [options] stylesheet output [ params…] I would now like to apply this stylesheet to an XML ...
0
votes
1answer
105 views

Warning: compiled but with compilation errors trigger in sql developer

ALTER TABLE student ADD gpa NUMBER; CREATE OR REPLACE TRIGGER "USER36401"."GETGPA" AFTER DELETE OR INSERT OR UPDATE ON grade_report FOR EACH row DECLARE totalqp NUMBER :=0; totalgpa ...
1
vote
0answers
147 views

Compiled .Jar Crashes (no java console) but compiles and runs in Eclipse?

I am using Libgdx to code a game and it makes use of methods such as Gdx.files.internal("file") to load files, this should work when exporting the application since that is what it's meant to do Some ...
0
votes
0answers
106 views

Excel ASP.NET API: Compiled vs uncompiled Excel file

I am developing ASP.NET web applications that use Excel as a calculation engine. All of the user interaction is via a normal web environment and I am using proprietary API's to run the I/O to the ...
0
votes
0answers
28 views

What language do I use to cross compile a desktop application?

A little background: I have a program, written in Python, which operates as a desktop interface to a number of web based processes. For these processes to work correctly the tool has to emulate a web ...
0
votes
1answer
456 views

Cannot find mysql.sock Mountain Lion

I have compiled MySQL 5.5.27 on Snow Leopard OSX. Which is working good and mysql.sock is created where it is expected. Same binaries are used on Lion OSX, it works there too and also mysql.sock is ...
0
votes
0answers
36 views

Can a compiled query contains more than one statment?

I have the following query and want to use a compiled query: var query = from v in volumeDC.Volumes join d in volumeDC.Disc_Vs on v.VolumeID equals ...
2
votes
2answers
473 views

With gcj compiled java & XStream. (Exception: Cannot create XmlPullParser)

I'm enhancing a client, which is part of a bigger project. Because of the lack of speed i was forced to switch to CNI and therefore i had to generate native code with the GNU-gcj compiler (gnu 4.6.3). ...
2
votes
2answers
272 views

Does an ODE written using GNU gsl outperform Mathematica's NDSolve?

Would an ODE solver written in C perhaps using the GSL library have significant speed advantages compared with Mathematica 8.0 NDSolve? How would it fair in terms of accuracy? My understanding is ...
1
vote
4answers
307 views

trying to import a *.pyc as a module

I have a python script that is trying to import another script somewhere in the file-system (path is only known at runtime). To my understanding I need to use the imp module and this might work, but ...
0
votes
1answer
109 views

compiled matlab filename as parameter

I compiled some Matlab code on Centos 5. I try to run it like this: run_cnaseq006.sh /projects/rcorbettprj2/mutationSeq/MCR/v714/ "/home/rcorbett/slx_service_rc/etc/cnv_test_data/CNV_test/config.m" ...
0
votes
0answers
54 views

Add widget to flex application without the compiled flex viewer

I have to do an application on flex which have a widget with a button and when the user push the button the qidget does a query on the map. but i want to create first a widgen on my fb project ...
0
votes
0answers
37 views

Data lookup: Database vs Compiled Code?

A question of curiosity: Assume you have a collection of N items that does get updated at an interval of T. Assume you have no other need for a database, other than to do lookups into this ...
0
votes
0answers
25 views

Is hiding your code a big deal? [closed]

Im currently developing a small application to be used by small businesses. I was wondering if it is ok to create the application with scripting language such as ruby on rails. My largest concern is ...
1
vote
1answer
266 views

Is it possible to create a win64 MEX file that does not require Microsoft Visual C++ Runtime libraries

I am trying to see if you can distribute a MEX file without requiring the end user to install the C++ runtime libraries. When you use visual 2010 express to create MEXs, Matlab issues this warning : ...
2
votes
3answers
154 views

Is it possible to find the jdk vendor for a compiled java file

I have tried to find out the jdk vendor for my class file but haven't been able to. Can anyone help me in finding out whether Is it possible to find the jdk vendor for a compiled java file. If yes, ...
2
votes
3answers
122 views

GitHub: can I offer access to compiled files without versioning them?

I maintain a documentation with git and GitHub. The source files are TEX files for Pdflatex an a few other files (like figures) that are used for the compilation. These files are versioned. After ...
2
votes
1answer
154 views

How to use Entity Framework(4) compiled queries in an n-tier layered application?

I have an n-tier application design problem with Entity Framework 4. Server-side, my application has 3 layers : - one Service layer (WCF) - one Business layer - one DataAccess layer (working with ...
1
vote
2answers
162 views

Java drawImage much faster in eclipse compared to when compiled

When I run my program from eclipse, it runs fine with very little load on the CPU. JProfiler (watching the program run from eclipse) says most is taken up by collision detection and drawing. When ...
2
votes
4answers
664 views

Is it possible to import a compiled python file?

I can't seem to figure out how to import a compiled .pyc module into my code so I can use it within my main script. Is this even possible?
1
vote
1answer
85 views

matlab compiled program execute code on close

I have a compiled matlab program that runs as a dos box basically (ie no GUI). Is there a way to get code to execute when someone closes the program? Specifically closing by clicking on the X?
5
votes
2answers
4k views

Is Javascript compiled or an interpreted language? [closed]

Can Javascript be called a pure interpreted language? Or does it also have some compiled flavor to it? Could someone guide at the reasons behind both the things whichever being true.
1
vote
5answers
398 views

for loop getting converted to do while loop in compiled class file

In my team we are using java 1.4.2 Most of the machine for loop is getting compiled as for only.ie. if i decompile the class file I can get see for loop only but certain machines of certain ...
0
votes
2answers
148 views

Python shell window in compiled applet

I am trying to make an executable python program on MAC OSX. I used the build applet program and it runs, but I had some data printing in the shell window and the executable file does not open a ...
2
votes
6answers
3k 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 ...
1
vote
3answers
305 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 ...
2
votes
1answer
435 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.
1
vote
2answers
389 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 ...
1
vote
0answers
159 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 ...
0
votes
1answer
217 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
3answers
864 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
79 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?
0
votes
1answer
332 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 ...
1
vote
2answers
299 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 ...
2
votes
3answers
259 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 ...
0
votes
0answers
161 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 ...
1
vote
3answers
68 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 ...
3
votes
1answer
246 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/ ...
1
vote
1answer
171 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 ...
14
votes
4answers
9k 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
34 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 ...

1 2