hesch
hesch
If you follow the instructions from the README to setup a new project and add an `` anywhere in your HTML, the editor won't load. This is caused by this...
```java Collection test(Collection input) { List aPrefix = input.stream().map(x -> "a" + x).collect(toList()); List bPrefix = input.stream().map(x -> "b" + x).collect(toList()); aPrefix.addAll(bPrefix); return aPrefix; } ``` In the above example...
Recently I opened this issue https://github.com/containers/buildah/issues/4370 in the buildah repo and found the culprit. While building, I didn't specify `CGO_ENABLED=1`. This causes an infinite loop of forks, because this is...
I encountered a bug where the output of the process was not shown on Windows in IntelliJ. The reason for this bug was, that the process is logging lines CRLF...
Currently importing dictionaries just gives a spinner with no way of knowing when an import will be complete or if something is just stuck. I propose implementing some kind of...
### Prerequisites - [X] I have read the [Contributing Guidelines](https://github.com/ionic-team/ionic-framework/blob/main/docs/CONTRIBUTING.md#creating-an-issue). - [X] I agree to follow the [Code of Conduct](https://ionicframework.com/code-of-conduct). - [X] I have searched for [existing issues](https://github.com/ionic-team/ionic-framework/issues) that already...
I have a request that has multiple values for some of the query params: ```kotlin When { queryParam("test", "multi1", "multi2") queryParam("test2", "single") get("/") } Then { statusCode(200) } ``` I...
I was just trying out the app and it will give me these annoying accent pop ups when long pressing keys. This is really hindering using vim motions effectively. It...
This removes the weird substring logic in `getPathParamPlaceholders()`. I am not sure for what reason this was even there in the first place, as `getTargetPath` should handle both absolute and...
Description: If an URL is called with the another URL in a query parameter, that does not have a `/` before the query param a `MalformedURLException` is thrown. So for...