Anton Pieper
Anton Pieper
I think migrating to [treesitter](https://tree-sitter.github.io/tree-sitter/) (Maybe using a modified [Java implementation](https://github.com/serenadeai/java-tree-sitter)? Would need to modify the `Languages` class and `build.py` to support GLSL though) based syntax highlighting could be worthwhile....
[`ShaderRenderer`](https://github.com/markusfisch/ShaderEditor/blob/f4168c47775689bba8dddacc370270aff3ec1616/app/src/main/java/de/markusfisch/android/shadereditor/opengl/ShaderRenderer.java) is currently a big monolithic class. Maybe it makes sense to incorporate a more composable / modular design, so that future additional uniforms are easier to add. **Example:** a...
I am trying to write a character controller using rapier. To control when I can jump, I want to use `cast_shape` to check whether I am currently grounded. This leads...
read-only array methods like `map` get the index as number, which makes some operations cumbersome if setting `"noUncheckedIndexedAccess": true` in `tsconfig.json`: ```ts const a = ["some", "values"] as const; const...
The current `"github_dark"` and `"github_light"` themes do not align with the _actual_ GitHub Theme. Maybe it is time to update them (particularly the dark theme) to align with the [VSCode...
### Why is it worth to add this package? OpenJDK-21 is now the latest LTS release. It makes sense to add the LTS versions to termux. ### Home page URL...
### Brief Issue Summary If I use the Ninja generator on alpine linux, subsequent builds (zero steps) fail with a floating-point exception. Unsetting the `NINJA_STATUS` environment variable fixes this. ###...
Still a WIP, not all classes are refactored yet
I'm working on implementing the file-based projects feature from #191 and wanted to propose using Kotlin for new features. Kotlin's interoperability with Java means we can introduce it incrementally without...
If I remove `N` characters and add `N` characters again without changing the token type within the update delay, the highlighting was removed due to how spans work (but does...