Skip to content

Instantly share code, notes, and snippets.

@MaxGyver83
MaxGyver83 / main.go
Created March 26, 2026 19:06
Example program with a large RichText widget for testing dragging performance
package main
import (
"fmt"
"strings"
"time"
"fyne.io/fyne/v2"
"fyne.io/fyne/v2/app"
"fyne.io/fyne/v2/container"
@MaxGyver83
MaxGyver83 / main.go
Created February 20, 2026 15:05
Render test
package main
import (
"strconv"
"strings"
"fyne.io/fyne/v2"
"fyne.io/fyne/v2/app"
"fyne.io/fyne/v2/container"
"fyne.io/fyne/v2/widget"
@MaxGyver83
MaxGyver83 / test-emailbook.sh
Last active March 4, 2024 15:33
Test script used to measure the performance of emailbook, emailbook-janet and aercbook
#!/bin/sh
usage() {
echo "Usage:
$0 1 janet onecall
$0 100 sh manycalls
"
}
case "$1" in
""|-h|--help) usage; exit;;