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
const http = require('http') | |
const express = require('express') | |
const WebSocket = require('ws') | |
const app = express() | |
const server = http.createServer(app) | |
const wss = new WebSocket.Server({ server }) | |
const deviceUrl = 'ws://192.168.1.99/timerws' | |
const deviceSocket = new WebSocket(deviceUrl) |
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 { ParticipantWithRunsAndResults, SingleRunOfParticipant } from '../types/common' | |
import { RunCategory } from '../__types__/graphql' | |
import { isRunFinished } from './utils' | |
const maxPoints: Record<RunCategory, number> = { | |
[RunCategory.MinusA0]: 0, | |
[RunCategory.A0]: 0, | |
[RunCategory.A1]: 100, | |
[RunCategory.A2]: 100, | |
[RunCategory.A3]: 100, |
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
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// choose either `'stable'` for receiving highly polished, | |
// or `'canary'` for less polished but more frequent updates | |
updateChannel: 'stable', |
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
android { | |
compileSdkVersion rootProject.ext.compileSdkVersion | |
compileOptions { | |
sourceCompatibility JavaVersion.VERSION_1_8 | |
targetCompatibility JavaVersion.VERSION_1_8 | |
} | |
def versionPropsFile = file('version.properties') | |
def code |
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 { PureComponent } from 'react'; | |
PureComponent.componentDidUpdate = prevProps => { | |
const name = | |
this.constructor.displayName || this.constructor.name || 'Component'; | |
console.group(name); | |
Object.keys(prevProps).forEach(key => { | |
if (prevProps[key] !== this.props[key]) { | |
console.log( | |
`property ${key} changed from ${prevProps[key]} to ${ | |
this.props[key] |
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
jest.mock('../../../../components/ComponentFoo', () => 'foo') |
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 from 'react' | |
const withClickOutside = Component => { | |
class Wrapped extends React.Component { | |
constructor(props) { | |
super(props) | |
this.setWrapperRef = this.setWrapperRef.bind(this) | |
this.handleClickOutside = this.handleClickOutside.bind(this) | |
} |