-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Why all use binary files, if all can use XML ?
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
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 files by hand.
Pro: Not sure.
Contra: I am strongly against this, as it increases the likelihood of errors…
>>> More
-
as seen on Super User
- Search for 'Super User'
I need to compare two binary files and get output in form
for every different byte. So if file1.bin is
00 90 00 11
in binary form
and file2.bin is
00 91 00 10
I want to get something like
00000001 90 91
00000003 11 10
what is the easiest way to accomplish the goal? Standard…
>>> More
-
as seen on Super User
- Search for 'Super User'
What would be the easiest way of veryfying whether two binary files are the same, without actually opening them, checking versions and such in different programs ... ?
I primary mean files like 3d models, acad drawings, and the like, of which I have different versions, saved in different directories…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
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, out-of-order segments, etc.
Is there an ability to do this or a similar, alternative package that does this…
>>> More