6
votes
3answers
232 views
JPG+Zip File Combination Problem with Zip Format
Hopefully you've heard of the neat hack that lets you combine a JPG and a Zip file into a single file and it's a valid (or at least readable) file for both formats. Well, I realized that since JPG …
6
votes
3answers
343 views
C# - How do I read and write a binary file?
How do I read a raw byte array from any file, and write that byte array back into a new file?
6
votes
3answers
747 views
Git or Subversion for binary files
We need to store binary files (mostly MS Word documents, ranging from a couple of KB to a couple of MB in size) in a version control repository with over 100 "projects". Currently we use Visual Source …
5
votes
2answers
442 views
Evaluating HDF5: What limitations/features does HDF5 provide for modelling data?
We are in evaluating technologies that we'll use to store data that we gather during the analysis of C/C++ code. In the case of C++, the amount of data can be relatively large, ~20Mb per TU.
After …
5
votes
4answers
2k views
Managing large binary files with git
Hi there. I am looking for opinions of how to handle large binary files on which my source code (web application) is dependent. We are currently discussing several alternatives:
Copy the binary …
5
votes
7answers
869 views
What exactly causes binary file “gibberish”?
I haven't found an answer to this particular question; perhaps there isn't one. But I've been wondering for a while about it.
What exactly causes a binary file to display as "gibberish" when you look …
5
votes
10answers
647 views
Any Generic Utilities or Libraries for Converting Hex Dumps into Human-readable Form?
I work a lot with serial communications with a variety of devices, and so I often have to analyze hex dumps in log files. Currently, I do this manually by looking at the dumps, looking at the …
4
votes
7answers
456 views
How should I save a file in OpenOffice so that it is not a binary file in Subversion?
I'm working on an Open Office document with a partner and we are using subversion to collaborate on it. However, we are saving the document as a .odt file and subversion reads this as a binary file …
4
votes
1answer
303 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
4answers
181 views
Most efficient way of loading formatted binary files in Python
I have binary files no larger than 20Mb in size that have a header section and then a data section containing sequences of uchars. I have Numpy, SciPy, etc. and each library has different ways of …
4
votes
10answers
566 views
What to put in a binary data file’s header
I have a simulation that reads large binary data files that we create (10s to 100s of GB). We use binary for speed reasons. These files are system dependent, converted from text files on each system …
3
votes
4answers
432 views
How to reverse engineer binary file formats for compatibility purposes
I am working of a file preparation software to enable translators work easily and efficiently on a wide range of file formats.
As far as text-based formats (xml, php, resource files,...) are …
3
votes
2answers
945 views
How can I stream an XPS document to a browser and embed it in a webpage?
I'm looking for some suggestions on how to go about this. Any input is appreciated!
Currently, I have an ASP.NET MVC application. On the client, I have a link with an ID of an XPS document. When …
3
votes
4answers
619 views
Programmatically determine video file format?
Ok, I get the basics of video format - there are some container formats and then you have core video/audio formats. I would like to write a web based application that determines what video/audio codec …
2
votes
2answers
52 views
How to read a binary file and display the output as a float in C?
Hi,
I'm trying to read 4-byte numbers stored in a binary file, but I don't seem to be getting the correct output. Here's my code:
#include <stdio.h>
#include <stdlib.h>
int main ()
{
…
