Kyℓe Hensel
Kyℓe Hensel
Fix the bug which prevents a non-broadcast `host` from being used alongside a custom `iface` (#22)
There may be cases where only the audio is required. We should provide a bandwidth optimisation for these use cases by only streaming audio.
Is this is a minor optimization? ```js streamIn.stdout.on('data', ws.send); ```
**Prettier 1.18.2** [Playground link](https://prettier.io/playground/#N4Igxg9gdgLgprEAuEAeAhAEwmGBPABzgAIALGAWwBsA+AHSlXOvqmOPgA8YHUB6ZrRAAaEBAIwAltADOyUAEMATkogB3AArKEclAoBuESZhEgARkoVgA1nBgBlAlclQA5shhKArnFGCA6qSS8DJOYHD2OsGS+sF4yOAycqIuMnBKMBqWrhQKyABmClRpogBWMpwAQpY2dvYKFHAAMi5wBUUlIOWc9i6uVHAAil4Q8O3FviBOSmlKCYKmBEouMP7GMKTIABwADKJLEGn+lgQJS3Cz+m2iAI4j8FniuiAKMgC0UHBwmN+mSnB3ST-LIKHJ5JCFCaiNIUSQebyTGR9AbDUZtCEdSYwBRmNaYDbIABMok8CkkVD6AGEIBRcgkoNBriAvGkACo43SQtIAX25QA) ```sh --parser html ``` **Input:** ```html text ``` **Output:** ```html text ``` **Expected behavior:** It'd be great if there were an option to disable transforming the...
The `import/no-default-export` rule has two parts - banning syntax like `export default function () {}` and `export default foo;` - banning aliased default exports (e.g. `export { foo as default...
How does NSI/iD decide when to show logos? It seems weird that the flagpole has a logo but the main preset doesn't. (screenshot is from Microsoft Edge, where logos from...
Is there a way to specify multiple different osm tags for a single operator? For example, companies like _Live Nation_ and _ASM Global_ would require 6 entries in NSI, since...
This PR creates a "divide" operation, similar to the [JOSM gridify plugin](https://github.com/JOSM/josm-gridify). It lets you divide an area into a grid of smaller areas. This is useful for mapping [parking...
It's currently very hard to see the oneway arrows on some features, since the oneway arrows are always black. The oneway arrows can now be any colour. This is still...
inputing: ```js function xhr(url, callback) { var xhr = new XMLHttpRequest(); xhr.onreadystatechange = function () { if (this.readyState == 4 && this.status == 200) callback(JSON.parse(this.responseText)); }; xhr.open('GET', url, true); xhr.send();...