Top "Binary-data" questions

Binary-data is information stored using a two character alphabet (typically written using 0 and 1)

Error! blahfile is not UTF-8 encoded. Saving disabled

So, I'm trying to write a gzip file, actually from the net, but to simplify I wrote some very basic …

python jupyter-notebook gzip jupyter binary-data
what is binary data?

gcc 4.6.0 What does binary data look like? Is it all 1's and 0's. I was just wondering, as I was …

c binary-data data-representation
How to best get a byte array from a ClientResponse from Spring WebClient?

I'm trying out the new WebClient from Spring 5 (5.0.0.RC2) in a codebase that uses reactive programming and I've had success …

java spring protocol-buffers reactive-programming binary-data
vector <unsigned char> vs string for binary data

Which is a better c++ container for holding and accessing binary data? std::vector<unsigned char> or std::…

c++ string stl vector binary-data
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 …

sql mysql hash binary-data hamming-distance
Split binary data into byte array in Perl

I basically wanted to convert a binary string to an array/list of bytes (so as to allow indexing, and …

perl split binary-data unpack
What's the difference between "VARCHAR BINARY" and "VARBINARY" in MySQL?

I've created the following test table: CREATE TABLE t ( a VARCHAR(32) BINARY, b VARBINARY(32) ); INSERT INTO t (a, b) VALUES ( …

mysql collation binary-data
C#/.NET - Custom Binary File Formats - Where to Start?

I need to be able to store some data in a custom binary file format. I've never designed my own …

.net file binary file-format binary-data
StreamReader and binary data

I have this text file what contains different fields. Some fields may contain binary data. I need to get all …

c# .net binary-data streamreader
Does the mysql CLI tool provide a way to display binary data in a console-friendly manner?

I have a MySQL database containing a table with a binary-typed column. I'd like to be able to project that …

mysql console binary-data