From 76c581504fa1ce6d447282f80484a879c2cbb8df Mon Sep 17 00:00:00 2001 From: Bubblegumdrop Date: Sat, 13 Feb 2021 13:54:26 -0500 Subject: [PATCH] Salad! --- big-salad.md | 23 +++++++++++++++++++++++ greek-salad.md | 28 ++++++++++++++++++++++++++++ readme.md | 32 ++++++++++++++++++++++++++++++++ 3 files changed, 83 insertions(+) create mode 100644 big-salad.md create mode 100644 greek-salad.md diff --git a/big-salad.md b/big-salad.md new file mode 100644 index 0000000..d4d6f6b --- /dev/null +++ b/big-salad.md @@ -0,0 +1,23 @@ +# Big Salad + + + +Basically any veggies or protien you want. + +In a large bowl: + +- Artisan lettuce +- Croutons +- Cubed Pepperjack cheese +- Diced Broccoli +- Diced Carrots +- Diced Onions +- Diced Snap Peas +- Diced Spinach +- Diced Tomatos + +Mix well. + +Optional: + +Quarter [hard-boiled eggs](hard-boiled-eggs.md). diff --git a/greek-salad.md b/greek-salad.md new file mode 100644 index 0000000..d8e7d39 --- /dev/null +++ b/greek-salad.md @@ -0,0 +1,28 @@ +# Greek Salad + +I used to make [big salads](big-salad.md). + +For whatever reason (I bet it's the Fet ;), I love Greek Salad! + + + +1. English Cucumber, halved +2. Red onion, thin strips +3. Kalamata Olives, 1/3 cup, halved +4. Tomatos, cherry +5. Bell pepper, cubed +6. Feta Cheese + +Toss. + +Dressing: +1. 1/4 cup extra virgin olive oil +2. Zest of a lemon +3. 2tsp fresh thyme, shredded +4. 2tsp oregano, shredded +5. 2 tbsp red wine vinegar +6. 2 tsp Honey mustard +7. Half of a lemon juice +8. 1/2 tsp salt + +Shake well. diff --git a/readme.md b/readme.md index a27f05b..7ecbf3e 100644 --- a/readme.md +++ b/readme.md @@ -10,10 +10,42 @@ To save a few words, when provided with an option such as oil, in parenthesis, i - [Baked Asparagus](baked-asparagus.md) - [Baked Potatoes](baked-potatoes.md) +- [Big Salad](big-salad.md) - [Chicken Salad](chicken-salad.md) - [Egg Salad](egg-salad.md) - [Filet Mignon](filet-mmignon.md) +- [Greek Salad](greek-salad.md) - [Hard-boiled Eggs](hard-boiled-eggs.md) - [Lamb Chops](lamb-chops.md) - [Mashed Potatoes](mashed-potatoes.md) - [Shake and bake pork chops](shake-and-bake-pork-chops.md) + +# Tips + +Visual selection with `v`. + +These can be combined, e.g. `sort | uniq`. + +## Itemized List + +Pipe visual selection into: + + !awk '{print "-",$0}' + +## Numbered List + +Pipe visual selection into: + + !cat -b + +## Sorted List + +Pipe visual selection into: + + !sort -h + +## Unique List + +Pipe visual selection into: + + !uniq