laggingreflex

Results 52 comments of laggingreflex

+1. Was this implemented in v1.2.0?

SOunds good. >wo doing some sort of installation Do you mean installation of sicksync itself, or some initialization stuff that sicksync does when it "creates" a new project? I already...

I quite like fluent-ffmpeg's approach: https://github.com/fluent-ffmpeg/node-fluent-ffmpeg#complexfilterfilters-map-set-complex-filtergraph

I'm importing this as an ES6 module natively in Node 17 yet I still seem to have to use the "default" named export… ``` import asyncify from 'callback-to-async-iterator' asyncify(cb) TypeError:...

The missing python error stands out: > **gyp ERR! stack Error: Can't find Python executable "python", you can set the PYTHON env variable.** Make sure you have python (v2.7 I...

``` const {a, b} = require('./numbers.js'); const add = () => a + b; ``` Here `a` and `b` are evaluated right away and thus cannot be changed when you...

@queckezz https://github.com/queckezz/parse-hyperscript/pull/1

Duplicates: #150, #159, #168, #182, #191, #199, #200, #205 As per the author, use the latest dev build. [Someone has archived it](https://github.com/DDoSolitary/LxRunOffline/issues/150#issuecomment-1317314138): https://github.com/Andy1208-lee/LxRunOffline/raw/main/LxRunOffline-v3.5.0-11-gfdab71a-msvc.zip

I was too facing this just now. Line number off by 2. However `retainLines: 'true'` (in babel options) seem to solve it. I'm suspecting babel-polyfill or some other helper function...

gulp@4 [email protected] ``` const gulp = require('gulp'); const babel = require('gulp-babel'); const sourcemaps = require('gulp-sourcemaps'); gulp.task('babel', done => gulp.src('src/**/*.es6') .pipe(sourcemaps.init()) .pipe(babel({ presets: ['es2015', 'stage-0'], retainLines: 'true', })) .pipe(sourcemaps.write('.', { sourceRoot:...