Mathias Panzenböck

Results 46 comments of Mathias Panzenböck

1. Good idea (checking if the folder exists). But you don't have to wait for the process to end. Just press Ctrl+C to terminate it just like any other process....

Well, you can specify the full path of `mediaextract.exe`. But yes, that's cumbersome. Back when I used Windows I used cygwin and xterm, because the Windows command promt is just...

Lacking for a better option (or a GUI) you can write a helper .bat script that contains all the options you want and then it should be possible to drop...

Have to take a look at this. Don't know when I have time.

I just got this message on vscode startup without even having any OpenAPI definition open! [mermade.openapi-lint-unresponsive.cpuprofile.txt](https://github.com/Mermade/openapi-lint-vscode/files/6688186/mermade.openapi-lint-unresponsive.cpuprofile.txt) * OpenAPI-lint version: 1.2.0 * OS Version: Fedora Linux 33 5.12.11-200.fc33.x86_64 * VSCode version:...

You could just change `isQuoted` to: ```Java private final Predicate isQuoted = s -> s.length() > 1 && s.startsWith("\"") && s.endsWith("\""); ``` Or change `normalizeValue()` to: ```Java private String normalizeValue(final...

Sorry, I'm not interested in contributing C++ code to NodeJS at the moment. I just noticed a lot of quirks with... well basically almost all dotenv parsers out there and...

> @panzi There is no proper spec for this feature, the only reference is "whatever [dotenv](https://www.npmjs.com/package/dotenv) does." Do you happen to know what the expected behavior is, based on that?...

Just for fun I wrote my own implementation of the JavaScript dotenv parser in C++, trying to be 100% compatible. I haven't found an edge case where it produces the...

I found yet another edge case where my (and the NodeJS) implementation behaved differently than the JavaScript implementation and fixed it in my code. Would you like to use that...