Questions tagged [compiled]

163 questions
2
votes
1 answer

Compiled or obfuscated Ruby

I have a set of files that seem to be obfuscated or compiled by Ruby. If I do a file [sic] to one of the files: a /usr/bin/env ruby script text executable all of them start with this: #!/usr/bin/env ruby require…
user1618465
  • 1,813
  • 2
  • 32
  • 58
2
votes
2 answers

i=i+1 in compiled languages?

I'm writing a program for my TI-nspire calculator in TI-BASIC, an optimised version of BASIC. From what I can tell, TI-BASIC is a compiled language. I have had more experience working with scripting languages, where you can define i as i+1, where…
user5331742
2
votes
0 answers

Common names for source and destination directories in compiled code

In compiled languages, there are two important folders: The folder where you put your source code The folder where your compiled code ends up I've seen these folders called source and build quite a lot. When building new systems and languages, one…
one
  • 21
  • 1
2
votes
1 answer

Java Bytecode Injection

Would it be possible to make a Java program which edits a function in a compiled class file by injecting new compiled code into it? Could you just insert the chunk of code as it is into the class?
Hop311
  • 33
  • 4
2
votes
1 answer

Usage of compiled XSL transformations

I am producing compiled .class files (Translet) from XSL transformation files with using TransformerFactory which is implemented by org.apache.xalan.xsltc.trax.TransformerFactoryImpl. Unfortunately, I couldn't find the way how to use these translet…
kursattokpinar
  • 119
  • 1
  • 8
2
votes
1 answer

SQL Server 2008 Compiled TSQL Performance

What kinds of TSQL select statements (i.e. those starting from select) get benefited from compiling and what the advantages is provided by? By compiling I mean hosting select statements inside stored procedures. I'm aware of other than performance…
user1514042
  • 1,899
  • 7
  • 31
  • 57
2
votes
6 answers

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

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 independence. After all the degree of platform independence is limited by…
Moeb
  • 10,527
  • 31
  • 84
  • 110
2
votes
1 answer

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 binary in a "pycache" directory. Can somebody…
ever99
  • 65
  • 1
  • 6
2
votes
1 answer

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 EF4) The Entities are POCO, place in a independent…
1
vote
1 answer

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?
jhlu87
  • 3,999
  • 8
  • 38
  • 48
1
vote
5 answers

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 developer's it becomes do while loop. ie when i decompile…
user1228785
  • 512
  • 2
  • 6
  • 19
1
vote
3 answers

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 problem is my app has to remain compiled, since I…
Almog C
  • 795
  • 6
  • 14
1
vote
2 answers

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 source path images?
1
vote
2 answers

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 one each time. It does not have to be dynamic…
Verzon
  • 21
  • 1
1
vote
1 answer

Dynamically importing .py files after compiling

I've tried looking online and I'm honestly lost at this point. I'm trying to find if there's a way to import python scripts and run them AFTER my Python program has been compiled. For an example, let's say I have a main.py such that: import…
Higgsy
  • 324
  • 1
  • 14