| Crates.io | huedump |
| lib.rs | huedump |
| version | 0.1.2 |
| created_at | 2018-05-27 16:31:19.258119+00 |
| updated_at | 2019-03-31 16:10:34.349739+00 |
| description | A hex/binary/octal/decimal dump generator that colours all bytes with a different colour! |
| homepage | |
| repository | https://github.com/EvilRobotOverlord/huedump |
| max_upload_size | |
| id | 67317 |
| size | 8,113 |
A file dump creator that cycles through hues to colour each byte! Because why not?

Special mention to @STPR for deciphering the text in that GIF and posting it here (I must say, I'm impressed; I didn't expect anyone to automate the process like that).
cargo install huedump (It's that simple!)Thanks to this great library called clap, you can just do huedump --help for detailed help. Here's a short version:
huedump <FILE> [--encoding=ENCODING]
Where ENCODING is anyone of:
hex for hexadecimal (default)bin for binarydec for decimaloct for octal<FILE> is the path to the file you want to dump. Any path works fine!
Here's how you dump ~/file.dat in decimal (LINUX).
huedump ~/file.dat --encoding=dec
Here's the same thing in Windows.
huedump C:/Users/<your username here>/file.dat --encoding=dec
This works on files in the same directory you're in too. Relative paths are allowed.
cd ~
huedump file.dat --encoding=dec