Earlier quoted context omitted.
Yes but you grew up typing hex codes into a home computer connected to a tape drive. You know what 8192 looks like in binary but everything beyond 65535 you struggle with because you didn't have the registers for that on your 6502A. It probably irritates you to see images scaled to 1000 pixels rather than 1024. What about that jpeg cell that is not 8 pixels square? Think of the computational overhead and the need to…
> I think is important but it seems most front end developers would prefer not to know. This is my experience. There are two types of people in this industry, people who want to make money quick and those who are technologists.
#c0ffee is the color
101–110 of 127 posts
Re: #c0ffee is the color
#102Earlier quoted context omitted.
Yes but you grew up typing hex codes into a home computer connected to a tape drive. You know what 8192 looks like in binary but everything beyond 65535 you struggle with because you didn't have the registers for that on your 6502A. It probably irritates you to see images scaled to 1000 pixels rather than 1024. What about that jpeg cell that is not 8 pixels square? Think of the computational overhead and the need to…
> I think is important but it seems most front end developers would prefer not to know. This is my experience. There are two types of people in this industry, people who want to make money quick and those who are technologists.
Re: #c0ffee is the color
#103Nice. One oddity: for some reason, the site's CSS makes text selection highlights invisible. If you select text, the selection looks identical to unselected text, though copy/paste still works. Also, the color boxes appear to be editable text areas: if you click on one, you can backspace or Ctrl-U and the text of the color vanishes, until you hover/unhover it again and the text gets reset (because of the 1337/LEET tr…
They seem to have intentionally done this, by setting ::selection to transparent. I don't understand why some people think this is a good ideal, for colorblind people this is a real nuisance.
Re: #c0ffee is the color
#104SAFEST is a decent green and ACIDIC is a decent red -- probably going to use these instead of #f00 and #0f0 next time I need success/failure color codes for some hastily-made web thing.
Re: #c0ffee is the color
#105Re: #c0ffee is the color
#106Re: #c0ffee is the color
#107Re: #c0ffee is the color
#108Earlier quoted context omitted.
Hmm. I've always wanted to parse colours in my head. How do you do that?
These CSS colors consist of 3 bytes in hex, the first gives the red value, second green and the last is blue. So: #FF0000 = 0xFF, 0x00, 0x00, which is pure red #0000FF = 0x00, 0x00, 0xFF, which is pure blue #FF00FF = 0xFF, 0x00, 0xFF, which is red and blue mixed, so it's purple (violet) #FFFFFF = 0xFF, 0xFF, 0xFF, all colors combined is white etc #C0FFEE = 0xC0, 0xFF, 0xEE, so by 'parsing' it in your head yo can see…
Re: #c0ffee is the color
#109Earlier quoted context omitted.
These CSS colors consist of 3 bytes in hex, the first gives the red value, second green and the last is blue. So: #FF0000 = 0xFF, 0x00, 0x00, which is pure red #0000FF = 0x00, 0x00, 0xFF, which is pure blue #FF00FF = 0xFF, 0x00, 0xFF, which is red and blue mixed, so it's purple (violet) #FFFFFF = 0xFF, 0xFF, 0xFF, all colors combined is white etc #C0FFEE = 0xC0, 0xFF, 0xEE, so by 'parsing' it in your head yo can see…
Yes but you grew up typing hex codes into a home computer connected to a tape drive. You know what 8192 looks like in binary but everything beyond 65535 you struggle with because you didn't have the registers for that on your 6502A. It probably irritates you to see images scaled to 1000 pixels rather than 1024. What about that jpeg cell that is not 8 pixels square? Think of the computational overhead and the need to…
Moreover, RGB isn't great at all. We need "10% lighter than deep purple", not #ec12e4. All the mind-calc is done in these terms anyway.
Re: #c0ffee is the color
#110Earlier quoted context omitted.
Yes but you grew up typing hex codes into a home computer connected to a tape drive. You know what 8192 looks like in binary but everything beyond 65535 you struggle with because you didn't have the registers for that on your 6502A. It probably irritates you to see images scaled to 1000 pixels rather than 1024. What about that jpeg cell that is not 8 pixels square? Think of the computational overhead and the need to…
I'm sorry, but if you don't know how to read simple hex numbers for colours, and you're unwilling to learn, you probably shouldn't be in this game. It's like when people complain that they failed to install desktop Linux in the last couple of years - sure in the 90s that was a very valid complaint, and early last decade it was tricksy too. But now? It says more about them.
The fact that users cannot just install the OS and use it after 2+ decades says more about OS, not about users.