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
[Unit] | |
Description=Ethereum go client | |
After=network.target | |
Wants=network.target | |
[email protected] | |
StartLimitBurst=5 | |
StartLimitIntervalSec=33 | |
[Service] | |
User=goeth | |
Group=goeth |
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
type Post { | |
id: ID, | |
title: String | |
text: String | |
} | |
type PaginationInfo<ResultType> { | |
page: Int | |
totalPages: Int | |
perPage: Int |
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 'whatwg-fetch'; | |
import Config from 'config/Config'; | |
export const corsFetchOptions = { | |
// Enable cross-domain requests (CORS) | |
mode: 'cors', | |
// Send credentials cross-domain | |
credentials: 'include' | |
}; |
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
<SyncStore loader={TeamLoader} loadingComponent={Loading}> | |
<TeamReaderApp> | |
<Match exactly pattern="/" component={LinksIndex} /> | |
<Match pattern='/links' component={LinksIndex} /> | |
<Match pattern='/link/new' component={LinkNew} /> | |
<Match pattern='/link/:id/edit' component={LinkEdit} /> | |
<Match pattern='/categories' component={CategoriesIndex} /> | |
<Match pattern='/category/new' component={CategoryNew} /> | |
<Match pattern='/category/:id/edit' component={CategoryEdit} /> |
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="test__container___1qISr"> | |
Hello World! | |
<div class="test__container___1qISr"> | |
Test | |
</div> | |
</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
atom-workspace, atom-text-editor { | |
font-family: "Operator Mono"; | |
font-size: 14px; | |
font-weight: 400; | |
line-height: 1.7; | |
} | |
atom-panel.tool-panel { | |
font-size: 0.88em; | |
} |
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
function MyResolverPlugin() { | |
} | |
MyResolverPlugin.prototype.apply = function (resolver) { | |
resolver.plugin("directory", function (request, callback) { | |
... | |
}); | |
}; |
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 React, { Component } from 'react'; | |
import './App.css'; | |
import Counter from './Counter.js'; | |
class App extends Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
counter1: 42, |
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
"babel-core": "^6.13.2", | |
"babel-eslint": "^6.1.2", | |
"babel-loader": "^6.2.5", | |
"babel-plugin-array-includes": "^2.0.3", | |
"babel-plugin-external-helpers-2": "^6.3.13", | |
"babel-plugin-react-transform": "^2.0.2", | |
"babel-plugin-syntax-async-functions": "^6.13.0", | |
"babel-plugin-transform-decorators-legacy": "^1.3.4", | |
"babel-plugin-transform-object-assign": "^6.8.0", | |
"babel-plugin-transform-regenerator": "^6.11.4", |
NewerOlder