Questions tagged [compiled]

163 questions
0
votes
2 answers

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 window. Is there a way to open a shell window with an…
English Grad
  • 1,365
  • 5
  • 21
  • 40
0
votes
0 answers

How to put a compiled Angular App inside a Vue.js Nuxt development app (to be called by it)

I'm trying to integrate an already compiled Angular app inside a Vue app made with Nuxt framework. I've tried the following strategies : Changing the index.html of the Angular app to a index.vue in order to be able to call it using the Nuxt files…
CBD
  • 21
  • 4
0
votes
0 answers

Compiled Minizinc?

If I have a minizinc file (.mzn) and an accompanying master data file(.dzn), which will be used to process any given data file from the business user (.dzn), is there a way for me to provide the first 2 files as a "compiled" version, so that the…
smn
  • 1
  • 1
0
votes
1 answer

"This code is unreachable" warning in pycharm

The following part of my code is highlighted as code unreachable in pycharm IDE. for row in range(frame_height): for col in range(frame_width): if i < binary_img.shape[0]: pixel =…
Heeya
  • 11
  • 3
0
votes
0 answers

"F compiler.cpp:149" Check failed: onames_left.empty()

When I compile the model, I get the error below. I can't find any information about it online. [I util.cpp:23] %110 : (Tensor, Tensor) = prim::TupleConstruct(%108, %e.1) [I op.cpp:88] [I] 108: 0 Tensor [16, 32, 512] Float [I op.cpp:88] [I] e.1: 0…
0
votes
1 answer

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 and it should work anyways but it doesn't. The…
Corneliu
  • 1
  • 1
  • 1
0
votes
0 answers

PyQt5 module not found, already compiled after installing (Mint)

I've the problem, that programs didn't run since PyQt5 is missing: from PyQt5.QtCore import ( ModuleNotFoundError: No module named 'PyQt5' I've already installed PyQt5: Reading package lists... Done Building dependency tree Reading state…
0
votes
3 answers

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

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 or academic only languages, I'm looking for…
Mister Smith
  • 27,417
  • 21
  • 110
  • 193
0
votes
0 answers

Is Standard ML compiled, interpreted or both?

Is the functional programming language Standard ML (SML) compiled, interpreted or both? From what I have researched, I see that it is a compiled language. Is there an explanation as to why for this?
0
votes
1 answer

Python- Compiled firmware to bits back to compiled firmware

I need to transfer compiled code into raw bits, then back into compiled code, for a project. I have gotten my .uf2 file into Python, and I have gotten it to show as bytes and as encoded into ANSI text, but I haven't figured out how to turn it into…
0
votes
1 answer

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 write values like this with…
msfanboy
  • 5,273
  • 13
  • 69
  • 120
0
votes
0 answers

Zero-sized array dimensions in compiled Matlab

I have Matlab code that is generating an array of variable size depending on some input parameter, N. Dimensions 1 and 2 are fixed, and the array's size in the 3rd dimension is N, i.e. size(A) = [x, y, N]. N can take integer values from 1…
0
votes
1 answer

Why is sass file not updating on css file?

So here is the scenario, I have "main.scss" file inside "sass" folder and "style.css" file inside "css" folder. I have also already installed the "node-sass", "npm". When i try to compile the sass file into the css file through the terminal. It…
0
votes
1 answer

Visual Studio 2019 not debugging all my code

I am working on an ASP.Net application using VB.Net with Visual Studio 2019 version 16.8.4. While investigating an issue with breakpoints, I noticed that what Build Solution is creating under Temporary ASP.Net Files\root folder is not what is being…
Rick L.
  • 3
  • 1
0
votes
1 answer

VSCode compiles slower C++ even though I'm using the same command line script

C++ code compiled from a command line shell script runs much faster than when I use the same shell script from a Task:Run in VSCode. I successfully tried an echo command in the script to make sure VSCode was running the same script I use at the…