Tagged Questions

Binary is a base-2 numbering system that represents values using two symbols: 0 and 1.

learn more… | top users | synonyms

89
votes
5answers
28k views

How do you express binary literals in Python?

How do you express an integer as a binary number with Python literals? I was easily able to find the answer for hex: >>> 0x12AF 4783 >>> 0x100 256 and, octal: ...
45
votes
16answers
14k views

Is it safe to use -1 to set all bits to true?

I've seen this pattern used a lot in C & C++. unsigned int flags = -1; // all bits are true Is this a good portable way to accomplish this? Or is using 0xffffffff or ~0 better?
45
votes
9answers
29k views

Binary diff tool for very large files?

I need a utility to diff two binary files. The files are large (6-50 GB). Note: It needs to be specifically pointed out here: most diff programs work by mapping the file into their virtual address ...
39
votes
23answers
2k views

Why should I use a human readable file format?

Why should I use a human readable file format in preference to a binary one? Is there ever a situation when this isn't the case? EDIT: I did have this as an explanation when initially posting the ...
29
votes
5answers
1k views

Algorithm to calculate the number of 1's for a range of numbers in binary

So I just got back for the ACM Programing competition and did pretty well but there was one problem that not one team got, so I figured Stack Overflow could maybe figure it out. The Problem. ...
27
votes
3answers
34k views

Reading binary file in Python

In Python, how do I read a binary file and loop over each byte of that file?
25
votes
10answers
7k views

Why is two's complement used to represent negative numbers?

