https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>IncompatiblePaths</key> | |
<array> | |
<dict> | |
<key>Application Name</key> | |
<string>Sxs Memory Card Driver</string> | |
<key>Blurb</key> |
import PropTypes from 'prop-types'; | |
type Omit<T, K> = Pick<T, Exclude<keyof T, K>>; | |
type Defined<T> = T extends undefined ? never : T; | |
/** | |
* Get the type that represents the props with the defaultProps included. | |
* | |
* Alternatively, we could have done something like this: |
[@bs.val] [@bs.scope ("module")] | |
external isHotEnabled : bool = "hot"; | |
[@bs.val] [@bs.scope ("module", "hot")] external hotAccept : unit => unit = "accept"; | |
ReactDOMRe.renderToElementWithId(<App />, "root"); | |
if (isHotEnabled) { | |
hotAccept(); | |
} |
Can micromatch be used as a drop-in replacement for minimatch?
For mainstream features, I tried to keep as much parity as possible between micromatch and minimatch. But there are some differences.
- the main minimatch function,
minimatch()
, works likemicromatch.isMatch()
- the main micromatch function,
micromatch()
, works like multimatch, with support for multiple patterns.
2015-01-29 Unofficial Relay FAQ
Compilation of questions and answers about Relay from React.js Conf.
Disclaimer: I work on Relay at Facebook. Relay is a complex system on which we're iterating aggressively. I'll do my best here to provide accurate, useful answers, but the details are subject to change. I may also be wrong. Feedback and additional questions are welcome.
Relay is a new framework from Facebook that provides data-fetching functionality for React applications. It was announced at React.js Conf (January 2015).
Native HTML controls are a challenge to style. You can style any element in the web platform that uses Shadow DOM with a pseudo element ::pseudo-element
or the /deep/
path selector.
video::webkit-media-controls-timeline {
background-color: lime;
}
video /deep/ input[type=range] {
{ | |
"cssconf": { | |
"location": { | |
"date": "September 12, 2014", | |
"country": "Germany", | |
"city": "Berlin", | |
"venue": "Radialsystem V", | |
"lat": 52.51039, | |
"long": 13.42864 | |
}, |
- use a build process
- Gulp
- Grunt
- Lint the shit out of everything
- CSS
- Coffeescript
- Javascript
- es6
- HTML
- Only code with 0 Lint error passes build