Questions tagged [binaries]

* Compiled computer programs are sometimes called "binaries". Instead of this tag, use [tag:executable] for this sense.

191 questions
4
votes
1 answer

How to read binary file data into arrays?

Attempt to read a binary file in python. From the dataset page: The pixels are stored as unsigned chars (1 byte) and take values from 0 to 255 I have tried the following, which prints (0,), rather than a 784,000 digit array. # -*- coding: utf8…
David Ferris
  • 2,215
  • 6
  • 28
  • 53
4
votes
1 answer

Is git difftool on binaries possible? If so, how does one configure it?

I've been following guides like these here and here on how to diff binaries in git - more specifically .odt files and microsoft word files. They have allowed me to $git diff on .odt files and microsoft word files to display the difference…
Jack
  • 195
  • 2
  • 8
4
votes
1 answer

How to rsync files matched by .hgignore between two hg repositories

How would you rsync files that are not tracked by mercurial between two repositories? My .hgignore looks like this: syntax:…
Amelio Vazquez-Reina
  • 91,494
  • 132
  • 359
  • 564
4
votes
1 answer

how to find path from where current binary running?

After somewhere searching finally not getting what i want. I am working on some embedded board with linux system. And many users access it by telnet.So each user suppose copy some binary somewhere and executed like ./binary.So i can see this process…
Jayesh Bhoi
  • 24,694
  • 15
  • 58
  • 73
4
votes
2 answers

Boost 1.55 doesn't work with Visual Studio 2013

I have compiled the boost binaries correctly and followed all of the instructions, but I am getting a lot of errors, and I don't know why! Here is my 'include' setup: This is the code I used to test boost: #include // include…
user2705775
  • 461
  • 1
  • 7
  • 14
4
votes
2 answers

Managing binaries versions

I'm looking for tools and recommendations on how to manage binaries artifacts which together make up a release version. The project looks like this: + Package-Version |__ Component A-Version |__ Component B-Version |__ Component C-Version More…
EdwardH
  • 1,523
  • 2
  • 12
  • 20
4
votes
3 answers

What are the reasons for not hosting a compiler on a live server?

Where I currently work we've had a small debate about deploying our Python code to the production servers. I voted to build binary dependencies (like the python mysql drivers) on the server itself, just using pip install -r requirements.txt. This…
Phil Jackson
  • 456
  • 3
  • 10
3
votes
0 answers

OpenGL Shader binaries not linking in C++

I am currently working on a OpenGL Shader class, that uses SPIR-V to compile the shaders. Getting the compiled binaries from SPIR-V works fine, the problem is, that my program crashes with the OpenGL exception GL_INVALID_OPERATION error generated.…
Can
  • 123
  • 2
  • 8
3
votes
0 answers

How to update libpq.dll to recent Version for php 7.3 (Win x64 binaries)

Is there a way to update the libpq.dll file shipped within the current 7.3 php binaries? The out of Box one is below Version 10 - but I need at least V10 for SCRAM Support. Perfect would be V13 I've tried to copy over the recent dll from current…
Killom
  • 31
  • 3
3
votes
5 answers

C/C++ Library for Extracting Icons from Binaries

I'm planning on building a hotkey-activated application launcher for Windows. I intend for it to be a pop-up grid of icons in which you can then click and launch what you need. I'd like for it to automatically scan the Start Menu and Desktop for…
delaccount992
  • 1,303
  • 3
  • 15
  • 21
3
votes
1 answer

Avoiding output of huge binary params when tracing with dbg

I have to debug some code that passes around huge binaries in the params. For this I want to use a combination of dbg:tracer/0, dbg:p/2, dbg:tpl/3. But if I do this all the binaries are output every time which for one messes up the output so the…
Peer Stritzinger
  • 8,232
  • 2
  • 30
  • 43
3
votes
1 answer

Haxe installation from binaries

Someone can help me to install Haxe 4.0.0-rc.5 from the binaries on Ubuntu 19.4. The repository pointed out by the page does not have the new versions and on the official page there are no instructions on how to do it. Thanks!
3
votes
1 answer

Can I install binaries into the GAC via a VSIX installer?

I've got a hybrid installer which drops binaries on the target machine (WIX) as well as installs templates into Visual Studo (VSIX). The VSIX is stored as a binary in the installer and is installed via a custom action when the installation is…
user1228
3
votes
8 answers

tools for diffing windows binaries?

Our QA team wants to focus their testing based on what EXEs and DLLs have actually changed between builds. We have a nice svn change report, but the relationship between source and changed binaries isn't always obvious. The builds we're comparing…
Pete Richardson
  • 723
  • 6
  • 10
3
votes
2 answers

Communicating Erlang server with c# program

I'm trying to write Erlang server for my program but still having some problem which I can't handle with. When using this (I wrote client in erlang to test server): send(Socket, Message) -> BinMsg = term_to_binary(Message), gen_tcp:send(Socket,…
MrKaszu
  • 71
  • 8
1
2
3
12 13