python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to read dynamic data structure from binary file until EOF?
I have binary data that is stored in a non-trivial format where the information 'chunks' are not a fixed size and are similar to packets. I am reading them dynamically using this function:
def unpack_...
moonman4
Votes: 0
Answers: 0
How to Set Gihub Secret with a Binary File for Github Workflow?
I would like to add one of my API configuration file (binary.file) to the Github secret (MY_BINARY_SECRET). Then it will be read and wrote to binary.file again in the workflow:
jobs:
build:
runs...
WenliL
Votes: 0
Answers: 1
How to write data in binary form to a file using extract and insert operators in a stream?
Opening a file with fstream:
std::fstream fileStream(obj.path, std::ios::binary | std::ios::in | std::ios::out);
Next, I write data to the file:
fileStream << this->m_path;
fileStream <&l...
Александр Климук
Votes: 0
Answers: 0
Does COBOL force the first 6 characters of a line to be numbers because it compiles easier to binary executables?
I was watching a Ben Eater video and noticed that first 8 characters of a bin file line all had some form of address and remembered COBOL. Are these related or just coincidences? Is it just a conventi...
Mr Man
Votes: 0
Answers: 1