From 1c29c7324281fb279a15a1a4f23139aa7a97ecfb Mon Sep 17 00:00:00 2001 From: Jay McCarthy Date: Tue, 14 Apr 2015 17:00:01 -0400 Subject: [PATCH] Automatic commit at Tue Apr 14 17:00:01 EDT 2015 --- diet.rkt | 82 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 diet.rkt diff --git a/diet.rkt b/diet.rkt new file mode 100644 index 00000000..50fc87d1 --- /dev/null +++ b/diet.rkt @@ -0,0 +1,82 @@ +#lang racket/base + +(define Categories + '([Meat + (Beef Lamb Pork Chicken)] + [Fish + (Salmon Trout Haddock)] + [Eggs + (Omega-3 Pastured-Eggs)] + [Veggies + ;; http://lowcarbdiets.about.com/od/whattoeat/a/whatveg.htm + (Spinach Broccoli Cauliflower Carrots Greens Peppers Onions)] + [Fruits + (Apples Oranges Pears Blueberries Strawberries)] + [Nuts-and-Seeds + (Almonds Walnuts Sunflower-seeds)] + [High-fat-Dairy + (Cheese Butter Heavy-Cream Yogurt)])) + +;; Don't have too many nuts or cheese +;; 1 piece of fruit per day + +(define Snacks + '([Piece of Fruit] + [Pork-rinds] + [Advocado] + [Full-fat Yogurt] + [Hard-boiled Egg or Two] + [Baby carrots] + [Handful of Nuts] + [Some cheese and meat])) + +(define Plans + '([Monday + ([Breakfast + (Omelet with veggies fried in butter)] + [Lunch + (Grass-fed yogurt with blueberries & handful of almonds)] + [Dinner + (Cheeseburger (no bun) served with veggies)])] + [Tuesday + ([Breakfast + (Bacon and eggs)] + [Lunch + (Leftover burgers and veggies)] + [Dinner + (Salmon with butter and veggies)])] + [Wednesday + ([Breakfast + (Eggs and veggies fried in butter)] + [Lunch + (Shrimp salad with some olive oil)] + [Dinner + (Grilled chicken with veggies)])] + [Thursday + ([Breakfast + (Omelet with veggies fried in butter)] + [Lunch + (Smoothie with coconut milk, berries, almonds, and protein powder)] + [Dinner + (Steak and veggies)])] + [Friday + ([Breakfast + (Bacon and eggs)] + [Lunch + (Chicken salad with some olive oil)] + [Dinner + (Pork chops with veggies)])] + [Saturday + ([Breakfast + (Omelet with veggies fried in butter)] + [Lunch + (Grass-fed yogurt with berries, coconut flakes, & handful of walnuts)] + [Dinner + (Meatballs with veggies)])] + [Sunday + ([Breakfast + (Bacon and eggs)] + [Lunch + (Smoothie with coconut milk, heavy cream, chocolate protein powder and berries)] + [Dinner + (Grilled chicken wings with some raw spinach on the side)])]))