I hereby claim:
- I am pyrolistical on github.
- I am pyrolistical (https://keybase.io/pyrolistical) on keybase.
- I have a public key ASDiQZcpChgkowEteTMFVfQedMaG6l_I3Nqz9G_C5ctSGAo
To claim this, I am signing this object:
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>Battlefy</title> | |
</head> | |
<body> | |
<div id="react-entry"> | |
</div> | |
<script type="text/javascript" src="bundle.js" charset="utf-8"></script> |
const MongoClient = require('mongodb').MongoClient | |
const Controller = require('./controller') | |
const Service = require('./service') | |
const Repository = require('./repository') | |
MongoClient.connect('some mongo url') | |
.then((db) => { | |
const repository = Repository(db) | |
const service = Service(repository) |
export interface AnotherfileStatic { | |
validfunction(greeting: string); | |
} | |
declare const Anotherfile: AnotherfileStatic; | |
export default Anotherfile; |
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
<title>I r child</title> | |
<style> | |
body { | |
margin: 0; | |
padding: 0; |
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Hyperapp Views</title> | |
</head> | |
<body> | |
<div id="app-entry"></div> | |
<script src="https://unpkg.com/[email protected]/dist/hyperapp.js"></script> |
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Hyperapp Views</title> | |
</head> | |
<body> | |
<div id="app-entry"></div> | |
<script src="https://unpkg.com/[email protected]/dist/hyperapp.js"></script> |
module.exports = (lolClient) => { | |
return { | |
method: 'GET', | |
path: '/v1/lol/summoner/getByName/{summonerName}', | |
handler({query: {region}, params: {summonerName}}, reply) { | |
return lolClient.Summoner.gettingByName(summonerName) | |
.then((summoner) => { | |
if (!summoner) { | |
return reply(Boom.notFound(`Summoner was not found | |
${summonerName} not found`)); |
I hereby claim:
To claim this, I am signing this object:
The pattern you showed at ployglotconf: | |
import a from './a' | |
import b from './b' | |
import c from './c' | |
export const xyz = (a, b, c) => { | |
return { | |
method() { | |
...use deps a, b, c |
const doABRegister = function( connectAPI, { appGuid, serialNumber, email }, data, logger ) { | |
const deviceIdPromise = doABRegisterDevice( connectAPI, appGuid, serialNumber ); | |
const accountIdPromise = deviceIdPromise | |
.then( deviceId => doABCreateAccount( connectAPI, appGuid, deviceId, email, data ); | |
const vhIdPromise = Promise.all([deviceIdPromise, accountIdPromise]) | |
.then( ([deviceId, accountId]) => doABFetchVh( connectAPI, { appGuid, deviceId, accountId }, data, logger ); | |
return Promise.all([deviceIdPromise, accountIdPromise, vhIdPromise]) | |
.then( ([deviceId, accountId, vhId]) => ( { deviceId, accountId, vhId } ); | |
}; |