Questions tagged [compiled]

163 questions
0
votes
2 answers

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 massively easier for me. And now I have just been…
Mongus Pong
  • 11,337
  • 9
  • 44
  • 72
0
votes
1 answer

How to see souce code of Compiled C code in R

I would like to how to view source code of compiled C code in R. I am looking for C code for package "nlm"; the corresponding compiled C code is "C_nlm". I am new to R, so please suggest your inputs in a basic way. Thanks
0
votes
3 answers

Where should a programmer with NO static/compiled language exp start learning Go?

I'm an experienced software developer, but I've only worked in dynamic languages (primarily Python, PHP in the past, JavaScript, and a little Ruby). Last night, I found myself reading through the tour on the Go website's tour when I realized that…
orokusaki
  • 55,146
  • 59
  • 179
  • 257
0
votes
1 answer

Modify dll function call in compiled exe

I have an exe file that I had written a while back and cannot find the source code for it (it was written in C++). It calls the MessageBoxA function in user32.dll and passes necessary parameters to it. I want to modify the flags parameter to…
Dan
  • 331
  • 1
  • 12
0
votes
1 answer

vb6 dll in .net REGDB_E_CLASSNOTREG

Hope someone could help me.. I created a vb6 dll which suppose to use the printer.print method since i want an easier printer functions.. it runs smoothly in same computer using vb.net 2012 , the problem is after publishing it in newly installed OS…
hinu
  • 1
0
votes
1 answer

compass config issues on compilation / watch

I have this: Project ├───public_html/ │ ├───css/ │ | └───style.css │ | │ ├───img/ │ | │ ├───js/ │ | │ └───index.html | ├───scss/ │ ├───ie.scss │ ├───print.scss | └───style.scss | └───config.rb config.rb http_path =…
Claudiu
  • 3,700
  • 1
  • 38
  • 35
0
votes
1 answer

Get c# classes after a program is compiled

I have a program that I am making for a friend and I don't want him to see the whole code, but I want him to be able to add classes that have attributes on the classes so he can add his own stuff to it, how would I be able to get classes using a…
Alec Scratch
  • 277
  • 2
  • 10
0
votes
1 answer

Linq Query Expression reuse

Post Edited Would this be possible ? Have a query expression that is precompiled i.e private static Func> _validXyzs = CompiledQuery.Compile((Context context, int Id) => …
kalki
  • 13
  • 3
0
votes
0 answers

How do I target compiled C - OSX - File extension

What file extension would compiled c code have? It's not showing any sort of file extension... I'm currently using to prune my folders of dSYM files. CFLAGS=-Wall -g clean: rm -r *.dSYM How can I 'target' my compiled C programs, and just…
Ollie
  • 1,104
  • 7
  • 24
  • 45
0
votes
1 answer

How to change compiled application name?

My colleague got the assignment to find a way to change the name of a compiled application where the main form title has a missing character. We figured this might be possible through changing the string somewhere in the binary, but we couldn't even…
user1306322
  • 8,561
  • 18
  • 61
  • 122
0
votes
1 answer

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.
Thorben
  • 953
  • 13
  • 28
0
votes
1 answer

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 of my css files below: {% stylesheets…
user1961082
  • 1,015
  • 17
  • 41
0
votes
8 answers

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 there are any other alternatives. (If the language…
Jonathan
  • 32,202
  • 38
  • 137
  • 208
0
votes
1 answer

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 NUMBER :=0; totalcreds NUMBER :=0; prevqp …
user1887474
  • 1
  • 1
  • 2
0
votes
1 answer

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 files are copied to the USER directory and loaded…
1 2 3
10
11