Felipe Figueroa
Felipe Figueroa
I know `turf.simplify` uses `simplify-js` under the cover, which in turn uses Douglas-Peucker simplification algorithm. Inspired by the approach taken by [Matt Bloch](http://maps.grammata.com/) (author of [MapShaper](http://mapshaper.com/)) I made a little...
My two cents: Given that passing a `paths` option when generating Markdown format (haven't tried that with HTML output) will allow Documentation.js to automagically link said definition to the respective...
I tried to perform the steps to compile from source https://github.com/fluent/fluent-bit-docs/blob/7b7f73b530914db966f3833e6f9b30f4cd6ec732/installation/sources/build-and-install.md?plain=1#L7 and found out cmake wasn't enough. I was missing `bison` , `flex`, and (given I'm using the cutting edge)...
Since Twig 1.21 (https://github.com/twigphp/Twig/commit/cc980282dee1964d867b70666ec7d2183d87ea4c) using Twig_Loaders is deprecated, and triggers a silent error using @ supressor. However, certain middlewares such as Whoops will still stop the normal flow. This PR...
I've seen that src filepaths are referenced using `file.src` https://github.com/addyosmani/grunt-uncss/blob/f2c24ca17a8e6a4e114fb03f50ec605c0d986594/tasks/uncss.js#L22-L23 However, if I use a config such as: ```js grunt.config('custom_uncss', { test: { files: { 'dist/css/tidy.css': ['http://localhost:9003/'] } } });...
Along with node, AMD and CommonJS output format, this PR enables the task to output compiled templates into an ES2015 module. Since `this` property is undefined in ES2015, the task...
Greetings. Having PHPStan 1.8.4 installed beforehand, I gave this extension a try. It threw the following internal error: ``` Internal error: Internal error: PHPStan\Analyser\FileAnalyser::analyseFile(): Argument #4 ($collectorRegistry) must be of...
**Cambio 1:** node-soap tiene métodos asíncronos nativos, de manera que no es necesario usar el constructor de promesas como envoltorio. Por ejemplo, en vez de: ```js // versión resumida _getClient(type)...