I'm just curious if there's a reason why in order to represent -1 in binary, two's complement is used: flipping the bits and adding 1? -1 is represented by 11111111 (two's complement) rather than (to ...
24
votes
10answers
2k views

Why do we use Base64?

Wikipedia says Base64 encoding schemes are commonly used when there is a need to encode binary data that needs be stored and transferred over media that are designed to deal with textual data. ...
22
votes
14answers
13k views

Locking binary files using git version control system

For one and a half years, I have been keeping my eyes on the git community in hopes of making the switch away from SVN. One particular issue holding me back is the inability to lock binary files. ...
21
votes
18answers
14k views

How to determine if binary tree is balanced?

It's been a while from those school years. Got a job as IT specialist at a hospital. Trying to move to do some actual programming now. I'm working on binary trees now, and I was wondering what would ...
21
votes
6answers
7k views

C# binary literals

Is there a way to write binary literals in C#, like prefixing hexadecimal with 0x? 0b doesn't work. If not, what is an easy way to do it? Some kind of string conversion?
20
votes
10answers
650 views

Find the largest binary gap in a number?

I had to solve a problem earlier on today which was very interesting: finding the largest binary gap in a number. (The longest gap between two 1s in a binary stream) For instance, 9 has a max binary ...
20
votes
8answers
18k views

is there a way to read binary data into javascript?

I would like to inject binary data into an object in javascript. is there a way to do this? i.e. var binObj = new BinaryObject('101010100101011'); something to that effect. any help would be ...
17
votes
15answers
2k views

Is it acceptable/good to store binaries in SVN?

We would like to share runtime project binary files. So every team member could take current working version. It is acceptable/good to store runtime binaries in the SVN?
17
votes
20answers
2k views

Why do most languages not allow binary numbers?

Why do most computer programming languages not allow binary numbers to be used like decimal or hexadecimal? In VB.NET you could write a hexadecimal number like &H4 In C you could write a ...
16
votes
5answers
717 views

Why don't people use base128 in JavaScript?

Why is everybody using base 64 to transmit binary data on the web? I ask that because the ASCII character set has 128 characters which in theory could represent base 128...
16
votes
8answers
951 views

I never really understood: what is Application Binary Interface (ABI)?

I never clearly understood what is an ABI. I'm sorry for such a lengthy question. I just want to clearly understand things. Please don't point me to wiki article, If could understand it, I wouldn't be ...
16
votes
4answers
620 views

Why is (a | b ) equivalent to a - (a & b) + b?

I was looking for a way to do a BITOR() with an Oracle database and came across a suggestion to just use BITAND() instead, replacing BITOR(a,b) with a + b - BITAND(a,b). I tested it by hand a few ...
15
votes
1answer
229 views

Binary Serialization for Lists of Undefined Length in Haskell

I've been using Data.Binary to serialize data to files. In my application I incrementally add items to these files. The two most popular serialization packages, binary and cereal, both serialize ...
15
votes
4answers
653 views

Packing 4 Integers as ONE BYTE?

I have four integers {a, b, c, d} that can have the following range of values: a - {0 or 1} (1 bit) b - {0 or 1} (1 bit) c - {0, 1, 2, ..., 7} (3 bits) d - {0, 1, 2, ..., 7} (3 bits) ...
14
votes
10answers
872 views

Why do computers work in binary?

I have done some searching but have not found a truly satisfactory answer. As a developer i want to invest the necessary time in understanding this, thus i am looking for a complete explanation on ...
14
votes
11answers
5k views

Can I use a binary literal in C or C++?

I need to work with a binary number. I tried writing: const x = 00010000 ; But it didn't work. I know that I can use an hexadecimal number that has the same value as 00010000 but I want to know ...
14
votes
6answers
6k views

Binary Java 7 for Mac

Is there any binary release of Java 7 (using the Mac/BSD-port project) anywhere? Some blogs (e.g. Building Java 7 on Mac OS X) have a detailed instructions to build the jdk from source, but I was ...
14
votes
7answers
3k views

How can I determine if a file is binary or text in c#?

I need to determine in 80% if a file is binary or text, is there any way to do it even quick and dirty/ugly in c#?
14
votes
2answers
7k views

Storing MySQL GUID/UUIDs

This is the best way I could come up with to convert a MySQL GUID/UUID generated by UUID() to a binary(16): UNHEX(REPLACE(UUID(),'-','')) And then storing it in a BINARY(16) Are there any ...
13
votes
6answers
510 views

How to embed a file into an executable file?

I have two problems, the first has been solved. Current problem If I embed a file that requires a library to load it, such as a jpeg image or a mp3 music, I will need to use the file as input to the ...
13
votes
10answers
5k views

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 files in python, and keep getting matches in binary files. This makes the output look incredibly messy. ...
13
votes
6answers
6k views

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 structures. These are okay to a limited extent for a known fixed format but ...
13
votes
3answers
13k views

Binary buffer in Python

In Python you can use StringIO for a file-like buffer for character data. Memory-mapped file basically does similar thing for binary data, but it requires a file that is used as the basis. Does Python ...
12
votes
5answers
244 views

Pythonic way to iterate over bits of integer

Let's a=109 or 1101101 in binary. How do I iterate over bits of this number, eg: [64, 32, 8, 4, 1]
12
votes
4answers
3k views

How to print binary tree diagram?

How can i print a binary tree in java so that the output is like: 4 / \ 2 5 My Node: public class Node<A extends Comparable> { Node<A> left, right; A data; ...
12
votes
2answers
433 views

Why wrapping the Data.Binary.Put monad creates a memory leak?

I'm trying to wrap the Data.Binary.Put monad into another so that later I can ask it questions like "how many bytes it's going to write" or "what is the current position in file". But even very ...
12
votes
18answers
760 views

Would there ever be a reason to write code in pure binary?

Is there ever a situation when ASM just isn't low-level enough? After all, assembler still has to be assembled. Has anyone ever written a program in binary? I'm just wondering if there's ever a ...
12
votes
16answers
2k views

Code golf - hex to (raw) binary conversion

In response to this question asking about hex to (raw) binary conversion, a comment suggested that it could be solved in "5-10 lines of C, or any other language." I'm sure that for (some) scripting ...
12
votes
2answers
3k views

MySQL binary against non-binary for hash IDs

Assuming that I want to use a hash as an ID instead of a numeric. Would it be an performance advantage to store them as BINARY over non-binary? CREATE TABLE `test`.`foobar` ( `id` CHAR(32) BINARY ...
12
votes
4answers
6k views

How do I convert a binary string to a number in Perl?

How can I convert the binary string $x_bin="0001001100101" to its numeric value $x_num=613 in Perl?
12
votes
3answers
8k views

C# file read/write fileshare doesn't appear to work

My question is based off of inheriting a great deal of legacy code that I can't do very much about. Basically, I have a device that will produce a block of data. A library which will call the device ...
11
votes
3answers
4k views

App Submission Error - Invalid binary - Invalid Code Signing Error

Invalid Code Signing Entitlements - Your application bundle's signature contains ubiquity code signing entitlements that are not supported. Specifically, value "( X49XXXS5Q.* )" for key ...
11
votes
3answers
443 views

Why not enforce 2's complement in C++?

The new C++ standard still refuses to specify the binary representation of integer types. Is this because there are real-world implementations of C++ that don't use 2's complement arithmetic? I find ...
11
votes
5answers
692 views

Why do unsigned int x = -1 and int y = ~0 have the same binary representation?

In the following code segment what will be: the result of function value of x value of y { unsigned int x=-1; int y; y = ~0; if(x == y) ...
11
votes
7answers
738 views

Versioning friendly, extendible binary file format

In the project I'm currently working on there is a need to save a sizable data structure to disk (edit: think dozens of MB's). Being an optimist, I thought that there must be a standard solution for ...
11
votes
5answers
1k views

Using Haskell's Parsec to parse binary files?

Parsec is designed to parse textual information, but it occurs to me that Parsec could also be suitable to do binary file format parsing for complex formats that involve conditional segments, ...
11
votes
3answers
3k views

How to convert a string or integer to binary in Ruby?

Let's say I need to make integers 0..9 and math operators + - * / binary strings. So 0 = 0000, 1 = 0001, etc.. Is there a way to do this with Ruby 1.8.6 without using a library?
11
votes
5answers
1k views

Name me a Binary Parser. A parser for binary data

So, I'm getting this data. From the network socket, or out of a file. I'm cobbling together code that will interpret the data. Read some bytes, check some flags, and some bytes indicate how much ...
11
votes
4answers
4k views

How to print integer literals in binary or hex in haskell?

How to print integer literals in binary or hex in haskell? printBinary 5 => "0101" printHex 5 => "05" Which libraries/functions allow this? I came across the Numeric module and its ...
11
votes
3answers
1k views

How to send a push notification using Erlang?

I'm trying to send a push notification to APNs using Erlang. This is the code I came up with so far: -module(apnstest2). -export([connect/0]). connect() -> application:start(ssl), ...
10
votes
1answer
646 views

Non-public API usage in iOS App? [closed]

i'm tryng to upload my App to iTunes store but 1 minute after submission i receive this kind of email togheter with an "invalid binary" message in itunes connect. The app contains or inherits from ...
10
votes
5answers
236 views

x-y = x+¬y+1 problem

I am currently reading a book about "bit fiddling" and the following formula appears: x-y = x+¬y+1 But this doesn't seem to work. Example: x = 0100 y = 0010 x-y = 0010 ¬y = 1101 ¬y+1 = ...
10
votes
1answer
942 views

Embedding binary blobs using gcc mingw

I am trying to embed binary blobs into an exe file. I am using mingw gcc. I make the object file like this: ld -r -b binary -o binary.o input.txt I then look objdump output to get the symbols: ...
10
votes
10answers
5k views

How to check my byte flag?

I use a byte to store some flag like : 10101010 and I would like to know how to verify that a specific bit is at 1 or 0.

1 2 3 4 5 44