Posts: 15351
Threads: 118
Joined: January 13, 2014
Reputation:
117
RE: Is there any way to permanently disable the WYSIWYG editor?
July 21, 2016 at 3:57 am
I pretty much always use the quick reply box, so it's never an issue for me. Even quoting, I'll use the quote function rather than reply.
"There remain four irreducible objections to religious faith: that it wholly misrepresents the origins of man and the cosmos, that because of this original error it manages to combine the maximum servility with the maximum of solipsism, that it is both the result and the cause of dangerous sexual repression, and that it is ultimately grounded on wish-thinking." ~Christopher Hitchens, god is not Great
PM me your email address to join the Slack chat! I'll give you a taco(or five) if you join! --->There's an app and everything!<---
Posts: 981
Threads: 74
Joined: July 1, 2015
Reputation:
10
RE: Is there any way to permanently disable the WYSIWYG editor?
July 22, 2016 at 8:50 pm
(July 21, 2016 at 2:31 am)Thumpalumpacus Wrote: unless it's for color, no one know all those goddamned alphanumerics I know by heart the codes for my favorite formatting colors. 0000FF is for blue, FF00FF is for pink, FF0000 is for red and 0000FF is for yellow. And, of course, everyone knows the black color - 000000.
Posts: 19644
Threads: 177
Joined: July 31, 2012
Reputation:
92
RE: Is there any way to permanently disable the WYSIWYG editor?
July 23, 2016 at 10:29 am
(This post was last modified: July 23, 2016 at 10:30 am by pocaracas.)
Those codes represent something.
Each two "digits" encode one of the RGB colors.
They use hexadecimal notation, so they go from 0 to F (0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F).
00 is the decimal zero.
F is the decimal 15.
10 is the decimal 16.
1F is the decimal 31.
FF is the decimal 255.
Each of the Red-Green-Blue colors are encoded in 8 bits which span, in decimal, from 0 to 255, or in hexadecimal, from 0 to FF.
The first set of two hex digits refers to the Red color, the second set refers to the green and the rightmost set is for blue.
FF0000 gives you red
Anything else in those FF, like D40000, we'll give you a darker red.
00FF00 will give you green.
0000FF will give you blue.
Then you just need to mix and match.
Green and blue give you cyan, right? 00FFFF.
Red and green go for yellow tones. FFFF00.
Red and blue? Magenta.
Curious how these mixes are the primary colors used on printers.
Last, but not least, FFFFFF is white.
[This lecture brought to you by poca university]
Posts: 23069
Threads: 26
Joined: February 2, 2010
Reputation:
106
RE: Is there any way to permanently disable the WYSIWYG editor?
July 23, 2016 at 10:55 am
(July 22, 2016 at 8:50 pm)Atheist_BG Wrote: (July 21, 2016 at 2:31 am)Thumpalumpacus Wrote: unless it's for color, no one know all those goddamned alphanumerics I know by heart the codes for my favorite formatting colors. 0000FF is for blue, FF00FF is for pink, FF0000 is for red and 0000FF is for yellow. And, of course, everyone knows the black color - 000000.
I didn't know any of those.
Posts: 23069
Threads: 26
Joined: February 2, 2010
Reputation:
106
RE: Is there any way to permanently disable the WYSIWYG editor?
July 23, 2016 at 10:57 am
(July 23, 2016 at 10:29 am)pocaracas Wrote: Those codes represent something.
Each two "digits" encode one of the RGB colors.
They use hexadecimal notation, so they go from 0 to F (0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F).
00 is the decimal zero.
F is the decimal 15.
10 is the decimal 16.
1F is the decimal 31.
FF is the decimal 255.
Each of the Red-Green-Blue colors are encoded in 8 bits which span, in decimal, from 0 to 255, or in hexadecimal, from 0 to FF.
The first set of two hex digits refers to the Red color, the second set refers to the green and the rightmost set is for blue.
FF0000 gives you red
Anything else in those FF, like D40000, we'll give you a darker red.
00FF00 will give you green.
0000FF will give you blue.
Then you just need to mix and match.
Green and blue give you cyan, right? 00FFFF.
Red and green go for yellow tones. FFFF00.
Red and blue? Magenta.
Curious how these mixes are the primary colors used on printers.
Last, but not least, FFFFFF is white.
[This lecture brought to you by poca university]
So is this industry standard or peculiar to this software?
Posts: 19644
Threads: 177
Joined: July 31, 2012
Reputation:
92
RE: Is there any way to permanently disable the WYSIWYG editor?
July 23, 2016 at 1:05 pm
(July 23, 2016 at 10:57 am)Thumpalumpacus Wrote: So is this industry standard or peculiar to this software?
Industry standard.
Works on HTML, and the forum operates by generating HTML.
Works on other computer graphics software.... but sometimes, they'll use different color bit-depths.
The normal, for JPEGs and PNG files is the 24 bit color I explained above. 24 bits = 3x8bytes.
PNGs have an extra byte (8 bits), for an overall total of 32bit colors, but the extra byte is only taking care of the transparency level, where, if my memory serves me right, FF corresponds to an opaque color and 00 to a fully transparent color.
For example: FF0000FF is the standard blue, 80FF0000 is a half transparent red, 00FFFFFF is a fully transparent black
GIF files work with a 256 color palette, and some of those can be transparent, so the encoding is different.
On photoshop (and other image manipulation programs), you can increase the color bit-depth of an image, so you can have 12 or 16 bits per color, instead of the normal 8-bits, but the standard person isn't sensitive to these gradations.
|