garkin

Results 16 comments of garkin

Also `debounce`, `delay`. Those things are massively useful for tuning asynchronous flows.

This is a result of topological sort of the dependency graph. It's needed for atomic updates. For example in this case sorted nodes array will look like `[OnBbb, bbb, OnCc,...

The problem is a backward compatibilty. It will change the order of execution for already existing programs. It would be a breaking change. If we forget about that - it...

If you want to get the same behavior from `.scan()` - wrap it like that `flyd.immediate(flyd.scan(...))`.

This **whole** assembly is less than $20 atm. What makes A4950 antiquated in this price range? What exactly your change adds to the plate? How much does it cost? What...

@jlost it should be pretty straightforward now. ``` npm i pixi.js @types/pixi.js pixi-display --save ``` ```typescript import "pixi-display"; // import for side effects, need to be done once in `src/index.ts`...

Or in case of `pixi-layers` (publish it to the npm, please): ``` npm i pixi.js @types/pixi.js https://github.com/pixijs/pixi-display/tarball/layers --save ``` ```typescript import "pixi-layers"; // import for side effects, need to be...

[This gist](https://gist.github.com/garkin/dd5204da4f4f5e1abd07c6c80bf27a7a) should be enough to reproduce it. Fails in both `[email protected]` and `[email protected]`, `node v8.9.1` ```less // referenced.less .referenced { // line comment is enough to reproduce it @media...

This thing is a must have for use during development with `css-modules`. It's realy tiresome to boilerplate all the selectors during scaffolding and then manage to remove them. ```less .main...

Otherwise they would be `undefined` during the import phase. ```ts import * as React from 'react' import * as cx from 'classnames'; import css from './home.less'; export class Home extends...