View graphiql-latest.html
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>GraphiQL</title> | |
<meta name="robots" content="noindex" /> | |
<style> | |
html, body { | |
height: 100%; | |
margin: 0; |
View Makefile
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
front-server: | |
webpack-dev-server --config _dev/webpack/devserver.config.js --colors --port 9020 --hot | |
front-build: | |
webpack --config _dev/webpack/production-config.js |
View AutogrowingTextarea.js
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
"use strict"; | |
import React, {Component} from 'react'; | |
import calcContentHeight from './dom-textarea-measure'; | |
class AutogrowingTextarea extends Component { | |
constructor(props) { | |
this.props = props; | |
this.state = {}; | |
this.textareaProps = sanitizeChildProps(props); |
View ORMExpression.php
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
<?php | |
namespace Foo\Core\Doctrine; | |
use Doctrine\ORM\Query\Expr as DoctrineExpr; | |
/** | |
* Contains custom ORM expressions for comparisons, regexps, case-insensitive matches etc | |
* Used instead of the regular Query\Expr() class http://docs.doctrine-project.org/en/2.0.x/reference/query-builder.html#the-expr-class | |
*/ |
View gist:9519953
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
serviceA: | |
class: Amazing\Class | |
arguments: [[@serviceB, @serviceC]] |