Closed onehr closed 4 years ago
Thanks for the info!
I'd like to implement a better algortihm for ordering due cards than just randomizing their order,
that would get rid of the dependency on shuf
.
In addition to that, I'll see how much slower emacs lisp variants of the stats scripts would be
to remove the uses of strftime
.
Unfortunately, I don't have access to a macOS system to test this on. Is the package working for you with these changes?
If so, I'll add your suggestions to the readme.
I've removed the dependency on shuf
and added a section on installing gawk
to the readme.
Let me know if that works for you!
Since
strftime
is a GNU gawk extension, macOS users should installgawk
by homebrew or manually. I foundstrftime
in those files:Without installing
gawk
, the macOS will call the defaultawk
and it cause problems. See Awk strftime on Mac OS X.And for the command
shuf
, macOS users should installcoreutils
. See Install shuf on OS X?.