Top "Binary" questions

Binary, the base-2 numeral system, represents numbers using two symbols: 0 and 1. For compiled computer programs, use the "executable" tag instead.

How can I copy several binary files into one file on a Linux system?

I need to copy the content of a folder which contains binary files to one binary file in another directory. …

bash binary copy
Reading and interpreting data from a binary file in Python

I want to read a file byte by byte and check if the last bit of each byte is set: #!/…

python binary bitwise-operators
Inserting and selecting UUIDs as binary(16)

I don't understand why SELECT UUID(); Returns something like: 3f06af63-a93c-11e4-9797-00505690773f But if I …

mysql binary uuid
How can I detect if a file is binary (non-text) in Python?

How can I tell if a file is binary (non-text) in Python? I am searching through a large set of …

python file binary
Tools to help reverse engineer binary file formats

What tools are available to aid in decoding unknown binary data formats? I know Hex Workshop and 010 Editor both support …

binary reverse-engineering file-format binary-data
How do I create binary patches?

What's the best way to go about making a patch for a binary file? I want it to be simple …

binary patch
Binary representation of float in Python (bits not hex)

How to get the string as binary IEEE 754 representation of a 32 bit float? Example 1.00 -> '00111111100000000000000000000000'

python binary floating-point
Converting binary string to a hexadecimal string JAVA

I want to convert my binary(which is in string) to hexadecimal string also, this is just a program fragment …

java binary hex base-conversion
How to remove unused objects from a git repository?

I accidentally added, committed and pushed a huge binary file with my very latest commit to a Git repository. How …

git file object binary
Why is base128 not used?

Why is only base64 instead of base128 used to transmit binary data on the web? The ASCII character set has 128 …

encoding language-agnostic binary