and [quote] in your first post and they came out literally. That's on me for never documenting what the composer accepts. It takes markdown, not BBCode.
The composer has two tabs, Rich text and Markup. Rich text gives you a toolbar with Inline code (Ctrl/Cmd+E) and Code block buttons. Markup is the raw source if you'd rather type it directly.
The markup, written out literally:
`code` between single backticks
**bold** *italic* ~~strike~~
> a quoted line
- a bullet
1. a numbered item
[text](https://example.com) a link
@[name] mentions someone
:smile: emoji
For a code block, put three backticks on a line of their own above and below the text.
No headings or images on the forum, those are blog only.QuoteDingo
3 hours ago
edited
It ran and didn't have any errors reported. The time is very close.
dingo@C1-Ubuntu:~/prst-folder$ BOX64_LOG=0 box64 ./prst "1005*2^100000-1" -cpu SSE2
[BOX64] Box64 arm64 v0.4.3 a2ae0500d with Dynarec built on Jul 25 2026 10:57:54
dingo@C1-Ubuntu:~/prst-folder$
cat result.txt
"1005*2^100000-1" is not a probable prime. Have you run Fermat test first? RES64: 16F98A5F08A1F731, time: 68 s.
I am going to try a bigger one that is a prime on my list.
dingo@C1-Ubuntu:~/prst-folder$ BOX64_LOG=0 box64 ./prst "4005*2^56366-1" -cpu SSE2
start time 15:07 AEST Finish time 16:27 AEST
Results
BOX64_LOG=0 box64 ./prst "4005*2^56366-1" -cpu SSE2
[BOX64] Box64 arm64 v0.4.3 a2ae0500d with Dynarec built on Jul 25 2026 10:57:54
"4005*2^56366-1" is prime! Time: 19.1 s.
cat result.txt
"4005*2^56366-1" is prime! Time: 19 s.
looking good.
#!/bin/bash
LOGFILE="/home/dingo/prst-folder/result.txt"
# Record start time
START_TIME=$(date +%s)
echo "Prime Search Start: $(date)" >> "$LOGFILE"
# Run your Box64 job
BOX64_LOG=0 box64 ./prst "1011*2^4702339-1" -cpu SSE2 >> "$LOGFILE"
# Record end time
END_TIME=$(date +%s)
RUNTIME=$((END_TIME - START_TIME))
# Summary
echo "Prime Search End: $(date)" >> "$LOGFILE"
echo "Total runtime: ${RUNTIME}s" >> "$LOGFILE"
echo "------------------------------------------------------------" >> "$LOGFILE"
Using one core:
16649 dingo 20 0 177984 109948 15156 R 99.7 2.8 0:12.30 prst
Quote[YAFU] Aliquot sequence 2086050 has terminated!!![/url]
View article ยท Fri, 24 Jul 2026 05:42:10 +0000
Page created in 0.047 seconds with 14 queries.