I have a text file somewhere I wrote a year ago... let me find it.
Hmmm can't find it. It was a conversion table for Decimal, Octal and binary. I think I might have made it on my laptop actually... it had 1-10 in the three bases.
Conversion between base 2, 8, 10, & 16, is relatively easy, but its annoying... a task I would prefer to offload to a program. I actually started writing a conversion program for the hell of it a few days ago. It's about 50% complete.
It's not automatic if you need a conversion done. For example, I'm working with a mess of code that expresses all colors in base 16... well looking at it I don't know what the hell the number is so I'm going through and changing them all to base 10 to make more sense to me.
Edit: To clarify, the program I'm writing isn't some sort of conversion calculator where you enter the number, it was to make changes in bulk... then again now that I think about it I could just find and replace... damn.
Uh... Colors represented as numbers don't make much sense regardless of the base. Do you know what color is #4F89A0 (79.137.160)? Neither do I, but at least the former takes up less space. And the more obvious colors like gray (#808080) are easier to read in hex.
I used to be heavily into web development so unfortunately I have many colors memorized in RBG format not in hex. Not that I didn't use hexadecimal color codes, I just found it easier in RGB format.
It's already been posted, and it's not only not a joke, it's not even funny. Everyone here has seen that phrase no less than a hundred times. Any comedy value is long gone.
RGB is easier to remember than Hex numbers. By RGB I'm referring to something like RGB(255, 255, 255). Although technically #FFFFFF should be RGB(225, 225, 225) seeing as F is 15 and 152 is 225...