19
votes
11answers
10k views
What is a good Windows hex editor / viewer?
I am in need of a hex editor / viewer (viewer is more important than editing, but a plus if it can edit) for Windows.
See KHexedit
Requirements:
Free is best
View data at cursor as: byte, short, …
18
votes
13answers
2k views
Why use hex?
Hey! I was looking at this code at http://www.gnu.org/software/m68hc11/examples/primes_8c-source.html
I noticed that in some situations they used hex numbers, like in line 134:
for (j = 1; val …
14
votes
3answers
7k views
Convert hex string to int in Python
How do I convert a hex string to an int in Python? I may have it as "0xffff" or just "ffff".
14
votes
6answers
6k views
How to convert decimal to hex in JavaScript?
How do you convert decimal values to their hex equivalent in JavaScript?
7
votes
14answers
1k views
Code golf - hex to (raw) binary conversion
In response to this question asking about hex to (raw) binary conversion, a comment suggested that it could be solved in "5-10 lines of C, or any other language."
I'm sure that for (some) scripting …
7
votes
3answers
1k views
What exactly is this batch file supposed to do?
What does this do in a .bat file?
Is it some sort of assembly language or what?
@debug <%0 >nul
e100 48 e6 61 be 3f 01 31 db 8a 1c 80 fb ff 74 f4 81
e110 c3 d0 00 b0 b6 e6 43 31 …
6
votes
9answers
312 views
Are there any good reasons for using hex over decimal for RGB colour values in CSS?
rgb(255,255,255) notation has been available since CSS1. But #fffff seems to be vastly more popular.
Obviously it's slightly more compact. I know that hex is more closely related to the underlying …
6
votes
6answers
244 views
Aesthetic Web Colors
What's a good resource for choosing aesthetically pleasing color combinations and themes? At the moment I'm using a color picker and stealing from various places. It's a hack.
5
votes
3answers
101 views
Encoding of … some sort?
Forgive me if this has been asked before, but I assure you I've scoured the internet and have turned up nothing, probably because I don't have the right terminology.
I would like to take an integer …
5
votes
4answers
119 views
Got a Hexademical “Name” Generator for fills?
This is a dumb question, admittedly, please don't hesitate to vote down. :)
I was debugging the other day and came across some memory- and register-fills I hadn't seen before on some embedded …
5
votes
6answers
2k views
How can i convert hex numbers to binary in c++?
I am taking a beginning c++ class, and would like to convert letters between hex representations and binary. I can manage to print out the hex numbers using:
for(char c = 'a'; c <= 'z'; c++){
…
5
votes
11answers
5k views
In Java, how do I convert a byte array to a string of hex digits while keeping leading zeros?
I'm working with some example java code for making md5 hashes. One part converts the results from bytes to a string of hex digits:
byte messageDigest[] = algorithm.digest();
StringBuffer …
5
votes
10answers
622 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
4answers
240 views
c why does this print a negative number?
I was expecting this to print a very large number and that same number -1 but it just prints -1 and -2, why is this?
fprintf(stderr, "%d\n", 0xffffffff);
fprintf(stderr, "%d\n", 0xfffffffe);
4
votes
3answers
221 views
Algorithm to create hex flood puzzle
I'm creating a puzzle game that, while playable by hand for easy levels, is meant to be solved by computer programs for harder ones. The puzzle is a flood fill on a hexagonal board. You can try a …
