DarkTyger
DarkTyger
Confirmed. Pressing and holding the up/down arrow keys trips the exception. * Linux * BellSoft OpenJDK Full with JavaFX * openjdk version "21.0.1" 2023-10-17 LTS * JavaFX versions: ``` groovy...
> I need to see some sample if it is not the case. The following unit test has a string that will be detected as TIS-620, where UTF-8 would be...
Could we add U+200B to the list? It's used by TeX. https://www.fileformat.info/info/unicode/char/200b
That's so strange. I was seeing `` as `ff` inside some of my documents when rendered using Source Serif 4. I can no longer recreate the issue. Okay, thanks for...
``` bash git clone https://github.com/ggerganov/llama.cpp cd llama.cpp cmake -B build cmake --build build --config Release -j$(nproc) wget https://huggingface.co/ggml-org/gemma-1.1-7b-it-Q4_K_M-GGUF/resolve/main/gemma-1.1-7b-it.Q4_K_M.gguf -O gemma-7b-q4.gguf ./build/bin/llama-cli -m gemma-7b-q4.gguf -c 1024 -p "Once upon a time"...
> When creating a new project, you can create one with default styles by selecting "Content: Sample Credits" in the wizard. Consider setting up a simple sample by default. This...
For Arch Linux users, Python is always at the latest version (i.e., 3.13 or newer), so you'll need to downgrade to 3.11. This can be done without contaminating the system...
Here's a micro test showing the behaviour of the regular expression versus the non-regex solution: ``` java public class T { private static final String[] INPUTS = { "Line one\nLine...
Here's DeepSeek's take (there are still improvements that can be made): ``` java public static String trimWhitespaceContainingNewlines(String html) { StringBuilder sb = new StringBuilder(); boolean inWhitespace = false; boolean hasNewline...
Here's one more version that looks pretty optimal: ``` java public static String trimWhitespaceContainingNewlines(final String html) { if (html == null || html.isEmpty()) { return html; } final int length...