* Compiled computer programs are sometimes called "binaries". Instead of this tag, use [tag:executable] for this sense.
Questions tagged [binaries]
191 questions
-1
votes
1 answer
How to convert binary code to go line syntax in main.go
Few days back code was showing like proper Go syntax. Not sure which command I ran but now main.go code is showing like this. May be this go build -gcflags='all=-N -l' -o main.go command converted code to binaries compile code.
Any idea how to…

Avinash Dalvi
- 8,551
- 7
- 27
- 53
-1
votes
2 answers
Memory Error in Python when trying to convert large files to binary
I'm working on developing a program to generate a dictionary containing binaries of various files for a Minecraft modpack. Everything works smoothly when processing smaller files. However, when attempting to process larger files, such as the "Better…
-1
votes
1 answer
How to package vips for distribution?
I am trying to package the vips repository for distribution so I can double-click on it and install it on any Mac OS version. On Windows, this is easy - I just have to put the folder containing the binaries in the package. For Mac OS, I need to…

Prasad
- 1
-1
votes
1 answer
How to make a desktop shortcut creator in my .deb package?
I was able to build my package,made the control file,everything is fine.It installs the required dependencies if they are not installed,so everything works.The only thing is,if you want to open the installed file you need to go to /usr/bin/ and find…

davis90
- 1
- 1
-1
votes
1 answer
What are SQL Server Binaries?
What are SQL Server Binaries?
What are some examples of working with this on the job or in practice?
I'm taking a course and this term was casually mentioned, but I'm not sure what it means. Here is an excerpt from the course: "Microsoft keeps…

WaffleCat
- 45
- 4
-1
votes
1 answer
I want to transform all the binaries in a Integer List to an decimal int
this is what I have atm:
I tried to convert the integers form the list to an int array.
Problem is that the output is wrong.
Logic is: last index from the array -> if 0 break else
2^index.
import java.util.Arrays;
import java.util.List;
public…

sssuuuhg
- 13
- 1
-1
votes
1 answer
eclipse: debugging without binaries
Want to debug a project in Eclipse but binaries are not generated.
can a project in eclipse may debug without binary generation

Anar
- 1
-1
votes
1 answer
Java command or sub-routine which equivalent to bash strings command
In bash I can do
strings someBinaryfile.exe
for an .exe (or .dll, or .so) and that will print just the human-readable portion of the binaries.
Is there a similar library in java. I know how to open a file and print it, but I just need the…

RonPringadi
- 1,294
- 1
- 19
- 44
-1
votes
1 answer
C++ Class Files Not building Binaries in Eclipse Mars Running on Linux OS
New to C++ and getting the dreaded "Binaries not found" error while executing my code. This only happens when I have created a source file that includes the code for a Class. When I write programs that don't include a Class, this does not happen.…

Kyle Joseph Green
- 129
- 2
- 11
-1
votes
1 answer
Retrieving iOS binaries from Apple?
Does anyone know if Apple would send me the binaries for our published app upon request? (I thought I would ask on here so to save me potentially wasting a support ticket with Apple.)
The situation is that we need to update our App Store screenshots…

ban-geoengineering
- 18,324
- 27
- 171
- 253
-2
votes
2 answers
How do I execute an existing binary that's in the same location as the main cpp file?
I'm making a program that depends heavily on another C binary. Since I don't feel like learning how to use headers and what not yet, I wanted to take the simple rout and just run a pre-compiled binary from the same folder in my cpp program.
Right…

The Sogie Man
- 9
- 4