- Gecko Reflow Visualization
- css-stacking-contexts-wtf
- critical-rendering-path
- why-do-browsers-match-css-selectors-from-right-to-left
- getting-started-with-the-webkit-layout-code
- improving-css-performance-fixed-position-elements
- BlinkOn 5: Paint and Compositing Deep Dive
- a-quick-overview-of-chromes-rendering-path
- [render-blocking-css](https://developers.google.com/web/fundamentals/performance/critical-rendering-path/render-b
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| <style id="jsbin-css"> | |
| body { | |
| margin: 0; | |
| padding: 0; | |
| } |
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
| var getRejectedPromise = function(data){ | |
| if (typeof data !== 'undefined') { | |
| data = [].concat(data); | |
| } | |
| var deferred = new jQuery.Deferred(); | |
| deferred.reject.apply(deferred, data); | |
| return deferred.promise(); | |
| }; | |
| var getResolvedPromise = function(data){ |
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
| function createMe(config){ | |
| return { | |
| callMeString: function(){ | |
| console.log('who: ' + config); | |
| }, | |
| callMeObject: function(){ | |
| console.log('who: ' + (config && config.who)); | |
| } | |
| }; | |
| } |
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
| fetch('http://localhost:4000/generate', | |
| { | |
| method: "POST", | |
| headers: { | |
| "Content-type": "application/json; charset=UTF-8" | |
| }, | |
| body: JSON.stringify({a:1}) | |
| }) |
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
| angular.element(document.body).injector().get('serviceName'); |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body ng-app="myApp"> | |
| <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.0/angular.min.js"></script> | |
| <parent> |
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
| import React from 'react'; | |
| class A extends React.Component { | |
| render() { | |
| return ( | |
| <div> | |
| <h1>A</h1> | |
| <B/> | |
| </div> | |
| ); |
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
| import 'mocha'; | |
| import {expect} from 'chai'; | |
| import 'isomorphic-fetch'; | |
| import ApolloClient from 'apollo-client'; | |
| import gql from 'graphql-tag'; | |
| import {print} from 'graphql-tag/bundledPrinter'; | |
| describe('some test', () => { | |
| it('should pass', () => { |
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
| import React from 'react'; | |
| import PropTypes from 'prop-types'; | |
| import styled, {ThemeProvider} from 'styled-components'; | |
| // Button/Button.js (The basic component) | |
| const Button = ({className, children}) => ( | |
| <button className={className}> | |
| {children} | |
| </button> | |
| ); |
OlderNewer