Tagged Questions
The binary-data tag has no wiki summary.
30
votes
8answers
1k views
Space-efficient algorithm for finding the largest balanced subarray?
given an array of 0s and 1s, find maximum subarray such that number of zeros and 1s are equal.
This needs to be done in O(n) time and O(1) space.
I have an algo which does it in O(n) time and O(n) ...
22
votes
8answers
3k views
15
votes
7answers
7k views
Best way to read a large file into byte array in C#?
I have a web server which will read large binary files (several megs) into byte arrays. The server could be reading several files at the same time (different page requests) so I am looking for the ...
14
votes
10answers
2k views
Calculating Binary Data Similarity
I've seen a few questions here related to determining the similarity of files, but they are all linked to a particular domain (images, sounds, text, etc). The techniques offered as solutions require ...
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 ...
12
votes
2answers
368 views
How do I create a progress bar for data loading in R?
Is it possible to create a progress bar for data loaded into R using load()?
For a data analysis project large matrices are being loaded in R from .RData files, which take several minutes to load. I ...
11
votes
3answers
142 views
Fastest way to read many 300 bytes chunks randomly by file offset from a 2TB file?
I have some 2TB read only (no writing once created) files on a RAID 5 (4 x 7.2k @ 3TB) system.
Now I have some threads that wants to read portions of that file.
Every thread has an array of chunks it ...
11
votes
11answers
997 views
What language is to binary, as Perl is to text?
I am looking for a scripting (or higher level programming) language (or e.g. modules for Python or similar languages) for effortlessly analyzing and manipulating binary data in files (e.g. core ...
10
votes
10answers
5k views
Would you store binary data in database or in file system?
This is a question which has been asked before (large-text-and-images-in-sql) but mainly for data which will be changed. In my case the data will be stored and never changed. Just seems sensible to ...
9
votes
3answers
338 views
Fast way to read interleaved data?
I've got a file containing several channels of data. The file is sampled at a base rate, and each channel is sampled at that base rate divided by some number -- it seems to always be a power of 2, ...
9
votes
3answers
1k views
Accessing binary data from Javascript, Ajax, IE: can responseBody be read from Javascript (not VB)?
First of all, I am aware of this question:
http://stackoverflow.com/questions/1095102/how-do-i-load-binary-image-data-using-javascript-and-xmlhttprequest
and specifically best answer therein, ...
9
votes
7answers
4k views
Are there any Java Frameworks for binary file parsing?
My problem is, that I want to parse binary files of different types with a generic parser which is implemented in JAVA. Maybe describing the file format with a configuration file which is read by the ...
8
votes
3answers
283 views
Sending binary data over http
I am looking for suggestions on the best way to send/receive data from a remote GPRS device, over port 80.
Creating a plain TCP socket on a random port works fine, but many carriers only allow port ...
8
votes
2answers
714 views
Hamming distance on binary strings in SQL
I have a table in my DB where I store SHA256 hashes in a BINARY(32) column. I'm looking for a way to compute the Hamming distance of the entries in the column to a supplied value, i.e. something like:
...
8
votes
4answers
9k views
“Proper” way to store binary data with C++/STL
In general, what is the best way of storing binary data in C++? The options, as far as I can tell, pretty much boil down to using strings or vector<char>s. (I'll omit the possibility of char*s ...
7
votes
2answers
1k views
Line reading chokes on 0x1A
I have the following file:
abcde
kwakwa
<0x1A>
line3
linllll
Where <0x1A> represents a byte with the hex value of 0x1A. When attempting to read this file in Python as:
for line in ...
7
votes
7answers
385 views
How would you go about reverse engineering a set of binary data pulled from a device?
A friend of mine brought up this questiont he other day, he's recently bought a garmin heart rate moniter device which keeps track of his heart rate and allows him to upload his heart rate stats for a ...
6
votes
1answer
864 views
Handling BLOBs in Entity Framework 4.0 in a stream-fashion
Is it possible to handle (read and write) binary data to SQL Server using Entity Framework 4.0 using streams? (i.e.: not the whole content shipped in a byte array)
An example could be taken from ...
6
votes
2answers
3k views
Transfer raw binary with apache commons-net FTPClient?
UPDATE: Solved
I was calling FTPClient.setFileType() before I logged in, causing the FTP server to use the default mode (ASCII) no matter what I set it to. The client, on the other hand, was behaving ...
6
votes
4answers
798 views
How to serve a file with JSP?
This may sound totally stupid, but is a case of real life :(
I'm able to display a HTML table with a "virtual" link name.
Something like this:
Xyz description <a ...
5
votes
8answers
167 views
Could someone kindly explain to me exactly how “binary” numbers relate to my everyday programming?
I'll admit it - i'm a "lowly web programmer" who is trying very hard to develop a much deeper understanding of programming as a whole. I understand the textbook definition of "Binary", but what I ...
5
votes
3answers
208 views
Inserters and Extractors reading/writing binary data vs text
I've been trying to read up on iostreams and understand them better. Occasionally I find it stressed that inserters (<<) and extractors (>>) are meant to be used in textual serialization. ...
5
votes
2answers
190 views
Accessing bitfields while reading/writing binary data structures
I'm writing a parser for a binary format. This binary format involves different tables which are again in binary format containing varying field sizes usually (somewhere between 50 - 100 of them).
...
5
votes
4answers
106 views
bash/unix toolchain binary stream processing/slicing
I have a binary stream on standard input, it's in a fixed size format, a continuos stream of packets, each packet has a header with length X and a body with length Y.
So if X=2 Y=6 then it's ...
5
votes
1answer
306 views
How to convert Mathematica binary dump file to list of definitions?
As the Documentation says, "DumpSave writes out definitions in a binary format that is optimized for input by Mathematica." Is there a way to convert a Mathematica binary dump file back to the list of ...
5
votes
4answers
342 views
C++: How to add raw binary data into source?
I have a binary file which i want to embed directly into my source code, so it will be compiled into the .exe file directly, instead of reading it from a file, so the data would already be in the ...
5
votes
6answers
197 views
General question about Binary files
I am a beginner and I am having trouble in grasping binary files. When I write to a file in binary mode (in python), I just write normal text. There is nothing binary about it. I know every file on my ...
5
votes
1answer
164 views
Identify the number of elements in a python struct/pack fmt string?
When using the python struct module on can specify a format string that declares how binary data should be interpreted:
>>> from struct import *
>>> fmt = 'hhl'
>>> values ...
5
votes
3answers
990 views
Reading a CR2 (Raw Canon Image) header using Python
I'm trying to extract the date/time when a picture was taken from the CR2 (Canon format for raw pictures).
I know the CR2 specification, and I know I can use Python struct module to extract pieces ...
5
votes
2answers
1k views
How to Embed/Link binary data into a C++ DLL
So I have a Visual Studio 2008 project which has a large amount of binary data that it is currently referencing. I would like to package the binary data much like you can do with C# by adding it as a ...
5
votes
5answers
3k views
Storing PDF files as binary objects in SQL Server, yes or no?
I have to find a design decision for the following task:
I have a SQL Server database and it contains a table of orders. PDF documents will be uploaded by users through a simple file upload from a ...
5
votes
3answers
519 views
Reverse engineering a statistics data file from my insulin pump controller
This may or may not be a grey area subject, though my intentions are certainly not, so my intention is not to stir up an ethical debate on the topic of reverse engineering.
I'm a type 1 diabetic ...
4
votes
1answer
78 views
How to preserve sensitive information in Client-Side-Binary?
I look forward to develop an android / iphone application, those will be using a private API (Non-Free) with embedded client-key.
Now, since it is possible to reverse-engineer application binaries ...
4
votes
1answer
71 views
How to extract hardcoded strings from a binary in Mac?
Is there API available in any language that can run on a Mac (Perl/Python/Cocoa/etc) or command line tools you can use to load a binary (app/bundle/framework/etc) and extract the hard-coded strings ...
4
votes
2answers
173 views
PHP Curl returning inconsistent data for XML feed
I'm working on a XML reader and am running into a odd issue with a few feeds. Using CURL or even file_get_contents the feeds load as binary data more often than real data. Whenever I load the feed in ...
4
votes
1answer
232 views
Framework for building structured binary data parsers?
I have some experience with Pragmatic-Programmer-type code generation: specifying a data structure in a platform-neutral format and writing templates for a code generator that consume these data ...
4
votes
2answers
251 views
Can I use C# Serialization to read a binary file in custom format?
I have a custom binary file which I want to read into my C# program.
There are several different formats, some MSB first, some LSB first and some with the variables in different orders.
Currently, I ...
4
votes
1answer
547 views
How to process large binary data in Clojure?
How does one process large binary data files in Clojure? Let's assume data/files are about 50MB - small enough to be processed in memory (but not with a naive implementation).
The following code ...
4
votes
2answers
289 views
Best way to bundles photos with app: files or in sqlite database?
Lets say that I have an app that lets you browse through a listing of cars found in a Sqlite database. When you click on a car in the listing, it'll open up a view with the description of the car and ...
4
votes
4answers
455 views
Parallel Binary DeSerialization?
I have a solution where I need to read objects into memory very quickly, however the binary stream might be cached compressed in memory to save time on disk io.
I've tinkered around with different ...
4
votes
2answers
1k views
how to parse binary files in Clojure
What is the cleanest way to parse binary data in clojure?
I need to be able to read/write equally cleanly to a file or a socket.
something like:
(read-data source-of-data)
=> { :index 42 , ...
4
votes
6answers
482 views
Storing data packets in a database
Problem description:
In my application, I have to present the contents of data packets with a certain format. An example:
An example
Any packed binary data, for example: 4 byte header, 4 byte type ...
4
votes
4answers
2k views
Is there any perfomormance differences between binary and XML serialization?
in terms of both parsing (serializing, deserializing) and sending packets over the network is there any good estimation of performance differences between binary and xml serialization?
3
votes
4answers
22 views
Delimiting binary sequences
I need to be able to delimit a stream of binary data. I was thinking of using something like the ASCII EOT (End of Transmission) character to do this.
However I'm a bit concerned -- how can I know ...
3
votes
2answers
54 views
Binary File Deserialization using PtrToStructure in C#
I'm trying to reverse engineer a bunch of legacy binary data at my company, so that I can move it into a more durable format. The application we used to create this data is no longer supported.
I ...
3
votes
3answers
168 views
Translating a C binary data read function to Python
(I've edited this for clarity, and changed the actual question a bit based on EOL's answer)
I'm trying to translate the following function in C to Python but failing miserably (see C code below). As I ...
3
votes
1answer
189 views
Huffman encoding: how to write binary data in Python
I have tried methods using the struct module, as shown by the lines commented out in my code, but it didn't work out. Basically I have two options: I can either write the binary data code by code (my ...
3
votes
2answers
229 views
JavaScript pack integers and calculate arbitrary precision float:
I need to do the following in JavaScript and so far been unable to find solutions to do it seamlessly:
Grab two integers in a specific order and pack them like Python's struct module.
This packed ...
3
votes
1answer
202 views
extracting the first 32 bits of ASCII integer
You have an ASCII string representing a 128-bit unsigned integer number n, i.e. 0 <= n < 2^128.
Give an algorithm to extract the most significant 32 bits of the binary representation of n and ...
3
votes
1answer
158 views
Parsing binary data in JavaScript
I want to design and write a 3d image viewing web application in JavaScript. I've already written it in java and flash and basically want to port it. I want the 3d image export files to be in a binary ...