Design Thinking
A structured guide to the stuff you do anyway
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Addressable RGB LED</title> | |
| <script src="serial.js"></script> | |
| <script src="rgb.js"></script> | |
| </head> | |
| <body> | |
| <p> | |
| <button id="connect">Connect</button> <span id="status"></span> |
| // version 4-2017.18 | |
| (function dbprune() { | |
| // restore page scrolling | |
| var body = document.body; | |
| var html = body.parentElement; | |
| body.style['overflow'] = body.style['overflow-y'] = 'auto'; | |
| html.style['overflow'] = html.style['overflow-y'] = 'auto'; | |
| // check if this is a mobile display | |
| var mHeight = 680; |
| Searching 2612 files for "module.exports" (regex) | |
| src/cli/cluster/cluster_manager.js: | |
| 8 process.env.kbnWorkerType = 'managr'; | |
| 9 | |
| 10: module.exports = class ClusterManager { | |
| 11 constructor(opts = {}, settings = {}) { | |
| 12 this.log = new Log(opts.quiet, opts.silent); | |
| src/cli/cluster/worker.js: |
| > kibana@6.0.0-alpha2 lint /repos/kibana | |
| > grunt eslint:source | |
| Running "eslint:source" (eslint) task | |
| /repos/kibana/src/cli_plugin/cli.js | |
| 3:8 error No default export found in module import/default | |
| /repos/kibana/src/cli_plugin/install/index.js |
| import React from 'react'; | |
| import PropTypes from 'prop-types'; | |
| import { compose, branch, renderComponent } from 'recompose'; | |
| import { Panel } from 'react-bootstrap'; | |
| import { ArgTypeUnknown } from './arg_type_unknown'; | |
| import { ArgTypeContextPending } from './arg_type_context_pending'; | |
| import { ArgTypeContextError } from './arg_type_context_error'; | |
| function checkState(state) { | |
| return ({ context, expressionType }) => { |
| $ yum search fonts | |
| Loaded plugins: fastestmirror | |
| Loading mirror speeds from cached hostfile | |
| * base: mirrors.ocf.berkeley.edu | |
| * extras: mirror.san.fastserv.com | |
| * updates: centos.mirror.ndchost.com | |
| ============================== N/S matched: fonts ============================== | |
| baekmuk-ttf-fonts-common.noarch : Common files for Korean Baekmuk TrueType fonts | |
| baekmuk-ttf-fonts-ghostscript.noarch : Ghostscript files for Korean Baekmuk |
| import { renderComponent, branch, compose } from 'recompose'; | |
| import { MyComponent as Component } from './my_expression'; | |
| import { Loading } from '../loading'; | |
| const renderLoading = branch( | |
| props => Boolean(props.loading), // bool, test for loading state | |
| renderComponent(Loading) | |
| ); | |
| const addProps = withProps((ownProps) => { |
For PRs, be sure to use add Closes #xxxx, and add the approrpiate labels
enhancement - User-facing enhancementfix - Fixes a bug in a previous releasedeprecation - Deprecates something that was in a previous releaseAdditional context can be added to the description in the following format:
Local state is fine.
Redux [adds] indirection to decouple “what happened” from “how things change”