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.

C represent int in base 2

Possible Duplicate: Can I use a binary literal in C or C++? I am learning C and i recently found …

c binary integer representation
How do I read binary data to a byte array in Javascript?

I want to read a binary file in JavaScript that would be gotten through XMLHttpRequest and be able to manipulate …

javascript binary binary-data
How to get only the first ten bytes of a binary file

I am writing a bash script that needs to get the header (first 10 bytes) of a file and then in …

bash binary
Why does a byte only have 0 to 255?

Why does a byte only range from 0 to 255?

binary byte
What does \x00 mean in binary file?

Once I asked a guy "what is the difference between ASCII and Binary files?" And he said "Binary files always …

file binary ascii binaryfiles
Base 10 to base 2,8,16 conversion in java

I'm in this Object Oriented class, but I just don't know how to do this. I know basic fundamentals but …

java string binary base-conversion
Getting binary content in node.js with http.request

I would like to retrieve binary data from an https request. I found a similar question that uses the request …

node.js http binary
Adding binary numbers in C++

How would I add two binary numbers in C++? What is the correct logic? Here is my effort, but it …

c++ binary add
How to detect type of compression used on the file? (if no file extension is specified)

How can one detect the type of compression used on the file? (assuming that .zip, .gz, .xz or any other …

binary compression
Python PIL bytes to Image

import PIL from PIL import Image from PIL import ImageDraw from PIL import ImageFont import urllib.request with urllib.request.…

python image binary python-imaging-library drawtext