This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| echo "y" | android update sdk --no-ui; echo "yes" | apm upgrade; softwareupdate -i -a; brew update; brew upgrade; brew cleanup; brew cask cleanup; npm update npm -g; npm update -g; gem update |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Compatible with Bootstrap 3 and 4 */ | |
| body.modal-open > :not(.modal) { | |
| -webkit-filter: blur(1px); | |
| -moz-filter: blur(1px); | |
| -o-filter: blur(1px); | |
| -ms-filter: blur(1px); | |
| filter: blur(1px); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <header> | |
| <h1>SITE TITLE</h1> | |
| <nav> | |
| <ul> | |
| <li><a href="#">HOME</a></li> | |
| <li><a href="#">ABOUT</a></li> | |
| <li><a href="#">SERVICES</a></li> | |
| <li><a href="#">CONTACT</a></li> | |
| </ul> | |
| </nav> |
any: magic, ill-behaved type that acts like a combination ofnever(the proper [bottom type]) andunknown(the proper [top type])- Anything except
neveris assignable toany, andanyis assignable to anything at all. - Identities:
any & AnyTypeExpression = any,any | AnyTypeExpression = any - Key TypeScript feature that allows for [gradual typing].
- Anything except
unknown: proper, well-behaved [top type]- Anything at all is assignable to
unknown.unknownis only assignable to itself (unknown) andany. - Identities:
unknown & AnyTypeExpression = AnyTypeExpression,unknown | AnyTypeExpression = unknown
- Anything at all is assignable to
- Prefer over
anywhenever possible. Anywhere in well-typed code you're tempted to useany, you probably wantunknown.
