This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
Frank van Puffelen
puf.bsky.social
did:plc:r5shvvsyaq3kfatc3novwud6
A neat trick for those on *nix/mac systems. By adding a shebang as the first line of your Dart file, you can make it executable.
So add this line: #!/usr/bin/env dart
Mark it executable: chmod +x main.dart
And then run it as: ./main.dart
More on: https://puf.io/posts/making-a-dart-file-self-executable/
2024-08-16T15:21:37.781Z