A Pen by Alain Armand on CodePen.
This file contains 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
<div class="square"> | |
<h2>B</h2> | |
</div> |
This file contains 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
``` | |
Unexpected fatal error! Please report this to us. | |
Fuse 0.27.1 (build 7935) | |
Build started: FullCompile | |
Configuring (6.7s) | |
Compiling syntax tree (2.4s) | |
Generating code and data (7.1s) | |
Build completed in 16.47 seconds | |
Build ended | |
GL_VERSION: 2.1 INTEL-10.14.73 |
This file contains 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
curl -v -H "Accept: application/json" -H "Content-type: application/json" -X POST -d '{"userid": "mohit", "password":"password"}' http://mmedwebdemo.ddns.comp.nus.edu.sg:8080/comp.nuhs.jaxb/api/usr/login |
This file contains 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
//CleanJS- https://github.com/bodil/eslint-config-cleanjs | |
``` | |
npm install --save-dev eslint eslint-plugin-fp eslint-plugin-better eslint-plugin-import eslint-config-cleanjs | |
``` | |
//Standard - https://github.com/feross/eslint-config-standard/blob/master/README.md | |
``` | |
npm install --save-dev eslint eslint-config-standard eslint-plugin-standard eslint-plugin-promise |
This file contains 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
/* @flow */ | |
import { Observable, Disposable, ReplaySubject } from 'rx'; | |
import mongo from 'mongodb'; | |
import { dbUrl } from './config'; | |
import { assign } from 'lodash'; | |
class QueryBuilder { | |
_db$: Observable; | |
_selectors: Object; |
This file contains 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
/* eslint-disable no-class-assign */ | |
/* original code: https://github.com/jscomplete/learning-graphql-and-relay/blob/chapter7/js/app.js*/ | |
import React from 'react'; | |
import ReactDOM from 'react-dom'; | |
import Relay from 'react-relay'; | |
import { debounce } from 'lodash'; | |
import SearchForm from './search-form'; | |
import Quote from './quote'; | |
class QuotesLibrary extends React.Component { |
This file contains 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
/* eslint-disable no-use-before-define */ | |
/*eslint no-case-declarations: "error"*/ | |
/*eslint-env es6*/ | |
/* /schema/main.js: refactor of https://github.com/jscomplete/learning-graphql-and-relay/blob/chapter7/schema/main.js */ | |
const { | |
GraphQLSchema, | |
GraphQLObjectType, | |
GraphQLString, |
This file contains 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 { Component } from "React"; | |
export var Enhance = ComposedComponent => class extends Component { | |
constructor() { | |
this.state = { data: null }; | |
} | |
componentDidMount() { | |
this.setState({ data: 'Hello' }); | |
} | |
render() { |
This file contains 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
query App_ViewerRelayQL($id_0:ID!) { | |
node(id:$id_0) { | |
...F2 | |
} | |
} | |
fragment F0 on Quote { | |
id, | |
likesCount | |
} | |
fragment F1 on Quote { |