24 Matching Annotations
- Apr 2022
-
edgeguides.rubyonrails.org edgeguides.rubyonrails.org
-
They coincide in most cases, but they don't if there are series of consecutive uppercase letters as in "HTMLParser"
-
- Jan 2022
-
github.com github.com
-
just a nit... make the values lower-case. They tend to be easier for users. --unhandled-rejections=error_on_gc
-
- Jun 2021
-
naildrivin5.com naildrivin5.com
-
It also makes your code harder to follower because you are using SCREAMING_SNAKE_CASE instead of nice, readable methods.
-
- Apr 2021
-
en.wikipedia.org en.wikipedia.org
-
STREAMS originated in Version 8 Research Unix, as Streams (not capitalized).
-
- Mar 2021
-
hyperstack.org hyperstack.org
-
Notice that the HTML elements (BUTTON, DIV, etc.) are in CAPS. We know this is bending the standard Ruby style rules slightly, but we think it reads better this way.
-
- Jan 2021
-
material.io material.ioButtons2
-
Text labels can be written in sentence case, as long as the button is clearly distinguishable from elements around it.
-
CautionText labels need to be distinct from other elements. If the text label isn’t fully capitalized, it should use a different color, style, or layout from other text.
-
- Dec 2020
- Nov 2020
-
stackoverflow.com stackoverflow.com
-
As was mentioned in the comments above, the material design spec for buttons specifies that the text should be uppercase, but you can easily override its CSS property: paper-button { text-transform: none; }
-
No, this is not specified. The spec even says that contained buttons can be in sentence case
-
-
uxdesign.cc uxdesign.cc
-
Sentence case, e.g. ‘Next section’. I use sentence case for more ‘friendly’ or ‘conversational’ platforms.
-
Note: Yes, it is sentence case, and yes, there should be a full stop if it was true sentence case — but for the love of all things good and designy, please don’t add a full stop.
-
Choose sentence case or title case over uppercase. (This being said, Material Design does use buttons with uppercase labels.)
-
-
www.npmjs.com www.npmjs.com
-
const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin')
-
- Sep 2020
-
daveceddia.com daveceddia.com
-
The only difference is that they’re named with camelCase like onClick, onFocus, onDragEnter instead of the all-lowercase names from HTML (onclick, onfocus, ondragenter).
-
- Aug 2020
-
docs.gitlab.com docs.gitlab.com
-
MinIO (needs capital IO)
-
- Jul 2020
-
svelte.dev svelte.devSvelte1
-
Also notice that the component name Nested is capitalised. This convention has been adopted to allow us to differentiate between user-defined components and regular HTML tags.
Tags
Annotators
URL
-
- Apr 2020
-
www.2ndquadrant.com www.2ndquadrant.com
-
cross join lateral
-
-
github.com github.com
-
Then I modeled the the contributing.md and development.md after bundler's files and they use uppercase for those and so I did.
-
- Feb 2020
-
www.w3.org www.w3.org
- Nov 2019
-
stackoverflow.com stackoverflow.com
-
When you need to proxy HTTPS traffic, the environment variable is upper case: HTTPS_PROXY
-
From the man pages The environment variables can be specified in lower case or upper case. The lower case version has precedence. http_proxy is an exception as it is only available in lower case. Using an environment variable to set the proxy has the same effect as using the --proxy option
-
- Aug 2019
-
www.smashingmagazine.com www.smashingmagazine.com
-
All-capitalized letters are hard to read.
-