hesch

Results 6 issues of 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...

triage