Sebastian Davids

Results 199 comments of Sebastian Davids

```shell $ sw_vers ProductName: macOS ProductVersion: 14.7 BuildVersion: 23H124 $ uname -a Darwin redacted 23.6.0 Darwin Kernel Version 23.6.0: Wed Jul 31 20:49:46 PDT 2024; root:xnu-10063.141.1.700.5~1/RELEASE_ARM64_T8103 arm64 $ java --version...

> [@tobiaswx](https://github.com/tobiaswx) aarch64 support for muslib is not a priority for us at the moment. The last Mac with Intel chips was sold in 2023. It is likely that the...

https://github.com/oracle/graal/discussions/10760 > ### Outlook GraalVM for JDK 25.0.0 > * Platforms Windows AMD64 and Linux/MacOS AArch64 Let's hope this issue is part of the above…

macOS 26 Tahoe ![Image](https://github.com/user-attachments/assets/442fc819-f04e-4cb7-8da9-a2d72ed9aa57) If Apple does not change its decision or their support window then fall 2029 will be the final goodbye to Intel.

But this is not just about macOS as a developer platform but also [AWS Graviton](https://aws.amazon.com/ec2/graviton/) as a deployment platform. > Use up to 60% less energy than comparable EC2 instances...

A workaround is to add `--platform=linux/amd64`: ```shell docker run --platform=linux/amd64 ... kjarosh/latex:2024.3 ... ``` That needs [Rosetta 2 ](https://support.apple.com/en-us/102527) to be installed and [enabled in Docker](https://docs.docker.com/desktop/settings/mac/) though.

> as it's not licensed. https://gitlab.alpinelinux.org/alpine/aports/-/blame/master/community/texlive/APKBUILD#L12

This issue precludes using your image as a [devcontainer image](https://containers.dev). It supports [image runArgs](https://containers.dev/implementors/json_reference/#image-specific) but there is no way to say "only do this on ARM64".

> The APKBUILD (and possibly related files from the directory) are lacking license information, which means that by default I do not have any right to use them. @maribu You...

Here is how you would do it in Java: ```java String normalize(String s) { return Normalizer.normalize(s, Normalizer.Form.NFKD) .replaceAll("\\p{M}", "") .replaceAll("ß", "s") .replaceAll("ẞ", "s"); } void main() { var tests =...