I offer a few optional ingredients, which you're welcome to take or toss. To make it easier, I haven't edited your files directly, just illustrated alternatives with scripts in separate files. They're grouped by chapter: "chapter1.note" and so on.
I do prefer short to long, unless making something short would also make it cryptic. (This ain't "shell golf.") Thus, you'll see me write
foo() { echo hello; }
not
foo() {
printf("%s\n", hello)
}
but that's just my personal taste. YMMV.
I could have sent you the alternatives in email, but sending you this pull request seemed easier. :-)
Dylan,
Nice work! Lots of tasty recipes in this repo.
I offer a few optional ingredients, which you're welcome to take or toss. To make it easier, I haven't edited your files directly, just illustrated alternatives with scripts in separate files. They're grouped by chapter: "chapter1.note" and so on.
I do prefer short to long, unless making something short would also make it cryptic. (This ain't "shell golf.") Thus, you'll see me write
not
but that's just my personal taste. YMMV.
I could have sent you the alternatives in email, but sending you this pull request seemed easier. :-)
Again, thanks for the work.