0.1 Introduction

1 Section 1: Exploring, renaming, and filtering data

1.1 Workshop Setup

I’m first going to load the couple of packages that we will need for this workshop. I’ve included a little bit of information about each of their uses in a comment below. Running the code chunk below will load the desired packages if you have already installed them, and the nice thing is, it will also automatically install any needed packages if you have not yet done so. Basically, this is possible through creating an object containing the names of the desired packages (“wrangling_packages”), creating an object containing the names of your existing packages (“packages”), and using a function to install any package names that are listed among the desired packages, but not among existing packages.

wrangling_packages <- c("data.table", "effects", "lme4", "lubridate", "modelsummary", 
                        "psych", "qdap", "reshape", "rJava", "rlang", "skimr", 
                        "syuzhet", "tidytext", "tidyverse", "utils", "yaml")

##brief explanation of packages##
#tidyverse is for wrangling and contains ggplot2, tibble, purrr, dplyr, tidyr, stringr, readr, and forcats
#data.table is for reading large data objects
#skimr and psych are for basic statistics
#rlang and rershape are for basic wrangling
#utils, modelsummary, and yaml are for R notebook functionality
#lubridate is for updating date/time stamps
#qdap, rJava, syuzhet, and tidytext are for text analysis and cleaning
#lme4 is for linear regression exercise

packages <- rownames(installed.packages())
p_to_install <- wrangling_packages[!(wrangling_packages %in% packages)]

if(length(p_to_install) > 0){
  install.packages(p_to_install)
}

lapply(wrangling_packages, library, character.only = TRUE)
## [[1]]
## [1] "data.table" "vembedr"    "stats"      "graphics"   "grDevices" 
## [6] "utils"      "datasets"   "methods"    "base"      
## 
## [[2]]
##  [1] "effects"    "carData"    "data.table" "vembedr"    "stats"     
##  [6] "graphics"   "grDevices"  "utils"      "datasets"   "methods"   
## [11] "base"      
## 
## [[3]]
##  [1] "lme4"       "Matrix"     "effects"    "carData"    "data.table"
##  [6] "vembedr"    "stats"      "graphics"   "grDevices"  "utils"     
## [11] "datasets"   "methods"    "base"      
## 
## [[4]]
##  [1] "lubridate"  "lme4"       "Matrix"     "effects"    "carData"   
##  [6] "data.table" "vembedr"    "stats"      "graphics"   "grDevices" 
## [11] "utils"      "datasets"   "methods"    "base"      
## 
## [[5]]
##  [1] "modelsummary" "lubridate"    "lme4"         "Matrix"       "effects"     
##  [6] "carData"      "data.table"   "vembedr"      "stats"        "graphics"    
## [11] "grDevices"    "utils"        "datasets"     "methods"      "base"        
## 
## [[6]]
##  [1] "psych"        "modelsummary" "lubridate"    "lme4"         "Matrix"      
##  [6] "effects"      "carData"      "data.table"   "vembedr"      "stats"       
## [11] "graphics"     "grDevices"    "utils"        "datasets"     "methods"     
## [16] "base"        
## 
## [[7]]
##  [1] "qdap"             "RColorBrewer"     "qdapTools"        "qdapRegex"       
##  [5] "qdapDictionaries" "psych"            "modelsummary"     "lubridate"       
##  [9] "lme4"             "Matrix"           "effects"          "carData"         
## [13] "data.table"       "vembedr"          "stats"            "graphics"        
## [17] "grDevices"        "utils"            "datasets"         "methods"         
## [21] "base"            
## 
## [[8]]
##  [1] "reshape"          "qdap"             "RColorBrewer"     "qdapTools"       
##  [5] "qdapRegex"        "qdapDictionaries" "psych"            "modelsummary"    
##  [9] "lubridate"        "lme4"             "Matrix"           "effects"         
## [13] "carData"          "data.table"       "vembedr"          "stats"           
## [17] "graphics"         "grDevices"        "utils"            "datasets"        
## [21] "methods"          "base"            
## 
## [[9]]
##  [1] "rJava"            "reshape"          "qdap"             "RColorBrewer"    
##  [5] "qdapTools"        "qdapRegex"        "qdapDictionaries" "psych"           
##  [9] "modelsummary"     "lubridate"        "lme4"             "Matrix"          
## [13] "effects"          "carData"          "data.table"       "vembedr"         
## [17] "stats"            "graphics"         "grDevices"        "utils"           
## [21] "datasets"         "methods"          "base"            
## 
## [[10]]
##  [1] "rlang"            "rJava"            "reshape"          "qdap"            
##  [5] "RColorBrewer"     "qdapTools"        "qdapRegex"        "qdapDictionaries"
##  [9] "psych"            "modelsummary"     "lubridate"        "lme4"            
## [13] "Matrix"           "effects"          "carData"          "data.table"      
## [17] "vembedr"          "stats"            "graphics"         "grDevices"       
## [21] "utils"            "datasets"         "methods"          "base"            
## 
## [[11]]
##  [1] "skimr"            "rlang"            "rJava"            "reshape"         
##  [5] "qdap"             "RColorBrewer"     "qdapTools"        "qdapRegex"       
##  [9] "qdapDictionaries" "psych"            "modelsummary"     "lubridate"       
## [13] "lme4"             "Matrix"           "effects"          "carData"         
## [17] "data.table"       "vembedr"          "stats"            "graphics"        
## [21] "grDevices"        "utils"            "datasets"         "methods"         
## [25] "base"            
## 
## [[12]]
##  [1] "syuzhet"          "skimr"            "rlang"            "rJava"           
##  [5] "reshape"          "qdap"             "RColorBrewer"     "qdapTools"       
##  [9] "qdapRegex"        "qdapDictionaries" "psych"            "modelsummary"    
## [13] "lubridate"        "lme4"             "Matrix"           "effects"         
## [17] "carData"          "data.table"       "vembedr"          "stats"           
## [21] "graphics"         "grDevices"        "utils"            "datasets"        
## [25] "methods"          "base"            
## 
## [[13]]
##  [1] "tidytext"         "syuzhet"          "skimr"            "rlang"           
##  [5] "rJava"            "reshape"          "qdap"             "RColorBrewer"    
##  [9] "qdapTools"        "qdapRegex"        "qdapDictionaries" "psych"           
## [13] "modelsummary"     "lubridate"        "lme4"             "Matrix"          
## [17] "effects"          "carData"          "data.table"       "vembedr"         
## [21] "stats"            "graphics"         "grDevices"        "utils"           
## [25] "datasets"         "methods"          "base"            
## 
## [[14]]
##  [1] "forcats"          "stringr"          "dplyr"            "purrr"           
##  [5] "readr"            "tidyr"            "tibble"           "ggplot2"         
##  [9] "tidyverse"        "tidytext"         "syuzhet"          "skimr"           
## [13] "rlang"            "rJava"            "reshape"          "qdap"            
## [17] "RColorBrewer"     "qdapTools"        "qdapRegex"        "qdapDictionaries"
## [21] "psych"            "modelsummary"     "lubridate"        "lme4"            
## [25] "Matrix"           "effects"          "carData"          "data.table"      
## [29] "vembedr"          "stats"            "graphics"         "grDevices"       
## [33] "utils"            "datasets"         "methods"          "base"            
## 
## [[15]]
##  [1] "forcats"          "stringr"          "dplyr"            "purrr"           
##  [5] "readr"            "tidyr"            "tibble"           "ggplot2"         
##  [9] "tidyverse"        "tidytext"         "syuzhet"          "skimr"           
## [13] "rlang"            "rJava"            "reshape"          "qdap"            
## [17] "RColorBrewer"     "qdapTools"        "qdapRegex"        "qdapDictionaries"
## [21] "psych"            "modelsummary"     "lubridate"        "lme4"            
## [25] "Matrix"           "effects"          "carData"          "data.table"      
## [29] "vembedr"          "stats"            "graphics"         "grDevices"       
## [33] "utils"            "datasets"         "methods"          "base"            
## 
## [[16]]
##  [1] "yaml"             "forcats"          "stringr"          "dplyr"           
##  [5] "purrr"            "readr"            "tidyr"            "tibble"          
##  [9] "ggplot2"          "tidyverse"        "tidytext"         "syuzhet"         
## [13] "skimr"            "rlang"            "rJava"            "reshape"         
## [17] "qdap"             "RColorBrewer"     "qdapTools"        "qdapRegex"       
## [21] "qdapDictionaries" "psych"            "modelsummary"     "lubridate"       
## [25] "lme4"             "Matrix"           "effects"          "carData"         
## [29] "data.table"       "vembedr"          "stats"            "graphics"        
## [33] "grDevices"        "utils"            "datasets"         "methods"         
## [37] "base"

NOTE: If you receive an error stating: error: JAVA_HOME cannot be determined from the Registry, try this troubleshooting page to resolve the issue. This source also suggests that it may be because you are using a 32-bit version of Java and a 64-bit version of R. Downloading a 64-bit version of both should fix the issue.

Now let’s clean our environment of the variables we won’t need

rm(p_to_install, packages, wrangling_packages)

We’re next going to specify the working directory to wherever you have this workshop stored locally.

#check current working directory
getwd()

#change the directory to where you have the COG2022_DataWranglinginR.csv saved
wd <- "YOUR/PATH/HERE"
setwd(wd)

#we won't be using the variable wd any longer
rm(wd)

1.2 About the data

For this workshop, we will be using publicly-available New York Times Cooking comment data (found via Kaggle, which is a great source for test datasets if you’re interested). The data was collected via New York Times’s API (source below). This is the sort of data you might be using if you use web-scraped or publiclly-available social media data in your work (think Tweets, comments, online reviews), and there are all sorts of things you can do with data like this especially since there tend to be so many observations and they are completely naturalistic. * Kaggle source * New York Times API

1.3 Import raw data

We’re first going to import the New York Times Cooking comment data as a dataframe. There are a few ways to do this that we’ll go through. You can use the “read.csv” function from the utils package, which is likely the most common way to load .csv data. However, You can also use the fread function from the data.table package, which is much better for datasets of this size, as we’ll see (thank you Billy for introducing me to this one)!

Note that we first list the package that it’s from followed by two colons and then the function. This is to let R know where to find the function. This usually isn’t necessary, but doing this will allow you to call a function without necessarily loading it into our environment with library() or, as in our case, resolve issues between packages when two packages have a similarly named function. It just tells R which package we want R to pull Function X from.

Also note that the dataframe starts as a zipped file. This is because the raw data is too large to be hosted by Github. You will need to extract the file first. Usually, this is an option in your right-click menu.

nyt_raw <- data.table::fread("df.csv", 
                 na.strings = c('', 'NA'))

We’re going to save the raw data to a dataframe called “nyt_raw”, which we can access anytime we need the raw data going forward. To get a sense of our data structure, we’ll use the head function to show a snippet of the first few rows of the dataframe (6 rows by default). We can adjust the number of rows shown with the n = 20 command within the head function.

head(nyt_raw, n = 20) #this will show a snippet of the first 20 rows of the data file

The data I imported here is the raw data file downloaded straight from the Kaggle page. As we can see from the snippet above, it’s not very well-organized, which is where this workshop should come in handy! We’ll walk through organization steps now.

1.4 Data Organization

Based on the New York Times Cooking API and the data source on Kaggle, it looks like the columns in our dataset are organized as follows. Italicized column names are those we will be examining today:

  • V1: the index of the comment within a specific recipe
  • commentID: the comment’s unique identifying number
  • status: whether or not NYT has approved the comment
  • commentSequence: the comment’s sequence
  • userID: the ID number of the user who wrote the comment
  • userDisplayName: first name or handle selected by user who wrote the comment
  • userLocation: location of the user (locked)
  • userTitle: the user’s title, if they have one (e.g., “food critic”; locked)
  • userURL: the user’s NYT cooking profile URL (locked)
  • picURL: the URL of the photo included in the comment (locked)
  • commentTitle: the “subject line”/title of the user’s comment
  • commentBody: the comment text
  • createDate: unix time stamp of comment creation date
  • updateDate: unix time stamp of any comment updates
  • approveDate: unix time stamp of comment approval date
  • recommendations: number of other users who liked a specific comment
  • replyCount: number of replies to a particular comment
  • replies: replies written to each specific comment
  • editorsSelection: whether or not the comment has been selected as an “Editor’s Selection” comment
  • parentID: if reply, comment ID for the original comment (locked)
  • parentUserDisplay: if reply, user ID for original comment (locked)
  • depth: comment depth
  • commentType: original comment vs. reporter reply
  • trusted: whether or not the comment is trusted
  • recommendedFlag: whether or not the comment has a recommended flag
  • permID: permanent comment ID -
  • isAnonymous: whether or not the comment is anonymous
  • recipe_id: ID number for the recipe commented on
  • recipe_name: name of the recipe commented on

1.5 Examining raw data structure

We will now explore our dataset using a couple of Base R commands.

#copying the data to a new object so that we can retain the raw data separately
nyt <- nyt_raw

First, we’re going to get a sense of the data using a couple of basic Base R commands. This will tell us about the structure of the dataset, or the way in which R categorizes each of the variables (i.e., numeric, character, etc.). This is important to keep in mind because R will treat variables differently based upon how they are structured.

str(nyt) #shows us what kinds of variables we have
## Classes 'data.table' and 'data.frame':   389963 obs. of  29 variables:
##  $ V1                   : int  0 0 1 0 0 1 2 3 4 5 ...
##  $ commentID            : num  2.02e+07 1.11e+08 1.04e+08 1.68e+07 1.11e+08 ...
##  $ status               : chr  "approved" "approved" "approved" "approved" ...
##  $ commentSequence      : num  2.02e+07 1.11e+08 1.04e+08 1.68e+07 1.11e+08 ...
##  $ userID               : num  1570140 87444971 68602151 30298351 57140404 ...
##  $ userDisplayName      : chr  "Christa" "Lindsey" "VFR Marc" "Joanne" ...
##  $ userLocation         : chr  "<br/>" NA NA "<br/>" ...
##  $ userTitle            : chr  NA NA NA NA ...
##  $ userURL              : logi  NA NA NA NA NA NA ...
##  $ picURL               : chr  NA NA NA NA ...
##  $ commentTitle         : chr  "<br\\//>" "<br\\//>" "<br\\//>" "<br\\//>" ...
##  $ commentBody          : chr  "Not worth the effort--now I know why oxtails are on clearance every week. The meat was extremely fatty & diffic"| __truncated__ "This is the biscotti recipe I've been searching for! Anise biscotti at many Italian bakeries are more like Anis"| __truncated__ "These biscotti are too dense. Part of the enjoyment is to dunk them (espresso, tea, anisette, etc.) and they do"| __truncated__ "Easy to make, very tasty." ...
##  $ createDate           : num  1.51e+09 1.61e+09 1.58e+09 1.51e+09 1.61e+09 ...
##  $ updateDate           : num  1.59e+09 1.61e+09 1.61e+09 1.53e+09 1.61e+09 ...
##  $ approveDate          : num  1.48e+09 1.61e+09 1.58e+09 1.45e+09 1.61e+09 ...
##  $ recommendations      : num  1 0 1 1 0 0 0 1 1 0 ...
##  $ replyCount           : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ replies              : chr  "[]" "[]" "[]" "[]" ...
##  $ editorsSelection     : logi  FALSE FALSE FALSE FALSE FALSE FALSE ...
##  $ parentID             : logi  NA NA NA NA NA NA ...
##  $ parentUserDisplayName: logi  NA NA NA NA NA NA ...
##  $ depth                : num  1 1 1 1 1 1 1 1 1 1 ...
##  $ commentType          : chr  "comment" "comment" "comment" "comment" ...
##  $ trusted              : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ recommendedFlag      : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ permID               : num  2.02e+07 1.11e+08 1.04e+08 1.68e+07 1.11e+08 ...
##  $ isAnonymous          : logi  FALSE FALSE FALSE FALSE FALSE FALSE ...
##  $ recipe_id            : int  1015646 1012940 1012940 1017810 1019207 1019207 1019207 1019207 1019207 1019207 ...
##  $ recipe_name          : chr  "shredded oxtail salad with mustard and shallot" "aunt gens biscotti" "aunt gens biscotti" "turkey dinner canapes" ...
##  - attr(*, ".internal.selfref")=<externalptr>

Next, we’ll use the names() function to examine the column names of our dataframe, which essentially function as the names of our variables.

names(nyt) #shows column names
##  [1] "V1"                    "commentID"             "status"               
##  [4] "commentSequence"       "userID"                "userDisplayName"      
##  [7] "userLocation"          "userTitle"             "userURL"              
## [10] "picURL"                "commentTitle"          "commentBody"          
## [13] "createDate"            "updateDate"            "approveDate"          
## [16] "recommendations"       "replyCount"            "replies"              
## [19] "editorsSelection"      "parentID"              "parentUserDisplayName"
## [22] "depth"                 "commentType"           "trusted"              
## [25] "recommendedFlag"       "permID"                "isAnonymous"          
## [28] "recipe_id"             "recipe_name"

We can look at how frequently each unique value appeared within any given column using the tables() function and specifying the column as the object of the function. Let’s look at how many replies each entry got.

table(nyt$replyCount)
## 
##      0      1      2      3      4      5      6      7      8      9     10 
## 346554  30085   7498   2653   1234    611    346    225    149    135     79 
##     11     12     13     14     15     16     17     18     19     20     21 
##     60     57     36     33     24     21     19     15     13      9      6 
##     22     23     24     25     26     27     28     29     30     32     33 
##     13      5     11      7      6      6      3      3      6      5      5 
##     34     35     36     37     38     39     40     41     42     44     46 
##      3      1      2      2      2      1      2      1      1      1      1 
##     49     50     53     55     57     59     61     63     67     99    114 
##      1      2      1      1      1      3      1      1      1      1      1

We can also use it with qualitative variables like recipe names.

table(nyt$recipe_name)
## 
##                                                                          1 2 3 4 cake 
##                                                                                    20 
##                                                        15 minute fried herbed chicken 
##                                                                                    76 
##                                         3 bean good luck salad with cumin vinaigrette 
##                                                                                    28 
##                                                                5 ingredient apple pie 
##                                                                                    13 
##                                                                       5 minute hummus 
##                                                                                   280 
##                                                                              7up cake 
##                                                                                   107 
##                                                                     a beer and a shot 
##                                                                                    13 
##                                                          a big pot of simmered pintos 
##                                                                                    37 
##                                            a meal in a bowl salmon shiitakes and peas 
##                                                                                     4 
##                                              a mess of pork chops with dijon dressing 
##                                                                                    10 
##                                                             a perfect hard boiled egg 
##                                                                                    41 
##                                                                     a plain pizza pie 
##                                                                                    18 
##                                                               a potato dish for julia 
##                                                                                     5 
##                                                               a spice cookie to share 
##                                                                                    16 
##                                                   a very updated vegetable chartreuse 
##                                                                                    16 
##                                                                       abalone ceviche 
##                                                                                     1 
##                                                     abc kitchen rye whiskey manhattan 
##                                                                                     1 
##                                               abgoosht persian lamb and chickpea stew 
##                                                                                     5 
##                                                                       absinthe frappe 
##                                                                                     1 
##                                                                  abstract art cookies 
##                                                                                    40 
##                                            abuelo pelaezs frijoles negros black beans 
##                                                                                    81 
##                                                               ad lib turkey cassoulet 
##                                                                                    12 
##                                                                                 adasi 
##                                                                                    11 
##                                                                   adobo fried chicken 
##                                                                                    11 
##                                                                   adonis a la oloroso 
##                                                                                     3 
##                                                afghan style pumpkin with yogurt sauce 
##                                                                                    14 
##                                                                           agege bread 
##                                                                                     7 
##                                                                      agridulce royale 
##                                                                                     2 
##                                                                           agua fresca 
##                                                                                     1 
##                                                                agua fresca de jamaica 
##                                                                                     3 
##                                                                          ah sunflower 
##                                                                                     2 
##                                                                                 aioli 
##                                                                                    14 
##                                                               aioli garlic mayonnaise 
##                                                                                     8 
##                                                         aioli with roasted vegetables 
##                                                                                    66 
##                               air fryer brussels sprouts with garlic balsamic and soy 
##                                                                                    32 
##                                                                air fryer french fries 
##                                                                                    15 
##                                                         air fryer spicy chicken wings 
##                                                                                    15 
##                                                       aji colombian style fresh salsa 
##                                                                                    14 
##                                                                          aji cuencano 
##                                                                                     2 
##                                                             alabama lemon cheese cake 
##                                                                                    17 
##                                                                       alaska cocktail 
##                                                                                     6 
##                                                  albacore roasted in a bed of lettuce 
##                                                                                     1 
##                                                                    albertine cocktail 
##                                                                                     2 
##                                           alcapurrias de jueyes crab stuffed fritters 
##                                                                                     2 
##                                             alders pub cheese with potato bread chips 
##                                                                                     2 
##                                                         ale braised collards with ham 
##                                                                                    27 
##                                                      ale cheddar and cauliflower soup 
##                                                                                    54 
##                                           ale steamed mussels with garlic and mustard 
##                                                                                    25 
##                                                                             alfajores 
##                                                                                    35 
##                                                                         alfredo sauce 
##                                                                                    19 
##                                                algerian okra potato and tomato tagine 
##                                                                                     7 
##                                            alice waterss grapefruit and avocado salad 
##                                                                                    18 
##                                                     alice waterss seasonal minestrone 
##                                                                                    35 
##                                                    aligot mashed potatoes with cheese 
##                                                                                    47 
##                                                             alkaline semolina noodles 
##                                                                                     2 
##                                                         all in one holiday bundt cake 
##                                                                                    57 
##                                                                  all purpose biscuits 
##                                                                                   469 
##                                                       all purpose california beef rub 
##                                                                                    74 
##                                                                   all purpose dry rub 
##                                                                                    15 
##                                                            all purpose enriched bread 
##                                                                                     2 
##                                                                 all purpose pie dough 
##                                                                                    58 
##                                                        all whole wheat sandwich bread 
##                                                                                     6 
##                                                 allergen free warm apple apricot cake 
##                                                                                    18 
##                                                              allergy friendly cookies 
##                                                                                     2 
##                                                                               allioli 
##                                                                                     3 
##                                                                    allspice alexander 
##                                                                                     1 
##                                  almond and dried fruit pilaf with rotisserie chicken 
##                                                                                    12 
##                                                     almond and goat cheese candy bars 
##                                                                                    22 
##                                                         almond and macadamia nut milk 
##                                                                                     6 
##                                                           almond apricot granola bars 
##                                                                                    10 
##                                                                   almond apricot tart 
##                                                                                    12 
##                                    almond birthday cake with sherry lemon buttercream 
##                                                                                    31 
##                                  almond black pepper and fig cake with tamarind glaze 
##                                                                                    26 
##                                                                           almond cake 
##                                                                                   184 
##                                               almond cake with cardamom and pistachio 
##                                                                                   192 
##                                                    almond cake with saffron and honey 
##                                                                                    31 
##                                                                     almond croissants 
##                                                                                     1 
##                                              almond flour crab cakes with lemon aioli 
##                                                                                     6 
##                                                                 almond grape gazpacho 
##                                                                                     1 
##                                                                      almond ice cream 
##                                                                                     3 
##                                                    almond walnut thumbprint macaroons 
##                                                                                    27 
##                                              almost aunt sandys sweet and sour salmon 
##                                                                                    15 
##                                                    almost from scratch corn tortillas 
##                                                                                    53 
##                                                     almost spit roasted moroccan lamb 
##                                                                                    21 
##                                                         aloo kofta fried potato balls 
##                                                                                     5 
##                                                           aloo masala spiced potatoes 
##                                                                                    96 
##                                                           aloo samosas potato samosas 
##                                                                                    32 
##                                                       alsatian pear kugel with prunes 
##                                                                                     5 
##                                                         amalias goat cheese soufflazy 
##                                                                                    37 
##                                            amanda cohens secret weapon stir fry sauce 
##                                                                                    62 
##                                                                     amaranth porridge 
##                                                                                    14 
##                                  amaranth porridge with grated apples and maple syrup 
##                                                                                     3 
##                                                  amaranth ricotta and greens pancakes 
##                                                                                     4 
##                                                                         amaretto sour 
##                                                                                     7 
##                                                                            amaro sour 
##                                                                                    17 
##                                                                          amaro spritz 
##                                                                                    26 
##                                                                amatriciana on the fly 
##                                                                                    28 
##                                                 amazingly sweet slow roasted tomatoes 
##                                                                                    21 
##                                                                         ambrosia cake 
##                                                                                    56 
##                                                                           american 25 
##                                                                                     2 
##                                                                             americano 
##                                                                                     4 
##                                                                    amus chicken korma 
##                                                                                    44 
##                                                    an adaptable cosmopolitan cocktail 
##                                                                                     7 
##                                                   an adaptable old fashioned cocktail 
##                                                                                    11 
##                                                               anchovy garlic dressing 
##                                                                                   156 
##                                                               andalusian cabbage stew 
##                                                                                    51 
##                                                  andalusian chickpea and spinach soup 
##                                                                                    10 
##                                               ande ki kari eggs in spicy tomato sauce 
##                                                                                    46 
##                                             angel food cake with nectarines and plums 
##                                                                                     8 
##                                            angel hair pasta with peppers and tomatoes 
##                                                                                    25 
##                                                                        angostura sour 
##                                                                                     2 
##                                                               ann cary randolphs peas 
##                                                                                     5 
##                                                            ann romneys meatloaf cakes 
##                                                                                    46 
##                                                            anne seversons gingersnaps 
##                                                                                     7 
##                                 antoni porowskis french omelet with cheese and chives 
##                                                                                    10 
##                                                                         any fruit jam 
##                                                                                    22 
##                                                                    any spirit negroni 
##                                                                                     1 
##                                                                    any vegetable soup 
##                                                                                    66 
##                                                                any vegetable stir fry 
##                                                                                    22 
##                                                                    any vegetable tart 
##                                                                                    30 
##                                                                        aperol granita 
##                                                                                     5 
##                                                       apple and bitter lettuces salad 
##                                                                                     7 
##                                                             apple and swiss chard pie 
##                                                                                     7 
##                                                             apple and walnut haroseth 
##                                                                                    19 
##                                                              apple bourbon bundt cake 
##                                                                                   190 
##                                                                          apple butter 
##                                                                                    58 
##                                                              apple butter quick bread 
##                                                                                    46 
##                                                                 apple butter rugelach 
##                                                                                    34 
##                                     apple butter sticky buns with pecans and currants 
##                                                                                    14 
##                                                         apple cider and bourbon punch 
##                                                                                    12 
##                                                         apple cider caramel dumplings 
##                                                                                     2 
##                                                                 apple cider doughnuts 
##                                                                                    21 
##                                                                apple cider honey cake 
##                                                                                    86 
##                                                              apple cider whoopie pies 
##                                                                                    90 
##                                                                       apple clafoutis 
##                                                                                    22 
##                                                                         apple cobbler 
##                                                                                    21 
##                                                                         apple compote 
##                                                                                     6 
##                                                              apple cranberry slab pie 
##                                                                                    67 
##                                                                  apple crumb crostata 
##                                                                                    36 
##                                                                         apple crumble 
##                                                                                   174 
##                                                                       apple dumplings 
##                                                                                     6 
##                                               apple fennel and endive salad with feta 
##                                                                                     8 
##                                                              apple gingersnap crumble 
##                                                                                    49 
##                                              apple green chile pie with cheddar crust 
##                                                                                    19 
##                                             apple gruyere french toast with red onion 
##                                                                                    23 
##                                                    apple kuchen with honey and ginger 
##                                                                                    76 
##                                                          apple lime and chia smoothie 
##                                                                                    16 
##                                                                       apple ombre pie 
##                                                                                    71 
##                                                                     apple or pear jam 
##                                                                                    15 
##                                           apple pear galette with apple cider caramel 
##                                                                                   108 
##                                       apple pear strudel with dried fruit and almonds 
##                                                                                    11 
##                                                                             apple pie 
##                                                                                   282 
##                                                                        apple pie bars 
##                                                                                    99 
##                                                                apple pie circus style 
##                                                                                    86 
##                                                                     apple pie filling 
##                                                                                    14 
##                                          apple potato latkes with cinnamon sour cream 
##                                                                                    11 
##                                                             apple prune cardamom cake 
##                                                                                     7 
##                                                                           apple raita 
##                                                                                     6 
##                                         apple salad with walnuts and brussels sprouts 
##                                                                                    10 
##                                  apple sheet cake with cinnamon cream cheese frosting 
##                                                                                    71 
##                                       apple skillet cake with salted caramel frosting 
##                                                                                   215 
##                                                                            apple slaw 
##                                                                                    11 
##                                                                           apple smash 
##                                                                                    16 
##                                                            apple spice breakfast soup 
##                                                                                     8 
##                             apple stuffed pork loin with coriander cumin and cinnamon 
##                                                                                    26 
##                                                              apple walnut drop scones 
##                                                                                     8 
##                                                                  apple walnut galette 
##                                                                                     5 
##                                                     applejack butter pecan bundt cake 
##                                                                                    16 
##                                                 apples with honey and crushed walnuts 
##                                                                                    27 
##                                                                      applesauce bread 
##                                                                                    30 
##                                  applesauce cake with cream cheese and honey frosting 
##                                                                                    70 
##                                                               apricot and almond tart 
##                                                                                     8 
##                                                                 apricot bread pudding 
##                                                                                     4 
##                                                     apricot cherry and almond galette 
##                                                                                     8 
##                                                  apricot crumble with oatmeal topping 
##                                                                                     7 
##                                                                    apricot noyaux jam 
##                                                                                    20 
##                                                apricot tart with pistachio frangipane 
##                                                                                     7 
##                                                              apricot upside down cake 
##                                                                                     6 
##                                                        april bloomfields clam chowder 
##                                                                                     4 
##                              april bloomfields pot roasted artichokes with white wine 
##                                                                                    24 
##                                                                    aquafaba meringues 
##                                                                                    56 
##                                                                              ara yaki 
##                                                                                     1 
##                                                             arak and grapefruit juice 
##                                                                                     3 
##                                                                              arancini 
##                                                                                    24 
##                                                   arancini with brandy soaked raisins 
##                                                                                    18 
##                                                                   arctic char burgers 
##                                                                                    29 
##                                     arctic char with soba noodles pine nuts and lemon 
##                                                                                    33 
##                                                       arctic char with spinach butter 
##                                                                                    13 
##                                                           arepas with cheese and corn 
##                                                                                    14 
##                                          armenian rice pilaf with raisins and almonds 
##                                                                                    20 
##                                                                   aromatic baked rice 
##                                                                                     2 
##                                     arroz caldo with collards and soy cured egg yolks 
##                                                                                    17 
##                                 arroz con gandules puerto rican rice with pigeon peas 
##                                                                                    34 
##                                                                       arroz con leche 
##                                                                                    10 
##                                                                       arroz con pollo 
##                                                                                    52 
##                                                                           arroz gordo 
##                                                                                     2 
##                                                                      arroz mamposteao 
##                                                                                     5 
##                                                          artichoke and spinach gratin 
##                                                                                     4 
##                                                              artichoke heart frittata 
##                                                                                    10 
##                                                  artichoke mushroom and potato ragout 
##                                                                                     3 
##                                                                       artichoke torte 
##                                                                                    13 
##                                   arugula and avocado salad with bagna cauda dressing 
##                                                                                    11 
##                                      arugula and carrot salad with walnuts and cheese 
##                                                                                     7 
##                       arugula and corn salad with roasted red peppers and white beans 
##                                                                                     5 
##                                                  arugula cherry and goat cheese salad 
##                                                                                    12 
##                                                           arugula corn and herb salad 
##                                                                                     5 
##                                                         arugula pear and orange salad 
##                                                                                    13 
##                                                                         arugula pesto 
##                                                                                    54 
##                                                          arugula pina colada smoothie 
##                                                                                     6 
##                                                                         arugula salad 
##                                                                                     7 
##                                                   arugula salad with anchovy dressing 
##                                                                                    34 
##                                         arugula salad with chopped egg and prosciutto 
##                                                                                     2 
##                                    arugula salad with grilled apricots and pistachios 
##                                                                                    40 
##                                                    arugula salad with la tur dressing 
##                                                                                     2 
##                                                   arugula salad with lime vinaigrette 
##                                                                                    18 
##                                      arugula salad with peaches goat cheese and basil 
##                                                                                    79 
##                                                                                 asado 
##                                                                                    15 
##                                                                           asado negro 
##                                                                                    15 
##                                       ash reshteh persian greens bean and noodle soup 
##                                                                                    44 
##                                                                  ash roasted potatoes 
##                                                                                    20 
##                                                                     ashkinaze rib eye 
##                                                                                    20 
##                                                                         ashure cereal 
##                                                                                    74 
##                                                                        asian broccoli 
##                                                                                     5 
##                                        asian chopped salad with seasoned tofu fingers 
##                                                                                     3 
##                                                             asian herbed omelet wraps 
##                                                                                     5 
##                                 asian pasta with tofu shiitake mushrooms and broccoli 
##                                                                                    16 
##                                                    asian red cabbage and walnut salad 
##                                                                                    17 
##                                                             asian style cucumber soup 
##                                                                                     6 
##                                                                asparagus alla fontina 
##                                                                                    25 
##                                      asparagus and chicken salad with ginger dressing 
##                                                                                    85 
##                                                          asparagus and mushroom salad 
##                                                                                    19 
##                                        asparagus frittata with burrata and herb pesto 
##                                                                                    71 
##                                                  asparagus frittata with smoked trout 
##                                                                                     8 
##                                               asparagus goat cheese and tarragon tart 
##                                                                                   401 
##                              asparagus green beans and potatoes with green mole sauce 
##                                                                                     1 
##                                                                       asparagus pesto 
##                                                                                    68 
##                                       asparagus potato hash with goat cheese and eggs 
##                                                                                    28 
##                                                       asparagus rolled in herb crepes 
##                                                                                     4 
##                                                         asparagus salad italian style 
##                                                                                    15 
##                                                        asparagus salad japanese style 
##                                                                                     5 
##                                                 asparagus salad with hard boiled eggs 
##                                                                                    24 
##                                                  asparagus soup with ricotta crostini 
##                                                                                    18 
##                                                   asparagus with anchovies and capers 
##                                                                                    17 
##                                                           asparagus with green garlic 
##                                                                                     1 
##                                          asparagus with gremolata lemon and olive oil 
##                                                                                    13 
##                                                    asparagus with morels and tarragon 
##                                                                                    12 
##                                                    asparagus with mustard vinaigrette 
##                                                                                    28 
##                                                     asparagus with prosciutto and egg 
##                                                                                    11 
##                                         asparagus with salsa verde and scarlet onions 
##                                                                                     1 
##                                      asparagus with walnuts parmesan and brown butter 
##                                                                                    17 
##                                                                    atlantic beach pie 
##                                                                                   188 
##                                                                       atomic cocktail 
##                                                                                     2 
##                                                                             auld lang 
##                                                                                     6 
##                                                                    aunt gens biscotti 
##                                                                                     2 
##                                                             aunt phillomenas pizzelle 
##                                                                                    14 
##                                                          auntie khar imms chile sauce 
##                                                                                     4 
##                                                                        autumn bonfire 
##                                                                                     3 
##                                                                         autumn quinoa 
##                                                                                    20 
##                                                                       avgolemono rice 
##                                                                                    26 
##                                                                              aviation 
##                                                                                     7 
##                                                   avocado and roasted tomatillo salsa 
##                                                                                     8 
##                                                                avocado basil dressing 
##                                                                                     7 
##                                                                 avocado cucumber soup 
##                                                                                     8 
##                                                avocado fattoush with mint vinaigrette 
##                                                                                    14 
##                                                                         avocado fries 
##                                                                                    10 
##                                                                      avocado gazpacho 
##                                                                                     8 
##                                                                      avocado mint dip 
##                                                                                    10 
##                                                   avocado salad with herbs and capers 
##                                                                                   123 
##                                                                         avocado tacos 
##                                                                                    49 
##                                                                         avocado toast 
##                                                                                   129 
##                                                                   avocado vichyssoise 
##                                                                                    13 
##                                                     avocado with soy lime vinaigrette 
##                                                                                     1 
##                                                     award winning maple blueberry pie 
##                                                                                    14 
##                                    aylenish rugelach with orange walnuts and cinnamon 
##                                                                                     4 
##                                                                          baba au rhum 
##                                                                                    14 
##                                                                          baba ghanouj 
##                                                                                    45 
##                                                          babette friedmans apple cake 
##                                                                                   157 
##                                                                baby artichoke risotto 
##                                                                                     5 
##                                                       baby bok choy with oyster sauce 
##                                                                                    81 
##                                 baby greens with balsamic roasted turnips and walnuts 
##                                                                                     4 
##                                                     baby peas and mushrooms with mint 
##                                                                                     1 
##                              baby salad greens with sweet potato croutons and stilton 
##                                                                                     1 
##                                             baby spinach salad with dates and almonds 
##                                                                                    52 
##                                                         backyard flank steak teriyaki 
##                                                                                    51 
##                                           bacon and apple quiche with flaky pie crust 
##                                                                                    16 
##                                                                   bacon and egg pizza 
##                                                                                    21 
##                                                        bacon and shallot potato salad 
##                                                                                    41 
##                                                          bacon barbecued brisket flat 
##                                                                                     5 
##                                                                  bacon cheddar quiche 
##                                                                                    34 
##                                            bacon cornbread with cheddar and scallions 
##                                                                                     6 
##                                              bacon egg and cheese breakfast casserole 
##                                                                                    75 
##                                                                       bacon explosion 
##                                                                                    11 
##                                                                 bacon fat gingersnaps 
##                                                                                    94 
##                                                     bacon lettuce and plum sandwiches 
##                                                                                     1 
##                                                                       bacon onion jam 
##                                                                                    32 
##                                                            bacon scallion cream sauce 
##                                                                                    14 
##                                                                          bacon toffee 
##                                                                                     3 
##                             bacon wrapped grilled chicken salad with avocado and lime 
##                                                                                    41 
##                                                                       bad day at work 
##                                                                                    27 
##                                                                        bademjan kebab 
##                                                                                     1 
##                                                                          baghali polo 
##                                                                                     4 
##                                                                         baharat blend 
##                                                                                     6 
##                                                                        baingan bharta 
##                                                                                    77 
##                            baked acorn squash stuffed with wild rice and kale risotto 
##                                                                                     7 
##                                    baked acorn squash with walnut oil and maple syrup 
##                                                                                     9 
##                                                                          baked alaska 
##                                                                                    20 
##                                      baked alfredo pasta with broccoli rabe and lemon 
##                                                                                   113 
##                                                         baked and loaded acorn squash 
##                                                                                     5 
##                                baked and sauteed spaghetti squash on a bed of spinach 
##                                                                                    27 
##                                                           baked apple cider doughnuts 
##                                                                                   370 
##                                                                          baked apples 
##                                                                                    84 
##                                         baked artichoke pasta with creamy goat cheese 
##                                                                                   150 
##                                 baked asparagus with shiitake prosciutto and couscous 
##                                                                                    13 
##                                       baked barley risotto with mushrooms and carrots 
##                                                                                   140 
##                                                     baked bean and cheese quesadillas 
##                                                                                    64 
##                                                                           baked beans 
##                                                                                   161 
##                                            baked beans with mint peppers and tomatoes 
##                                                                                     4 
##                               baked beans with pomegranate molasses walnuts and chard 
##                                                                                    11 
##                                         baked beans with sweet potatoes and chipotles 
##                                                                                    18 
##                                                                            baked brie 
##                                                                                    89 
##                                                   baked brie with quick cranberry jam 
##                                                                                    44 
##                                                     baked broccoli rabe with parmesan 
##                                                                                    36 
##                                                                   baked buffalo wings 
##                                                                                   152 
##                                                                 baked camembert salad 
##                                                                                    17 
##                                                           baked carrot cake doughnuts 
##                                                                                    21 
##                                                                        baked celeriac 
##                                                                                     7 
##                                                baked cheesy pasta with wild mushrooms 
##                                                                                   128 
##                                                                 baked chicken tenders 
##                                                                                   163 
##                                       baked chicken with crispy parmesan and tomatoes 
##                                                                                    81 
##                                 baked chicken with potatoes cherry tomatoes and herbs 
##                                                                                   176 
##                                                                           baked clams 
##                                                                                    13 
##                                                                   baked coconut balls 
##                                                                                     9 
##                                       baked cod with crunchy miso butter bread crumbs 
##                                                                                   117 
##                                                                  baked corn casserole 
##                                                                                     4 
##                                         baked crab dip with old bay and ritz crackers 
##                                                                                    38 
##                                                  baked egg with prosciutto and tomato 
##                                                                                    69 
##                                    baked eggplant with ricotta mozzarella and anchovy 
##                                                                                   105 
##                                                                baked eggs for a crowd 
##                                                                                    17 
##                                                      baked eggs with beans and greens 
##                                                                                    68 
##                                       baked eggs with creme fraiche and smoked salmon 
##                                                                                    45 
##                                       baked eggs with kale bacon and cornbread crumbs 
##                                                                                    27 
##                                              baked farro with lentils tomato and feta 
##                                                                                   123 
##                                                            baked figs and goat cheese 
##                                                                                    14 
##                                                                            baked fish 
##                                                                                    94 
##                                                                  baked fish and chips 
##                                                                                   160 
##                                                     baked fish with sesame and ginger 
##                                                                                    76 
##                                                               baked flounder and eggs 
##                                                                                    18 
##                                                                    baked french fries 
##                                                                                    49 
##                                           baked french toast with oat crumble topping 
##                                                                                    26 
##                                          baked frittata with green peppers and yogurt 
##                                                                                     1 
##                                     baked frittata with yogurt chard and green garlic 
##                                                                                    10 
##                                                             baked german potato salad 
##                                                                                    26 
##                                                  baked giant white beans with cabbage 
##                                                                                    11 
##                                             baked greek shrimp with tomatoes and feta 
##                                                                                   319 
##                                                 baked halibut with tomato caper sauce 
##                                                                                    39 
##                                                     baked kataifi wrapped goat cheese 
##                                                                                     2 
##                                                                  baked lebanese kibbe 
##                                                                                    46 
##                                                        baked lentils with goat cheese 
##                                                                                    10 
##                                        baked meat filled empanadas empanadas al horno 
##                                                                                     6 
##                                            baked miso glazed tofu with wild mushrooms 
##                                                                                    21 
##                             baked mushrooms and white beans with buttery bread crumbs 
##                                                                                   101 
##                                                baked oatmeal with berries and almonds 
##                                                                                    71 
##                                                   baked orzo with artichokes and peas 
##                                                                                    87 
##                                 baked orzo with tomatoes roasted peppers and zucchini 
##                                                                                    64 
##                                      baked paella with shrimp chorizo and salsa verde 
##                                                                                    43 
##                                                                    baked pate a choux 
##                                                                                    15 
##                                       baked polenta with crispy leeks and blue cheese 
##                                                                                   111 
##                                               baked polenta with ricotta and parmesan 
##                                                                                    52 
##                                                                     baked potato soup 
##                                                                                    93 
##                                                          baked potato style red beets 
##                                                                                     4 
##                                                                        baked potatoes 
##                                                                                    89 
##                                            baked potatoes with crab jalapeno and mint 
##                                                                                    22 
##                                                               baked pumpkin doughnuts 
##                                                                                     8 
##                                        baked rajma punjabi style red beans with cream 
##                                                                                   328 
##                                                                     baked razor clams 
##                                                                                     1 
##                                                                            baked rice 
##                                                                                   136 
##                                                 baked rice with chicken and mushrooms 
##                                                                                   341 
##                                      baked rice with slow roasted tomatoes and garlic 
##                                                                                    66 
##                                           baked rice with white beans leeks and lemon 
##                                                                                   319 
##                                                baked ricotta frittata with fresh mint 
##                                                                                     6 
##                                                  baked ricotta with spring vegetables 
##                                                                                    16 
##                                        baked rigatoni with tomatoes olives and pepper 
##                                                                                    77 
##                                                    baked risotto with greens and peas 
##                                                                                   243 
##                                                      baked risotto with winter squash 
##                                                                                    56 
##                                   baked romanesco broccoli with mozzarella and olives 
##                                                                                    65 
##                                      baked sea bass with potatoes tomatoes and onions 
##                                                                                     6 
##                                    baked skillet pasta with cheddar and spiced onions 
##                                                                                   135 
##                                                                baked spaghetti squash 
##                                                                                   103 
##                                          baked spanakopita pasta with greens and feta 
##                                                                                   218 
##                                                         baked spinach artichoke pasta 
##                                                                                   277 
##                                                                    baked spinach rice 
##                                                                                    78 
##                                                  baked steel cut oats with nut butter 
##                                                                                    69 
##                                                            baked stuffed acorn squash 
##                                                                                    40 
##                                                                  baked sweet potatoes 
##                                                                                    17 
##                                      baked tapioca pudding with cinnamon sugar brulee 
##                                                                                    13 
##                                    baked tofu with peanut sauce and coconut lime rice 
##                                                                                   405 
##                                                     baked tomatoes with arugula pesto 
##                                                                                     1 
##                                        baked tunisian carrot potato and tuna frittata 
##                                                                                    20 
##                                           baked tunisian eggplant and pepper frittata 
##                                                                                    10 
##                                               baked white beans and sausage with sage 
##                                                                                    48 
##                                                                            baked ziti 
##                                                                                   263 
##                                           baked ziti or penne rigate with cauliflower 
##                                                                                    30 
##                                         baked ziti with sausage meatballs and spinach 
##                                                                                    93 
##                                                    bakewell tart with cranberry sauce 
##                                                                                    18 
##                                                   baklazhannaia ikra poor mans caviar 
##                                                                                     5 
##                                                                      baku fish kebabs 
##                                                                                     6 
##                                                                        balkan burgers 
##                                                                                     6 
##                                                       balkan eggplant and chile puree 
##                                                                                     5 
##                                                       balsamic glazed oven baked ribs 
##                                                                                    78 
##                                                                  balsamic panna cotta 
##                                                                                     1 
##                                    balsamic roasted winter squash and wild rice salad 
##                                                                                    17 
##                                                           baltimore pit beef sandwich 
##                                                                                     1 
##                                                                           bamboo shot 
##                                                                                     2 
##                                                           banana almond flax smoothie 
##                                                                                    15 
##                                                                banana beignets gogola 
##                                                                                    13 
##                                                                          banana bread 
##                                                                                   451 
##                                                            banana chocolate chip cake 
##                                                                                   108 
##                                                             banana coconut layer cake 
##                                                                                    24 
##                                                                      banana cream pie 
##                                                                                     7 
##                                                   banana cream pie no churn ice cream 
##                                                                                    18 
##                                                             banana everything cookies 
##                                                                                   307 
##                                       banana granola with cinnamon nutmeg and walnuts 
##                                                                                    23 
##                                                                      banana ice cream 
##                                                                                     3 
##                                                            banana infused pumpkin pie 
##                                                                                     3 
##                                                                banana muesli smoothie 
##                                                                                     1 
##                                                        banana oatmeal almond smoothie 
##                                                                                    20 
##                                                                        banana paletas 
##                                                                                    10 
##                                                                        banana pudding 
##                                                                                    65 
##                                                 banana pudding with pistachio crumble 
##                                                                                     7 
##                                        banana snacking cake with salted caramel glaze 
##                                                                                   136 
##                                        banana wild blueberry smoothie with chia seeds 
##                                                                                     7 
##                                                                        bananas foster 
##                                                                                    55 
##                                                          bananas foster bread pudding 
##                                                                                    49 
##                                                              bananas foster poundcake 
##                                                                                    19 
##                                                                 bananas in lime syrup 
##                                                                                     3 
##                                         bananas poached in vanilla scented chardonnay 
##                                                                                     1 
##                                                             bangladeshi chicken korma 
##                                                                                    57 
##                                                                              banh xeo 
##                                                                                    17 
##                                                                          banoffee pie 
##                                                                                    53 
##                        bar snack brussels sprouts steeped in olive oil and fish sauce 
##                                                                                    35 
##                                                                  barbecue beef tongue 
##                                                                                     2 
##                                                                barbecue chicken pizza 
##                                                                                    48 
##                                                                barbecue chicken wings 
##                                                                                     4 
##                                                      barbecue country style pork ribs 
##                                                                                    36 
##                                                               barbecue pulled chicken 
##                                                                                    27 
##                                                                   barbecued beef ribs 
##                                                                                     5 
##                                                                     barbecued chicken 
##                                                                                   124 
##                                               barbecued chicken and mushroom tostadas 
##                                                                                     3 
##                                                           barbecued red onion chutney 
##                                                                                     7 
##                                                                      barbecued shrimp 
##                                                                                    46 
##                                                               barberry and orange tea 
##                                                                                     1 
##                                                    bariis iskukaris somali style rice 
##                                                                                    23 
##                                          barley and herb salad with roasted asparagus 
##                                                                                    11 
##                                                    barley and herb stuffed vegetables 
##                                                                                     5 
##                                          barley and spring onion soup with fava beans 
##                                                                                     3 
##                       barley celery root and mushroom salad with scallion vinaigrette 
##                                                                                     2 
##                                          barley risotto with cauliflower and red wine 
##                                                                                    11 
##                                        barley risotto with greens and seared scallops 
##                                                                                     5 
##                                              barley risotto with turkey and mushrooms 
##                                                                                    18 
##                                             barley with beets arugula and goat cheese 
##                                                                                    14 
##                                                           barmbrack irish sweet bread 
##                                                                                    24 
##                                                                          baron bagels 
##                                                                                    60 
##                                                        barszcz classic polish borscht 
##                                                                                     5 
##                                                                  basic braised turkey 
##                                                                                    20 
##                                                       basic dough for fresh egg pasta 
##                                                                                    35 
##                                                               basic fresh pasta dough 
##                                                                                    57 
##                                                                      basic herb salsa 
##                                                                                    11 
##                                                                    basic pepper salsa 
##                                                                                    13 
##                                                                     basic pesto sauce 
##                                                                                    80 
##                                                                    basic phyllo dough 
##                                                                                     4 
##                                                                         basic polenta 
##                                                                                   115 
##                                                              basic short crust pastry 
##                                                                                    55 
##                                                         basic steamed long grain rice 
##                                                                                     8 
##                                                                     basic sticky rice 
##                                                                                    12 
##                                                                   basic stovetop rice 
##                                                                                    28 
##                                                                   basic sugar cookies 
##                                                                                    57 
##                                                           basic sunday salad dressing 
##                                                                                    13 
##                                                                    basic tahini sauce 
##                                                                                    31 
##                                                                     basic vinaigrette 
##                                                                                    73 
##                                                                    basic yogurt sauce 
##                                                                                    27 
##                                                                     basil avocado dip 
##                                                                                     8 
##                                                                          basil paloma 
##                                                                                     2 
##                                                                           basil pesto 
##                                                                                    43 
##                                                       basil spinach and arugula pesto 
##                                                                                     1 
##                                  basmati rice pilaf with cauliflower carrots and peas 
##                                                                                    10 
##                                                                          bass ceviche 
##                                                                                     7 
##                                                                 batched 50 50 martini 
##                                                                                     8 
##                                                                  batched boulevardier 
##                                                                                    13 
##                                                             batida de maracuja e coco 
##                                                                                     2 
##                                                          bavarian style soft pretzels 
##                                                                                    50 
##                                             bavette steak with tahini vegetable salad 
##                                                                                     6 
##                                            bay leaf chicken with orange parsley salad 
##                                                                                    39 
##                                                                bay scallops provencal 
##                                                                                    21 
##                                                                              bbq eggs 
##                                                                                    20 
##                                                                           beachcomber 
##                                                                                     1 
##                                    bean and farro soup with cabbage and winter squash 
##                                                                                    20 
##                                                              bean and green herb stew 
##                                                                                     4 
##                                                 bean and yogurt caesar salad dressing 
##                                                                                     9 
##                                                                        bean casserole 
##                                                                                     1 
##                                                                 bean hole baked beans 
##                                                                                     6 
##                                        bean soup with cabbage winter squash and farro 
##                                                                                    25 
##                                                                         bean tostadas 
##                                                                                    11 
##                                                       beans and garlic toast in broth 
##                                                                                   172 
##                                                                       bearnaise sauce 
##                                                                                    15 
##                                                               beautys cheese blintzes 
##                                                                                    12 
##                                                                     beef and broccoli 
##                                                                                   255 
##                                                             beef and broccoli lo mein 
##                                                                                    84 
##                                                           beef barley soup with lemon 
##                                                                                   202 
##                                                                       beef bone broth 
##                                                                                    38 
##                                                                      beef bourguignon 
##                                                                                   165 
##                                       beef braised in red wine with chinese mushrooms 
##                                                                                     2 
##                                                                        beef carpaccio 
##                                                                                     1 
##                                                                    beef cheek goulash 
##                                                                                     2 
##                                                                        beef empanadas 
##                                                                                    83 
##                                                    beef in parchment with olive sauce 
##                                                                                     6 
##                                                beef involtini with grape tomato sauce 
##                                                                                     3 
##                                                         beef ribs with mol coloradito 
##                                                                                     1 
##                                                                  beef short rib adobo 
##                                                                                    36 
##                                                             beef short rib rice bowls 
##                                                                                    53 
##                                         beef short ribs with star anise and tangerine 
##                                                                                     3 
##                                                                       beef stroganoff 
##                                                                                   161 
##                                                                             beef suya 
##                                                                                    11 
##                                                                   beef tartare burger 
##                                                                                     3 
##                                               beef tenderloin stuffed with herb pesto 
##                                                                                    19 
##                              beef tenderloin with red wine anchovies garlic and thyme 
##                                                                                    12 
##                                  beef tri tip skewers marinated in harissa and yogurt 
##                                                                                    10 
##                                                                       beef wellington 
##                                                                                    84 
##                                         beef with farro egg kimchi puree and broccoli 
##                                                                                     2 
##                                                      beef with horseradish beet aioli 
##                                                                                    16 
##                                       beehive brussels sprouts with spicy vinaigrette 
##                                                                                     3 
##                                                          beer braised beef and onions 
##                                                                                    80 
##                                                             beer brined roast chicken 
##                                                                                    34 
##                                                                      beer can chicken 
##                                                                                    77 
##                                                   beet and arugula salad with berries 
##                                                                                    10 
##                                                          beet and beet green fritters 
##                                                                                     9 
##                                                                beet and chia pancakes 
##                                                                                     9 
##                                         beet and chickpea salad with anchovy dressing 
##                                                                                     5 
##                                                     beet and horseradish cured salmon 
##                                                                                     9 
##                                                    beet and lentil salad with cheddar 
##                                                                                    38 
##                                                                 beet and potato salad 
##                                                                                    28 
##                              beet and radicchio salad with goat cheese and pistachios 
##                                                                                    15 
##                                                              beet and tomato gazpacho 
##                                                                                    13 
##                                         beet and tomato salad with scallions and dill 
##                                                                                    12 
##                                                                  beet dip with labneh 
##                                                                                   121 
##                                beet fennel and fig salad with cranberry sage dressing 
##                                                                                     4 
##                                                                          beet gnocchi 
##                                                                                    26 
##                                                    beet green rice and ricotta blinis 
##                                                                                     3 
##                                                       beet greens and cheddar crumble 
##                                                                                    66 
##                                                           beet greens and potato hash 
##                                                                                     1 
##                                                           beet greens and rice gratin 
##                                                                                    18 
##                                   beet greens bruschetta with poached egg and fontina 
##                                                                                     4 
##                                          beet greens bulgur with carrots and tomatoes 
##                                                                                     4 
##                                                                  beet greens frittata 
##                                                                                    13 
##                                            beet greens green garlic and barley gratin 
##                                                                                     4 
##                                                        beet mushroom and beef burgers 
##                                                                                     6 
##                                                         beet orange and arugula salad 
##                                                                                    22 
##                                             beet potato carrot pickle and apple salad 
##                                                                                     5 
##                                                                  beet red velvet cake 
##                                                                                    37 
##                                                     beet rice and goat cheese burgers 
##                                                                                    15 
##                                              beet salad with chevre frais and caraway 
##                                                                                     1 
##                                             beets and goat cheese on a bed of spinach 
##                                                                                     5 
##                                                                   beets baked in foil 
##                                                                                     5 
##                                                        beets spiced quinoa and yogurt 
##                                                                                     3 
##                                                        beets with garlic walnut sauce 
##                                                                                    10 
##                                                             beets with greens borscht 
##                                                                                     9 
##                                              beets with horseradish and pumpkin seeds 
##                                                                                    16 
##                                                                              beignets 
##                                                                                    32 
##                                                          bengali style tomato chutney 
##                                                                                     5 
##                                                                  berber skillet bread 
##                                                                                     9 
##                                                      berry and rose geranium smoothie 
##                                                                                     3 
##                                                                berry apple butter pie 
##                                                                                    46 
##                                                                     berry blitz torte 
##                                                                                    55 
##                                                                 berry buttermilk cake 
##                                                                                   255 
##                                                                       berry clafoutis 
##                                                                                    43 
##                                                         berry coconut almond smoothie 
##                                                                                    13 
##                                                      berry coconut no bake cheesecake 
##                                                                                    52 
##                                                                       berry hand pies 
##                                                                                    11 
##                                                                             berry jam 
##                                                                                    10 
##                                                               berry jam fried chicken 
##                                                                                    63 
##                                                                    berry rose crumble 
##                                                                                     1 
##                                                                  berry summer pudding 
##                                                                                    13 
##                                                                        berry tiramisu 
##                                                                                     4 
##                                                         bess feigenbaums cabbage soup 
##                                                                                    13 
##                                                                  best black bean soup 
##                                                                                   608 
##                                                                    best chicken salad 
##                                                                                   253 
##                                                                         best gazpacho 
##                                                                                   802 
##                                                                       best lemon bars 
##                                                                                   140 
##                                                  best thanksgiving leftovers sandwich 
##                                                                                    51 
##                              bhatti da murgh indian grilled chicken with whole spices 
##                                                                                    45 
##                                                                              bibimbap 
##                                                                                     1 
##                                 bibimbap with beef winter squash spinach and cucumber 
##                                                                                     5 
##                                                   bibimbap with chicken and mushrooms 
##                                                                                     2 
##                            bibimbap with tofu cucumbers spinach shiitakes and carrots 
##                                                                                     7 
##                     bibimbap with tuna sweet potato broccoli rabe or kale and lettuce 
##                                                                                     1 
##                                        bibingka coconut rice cakes with banana leaves 
##                                                                                     9 
##                                                   bibingka filipino coconut rice cake 
##                                                                                     6 
##                                                              big batch ranchero sauce 
##                                                                                    16 
##                                                    big bob gibson bar b q white sauce 
##                                                                                     4 
##                              big bowl with spicy brown bean squash and corn succotash 
##                                                                                     4 
##                                                                     big country salad 
##                                                                                    20 
##                                                                      big pot of beans 
##                                                                                    92 
##                                                                 big salad with grains 
##                                                                                    41 
##                                                                                 bigos 
##                                                                                    14 
##                                                             bihari green beans masala 
##                                                                                    10 
##                                                                              billi bi 
##                                                                                    55 
##                                                        bindaetteok mung bean pancakes 
##                                                                                     6 
##                                                                        bircher muesli 
##                                                                                    38 
##                                                                         birria de res 
##                                                                                   167 
##                                                                          birria ramen 
##                                                                                     7 
##                                                         birria tacos with chile broth 
##                                                                                    18 
##                                                                 birthday baked alaska 
##                                                                                    24 
##                                                    biscuits and momofuku red eye mayo 
##                                                                                     1 
##                                                                        biscuits roses 
##                                                                                     8 
##                                                           bison pot roast with hominy 
##                                                                                    10 
##                                                                   bistec de palomilla 
##                                                                                     2 
##                                                                                bistek 
##                                                                                    23 
##                                                     bits and pieces party cheese ball 
##                                                                                    28 
##                                                                         bitter coffee 
##                                                                                     1 
##                                                                       bitter giuseppe 
##                                                                                    13 
##                                       bitter greens salad with lemon mustard dressing 
##                                                                                    12 
##                                                                    bitter herbs salad 
##                                                                                     6 
##                                                        bittersweet brownie shortbread 
##                                                                                   117 
##                         bittersweet chocolate almond cake with amaretti cookie crumbs 
##                                                                                    50 
##                                                       bittersweet chocolate ice cream 
##                                                                                    31 
##                                        bittersweet chocolate mousse with fleur de sel 
##                                                                                    89 
##                                                           bittersweet chocolate sauce 
##                                                                                    15 
##                                                         bittersweet chocolate souffle 
##                                                                                    53 
##                                                    bj denniss okra stir fry with rice 
##                                                                                    37 
##                                  black and arborio risotto with beets and beet greens 
##                                                                                    11 
##                                  black and brown rice stuffing with walnuts and pears 
##                                                                                     3 
##                                                              black and white brownies 
##                                                                                    34 
##                                                              black and white cupcakes 
##                                                                                     4 
##                                                            black and white sundae bar 
##                                                                                    12 
##                                                black bean and goat cheese quesadillas 
##                                                                                     7 
##                                                          black bean and poblano tacos 
##                                                                                    12 
##                                                  black bean burger with an egg on top 
##                                                                                   124 
##                                                                    black bean burgers 
##                                                                                   145 
##                                      black bean chorizo casserole with pickled onions 
##                                                                                    56 
##                                                               black bean chorizo stew 
##                                                                                    92 
##                                                                       black bean pate 
##                                                                                     5 
##                                        black bean tacos with avocado and spicy onions 
##                                                                                   107 
##                                                             black beans with amaranth 
##                                                                                     1 
##                                                                            black cake 
##                                                                                    45 
##                        black cherry pistachio salad with charred scallion vinaigrette 
##                                                                                    84 
##                                                                  black currant sorbet 
##                                                                                     4 
##                                                         black eyed pea and pork gumbo 
##                                                                                    37 
##                                                               black eyed pea fritters 
##                                                                                    23 
##                                                                  black eyed pea salad 
##                                                                                    12 
##                                black eyed pea soup or stew with pomegranate and chard 
##                                                                                    16 
##                                                   black eyed peas with collard greens 
##                                                                                    51 
##                                            black eyed peas with ham hock and collards 
##                                                                                   145 
##                                       black eyed peas with vegetables and small pasta 
##                                                                                     8 
##                                                                     black forest cake 
##                                                                                    42 
##                                           black grape blue cheese and thyme flatbread 
##                                                                                    15 
##                                                      black kale and black olive salad 
##                                                                                    14 
##                                                black pepper and bourbon caramel chews 
##                                                                                    16 
##                                                black pepper beef and cabbage stir fry 
##                                                                                   245 
##                                black pepper chicken thighs with mango rum and cashews 
##                                                                                   134 
##                                                                   black pepper shrimp 
##                                                                                     3 
##                                                                  black pepper taralli 
##                                                                                    37 
##                                                  black quinoa fennel and celery salad 
##                                                                                    10 
##                                        black rice and arborio risotto with artichokes 
##                                                                                     6 
##                                                black rice and lentil salad on spinach 
##                                                                                     3 
##                                                       black rice and red lentil salad 
##                                                                                    28 
##                                                              black rice and soy salad 
##                                                                                     6 
##                                          black rice and soy salad with asian dressing 
##                                                                                     6 
##                               black rice beet and kale salad with cider flax dressing 
##                                                                                     7 
##                                           black rice bowl with bok choy and mushrooms 
##                                                                                    25 
##                                                       black rice corn and cranberries 
##                                                                                     9 
##                                                                    black rock chiller 
##                                                                                     1 
##                            black sugar glazed medjool dates with pecorino and walnuts 
##                                                                                     1 
##                                                                     blackberry cooler 
##                                                                                     4 
##                                                               blackberry corn cobbler 
##                                                                                    22 
##                                                              blackberry crumb muffins 
##                                                                                    13 
##                                                               blackberry jam crostata 
##                                                                                    69 
##                                  blackberry lime smoothie with chia seeds and cashews 
##                                                                                     2 
##                                                       blackberry stuffed french toast 
##                                                                                     8 
##                                                                         blackout cake 
##                                                                                    44 
##                                                                            blancmange 
##                                                                                    10 
##                                                                blanquette of scallops 
##                                                                                    42 
##                                                              blender chocolate mousse 
##                                                                                   170 
##                                   blender cucumber yogurt soup with cumin and paprika 
##                                                                                     2 
##                           blender gazpacho with celery carrot cucumber and red pepper 
##                                                                                     6 
##                                                                   blender tomato soup 
##                                                                                     5 
##                                                            blini with mushroom caviar 
##                                                                                     2 
##                               blistered broccoli pasta with walnuts pecorino and mint 
##                                                                                    89 
##                        blistered green beans and tomatoes with honey harissa and mint 
##                                                                                    46 
##                                    blistered green beans with shallots and pistachios 
##                                                                                    28 
##                                           blistered green peppers with sherry vinegar 
##                                                                                     1 
##                                blond puttanesca linguine with tuna arugula and capers 
##                                                                                   197 
##                                                                              blondies 
##                                                                                    34 
##                                             blondies with a strawberry balsamic swirl 
##                                                                                    19 
##                                                                        blood and sand 
##                                                                                     6 
##                                                                  blood orange compote 
##                                                                                     2 
##                                                                     blood orange curd 
##                                                                                     6 
##                                                                     blood orange flan 
##                                                                                    11 
##                                       blood orange grapefruit and pomegranate compote 
##                                                                                     6 
##                                                           blood orange oleo saccharum 
##                                                                                     1 
##                                                           blood orange olive oil cake 
##                                                                                   153 
##                                                blood orange poppy seed window cookies 
##                                                                                    34 
##                                      blood orange smoothie with grapes and red quinoa 
##                                                                                     4 
##                                                             bloody mary celery sticks 
##                                                                                     4 
##                                                                       bloody mary mix 
##                                                                                   222 
##                                                         blotkake norwegian cream cake 
##                                                                                    26 
##                                                                               blowout 
##                                                                                     2 
##                                                                       blowout rib eye 
##                                                                                     7 
##                                                                             blt pasta 
##                                                                                    94 
##                                                                             blt tacos 
##                                                                                    53 
##                                                                           blue butter 
##                                                                                     6 
##                                                                    blue cheese spread 
##                                                                                     4 
##                                            blue cheese steak and endive salad for two 
##                                                                                    26 
##                                                               blue cheese swirl bread 
##                                                                                    45 
##                                                       blueberry almond and lemon cake 
##                                                                                   605 
##                                                             blueberry buttermilk tart 
##                                                                                     3 
##                                                     blueberry coconut oatmeal pudding 
##                                                                                    15 
##                                                    blueberry cornmeal shortbread tart 
##                                                                                   153 
##                                                             blueberry cream popsicles 
##                                                                                    17 
##                                                                  blueberry crumb cake 
##                                                                                    30 
##                                                            blueberry ginger clafoutis 
##                                                                                    25 
##                                                                  blueberry ginger jam 
##                                                                                    13 
##                                                               blueberry jam with lime 
##                                                                                    20 
##                                                  blueberry kefir smoothie with greens 
##                                                                                     4 
##                                                                     blueberry oatmeal 
##                                                                                    35 
##                                blueberry or blackberry compote with yogurt or ricotta 
##                                                                                    12 
##                                                           blueberry pecan crunch cake 
##                                                                                    65 
##                                                                         blueberry pie 
##                                                                                    89 
##                                                                    blueberry pie bars 
##                                                                                    48 
##                                                                 blueberry pie filling 
##                                                                                     6 
##                                                   blueberry pie with a cornmeal crust 
##                                                                                    47 
##                                                                 blueberry rhubarb pie 
##                                                                                    52 
##                                                            blueberry rhubarb slab pie 
##                                                                                    14 
##                                                          blueberry streusel loaf cake 
##                                                                                    41 
##                                                              blueberry yogurt parfait 
##                                                                                     3 
##                                                                   bluefish dijonnaise 
##                                                                                     5 
##                                                        bluefish grilled with caponata 
##                                                                                     2 
##                                                   bo kho vietnamese braised beef stew 
##                                                                                   146 
##                                                    bobby flays chicken with roquefort 
##                                                                                    31 
##                                                 bobby flays double chocolate pancakes 
##                                                                                    15 
##                                                            bobby flays lemon potatoes 
##                                                                                    34 
##                                       bobby flays pan roasted chicken with mint sauce 
##                                                                                    81 
##                                                      bobby flays salted caramel sauce 
##                                                                                    66 
##                                                     bobby shorts carlyle chicken hash 
##                                                                                    10 
##                                                                    boeuf a la ficelle 
##                                                                                     1 
##                                                                       boeuf a la mode 
##                                                                                    31 
##                                                                     boeuf bourguignon 
##                                                                                     4 
##                                                                       bohemian spritz 
##                                                                                     2 
##                                                boiled lobster with lobster mayonnaise 
##                                                                                    10 
##                                                  boiled potatoes with butter and mint 
##                                                                                    23 
##                                               boiled whole artichokes with mayonnaise 
##                                                                                   105 
##                                                                        bok choy salad 
##                                                                                     8 
##                                              bok choy with shiitakes and oyster sauce 
##                                                                                    18 
##                          bolitas de yuca y queso fried yuca balls stuffed with cheese 
##                                                                                     1 
##                          bollito misto italian boiled meats with red and green sauces 
##                                                                                     8 
##                                                                       bombay frittata 
##                                                                                    50 
##                                                              boozy cherry walnut tart 
##                                                                                    46 
##                                                                  boozy concord grapes 
##                                                                                     3 
##                                                                         borscht salad 
##                                                                                    14 
##                                                                         bosnian bread 
##                                                                                     9 
##                                                                    boston baked beans 
##                                                                                    38 
##                                                                    boston brown bread 
##                                                                                    13 
##                                                                boston cream doughnuts 
##                                                                                    20 
##                                                                      boston cream pie 
##                                                                                    65 
##                                         bouillabaisse of fresh peas with poached eggs 
##                                                                                     3 
##                                     bouillabaisse with orange zest fennel and saffron 
##                                                                                     8 
##                                                                          boulevardier 
##                                                                                     7 
##                                                                bourbon balsamic syrup 
##                                                                                     2 
##                                                                         bourbon brule 
##                                                                                    13 
##                                                                     bourbon manhattan 
##                                                                                    13 
##                                                                    bourbon milk punch 
##                                                                                     6 
##                                                                 bourbon old fashioned 
##                                                                                     3 
##                                                              bourbon street milkshake 
##                                                                                     3 
##                                                                 bourride a la setoise 
##                                                                                     4 
##                                 bow ties with arugula olives bulgur and tomato wedges 
##                                                                                     5 
##                                                           boxty irish potato pancakes 
##                                                                                    22 
##                                                            braai spiced t bone steaks 
##                                                                                    31 
##                                           braised and roasted chicken with vegetables 
##                                                                                    10 
##                                                                    braised artichokes 
##                                                                                    30 
##                                                            braised beef with eggplant 
##                                                                                    19 
##                                                                         braised beets 
##                                                                                    11 
##                                                    braised beets with butter and dill 
##                                                                                     1 
##                                                       braised beets with ham and beer 
##                                                                                     3 
##                                              braised beets with sour cream and chives 
##                                                                                     7 
##                                        braised brisket with plums star anise and port 
##                                                                                    87 
##                          braised brisket with pomegranate juice chestnuts and turnips 
##                                                                                     7 
##                                                                       braised cabbage 
##                                                                                    21 
##                                             braised carrots with cumin and red pepper 
##                                                                                    27 
##                                              braised celery with thyme and white wine 
##                                                                                    23 
##                                                              braised chestnut chicken 
##                                                                                     3 
##                                              braised chicken legs with wild mushrooms 
##                                                                                    61 
##                                        braised chicken thighs with caramelized fennel 
##                                                                                    85 
##                     braised chicken thighs with chile cinnamon cardamom and coriander 
##                                                                                    40 
##                                         braised chicken thighs with greens and olives 
##                                                                                    83 
##                                                braised chicken thighs with tomatillos 
##                                                                                   158 
##                                                   braised chicken wings in bean sauce 
##                                                                                     5 
##                                            braised chicken with artichokes and olives 
##                                                                                   141 
##                                                        braised chicken with gochujang 
##                                                                                    74 
##                                                 braised chicken with lemon and olives 
##                                                                                   256 
##                              braised chicken with rosemary chickpeas and salted lemon 
##                                                                                    60 
##                                                braised chicken with salami and olives 
##                                                                                    59 
##                                          braised chicken with tomatoes cumin and feta 
##                                                                                    10 
##                                       braised chicken with tomatoes olives and capers 
##                                                                                    20 
##                                                     braised cold fennel hearts victor 
##                                                                                    15 
##                                                                braised collard greens 
##                                                                                    23 
##                                         braised country style pork ribs with chipotle 
##                                                                                    65 
##                        braised crisp pigs feet with radish and shaved vegetable salad 
##                                                                                     2 
##                                                                    braised cube steak 
##                                                                                    19 
##                                             braised duck legs with plums and red wine 
##                                                                                    14 
##                                                   braised eggplant pork and mushrooms 
##                                                                                    75 
##                                             braised eggs with zucchini feta and lemon 
##                                                                                    27 
##                                                  braised fennel with white bean puree 
##                                                                                     8 
##                                                          braised fish pot roast style 
##                                                                                    19 
##                                    braised five spice lamb shanks with soy and ginger 
##                                                                                    17 
##                                                      braised flanken with pomegranate 
##                                                                                    11 
##                                                           braised goat leg in obe ata 
##                                                                                    16 
##                              braised greek artichoke bottoms with lemon and olive oil 
##                                                                                     4 
##                              braised halibut with asparagus baby potatoes and saffron 
##                                                                                    39 
##                                                  braised lamb shanks with fresh herbs 
##                                                                                    33 
##                                     braised lamb with anchovies garlic and white wine 
##                                                                                    18 
##                                                       braised lamb with egg and lemon 
##                                                                                    29 
##                                                 braised lamb with red wine and prunes 
##                                                                                   130 
##                                           braised lamb with squash and brandied fruit 
##                                                                                    20 
##                                                  braised lamb with tomato and almonds 
##                                                                                     3 
##                                                           braised leeks with parmesan 
##                                                                                    30 
##                                            braised leg of lamb with celery root puree 
##                                                                                    30 
##                                            braised lemon saffron chicken and potatoes 
##                                                                                   110 
##                                                      braised lettuce on anchovy toast 
##                                                                                     7 
##                                                            braised peppers and onions 
##                                                                                    28 
##                                                            braised pork allarrabbiata 
##                                                                                   193 
##                               braised pork chops with tomatoes anchovies and rosemary 
##                                                                                    93 
##                                                                   braised rabbit legs 
##                                                                                     4 
##                                                       braised red cabbage with apples 
##                                                                                    99 
##                                                                braised romaine hearts 
##                                                                                     1 
##                                                  braised sauerkraut with lots of pork 
##                                                                                    11 
##                                                           braised short rib dumplings 
##                                                                                     7 
##                                                                    braised short ribs 
##                                                                                    14 
##                                        braised spring carrots and leeks with tarragon 
##                                                                                     5 
##                                                                braised then baked ham 
##                                                                                    23 
##                                                         braised tofu in caramel sauce 
##                                                                                    49 
##                                                                        braised tongue 
##                                                                                    56 
##                                                          braised turnips and radishes 
##                                                                                    11 
##                                          braised white beans and greens with parmesan 
##                                                                                   210 
##                                                                 bran and chia muffins 
##                                                                                    27 
##                                                                              brandade 
##                                                                                     1 
##                                                                brandade potato latkes 
##                                                                                     2 
##                                                                  brandied dried fruit 
##                                                                                   101 
##                                                                 brandied fruit scones 
##                                                                                    47 
##                                                              brandied ginger cocktail 
##                                                                                     2 
##                                                                      brandied peaches 
##                                                                                     8 
##                                              brandied plums with cinnamon and vanilla 
##                                                                                     1 
##                                                                  brandied pumpkin pie 
##                                                                                   146 
##                                                                      brandy alexander 
##                                                                                    11 
##                                                           branzino with arugula sauce 
##                                                                                     8 
##                                                  brazilian cheese puffs pao de queijo 
##                                                                                    12 
##                                                              brazilian collard greens 
##                                                                                    21 
##                                                              bread and butter pickles 
##                                                                                    64 
##                                                                bread pudding frittata 
##                                                                                     1 
##                                                    bread with chocolate and olive oil 
##                                                                                     2 
##                                                                     breaded jalapenos 
##                                                                                     1 
##                                                  breakfast bars with oats and coconut 
##                                                                                   191 
##                                                                   breakfast carbonara 
##                                                                                    56 
##                                                                       breakfast salad 
##                                                                                    45 
##                                   breakfast tacos with eggs onions and collard greens 
##                                                                                     6 
##                                                                        breakfast udon 
##                                                                                    13 
##                                                               breakfast wheat berries 
##                                                                                     7 
##                                                     breton tuna and white bean gratin 
##                                                                                    74 
##                                                               bricklayer style nachos 
##                                                                                    31 
##                                                                           brigadeiros 
##                                                                                    45 
##                                                                bright green leek soup 
##                                                                                    46 
##                                                  bright green pesto and its many uses 
##                                                                                    21 
##                                                       brined chicken with white sauce 
##                                                                                     2 
##                                                         brined pork chops with fennel 
##                                                                                    99 
##                                                             brioche chestnut stuffing 
##                                                                                    79 
##                                              brioche stuffing with chestnuts and figs 
##                                                                                     3 
##                                                  brisket barley soup with crispy kale 
##                                                                                     7 
##                                                       brisket in sweet and sour sauce 
##                                                                                   193 
##                                                    brisket with horseradish gremolata 
##                                                                                    78 
##                                                             broccoli and cheddar soup 
##                                                                                   152 
##                                   broccoli and endive salad with feta and red peppers 
##                                                                                     1 
##                                                    broccoli and red onion quesadillas 
##                                                                                     2 
##                                    broccoli and scallions with thai style vinaigrette 
##                                                                                    38 
##                                    broccoli cabbage and kohlrabi coleslaw with quinoa 
##                                                                                     3 
##                                              broccoli crown leek and potato colcannon 
##                                                                                     2 
##                                                                   broccoli dill pasta 
##                                                                                    51 
##                                       broccoli panzanella with walnut sauce and basil 
##                                                                                     2 
##                                                                        broccoli pesto 
##                                                                                    16 
##                                                    broccoli quinoa and purslane salad 
##                                                                                     3 
##                                                                 broccoli rabe lasagna 
##                                                                                    88 
##                                              broccoli rabe olive and parmesan calzone 
##                                                                                    11 
##                                                         broccoli rabe shakshuka style 
##                                                                                    21 
##                                broccoli salad with cheddar and warm bacon vinaigrette 
##                                                                                    84 
##                                                  broccoli salad with hazelnut romesco 
##                                                                                     7 
##                                  broccoli salad with peanuts and tahini lime dressing 
##                                                                                   155 
##                                                     broccoli stem and red pepper slaw 
##                                                                                     4 
##                                          broccoli stir fry with chicken and mushrooms 
##                                                                                    26 
##                                                  broccoli toasts with melty provolone 
##                                                                                    20 
##                                                           broccoli walnut pesto pasta 
##                                                                                   105 
##                                               broccoli with fried shallots and olives 
##                                                                                    27 
##                                             broccolini and edamame salad with coconut 
##                                                                                     2 
##                                                      brodys cranberry pumpkin muffins 
##                                                                                     4 
##                                                                   broiled calfs liver 
##                                                                                     1 
##                           broiled chicken thighs with oranges fennel and green olives 
##                                                                                    56 
##                                                                    broiled fish tacos 
##                                                                                    46 
##                                                           broiled fish with chermoula 
##                                                                                    10 
##                                                  broiled fish with lemon curry butter 
##                                                                                   168 
##                                    broiled grapefruit with brown sugar and flaky salt 
##                                                                                    17 
##                                                             broiled leeks vinaigrette 
##                                                                                    11 
##                                                           broiled melon with balsamic 
##                                                                                     2 
##                                             broiled mussels with garlicky herb butter 
##                                                                                     9 
##                                      broiled salmon with chile orange and mint butter 
##                                                                                    51 
##                                                 broiled sardines with lemon and thyme 
##                                                                                     7 
##                                                        broiled shrimp with dried lime 
##                                                                                     5 
##                       broiled teriyaki tofu with bitter greens chili and scallion oil 
##                                                                                     3 
##                                                                              brooklyn 
##                                                                                     6 
##                                                           brooklyn bowl fried chicken 
##                                                                                     7 
##                                                         brooklyn style collard greens 
##                                                                                     4 
##                                                            brooklyn style hoppin john 
##                                                                                    25 
##                                                                      brooklyn sunrise 
##                                                                                     3 
##                                                    brooks headleys ice cream sandwich 
##                                                                                     8 
##                                           brothy chicken soup with hominy and poblano 
##                                                                                    28 
##                                                    brothy cod with peas and mushrooms 
##                                                                                    39 
##                                                brown bread with buckwheat and seaweed 
##                                                                                     1 
##                                        brown butter butter beans with lemon and pesto 
##                                                                                    45 
##                                                        brown butter chocolate oatmeal 
##                                                                                    73 
##                                                       brown butter coconut financiers 
##                                                                                    18 
##                                            brown butter lentil and sweet potato salad 
##                                                                                   123 
##                                                                    brown butter mochi 
##                                                                                    98 
##                                                   brown butter nectarine cobbler cake 
##                                                                                    64 
##                                                                brown butter poundcake 
##                                                                                    18 
##                                            brown butter salmon with lemon and harissa 
##                                                                                    81 
##                                                        brown butter skillet cornbread 
##                                                                                   280 
##                 brown rice and barley salad with sprouted red lentils and green beans 
##                                                                                     3 
##                                                            brown rice and farro salad 
##                                                                                    10 
##                                                  brown rice bowls with stewed peppers 
##                                                                                    16 
##                                                 brown rice risotto with winter squash 
##                                                                                     8 
##                                            brown rice salad with mushrooms and endive 
##                                                                                     1 
##                                       brown rice sesame spinach and scallion pancakes 
##                                                                                    17 
##                                                     brown rice with carrots and leeks 
##                                                                                    18 
##                                      brown soda bread loaf with caraway seeds and rye 
##                                                                                     8 
##                                                            brown soda bread with oats 
##                                                                                    35 
##                                                                    brown stew chicken 
##                                                                                     5 
##                                                       brown sugar and spice apple pie 
##                                                                                    12 
##                                                             brown sugar anise cookies 
##                                                                                    81 
##                                                              brown sugar cured salmon 
##                                                                                    39 
##                         brown sugar glaze with golden bread crumb crust for baked ham 
##                                                                                     2 
##                                     brown sugar layer cake with cranberry buttercream 
##                                                                                    54 
##                                           brown sugar roulade with burnt honey apples 
##                                                                                    62 
##                                       brown sugar shortcake with warm bourbon peaches 
##                                                                                    22 
##                                                                              brownies 
##                                                                                   142 
##                                                                          brunch punch 
##                                                                                     6 
##                                               bruschetta with cabbage braised in wine 
##                                                                                     6 
##                               bruschetta with chard or spinach poached egg and dukkah 
##                                                                                     3 
##                                           bruschetta with smashed beans sage and kale 
##                                                                                    10 
##                                                bruschette with ricotta and peperonata 
##                                                                                     1 
##                                           brussels sprout leaf and baby spinach saute 
##                                                                                    11 
##                                                                      brussels sprouts 
##                                                                                    25 
##                                       brussels sprouts and roasted winter squash hash 
##                                                                                    25 
##                                                               brussels sprouts gratin 
##                                                                                    51 
##                                         brussels sprouts pasta with bacon and vinegar 
##                                                                                    88 
##                                        brussels sprouts salad with apples and walnuts 
##                                                                                    29 
##                                                              brussels sprouts sliders 
##                                                                                    26 
##                                             brussels sprouts with bacon and chestnuts 
##                                                                                    12 
##                                                  brussels sprouts with bacon and figs 
##                                                                                    26 
##                                                         brussels sprouts with chorizo 
##                                                                                    25 
##                                      brussels sprouts with mustard apples and caraway 
##                                                                                     2 
##                                              brussels sprouts with peanut vinaigrette 
##                                                                                    23 
##                                     brussels sprouts with pickled shallots and labneh 
##                                                                                    87 
##                                         brussels sprouts with walnuts and pomegranate 
##                                                                                    66 
##                               bryant terrys millet cakes with smoky spicy green sauce 
##                                                                                     8 
##                                                               bucatini allamatriciana 
##                                                                                    24 
##                                                    bucatini with fennel and anchovies 
##                                                                                    12 
##                                                          bucatini with red clam sauce 
##                                                                                     9 
##                                                        buckwheat and amaranth muffins 
##                                                                                    17 
##                                                          buckwheat berry striped cake 
##                                                                                    37 
##                                                                       buckwheat blini 
##                                                                                     6 
##                                                           buckwheat blini with caviar 
##                                                                                     7 
##                                                        buckwheat crackers with sesame 
##                                                                                     9 
##                                                                      buckwheat crepes 
##                                                                                    15 
##                                       buckwheat crepes with asparagus ham and gruyere 
##                                                                                    27 
##                                              buckwheat crepes with caramelized apples 
##                                                                                     3 
##                                                buckwheat crepes with roasted apricots 
##                                                                                     5 
##                                                                buckwheat harvest tart 
##                                                                                     6 
##                                                buckwheat noodles with ginger and miso 
##                                                                                     6 
##                                                                    buckwheat popovers 
##                                                                                    43 
##                                                                          bufala negra 
##                                                                                     5 
##                                                                   buffalo cauliflower 
##                                                                                    49 
##                                                               buffalo cauliflower dip 
##                                                                                    42 
##                                                                   buffalo chicken dip 
##                                                                                    99 
##                                                                 buffalo chicken wings 
##                                                                                    85 
##                                                               buffalo corn on the cob 
##                                                                                     3 
##                                                 buffalo crudites with blue cheese dip 
##                                                                                     4 
##                                       bukharan plov with beef carrots and cumin seeds 
##                                                                                     6 
##                                                  bulgarian cucumber soup with walnuts 
##                                                                                    19 
##                                                                 bulgogi cheese steaks 
##                                                                                    16 
##                                                           bulgogi korean grilled beef 
##                                                                                    58 
##                                               bulgogi sloppy joes with scallion salsa 
##                                                                                    66 
##                                     bulgur and chickpea salad with roasted artichokes 
##                                                                                     8 
##                                                             bulgur and kale casserole 
##                                                                                    13 
##                                                               bulgur and lentil salad 
##                                                                                     9 
##                                                              bulgur and squash kefteh 
##                                                                                     1 
##                                                              bulgur and walnut kibbeh 
##                                                                                     4 
##                                         bulgur bowl with spinach mushrooms and dukkah 
##                                                                                     2 
##                                                                 bulgur maple porridge 
##                                                                                     3 
##                                                 bulgur pilaf with chickpeas and herbs 
##                                                                                    14 
##                                                bulgur pilaf with dried fruit and nuts 
##                                                                                     4 
##                                                               bulgur ricotta pancakes 
##                                                                                    13 
##                                        bulgur salad with greens barberries and yogurt 
##                                                                                     5 
##                                                   bulgur spinach and tomato casserole 
##                                                                                    59 
##                                            bulgur with swiss chard chickpeas and feta 
##                                                                                    19 
##                                              burekas with spinach or eggplant filling 
##                                                                                    29 
##                                                                 burned scallion crema 
##                                                                                    16 
##                                                                     burned toast soup 
##                                                                                    31 
##                                                           burnt oranges with rosemary 
##                                                                                     6 
##                                  burrata with bacon escarole and caramelized shallots 
##                                                                                     1 
##                                             burrata with fava beans fennel and celery 
##                                                                                    30 
##                                        burrata with romano beans and roasted eggplant 
##                                                                                    35 
##                                                  burrata with snap peas and shiitakes 
##                                                                                    15 
##                                          butchers steak with leafy greens salsa verde 
##                                                                                    38 
##                                                                 butter and buttermilk 
##                                                                                     1 
##                                       butter blanched mustard greens with mustard oil 
##                                                                                     2 
##                                                              butter braised asparagus 
##                                                                                    37 
##                               butter braised cardoons with mushrooms and bread crumbs 
##                                                                                    11 
##                                                                        butter chicken 
##                                                                                   497 
##                                                                  butter fried oysters 
##                                                                                    23 
##                                                                            butter pie 
##                                                                                    11 
##                                                            butter poached stone fruit 
##                                                                                     2 
##                                     butter steamed broccoli with peppery bread crumbs 
##                                                                                    48 
##                                                                butter stewed radishes 
##                                                                                    27 
##                                                                   butter tart squares 
##                                                                                    29 
##                                                                          butter tarts 
##                                                                                   168 
##                                               buttered stuffing with celery and leeks 
##                                                                                   160 
##                                                                        buttered toast 
##                                                                                     1 
##                                               butterflied chicken with cracked spices 
##                                                                                    20 
##                                        butterflied leg of lamb with lemon salsa verde 
##                                                                                    39 
##                                         buttermilk banana pudding with salted peanuts 
##                                                                                    27 
##                                       buttermilk biscuit shortcakes with strawberries 
##                                                                                    31 
##                                                                   buttermilk biscuits 
##                                                                                    65 
##                                                       buttermilk blue cheese dressing 
##                                                                                    19 
##                                                       buttermilk brined roast chicken 
##                                                                                   407 
##                                                        buttermilk brined roast turkey 
##                                                                                   510 
##                                                       buttermilk brined turkey breast 
##                                                                                   336 
##                                                             buttermilk cake doughnuts 
##                                                                                    17 
##                                                              buttermilk fried chicken 
##                                                                                   137 
##                                               buttermilk glazed pineapple carrot cake 
##                                                                                    12 
##                                                                butternut mac n cheese 
##                                                                                    39 
##                                                    butternut squash and bacon risotto 
##                                                                                    48 
##                               butternut squash and fondue pie with pickled red chiles 
##                                                                                    58 
##                                                 butternut squash and green curry soup 
##                                                                                   127 
##                                              butternut squash and mushroom wellington 
##                                                                                    43 
##                                             butternut squash and purple potato latkes 
##                                                                                     6 
##                                               butternut squash and roasted apple soup 
##                                                                                    10 
##                                                      butternut squash and sage latkes 
##                                                                                    34 
##                                                               butternut squash bisque 
##                                                                                    12 
##                                                              butternut squash cannoli 
##                                                                                     1 
##                                butternut squash caramelized onion and spinach lasagna 
##                                                                                    50 
##                                      butternut squash oat muffins with candied ginger 
##                                                                                    28 
##                                                               butternut squash panade 
##                                                                                    12 
##                                        butternut squash pasta with bacon and parmesan 
##                                                                                    74 
##                                                  butternut squash pecans and currants 
##                                                                                    46 
##                                       butternut squash polenta with sausage and onion 
##                                                                                   124 
##                                                                 butterscotch blondies 
##                                                                                    73 
##                                                        butterscotch bourbon ice cream 
##                                                                                     1 
##                                      butterscotch custard with clove and black pepper 
##                                                                                     2 
##                                                    butterscotch glazed cinnamon rolls 
##                                                                                    40 
##                                                            butterscotch scotch eggnog 
##                                                                                     1 
##                                                                   butterscotch wheels 
##                                                                                     2 
##                                                           buttery breakfast casserole 
##                                                                                   353 
##                                                              buttery french tv snacks 
##                                                                                    26 
##                                                                 buttery kimchi shrimp 
##                                                                                    41 
##                                               buttery moong dal with garlic and cumin 
##                                                                                    30 
##                                                       buttery spiced sous vide apples 
##                                                                                     3 
##                                                           button mushrooms a la creme 
##                                                                                    16 
##                                                                      cabaret cocktail 
##                                                                                     1 
##                                                    cabbage and caramelized onion tart 
##                                                                                    39 
##                                                              cabbage and caraway slaw 
##                                                                                    16 
##                                                   cabbage and carrot noodles with egg 
##                                                                                    23 
##                                                          cabbage and mushroom lasagna 
##                                                                                     3 
##                                                           cabbage and onion marmalade 
##                                                                                     7 
##                                                               cabbage and onion torta 
##                                                                                    39 
##                                                 cabbage and parmesan soup with barley 
##                                                                                    23 
##                                                        cabbage and pepper chakchoukah 
##                                                                                    14 
##                                                             cabbage and potato gratin 
##                                                                                   144 
##                                                         cabbage and red pepper gratin 
##                                                                                     2 
##                                                           cabbage and ricotta timbale 
##                                                                                    18 
##                                          cabbage and spring onion quiche with caraway 
##                                                                                    15 
##                                                 cabbage carrot and purple kale latkes 
##                                                                                     6 
##                                                        cabbage feta and dill piroshki 
##                                                                                    13 
##                                                    cabbage minestrone with chick peas 
##                                                                                     5 
##                                                        cabbage onion and millet kugel 
##                                                                                    30 
##                                                   cabbage onion and sweet pepper tart 
##                                                                                    15 
##                                                                      cabbage pirozhki 
##                                                                                     4 
##                                                          cabbage potato and leek soup 
##                                                                                   214 
##                                    cabbage radish slaw with cilantro lime vinaigrette 
##                                                                                     7 
##                                            cabbage stuffed with chicken and mushrooms 
##                                                                                     4 
##                                                cabbage with apples onions and caraway 
##                                                                                     8 
##                                            cabbage with tomatoes bulgur and chickpeas 
##                                                                                    30 
##                                                                          cacio e pepe 
##                                                                                   320 
##                                                             cacio e pepe cheese puffs 
##                                                                                    69 
##                                                          cacio e pepe corn on the cob 
##                                                                                    16 
##                                                                 cacio e pepe crackers 
##                                                                                    16 
##                                                                    cacio e pepe frico 
##                                                                                    13 
##                                                      cacio e pepe with peas and favas 
##                                                                                    26 
##                                                                       caesar cocktail 
##                                                                                    31 
##                                                                          caesar salad 
##                                                                                    80 
##                                                           cafe chinas dan dan noodles 
##                                                                                    31 
##                                                             cajun cornbread casserole 
##                                                                                    14 
##                                                                       cajun seasoning 
##                                                                                     8 
##                                                                     cajun shrimp boil 
##                                                                                    19 
##                                                            cajun style broiled shrimp 
##                                                                                    57 
##                                                                   cake flour biscuits 
##                                                                                     6 
##                                                   cal peternells braised chicken legs 
##                                                                                   164 
##                                                       calamari with herbs and polenta 
##                                                                                     2 
##                                                                           cali spritz 
##                                                                                     1 
##                                                                 california date shake 
##                                                                                     6 
##                                           callaloo leafy greens with tomato and onion 
##                                                                                     3 
##                                                                    calvados and tonic 
##                                                                                     1 
##                                                                campari olive oil cake 
##                                                                                   143 
##                                                                   candied clementines 
##                                                                                    38 
##                                                                     candied fruitcake 
##                                                                                     2 
##                                                      candied kumquats or meyer lemons 
##                                                                                    15 
##                                                                candied sweet potatoes 
##                                                                                    52 
##                                                                          candied yams 
##                                                                                     9 
##                                                                          candy apples 
##                                                                                    10 
##                                                                          canlis salad 
##                                                                                    78 
##                                                                  canned poached pears 
##                                                                                     4 
##                                               cannellini bean pasta with beurre blanc 
##                                                                                   469 
##                                   cannellini bean salad with shaved spring vegetables 
##                                                                                    22 
##                                     cannellini beans with tomatoes bulgur and arugula 
##                                                                                     1 
##                                           cannoli cream calzone with honey and orange 
##                                                                                     2 
##                                                                        cant miss rice 
##                                                                                   104 
##                                                                          cantina band 
##                                                                                     3 
##                                                                cantonese style turkey 
##                                                                                    25 
##                                                                     caprese antipasto 
##                                                                                    43 
##                                                                               caprice 
##                                                                                     9 
##                                                              caramel apple dutch baby 
##                                                                                    33 
##                                                                        caramel apples 
##                                                                                    11 
##                                                                          caramel cake 
##                                                                                     7 
##                                                             caramel peach skillet pie 
##                                                                                    44 
##                                         caramel pears with rosemary honey and walnuts 
##                                                                                    28 
##                                                    caramel pudding with chex streusel 
##                                                                                     8 
##                                                                     caramel rice flan 
##                                                                                     8 
##                                                                        caramel yogurt 
##                                                                                     2 
##                                                                   caramelized almonds 
##                                                                                     1 
##                                                          caramelized apple pecan cake 
##                                                                                    32 
##                                                            caramelized banana pudding 
##                                                                                    59 
##                                         caramelized bananas with pecan coconut crunch 
##                                                                                    13 
##                                          caramelized beets with orange saffron yogurt 
##                                                                                    29 
##                             caramelized brussels sprouts pasta with toasted chickpeas 
##                                                                                    54 
##                                                                    caramelized citrus 
##                                                                                    35 
##                                     caramelized corn and asparagus pasta with ricotta 
##                                                                                    61 
##                                                      caramelized corn with fresh mint 
##                                                                                    54 
##                                                caramelized endives with creme fraiche 
##                                                                                    14 
##                                   caramelized figs with honey thyme and creme fraiche 
##                                                                                     6 
##                                                         caramelized honey baked pears 
##                                                                                     8 
##                                                             caramelized kohlrabi soup 
##                                                                                    36 
##                                                  caramelized onion and fennel risotto 
##                                                                                    30 
##                                             caramelized onion and mushroom matzo brei 
##                                                                                     7 
##                                         caramelized onion and poppy seed hamantaschen 
##                                                                                    20 
##                                         caramelized onion apple and goat cheese melts 
##                                                                                    41 
##                                             caramelized onion dip with frizzled leeks 
##                                                                                    25 
##                                                             caramelized onion galette 
##                                                                                   200 
##                                  caramelized plantains with beans scallions and lemon 
##                                                                                    37 
##                                                          caramelized scallion noodles 
##                                                                                    46 
##                                                            caramelized scallion sauce 
##                                                                                    79 
##                                                             caramelized shallot pasta 
##                                                                                  1151 
##                                                    caramelized sheet pan french toast 
##                                                                                    31 
##                                                         caramelized summer fruit tart 
##                                                                                    21 
##                                                caramelized sunchokes with beet confit 
##                                                                                     2 
##                                                        caramelized tomato tarte tatin 
##                                                                                   167 
##                                     caramelized turnips with capers lemon and parsley 
##                                                                                    25 
##                                caramelized winter squash with pumpkin seed persillade 
##                                                                                     5 
##                                                             cardamom butter crescents 
##                                                                                    41 
##                                                                   cardamom cream cake 
##                                                                                    95 
##                           cardamom scented oatmeal pancakes with apricots and almonds 
##                                                                                    35 
##                                                             cardamom walnut crescents 
##                                                                                    68 
##                                                                             carlo sud 
##                                                                                     1 
##                                                   carne adobada chile marinated steak 
##                                                                                    15 
##                                                              carne asada cheese fries 
##                                                                                    24 
##                                                                   carne asada lorenza 
##                                                                                    12 
##                                           carne con chile rojo chuck braised in chile 
##                                                                                    26 
##                                                               carne guisada con papas 
##                                                                                    29 
##                                                             carne guisada stewed beef 
##                                                                                     1 
##                                                           carnitas braised in witbier 
##                                                                                     9 
##                                           carrot and avocado salad with crunchy seeds 
##                                                                                     2 
##                                                carrot and leek frittata with tarragon 
##                                                                                     9 
##                              carrot and papaya smoothie with hazelnuts and pistachios 
##                                                                                     2 
##                                    carrot and sweet potato soup with mint or tarragon 
##                                                                                    16 
##                                                                           carrot cake 
##                                                                                   101 
##                                                                   carrot cake muffins 
##                                                                                    71 
##                                                                          carrot candy 
##                                                                                     5 
##                                                                        carrot gnocchi 
##                                                                                    12 
##                                               carrot loaf cake with tangy lemon glaze 
##                                                                                   379 
##                                                                        carrot maqluba 
##                                                                                    13 
##                                                   carrot parsnip and potato colcannon 
##                                                                                     4 
##                                                carrot parsnip soup with parsnip chips 
##                                                                                    55 
##                                                                          carrot puree 
##                                                                                     8 
##                                                                           carrot ring 
##                                                                                    33 
##                                             carrot soup with ginger turmeric and lime 
##                                                                                   112 
##                                     carrot squash and potato ragout with thai flavors 
##                                                                                     4 
##                                  carrot tahini soup with coriander turmeric and lemon 
##                                                                                    54 
##                                                     carrot tart with ricotta and feta 
##                                                                                   137 
##                                                      carrots and lentils in olive oil 
##                                                                                    33 
##                                                                   carrots in guinness 
##                                                                                     2 
##                                                                        cashew chicken 
##                                                                                     9 
##                                                                          cashew pilaf 
##                                                                                     1 
##                                       cassolita winter squash with caramelized onions 
##                                                                                     4 
##                                                                             cassoulet 
##                                                                                    73 
##                                                     cassoulet with lots of vegetables 
##                                                                                    17 
##                                                          cast iron sourdough pancakes 
##                                                                                   128 
##                                                                       cast iron steak 
##                                                                                   250 
##                                                                        catalan fideua 
##                                                                                     4 
##                                                   catalan stew with lobster and clams 
##                                                                                    21 
##                                                                     cauliflower adobo 
##                                                                                   138 
##                                                       cauliflower and red onion tacos 
##                                                                                     6 
##                                             cauliflower and tomato frittata with feta 
##                                                                                    38 
##                                                            cauliflower and tuna salad 
##                                                                                    47 
##                     cauliflower brussels sprouts and red beans with lemon and mustard 
##                                                                                    13 
##                                              cauliflower cashew pea and coconut curry 
##                                                                                   374 
##                                                             cauliflower chaat for one 
##                                                                                    53 
##                                                                   cauliflower gnocchi 
##                                                                                    30 
##                                           cauliflower gratin with goat cheese topping 
##                                                                                    42 
##                                       cauliflower gratin with leeks and white cheddar 
##                                                                                   253 
##                                                            cauliflower mac and cheese 
##                                                                                    34 
##                                                                  cauliflower parmesan 
##                                                                                   227 
##                                                 cauliflower potato and quinoa patties 
##                                                                                    15 
##                                                                      cauliflower rice 
##                                                                                    28 
##                                     cauliflower roasted with grapes almonds and curry 
##                                                                                     4 
##                                     cauliflower salad with capers parsley and vinegar 
##                                                                                    15 
##                                                                  cauliflower sformato 
##                                                                                     2 
##                                           cauliflower with almonds capers and raisins 
##                                                                                     2 
##                                         cauliflower with anchovies and crushed olives 
##                                                                                    16 
##                                       cauliflower with capers black olives and chiles 
##                                                                                    16 
##                                                         cauliflower with curry butter 
##                                                                                    31 
##                                          cauliflower with oyster mushrooms and sherry 
##                                                                                     8 
##                                                         causa with shrimp and avocado 
##                                                                                    12 
##                              cavatelli with brown butter beets ricotta and pistachios 
##                                                                                    13 
##                                                   caviar potato chips and lemon cream 
##                                                                                    15 
##                                                                       caviar sandwich 
##                                                                                    61 
##                                               caviar sour cream dip with potato chips 
##                                                                                    18 
##                                                                      celebration cake 
##                                                                                    45 
##                                                  celeriac celery and carrot remoulade 
##                                                                                    14 
##                                                   celeriac potato leek and apple soup 
##                                                                                    18 
##                                                                    celeriac remoulade 
##                                                                                     6 
##                                               celery and radish salad with gorgonzola 
##                                                                                    15 
##                                                celery and walnut or hazelnut tzatziki 
##                                                                                     2 
##                                              celery leek soup with potato and parsley 
##                                                                                    64 
##                                          celery risotto with dandelion greens or kale 
##                                                                                    16 
##                                   celery root and chestnut soup with brussels sprouts 
##                                                                                     3 
##                                                            celery root parsnip latkes 
##                                                                                    22 
##                                                    celery root potato and apple puree 
##                                                                                     6 
##                                                              celery root potato puree 
##                                                                                     2 
##                                          celery root red cabbage and potato colcannon 
##                                                                                    12 
##                                             celery root salad with arugula and pecans 
##                                                                                     2 
##                                              celery salad with apples and blue cheese 
##                                                                                    50 
##                                                                         celery toasts 
##                                                                                    81 
##                                                  cellophane noodle salad with cabbage 
##                                                                                     8 
##                                 centerpiece salmon with thai basil and browned butter 
##                                                                                     5 
##                            cereal milk panna cotta with caramelized corn flake crunch 
##                                                                                    12 
##                                                cervelle de canut herbed cheese spread 
##                                                                                    35 
##                                                                   ceviche a la minute 
##                                                                                     3 
##                                                                ceviche style scallops 
##                                                                                     4 
##                                               ceviche verde with tostadas and avocado 
##                                                                                     7 
##                                                                        cha ca la wong 
##                                                                                    11 
##                                                                 cha yen thai iced tea 
##                                                                                    19 
##                                                                           chaat party 
##                                                                                     5 
##                                                                           chai masala 
##                                                                                    15 
##                                                                     chairmans reserve 
##                                                                                     1 
##                                                              chakundari chicken tikka 
##                                                                                     7 
##                                        challah french toast with cinnamon sugar glaze 
##                                                                                    39 
##                                                                 chamomile lime rickey 
##                                                                                     3 
##                                                                chamomile simple syrup 
##                                                                                     2 
##                                               chamomile strawberry gin daisy cocktail 
##                                                                                     3 
##                                                                       chamomile syrup 
##                                                                                     2 
##                                                                    champagne cocktail 
##                                                                                    30 
##                                                                        champs elysees 
##                                                                                     1 
##                                                             chana dal new delhi style 
##                                                                                    42 
##                                                                      chana dal sundal 
##                                                                                     2 
##                                                                 chanterelles on toast 
##                                                                                    37 
##                                                                        chapli burgers 
##                                                                                    90 
##                                                                     charcuterie board 
##                                                                                    42 
##                                                           chard and sweet corn gratin 
##                                                                                   197 
##                                                            chard and sweet corn tacos 
##                                                                                    19 
##                                                         chard cakes with sorrel sauce 
##                                                                                     9 
##                                              chard leaves stuffed with rice and herbs 
##                                                                                    10 
##                                                    chard stalk celeriac and leek soup 
##                                                                                     5 
##                                            chard stalk chickpea tahini and yogurt dip 
##                                                                                     1 
##                                                                    chard stem pickles 
##                                                                                     4 
##                                                       chard wrapped greek yogurt pies 
##                                                                                    39 
##                                                                   charleston red rice 
##                                                                                    12 
##                                                             charlie birds farro salad 
##                                                                                   517 
##                                                            charlotte with dried fruit 
##                                                                                     3 
##                                                                       charmoula sauce 
##                                                                                     1 
##                                       charred asparagus with green garlic chimichurri 
##                                                                                    34 
##                                                                      charred broccoli 
##                                                                                     9 
##                                              charred carrots with orange and balsamic 
##                                                                                    47 
##                                                              charred cauliflower stew 
##                                                                                    42 
##                                  charred cauliflower with anchovies capers and olives 
##                                                                                    41 
##                                    charred lamb and eggplant with date yogurt chutney 
##                                                                                    27 
##                                                                       charred peppers 
##                                                                                     1 
##                                             charred scallion dip with lemon and herbs 
##                                                                                    22 
##                                                 charred shallots with labneh and pita 
##                                                                                     4 
##                                                           charred tangerines on toast 
##                                                                                    27 
##                                                                charred tomatillo jaew 
##                                                                                     5 
##                                       charred tomato soup with coriander and cilantro 
##                                                                                    41 
##                                  charred tomatoes with egg anchovies and bread crumbs 
##                                                                                    15 
##                                                                      cheaters brisket 
##                                                                                    21 
##                                                                      cheaters pickles 
##                                                                                    34 
##                                                                 cheaters turkey stock 
##                                                                                    33 
##                                                              cheddar beer bread rolls 
##                                                                                   179 
##                                                               cheddar cheese crackers 
##                                                                                    11 
##                                                                  cheddar cheese puffs 
##                                                                                    70 
##                                             cheddar cucumber and marmalade sandwiches 
##                                                                                    44 
##                                                                  cheddar scallion dip 
##                                                                                    72 
##                                            cheddar stuffed turkey burger with avocado 
##                                                                                    39 
##                                                               cheddar walnut gougeres 
##                                                                                    45 
##                                                                       cheese blintzes 
##                                                                                     3 
##                                                                       cheese crackers 
##                                                                                    77 
##                                                                         cheese danish 
##                                                                                    64 
##                                                    cheese enchiladas with chili gravy 
##                                                                                    89 
##                                                                         cheese fondue 
##                                                                                    10 
##                                cheese grits with saucy black beans avocado and radish 
##                                                                                   104 
##                                               cheese pumpkin soup with sage and apple 
##                                                                                     6 
##                                                                        cheese pupusas 
##                                                                                    25 
##                                                                        cheese souffle 
##                                                                                    30 
##                                                           cheese straws with pimenton 
##                                                                                    14 
##                                                               cheese wafers or straws 
##                                                                                    14 
##                                                                    cheesecake pudding 
##                                                                                    26 
##                                                                         cheeses pizza 
##                                                                                    45 
##                                                       cheesy baked orzo with marinara 
##                                                                                    82 
##                                           cheesy baked pasta with sausage and ricotta 
##                                                                                   349 
##                                                  cheesy baked polenta in tomato sauce 
##                                                                                    51 
##                                                  cheesy baked pumpkin pasta with kale 
##                                                                                   128 
##                                                                     cheesy beer bread 
##                                                                                    29 
##                                                    cheesy bread balls in tomato sauce 
##                                                                                    36 
##                                            cheesy breakfast egg and polenta casserole 
##                                                                                   136 
##                                                             cheesy broccoli casserole 
##                                                                                    25 
##                                                             cheesy cauliflower toasts 
##                                                                                   106 
##                                                     cheesy chicken parmesan meatballs 
##                                                                                    84 
##                                        cheesy cornbread muffins with hot honey butter 
##                                                                                    35 
##                                                     cheesy eggplant and rigatoni bake 
##                                                                                    72 
##                                                     cheesy garlic potato monkey bread 
##                                                                                    19 
##                                                       cheesy hasselback potato gratin 
##                                                                                   289 
##                                                                      cheesy pan pizza 
##                                                                                   317 
##                                                          cheesy spicy black bean bake 
##                                                                                   535 
##                                                         cheesy white bean tomato bake 
##                                                                                   649 
##                                                                             chermoula 
##                                                                                    21 
##                                                                    cherry ale sangria 
##                                                                                     1 
##                                                           cherry almond granola crisp 
##                                                                                    75 
##                                                                cherry almond smoothie 
##                                                                                    15 
##                                                          cherry and apricot clafoutis 
##                                                                                    44 
##                                                         cherry and spring onion salsa 
##                                                                                     1 
##                                                                  cherry bread pudding 
##                                                                                     6 
##                                                                   cherry caipirissima 
##                                                                                    17 
##                                                                      cherry clafoutis 
##                                                                                    42 
##                                         cherry cobbler with almond buttermilk topping 
##                                                                                    14 
##                                                   cherry coconut ice cream sandwiches 
##                                                                                     3 
##                                                        cherry cornmeal slump or grunt 
##                                                                                     7 
##                                                                cherry frangipane tart 
##                                                                                    50 
##                                                                      cherry ice cream 
##                                                                                     3 
##                                                        cherry lemon cream jell o mold 
##                                                                                    15 
##                                                   cherry rugelach with cardamom sugar 
##                                                                                   127 
##                                                                 cherry sherry cobbler 
##                                                                                     1 
##                                                                      cherry tabbouleh 
##                                                                                    20 
##                                                    cherry tomato and white bean salad 
##                                                                                    81 
##                                                            cherry tomato caesar salad 
##                                                                                    54 
##                                                    cherry tomatoes stuffed with pesto 
##                                                                                    14 
##                                                                     chess pie squares 
##                                                                                    19 
##                   chestnut and apple casserole with swiss chard and cranberry granola 
##                                                                                     1 
##                                               chestnut apple soup with calvados cream 
##                                                                                     5 
##                                                                chestnut honey squares 
##                                                                                     1 
##                          chestnuts onions and prunes marrons aux oignons et quetsches 
##                                                                                     3 
##                                                              chewy chocolate snowcaps 
##                                                                                    50 
##                                                               chez ma tantes pancakes 
##                                                                                   115 
##                                         chia pudding with berries and popped amaranth 
##                                                                                    16 
##                                                           chia seed breakfast pudding 
##                                                                                     8 
##                                                                         chicken adobo 
##                                                                                   306 
##                                chicken and cabbage salad with miso sesame vinaigrette 
##                                                                                    28 
##                                  chicken and celery salad with wasabi tahini dressing 
##                                                                                    44 
##                                                                 chicken and dumplings 
##                                                                                   236 
##                                      chicken and escarole salad with anchovy croutons 
##                                                                                    31 
##                                     chicken and mango soba salad with peanut dressing 
##                                                                                    21 
##                                            chicken and mushroom bulgogi lettuce wraps 
##                                                                                   104 
##                                          chicken and mushroom juk with scallion sauce 
##                                                                                    43 
##                                                               chicken and pepper stew 
##                                                                                    34 
##                                                    chicken and pumpkin with dumplings 
##                                                                                    28 
##                                   chicken and rice soup with celery parsley and lemon 
##                                                                                   308 
##                                        chicken and rice soup with ginger and turmeric 
##                                                                                   113 
##                                           chicken and rice with scallion ginger sauce 
##                                                                                   108 
##                                         chicken and tomato salad with sumac and herbs 
##                                                                                    14 
##                                                         chicken and vegetable cobbler 
##                                                                                    19 
##                                                            chicken and vegetable wrap 
##                                                                                     3 
##                            chicken artichoke and broccoli bake with herb bread crumbs 
##                                                                                    44 
##                                                            chicken baked with lentils 
##                                                                                     3 
##                                                                      chicken biriyani 
##                                                                                     9 
##                                                  chicken blintzes with wild mushrooms 
##                                                                                     2 
##                                                     chicken bog with middlins risotto 
##                                                                                     4 
##                                                                 chicken bouillabaisse 
##                                                                                    10 
##                                                       chicken braised in two vinegars 
##                                                                                   155 
##                                                           chicken braised with grapes 
##                                                                                    16 
##                                           chicken braised with potatoes and pine nuts 
##                                                                                    99 
##                                chicken breast milanese with green olive celery relish 
##                                                                                    36 
##                                                 chicken breasts with fennel and lemon 
##                                                                                    50 
##                                                    chicken breasts with feta and figs 
##                                                                                    63 
##                                                chicken breasts with miso garlic sauce 
##                                                                                    62 
##                                             chicken breasts with mustard verjuice jus 
##                                                                                    21 
##                                              chicken breasts with tomatoes and capers 
##                                                                                   362 
##                                                                        chicken butter 
##                                                                                     1 
##                                                                    chicken cacciatore 
##                                                                                   115 
##                                                                  chicken caesar salad 
##                                                                                     3 
##                                                                       chicken cafreal 
##                                                                                    52 
##                                                                       chicken caprese 
##                                                                                   155 
##                                                                     chicken chop suey 
##                                                                                    28 
##                                chicken confit with roasted potatoes and parsley salad 
##                                                                                    46 
##                                                                        chicken congee 
##                                                                                    66 
##                                                chicken congee with turmeric and cumin 
##                                                                                    14 
##                                                                  chicken curry potpie 
##                                                                                    12 
##                                    chicken curry with sweet potatoes and coconut milk 
##                                                                                    61 
##                                                chicken cutlets with mushroom dressing 
##                                                                                    64 
##                                                   chicken enchiladas with salsa verde 
##                                                                                   324 
##                                                                       chicken fajitas 
##                                                                                    39 
##                                                              chicken flautas ahogadas 
##                                                                                    13 
##                                                                    chicken florentine 
##                                                                                    32 
##                                                                      chicken francese 
##                                                                                   484 
##                                                                   chicken fried steak 
##                                                                                    28 
##                                                  chicken fried steak with queso gravy 
##                                                                                    26 
##                                                                      chicken in a pot 
##                                                                                     3 
##                                                                         chicken katsu 
##                                                                                    19 
##                                                     chicken koftas with lime couscous 
##                                                                                    42 
##                                                                    chicken kottu roti 
##                                                                                    11 
##                                                                  chicken liver mousse 
##                                                                                    11 
##                                                                chicken liver on toast 
##                                                                                     2 
##                                                                    chicken liver pate 
##                                                                                    65 
##                                                chicken liver tacos with rhubarb salsa 
##                                                                                     4 
##                                  chicken livers with caramelized onions and mushrooms 
##                                                                                    15 
##                                                                          chicken mafe 
##                                                                                    62 
##                                                                       chicken marengo 
##                                                                                   169 
##                                                                     chicken meatballs 
##                                                                                    16 
##                                                       chicken meatballs italian style 
##                                                                                    17 
##                                        chicken meatballs with chives and a lime raita 
##                                                                                     4 
##                               chicken milanese with tomato mozzarella and basil salad 
##                                                                                    94 
##                                                                chicken miso meatballs 
##                                                                                   101 
##                                                                      chicken negimaki 
##                                                                                    28 
##                                      chicken noodle salad with creamy sesame dressing 
##                                                                                    13 
##                                            chicken paillard with black olive tapenade 
##                                                                                    38 
##                                        chicken paillard with curried oyster mushrooms 
##                                                                                    39 
##                                           chicken paillard with parmesan bread crumbs 
##                                                                                    19 
##                                                     chicken paillards with corn salad 
##                                                                                    58 
##                                                                     chicken paprikash 
##                                                                                   366 
##                                                                      chicken parmesan 
##                                                                                   206 
##                                                                       chicken piccata 
##                                                                                   254 
##                                             chicken piccata with chard or beet greens 
##                                                                                    48 
##                                                chicken potpie with cornbread biscuits 
##                                                                                    59 
##                                                                    chicken puttanesca 
##                                                                                    69 
##                                       chicken quesadillas with avocado cucumber salsa 
##                                                                                    57 
##                                                                chicken ragu hand pies 
##                                                                                    20 
##                                                              chicken ragu with fennel 
##                                                                                    80 
##                                           chicken salad sandwiches with mango chutney 
##                                                                                     4 
##                                                                   chicken saltimbocca 
##                                                                                    78 
##                                                         chicken scaloppine with lemon 
##                                                                                    66 
##                                              chicken scaloppine with roasted apricots 
##                                                                                     9 
##                                             chicken schnitzel with pan roasted grapes 
##                                                                                    20 
##                                                                  chicken skin canapes 
##                                                                                     1 
##                                                                  chicken skin garnish 
##                                                                                    11 
##                                                                    chicken skin tacos 
##                                                                                     2 
##                                                             chicken soup from scratch 
##                                                                                   227 
##                                                     chicken soup with leeks and lemon 
##                                                                                    37 
##                                                               chicken soup with lemon 
##                                                                                    10 
##                                                    chicken soup with lime and avocado 
##                                                                                    34 
##                                            chicken soup with toasted farro and greens 
##                                                                                    52 
##                                                         chicken stew with dried limes 
##                                                                                     6 
##                                                     chicken stew with sweet plantains 
##                                                                                    28 
##                                 chicken stew with sweet potatoes almonds and apricots 
##                                                                                     6 
##                                                   chicken stir fry with mixed peppers 
##                                                                                    21 
##                                                                         chicken stock 
##                                                                                    36 
##                                                           chicken tacos with chipotle 
##                                                                                    77 
##                                               chicken tagine with eggplant and olives 
##                                                                                    16 
##                                                 chicken tagine with prunes and olives 
##                                                                                    19 
##                                                           chicken tagine with rhubarb 
##                                                                                    32 
##                                                                      chicken teriyaki 
##                                                                                   182 
##                                                                    chicken tetrazzini 
##                                                                                    57 
##                                  chicken thigh kebabs with turmeric chile and saffron 
##                                                                                    59 
##                                                                  chicken tikka masala 
##                                                                                   137 
##                                                                 chicken tortilla soup 
##                                                                                   104 
##                                                                       chicken vesuvio 
##                                                                                   194 
##                                        chicken wings with gochujang ginger and garlic 
##                                                                                    60 
##                                             chicken wings with guajillo anchovy sauce 
##                                                                                     2 
##                                      chicken with apricot tamarind and chipotle sauce 
##                                                                                    22 
##                                               chicken with apricots lemon and saffron 
##                                                                                    52 
##                                                     chicken with artichokes and lemon 
##                                                                                   147 
##                                                        chicken with bitter herb pesto 
##                                                                                     3 
##                                      chicken with caramelized onion and cardamom rice 
##                                                                                   166 
##                                          chicken with caramelized onions and croutons 
##                                                                                    34 
##                                                                    chicken with clams 
##                                                                                     5 
##                                                     chicken with coca cola and lemons 
##                                                                                    25 
##                                                 chicken with eggplant and swiss chard 
##                                                                                    38 
##                                                                  chicken with freekeh 
##                                                                                     1 
##                                                chicken with garlic chili ginger sauce 
##                                                                                    58 
##                                                      chicken with heads of new garlic 
##                                                                                     2 
##                                                                    chicken with herbs 
##                                                                                     1 
##                                                     chicken with morcilla and peppers 
##                                                                                     2 
##                                                       chicken with mushrooms and wine 
##                                                                                    45 
##                                                      chicken with prosciutto and sage 
##                                                                                    15 
##                                                        chicken with prunes and chiles 
##                                                                                     6 
##                                                                  chicken with raisins 
##                                                                                     2 
##                                               chicken with tomatoes capers and olives 
##                                                                                    18 
##                                                  chicken with vin jaune and mushrooms 
##                                                                                     6 
##                                              chicken with white wine onions and herbs 
##                                                                                     6 
##                                                      chicken with yogurt laban makoud 
##                                                                                     1 
##                                                                         chicken yassa 
##                                                                                    85 
##                                                  chicken zucchini meatballs with feta 
##                                                                                   165 
##                                                       chickpea and fennel ratatouille 
##                                                                                   121 
##                                                              chickpea and herb fatteh 
##                                                                                    33 
##                                                    chickpea and winter vegetable stew 
##                                                                                    47 
##                                                      chickpea batter fried vegetables 
##                                                                                     4 
##                                                                 chickpea harissa soup 
##                                                                                   157 
##                                     chickpea orzo salad with harissa roasted eggplant 
##                                                                                    28 
##                          chickpea quinoa and celery salad with middle eastern flavors 
##                                                                                    13 
##                                         chickpea salad with fresh herbs and scallions 
##                                                                                   197 
##                                            chickpea stew with orzo and mustard greens 
##                                                                                   351 
##                                             chickpea tagine with chicken and apricots 
##                                                                                    61 
##                              chickpea vegetable soup with parmesan rosemary and lemon 
##                                                                                   248 
##                                                          chickpeas and pita casserole 
##                                                                                     2 
##                                               chickpeas in star anise and date masala 
##                                                                                    22 
##                                                           chickpeas with baby spinach 
##                                                                                   171 
##                                            chickpeas with mint scallions and cilantro 
##                                                                                    17 
##                                                          chilaquiles a la lydia child 
##                                                                                    24 
##                                          chile butter chicken with vinegared potatoes 
##                                                                                    62 
##                                                                     chile chimichurri 
##                                                                                    21 
##                                                                 chile crisp dumplings 
##                                                                                    62 
##                                                    chile crisp shrimp and green beans 
##                                                                                    76 
##                                                          chile crusted black sea bass 
##                                                                                     8 
##                                                                    chile garlic paste 
##                                                                                     1 
##                                           chile oil fried eggs with greens and yogurt 
##                                                                                    25 
##                                                       chile oil noodles with cilantro 
##                                                                                    98 
##                                       chile roasted chicken with honey lemon and feta 
##                                                                                    15 
##                                                                          chile shrimp 
##                                                                                    33 
##                                                                  chile sweet potatoes 
##                                                                                    10 
##                                                        chile tomato not too hot sauce 
##                                                                                     5 
##                                                                 chile verde guacamole 
##                                                                                    15 
##                                                      chilean cabbage and avocado slaw 
##                                                                                    13 
##                                                                      chiles en nogada 
##                                                                                    24 
##                                                                       chiles rellenos 
##                                                                                    62 
##                                                        chili lobster with texas toast 
##                                                                                     4 
##                                                                  chili spiced peanuts 
##                                                                                     1 
##                                                                           chili verde 
##                                                                                     5 
##                   chilled beet and sauerkraut soup with horseradish and creme fraiche 
##                                                                                    11 
##                                                          chilled corn soup with basil 
##                                                                                   124 
##                                              chilled cucumber soup with avocado toast 
##                                                                                    96 
##                                               chilled golden beet and buttermilk soup 
##                                                                                    24 
##                                                                  chilled lettuce soup 
##                                                                                     3 
##                                                     chilled pea lettuce and herb soup 
##                                                                                     5 
##                                                    chilled shrimp with lobster butter 
##                                                                                     6 
##                                              chilled tequila shots with lime and salt 
##                                                                                     6 
##                                                               chilled watermelon soup 
##                                                                                    38 
##                                                                           chimichurri 
##                                                                                    76 
##                                                                   chimichurri chicken 
##                                                                                    69 
##                                                              chimichurri hanger steak 
##                                                                                    12 
##                                                                     chimichurri salsa 
##                                                                                     5 
##                                                                     chimichurri sauce 
##                                                                                    13 
##                                                            chinese chile scallion oil 
##                                                                                    25 
##                                                                         chinese chili 
##                                                                                    59 
##                                                           chinese cold boiled chicken 
##                                                                                     9 
##                                               chinese fried rice with shrimp and peas 
##                                                                                    40 
##                                                    chinese roast pork on garlic bread 
##                                                                                    50 
##                                  chinese smashed cucumbers with sesame oil and garlic 
##                                                                                   131 
##                                                  chinese stir fried tomatoes and eggs 
##                                                                                   145 
##                                                          chinese style barbecued ribs 
##                                                                                    78 
##                                                 chinese style vegetable and veal stew 
##                                                                                     6 
##                                                                chinese wheat wrappers 
##                                                                                     5 
##                                                                     chipotle gazpacho 
##                                                                                     5 
##                                                                       chipotle kewpie 
##                                                                                     3 
##                                                           chipotle lime chicken wings 
##                                                                                     4 
##                                                 chipotle peanut and sesame seed salsa 
##                                                                                    10 
##                        chivichangas de machaca stewed brisket and cheese chimichangas 
##                                                                                    50 
##                                                                chivito steak sandwich 
##                                                                                     4 
##                                                                     choco pan de coco 
##                                                                                   113 
##                                                                       chocolate babka 
##                                                                                   292 
##                                                         chocolate babka bread pudding 
##                                                                                     6 
##                                                            chocolate bourbon truffles 
##                                                                                    35 
##                                                                       chocolate burfi 
##                                                                                    15 
##                                                    chocolate butterscotch icebox cake 
##                                                                                    26 
##                                                            chocolate caramel macarons 
##                                                                                    34 
##                                                        chocolate caramel matzo toffee 
##                                                                                    34 
##                                                        chocolate caramel pretzel bars 
##                                                                                    36 
##                                                      chocolate caramels with sea salt 
##                                                                                    20 
##                                                      chocolate cardamom pots de creme 
##                                                                                    12 
##                                                                 chocolate cashew tart 
##                                                                                     2 
##                                       chocolate cheesecake with graham cracker crunch 
##                                                                                    44 
##                                                      chocolate cherry sourdough bread 
##                                                                                    85 
##                                                               chocolate chestnut cake 
##                                                                                    54 
##                                        chocolate chestnut tart with rum whipped cream 
##                                                                                     1 
##                                                           chocolate chip banana bread 
##                                                                                   290 
##                                                           chocolate chip cookie pizza 
##                                                                                    22 
##                                                                chocolate chip cookies 
##                                                                                    19 
##                                  chocolate chip cookies with black sesame and seaweed 
##                                                                                    16 
##                           chocolate chip cookies with honey roasted almonds and chile 
##                                                                                    10 
##                                                           chocolate chip hamantaschen 
##                                                                                    31 
##                                                           chocolate chip pastry cream 
##                                                                                     2 
##                                                     chocolate chocolate birthday cake 
##                                                                                   106 
##                               chocolate chocolate chunk ice cream with salted cashews 
##                                                                                     6 
##                                                          chocolate chunk cookie dough 
##                                                                                     7 
##                                                                chocolate coconut cake 
##                                                                                    39 
##                                                          chocolate coconut pecan tart 
##                                                                                    22 
##                                   chocolate cookies with white chocolate and cherries 
##                                                                                    55 
##                                                   chocolate cream pie with oreo crust 
##                                                                                    69 
##                                                     chocolate crusted banana blondies 
##                                                                                    50 
##                                                                    chocolate cupcakes 
##                                                                                    77 
##                                                 chocolate cupcakes with cream filling 
##                                                                                    18 
##                                       chocolate cupcakes with maple bacon buttercream 
##                                                                                     3 
##                                                   chocolate flake raspberry ice cream 
##                                                                                   133 
##                                                                     chocolate ganache 
##                                                                                    46 
##                                          chocolate ganache with black sesame and miso 
##                                                                                     4 
##                                                            chocolate gingerbread cake 
##                                                                                    15 
##                                                                       chocolate glaze 
##                                                                                    21 
##                                                         chocolate hazelnut crepe cake 
##                                                                                    27 
##                                                              chocolate hazelnut paste 
##                                                                                     3 
##                                                                   chocolate ice cream 
##                                                                                    14 
##                                                      chocolate ice cream profiteroles 
##                                                                                     5 
##                                                     chocolate italian wedding cookies 
##                                                                                    10 
##                                       chocolate kolbasa russian no bake fudge cookies 
##                                                                                    17 
##                                                           chocolate lava cake for two 
##                                                                                   297 
##                                                           chocolate little layer cake 
##                                                                                    28 
##                                                                        chocolate milk 
##                                                                                     7 
##                                                                   chocolate mint tart 
##                                                                                     7 
##                                           chocolate mint thins with candy cane crunch 
##                                                                                    47 
##                                                            chocolate molasses cookies 
##                                                                                   212 
##                                                                    chocolate mug cake 
##                                                                                   202 
##                                               chocolate pavlova with chocolate mousse 
##                                                                                    38 
##                                                    chocolate peanut butter bundt cake 
##                                                                                    39 
##                                                          chocolate peanut butter cups 
##                                                                                    37 
##                                                 chocolate peanut butter swirl cookies 
##                                                                                   158 
##                                                                  chocolate pecan bars 
##                                                                                    19 
##                                                                   chocolate pecan pie 
##                                                                                    93 
##                                                             chocolate peppermint bars 
##                                                                                    89 
##                                                       chocolate peppermint shortbread 
##                                                                                    87 
##                                                     chocolate pistachio pots de creme 
##                                                                                     1 
##                                                chocolate pudding with raspberry cream 
##                                                                                   137 
##                                                       chocolate pumpkin bread pudding 
##                                                                                    23 
##                                                                  chocolate rum mousse 
##                                                                                     9 
##                                                          chocolate sesame crunch bars 
##                                                                                    17 
##                                                     chocolate shell ice cream topping 
##                                                                                    14 
##                                                           chocolate shortbread hearts 
##                                                                                    39 
##                                          chocolate snacking cake with tangerine glaze 
##                                                                                    68 
##                                                                     chocolate souffle 
##                                                                                    43 
##                                                 chocolate souffle with candied squash 
##                                                                                     3 
##                                                chocolate stout cake with coffee glaze 
##                                                                                    64 
##                                                                      chocolate straws 
##                                                                                     1 
##                                                          chocolate streusel poundcake 
##                                                                                    77 
##                                                     chocolate stuffed oatmeal cookies 
##                                                                                    28 
##                                                               chocolate sugar cookies 
##                                                                                    17 
##                                                               chocolate tahini mousse 
##                                                                                    32 
##                                                            chocolate tres leches cake 
##                                                                                    36 
##                                                                chocolate truffle tart 
##                                                                                     6 
##                                                                chocolate whiskey cake 
##                                                                                   339 
##                                                                               cholent 
##                                                                                     8 
##                                                     chopped cucumber and tomato salad 
##                                                                                    17 
##                                                         chopped herb salad with farro 
##                                                                                    15 
##                                                                chopped liver on matzo 
##                                                                                    23 
##                                                                         chopped salad 
##                                                                                     1 
##                                 chopped salad with apples walnuts and bitter lettuces 
##                                                                                    43 
##                                         chopped salad with chickpeas feta and avocado 
##                                                                                    75 
##                                                              chopped salad with herbs 
##                                                                                     5 
##                                               chopped salad with seasoned tofu strips 
##                                                                                     3 
##                                                                  chorizo boudin balls 
##                                                                                     2 
##                                                           chorizo dressing with leeks 
##                                                                                    23 
##                                           chorizo sloppy joes with kale and provolone 
##                                                                                    46 
##                                      chorizo stuffed dates with piquillo pepper sauce 
##                                                                                    11 
##                                                                    choucroute of fish 
##                                                                                     8 
##                                                                  chowder soaked toast 
##                                                                                    30 
##                                                        chris schlesingers pulled pork 
##                                                                                     4 
##                                                         christina tosis crockpot cake 
##                                                                                    57 
##                                                christina tosis pickled strawberry jam 
##                                                                                     9 
##                                                         christmas day clementine sour 
##                                                                                     7 
##                                                  christmas glogg with brandy and port 
##                                                                                     2 
##                                                      chung yul bang scallion pancakes 
##                                                                                    10 
##                                                           chunky avocado papaya salsa 
##                                                                                     2 
##                                                         churros with strawberry sauce 
##                                                                                    10 
##                                                                              ciabatta 
##                                                                                     7 
##                                                 ciabatta egg sandwich with tomato jam 
##                                                                                     9 
##                                   cider braised chicken thighs with apples and greens 
##                                                                                   148 
##                                                         cider glazed brussels sprouts 
##                                                                                    31 
##                                cider roasted pork loin with pickled apples and chiles 
##                                                                                    46 
##                                                                 cider spiked fish pie 
##                                                                                    50 
##                                                               cilantro and mint salad 
##                                                                                     7 
##                                                                    cilantro cumin dip 
##                                                                                    19 
##                                                                 cilantro mint chutney 
##                                                                                     3 
##                                                                         cilantro rice 
##                                                                                     2 
##                                     cinnamon apple quick bread with apple cider glaze 
##                                                                                   109 
##                                                             cinnamon apple sheet cake 
##                                                                                    11 
##                                                           cinnamon crumb cake muffins 
##                                                                                    63 
##                                                          cinnamon crunch banana bread 
##                                                                                   180 
##                                                             cinnamon date sticky buns 
##                                                                                    12 
##                                                                    cinnamon ice cream 
##                                                                                     3 
##                                                           cinnamon raisin swirl bread 
##                                                                                    69 
##                                                             cinnamon roasted potatoes 
##                                                                                    29 
##                                                                   cinnamon roll bread 
##                                                                                    32 
##                                                                        cinnamon rolls 
##                                                                                   219 
##                                                                      cinnamon squares 
##                                                                                    25 
##                                                                cinnamon sugar almonds 
##                                                                                    22 
##                                                                        cinnamon toast 
##                                                                                    24 
##                                                               citrus almond poundcake 
##                                                                                    19 
##                                                            citrus and persimmon salad 
##                                                                                    12 
##                                                                        citrus chicken 
##                                                                                   120 
##                                        citrus cured gravlax with toasted fennel seeds 
##                                                                                     4 
##                                                                    citrus custard pie 
##                                                                                    34 
##                                                                  citrus gin and tonic 
##                                                                                     1 
##                                        citrus glazed pork chops with gingery bok choy 
##                                                                                    41 
##                                  citrus layer cake with orange and chocolate frosting 
##                                                                                    13 
##                                                                      citrus marmalade 
##                                                                                    33 
##                                                       citrus rice salad with parmesan 
##                                                                                    12 
##                                                 citrus salad with peanuts and avocado 
##                                                                                    92 
##                                                            citrus salad with prosecco 
##                                                                                    39 
##                                                  citrusy brisket with spring lettuces 
##                                                                                    43 
##                                                                    citrusy cheesecake 
##                                                                                    71 
##                                             citrusy roast chicken with pears and figs 
##                                                                                    57 
##                                                                         city of roses 
##                                                                                     3 
##                                                            clam and chourico dressing 
##                                                                                     5 
##                                                                    clam chowder pizza 
##                                                                                    83 
##                                                    clam chowder with spinach and dill 
##                                                                                     6 
##                                                                              clam dip 
##                                                                                    69 
##                                                                         clam fritters 
##                                                                                    31 
##                                             clam or mussel stew with greens and beans 
##                                                                                     5 
##                                                  clam pasta with basil and hot pepper 
##                                                                                    44 
##                                           clams and spaghetti with spicy tomato broth 
##                                                                                    24 
##                                                  clams with celery and toasted garlic 
##                                                                                    18 
##                                                                 clams with prosciutto 
##                                                                                     1 
##                                                                      clarified butter 
##                                                                                    16 
##                                                          classic bacon and egg quiche 
##                                                                                    18 
##                                                                   classic bagna cauda 
##                                                                                     1 
##                                                     classic baked macaroni and cheese 
##                                                                                   110 
##                                          classic beef brisket with caramelized onions 
##                                                                                    81 
##                                                                 classic birthday cake 
##                                                                                    95 
##                                                                       classic brioche 
##                                                                                    28 
##                                                                  classic caesar salad 
##                                                                                    44 
##                                                                 classic caprese salad 
##                                                                                    93 
##                                                                  classic carrot salad 
##                                                                                    26 
##                                                                 classic cheese fondue 
##                                                                                    30 
##                                                                    classic cheesecake 
##                                                                                    71 
##                                      classic chicken schnitzel with smashed cucumbers 
##                                                                                    17 
##                                                               classic chili con carne 
##                                                                                    56 
##                                                             classic chocolate eclairs 
##                                                                                    15 
##                                                                  classic coconut cake 
##                                                                                    49 
##                                                               classic cranberry sauce 
##                                                                                    85 
##                                                        classic custard ice cream base 
##                                                                                    26 
##                                                                      classic daiquiri 
##                                                                                     2 
##                                                               classic diner breakfast 
##                                                                                    23 
##                                                                        classic eggnog 
##                                                                                    11 
##                                                                      classic focaccia 
##                                                                                   119 
##                                                                  classic french toast 
##                                                                                   129 
##                                                              classic glazed doughnuts 
##                                                                                    35 
##                                                                      classic gougeres 
##                                                                                    45 
##                                                                 classic hot chocolate 
##                                                                                    19 
##                                                              classic hot fudge sundae 
##                                                                                     4 
##                                                                       classic lasagna 
##                                                                                   171 
##                                                             classic last minute gravy 
##                                                                                     1 
##                                                             classic leeks vinaigrette 
##                                                                                    10 
##                                                                classic marinara sauce 
##                                                                                   600 
##                                                                   classic masala dosa 
##                                                                                    30 
##                                                                    classic matzo brei 
##                                                                                   127 
##                                             classic meat tortellini with tomato sauce 
##                                                                                     3 
##                                                                       classic negroni 
##                                                                                    44 
##                                                        classic oatmeal raisin cookies 
##                                                                                   256 
##                                classic okonomiyaki japanese cabbage and pork pancakes 
##                                                                                    40 
##                                                              classic pasta alla norma 
##                                                                                    34 
##                                 classic pasta salad with mozzarella avocado and basil 
##                                                                                    47 
##                                                                           classic pho 
##                                                                                     5 
##                                                                 classic potato latkes 
##                                                                                   187 
##                                                                classic ranch dressing 
##                                                                                    55 
##                                                                  classic roast turkey 
##                                                                                     4 
##                                                                        classic scones 
##                                                                                   153 
##                                                                      classic tiramisu 
##                                                                                   160 
##                                                 classic trifle with berries or citrus 
##                                                                                    21 
##                                                           classic tuna salad sandwich 
##                                                                                   193 
##                                                                classic zucchini bread 
##                                                                                    93 
##                                                                       clementine cake 
##                                                                                   176 
##                                                                     clementine confit 
##                                                                                    20 
##                                                    clementine pomegranate jello salad 
##                                                                                    27 
##                                                                      cloverleaf rolls 
##                                                                                    36 
##                                                                            cobb salad 
##                                                                                    44 
##                                           cochin coriander cumin chicken for passover 
##                                                                                    21 
##                                                                       cochinita pibil 
##                                                                                    42 
##                                                                            coco bread 
##                                                                                     6 
##                                                               cocoa cornmeal biscotti 
##                                                                                    12 
##                                                                cocoa currant cocktail 
##                                                                                     1 
##                                                  cocoa nib sables with flaky sea salt 
##                                                                                    22 
##                                                        coconut almond cluster granola 
##                                                                                    35 
##                                                               coconut banana pancakes 
##                                                                                    21 
##                                    coconut barley pilaf with corn chicken and cashews 
##                                                                                    11 
##                                                                 coconut basmati pilaf 
##                                                                                     2 
##                              coconut braised chicken thighs with turmeric and peppers 
##                                                                                    84 
##                                                        coconut braised collard greens 
##                                                                                    56 
##                                                                 coconut bread pudding 
##                                                                                     3 
##                                                                   coconut brigadeiros 
##                                                                                     7 
##                                                         coconut butternut squash soup 
##                                                                                   229 
##                                                                      coconut caramels 
##                                                                                    26 
##                                                          coconut cardamom panna cotta 
##                                                                                    16 
##                                                                 coconut chicken curry 
##                                                                                   234 
##                                                    coconut chicken curry with cashews 
##                                                                                   145 
##                                                       coconut cream cake with peaches 
##                                                                                    12 
##                                                                     coconut cream pie 
##                                                                                    25 
##                                                                  coconut creamed kale 
##                                                                                    24 
##                                                     coconut curry chicken noodle soup 
##                                                                                   147 
##                                                         coconut curry chicken skewers 
##                                                                                    21 
##                                         coconut curry chickpeas with pumpkin and lime 
##                                                                                   359 
##                                                                    coconut curry fish 
##                                                                                    49 
##                                                                     coconut daiquiris 
##                                                                                     3 
##                                                                        coconut dukkah 
##                                                                                     1 
##                                     coconut dulce de leche with caramelized pineapple 
##                                                                                     2 
##                                                          coconut fish and tomato bake 
##                                                                                    81 
##                                                                coconut ginger chicken 
##                                                                                    29 
##                                       coconut ginger tea with lime honey and turmeric 
##                                                                                     6 
##                                        coconut gochujang glazed chicken with broccoli 
##                                                                                   137 
##                                                                  coconut granola bars 
##                                                                                    29 
##                                                                 coconut hot chocolate 
##                                                                                    28 
##                                                                     coconut ice cream 
##                                                                                     7 
##                                                                          coconut kale 
##                                                                                    34 
##                                                                    coconut layer cake 
##                                                                                   116 
##                                                                   coconut lime shrimp 
##                                                                                   119 
##                                                      coconut macaroon and mango bombe 
##                                                                                     3 
##                                                             coconut macaroon brownies 
##                                                                                    27 
##                                                                     coconut macaroons 
##                                                                                    35 
##                                                                 coconut marzipan cake 
##                                                                                    23 
##                                                     coconut mashed yams with currants 
##                                                                                     2 
##                                                            coconut milk chicken adobo 
##                                                                                   305 
##                                 coconut milk simmered chicken breasts with vegetables 
##                                                                                   104 
##                                                             coconut miso salmon curry 
##                                                                                   665 
##                                                                 coconut nut macaroons 
##                                                                                    74 
##                                                                     coconut oat pilaf 
##                                                                                     3 
##                                      coconut oil poundcake with almonds and lime zest 
##                                                                                    22 
##                                                    coconut oil roasted sweet potatoes 
##                                                                                    44 
##                                               coconut pineapple pumpkin seed smoothie 
##                                                                                     3 
##                                                    coconut poached fish with bok choy 
##                                                                                   134 
##                                                   coconut pork stew with garam masala 
##                                                                                    85 
##                                                                    coconut pound cake 
##                                                                                    42 
##                                                           coconut red curry with tofu 
##                                                                                   216 
##                                                                          coconut rice 
##                                                                                    73 
##                                                                coconut rice with peas 
##                                                                                    77 
##                                                                        coconut shrimp 
##                                                                                    26 
##                                                   coconut shrimp curry with mushrooms 
##                                                                                   116 
##                              coconut stewed bamboo shoots with shrimp ginataang tambo 
##                                                                                    13 
##                                                            coconut sugar caramel corn 
##                                                                                    10 
##                                            coconut sweet potato pie with spiced crust 
##                                                                                    23 
##                                                                   cod and kimchi stew 
##                                                                                    63 
##                                                      cod and mussel stew with harissa 
##                                                                                    33 
##                                                                             cod cakes 
##                                                                                   543 
##                                                                           cod ceviche 
##                                                                                    11 
##                                                cod fillets with cilantro yogurt sauce 
##                                                                                    34 
##                                                    cod in sweet and sour pepper sauce 
##                                                                                    27 
##                                               cod with chanterelles and parsley sauce 
##                                                                                    13 
##                                           codfish cakes with sweet peppers and onions 
##                                                                                    32 
##                                                          coffee and cream coffee cake 
##                                                                                    36 
##                                                                  coffee chile dry rub 
##                                                                                    16 
##                                                            coffee rubbed grilled fish 
##                                                                                    12 
##                                                           cognac ice cream sandwiches 
##                                                                                     7 
##                                                        coiled greek winter squash pie 
##                                                                                     2 
##                                                             coke brined fried chicken 
##                                                                                    37 
##                                                                            cola syrup 
##                                                                                     3 
##                                                           colcannon with crispy leeks 
##                                                                                    56 
##                                               colcannon with roasted squash and apple 
##                                                                                     2 
##                                              cold avocado and cucumber soup with dill 
##                                                                                     8 
##                                                                          cold borscht 
##                                                                                     1 
##                                                            cold brew coffee pro style 
##                                                                                    22 
##                                                               cold brewed iced coffee 
##                                                                                   172 
##                                                                  cold candied oranges 
##                                                                                   180 
##                                                                  cold cantaloupe soup 
##                                                                                    16 
##                                                                   cold cherry borscht 
##                                                                                     6 
##                                                                      cold cherry soup 
##                                                                                    14 
##                                                             cold chickpea tahini soup 
##                                                                                    51 
##                                                                    cold fried chicken 
##                                                                                    25 
##                                       cold noodles with chile oil and citrusy cabbage 
##                                                                                    74 
##                                                          cold pink borscht in a glass 
##                                                                                     8 
##                                                  cold poached pacific cod with spices 
##                                                                                     3 
##                                      cold pork rice noodles with cucumber and peanuts 
##                                                                                   103 
##                                      cold pork roast with fennel and green bean salad 
##                                                                                     5 
##                                  cold rice noodles with coconut milk peanuts and lime 
##                                                                                    13 
##                               cold rice noodles with grilled chicken and peanut sauce 
##                                                                                   154 
##                                                         cold salad tomatoes and basil 
##                                                                                     4 
##                                               cold seared steak with tomatoes and soy 
##                                                                                     1 
##                                                                   cold sesame chicken 
##                                                                                    65 
##                                           cold sesame noodles with crunchy vegetables 
##                                                                                    87 
##                                                cold sesame noodles with sweet peppers 
##                                                                                    20 
##                                                             cold spicy kimchi noodles 
##                                                                                    56 
##                                  cold steamed petrale sole with uncooked tomato sauce 
##                                                                                     4 
##                                                             cold tomato cilantro soup 
##                                                                                    10 
##                                                                      cold tomato soup 
##                                                                                     8 
##                                                                  cold weather negroni 
##                                                                                     3 
##                  cold white asparagus and yuzu soup with crab salad and bay leaf salt 
##                                                                                     1 
##                                         collard greens stuffed with quinoa and turkey 
##                                                                                     4 
##                                     collard greens stuffed with raisins nuts and rice 
##                                                                                     5 
##                                                 collard greens tagine with flageolets 
##                                                                                    16 
##                                                             collard greens with farro 
##                                                                                    15 
##                                                   colombian beef and potato empanadas 
##                                                                                    53 
##                                                      colombian corn and cheese arepas 
##                                                                                    16 
##                                     colombian style chicken short rib and potato stew 
##                                                                                     6 
##                                                                   color field cookies 
##                                                                                    33 
##                                          colorful chicory salad with anchovy dressing 
##                                                                                    12 
##                                                                        comeback sauce 
##                                                                                     3 
##                                                                       compound butter 
##                                                                                     8 
##                                                          conchas mexican morning buns 
##                                                                                    31 
##                                                              condensed milk ice cream 
##                                                                                    11 
##                                                             condensed milk pound cake 
##                                                                                    62 
##                                             confit leeks with lentils lemon and cream 
##                                                                                   127 
##                                                           cooked egg with iberico ham 
##                                                                                     1 
##                                           cooked grains salad with tomato vinaigrette 
##                                                                                     3 
##                                                                cooked tomatillo salsa 
##                                                                                    13 
##                                                  cool ziti with eggplant and tomatoes 
##                                                                                    16 
##                                                                copper country pasties 
##                                                                                    14 
##                                                                       coq au riesling 
##                                                                                   183 
##                                                                            coq au vin 
##                                                                                   195 
##                                                                      coq au vin blanc 
##                                                                                     8 
##                                                                coq au vin with prunes 
##                                                                                     7 
##                                                                               coquito 
##                                                                                    24 
##                                         corn and clam chowder with zucchini and herbs 
##                                                                                    21 
##                                                                   corn and crab cakes 
##                                                                                    13 
##                                     corn and green bean salad with tomatillo dressing 
##                                                                                     5 
##                                                             corn and green chile soup 
##                                                                                    11 
##                                                             corn and jalapeno muffins 
##                                                                                    49 
##                                                                 corn and lobster tart 
##                                                                                    16 
##                                                                corn and seafood chupe 
##                                                                                     5 
##                                                  corn and vegetable gratin with cumin 
##                                                                                    27 
##                                                       corn avocado and cucumber salad 
##                                                                                    99 
##                                     corn bacon and cheddar pie with pickled jalapenos 
##                                                                                   194 
##                                                                            corn bread 
##                                                                                   118 
##                                                                        corn casserole 
##                                                                                    63 
##                                                                          corn chowder 
##                                                                                     4 
##                                                                        corn empanadas 
##                                                                                    11 
##                                                                         corn fritters 
##                                                                                    16 
##                                           corn on the cob with green coriander butter 
##                                                                                    28 
##                                      corn on the cob with lime fish sauce and peanuts 
##                                                                                    13 
##                                                corn on the cob with old bay and lemon 
##                                                                                    10 
##                                                          corn polenta with baked eggs 
##                                                                                   101 
##                                                                          corn pudding 
##                                                                                   123 
##                                                      corn pudding stuffed with greens 
##                                                                                    17 
##                                             corn pudding with roasted garlic and sage 
##                                                                                     8 
##                                                                          corn risotto 
##                                                                                   131 
##                                             corn seafood stew with avocado and chiles 
##                                                                                    59 
##                                                       corn soup with red pepper swirl 
##                                                                                    63 
##                                                       corn tortillas from masa harina 
##                                                                                     6 
##                                                         corn with aromatic seasonings 
##                                                                                     1 
##                                                       cornbread brown butter stuffing 
##                                                                                    18 
##                                                    cornbread madeleines with jalapeno 
##                                                                                    20 
##                                                                 corncakes with caviar 
##                                                                                     2 
##                                         corned beef with cabbage potatoes and carrots 
##                                                                                    54 
##                                                                 corniest corn muffins 
##                                                                                     8 
##                                              cornmeal and buckwheat blueberry muffins 
##                                                                                    26 
##                                              cornmeal and flax crusted cod or snapper 
##                                                                                     8 
##                           cornmeal and oatmeal polenta with tomato sauce and parmesan 
##                                                                                     5 
##                                                                cornmeal batter shrimp 
##                                                                                    17 
##                                                           cornmeal blueberry pancakes 
##                                                                                    92 
##                                                             cornmeal coconut biscotti 
##                                                                                     5 
##                                                        cornmeal cranberry drop scones 
##                                                                                     6 
##                                                         cornmeal lime shortbread fans 
##                                                                                    66 
##                                          cornmeal pancakes with vanilla and pine nuts 
##                                                                                    14 
##                                                             cornmeal pine nut cookies 
##                                                                                    17 
##                                                                  cornmeal plum scones 
##                                                                                    23 
##                                            cornmeal waffles with banana bourbon syrup 
##                                                                                    22 
##                                                   cornmeal waffles with smoked salmon 
##                                                                                    15 
##                                                              coronation chicken salad 
##                                                                                    49 
##                                                                      corpse reviver 2 
##                                                                                     3 
##                                                                   corpse reviver no 1 
##                                                                                     4 
##                                                                   corpse reviver no 2 
##                                                                                     4 
##                                                                  corpse reviver no 28 
##                                                                                     1 
##                                                                             corviches 
##                                                                                     5 
##                                                                  costa rican coleslaw 
##                                                                                     7 
##                                            cottage cheese pancakes with indian spices 
##                                                                                    11 
##                             cottage cheese pasta with tomatoes scallions and currants 
##                                                                                    55 
##                                                  couldnt be easier sweet potato fries 
##                                                                                     4 
##                                                             country bread with apples 
##                                                                                    11 
##                                                                       country captain 
##                                                                                    90 
##                             country fried chesapeake catfish with jalapeno mint aioli 
##                                                                                     6 
##                                                    country meatloaf with golden gravy 
##                                                                                    26 
##                                           country panzanella with watermelon dressing 
##                                                                                    24 
##                                                           country pork and apple hash 
##                                                                                     2 
##                                                                  country rhubarb cake 
##                                                                                     6 
##                                                            country style risina beans 
##                                                                                     2 
##                                couscous salad with dried apricots and preserved lemon 
##                                                                                    38 
##                                      couscous salad with dried cranberries and pecans 
##                                                                                     8 
##                                      couscous salad with turmeric chickpea and tomato 
##                                                                                    12 
##                                                                    couscous tabbouleh 
##                                                                                     9 
##                                              couscous with chickpeas spinach and mint 
##                                                                                    23 
##                                                      couscous with mussels and shrimp 
##                                                                                    28 
##                             couscous with tomatoes cauliflower red peppers and olives 
##                                                                                     7 
##                                             couscous with tomatoes kale and chickpeas 
##                                                                                    15 
##                                             couscous with tomatoes okra and chickpeas 
##                                                                                    12 
##                                 couscous with tomatoes white beans squash and peppers 
##                                                                                     1 
##                                              couscous with turnips and sweet potatoes 
##                                                                                     9 
##                                                                         cowboy caviar 
##                                                                                    86 
##                                                               crab and asparagus tart 
##                                                                                     3 
##                                                            crab and shrimp boil pasta 
##                                                                                     7 
##                                                            crab cake banh mi sandwich 
##                                                                                    22 
##                                                                    crab croque madame 
##                                                                                    14 
##                                                                      crab meat quiche 
##                                                                                    21 
##                                                         crab newburg a la cross creek 
##                                                                                    14 
##                                                    crab pasta with snap peas and mint 
##                                                                                    52 
##                                                                          crab rangoon 
##                                                                                     9 
##                                                                            crab toast 
##                                                                                    59 
##                                                         crab with crisp bitter greens 
##                                                                                     3 
##                                                                     crabmeat tostadas 
##                                                                                     3 
##                              cracked farro risotto farrotto with parsley and marjoram 
##                                                                                     4 
##                                     cracked green olive walnut and pomegranate relish 
##                                                                                    16 
##                                                                   cracked wheat bread 
##                                                                                     5 
##                                                                crackery potato bugnes 
##                                                                                     1 
##                                                                  crackling corn bread 
##                                                                                    14 
##                                               craig claibornes chicken salad sandwich 
##                                                                                    56 
##                                                    craig claibornes smothered chicken 
##                                                                                   142 
##                                       craig claibornes smothered chicken creole style 
##                                                                                     3 
##                                     craig claibornes smothered chicken with mushrooms 
##                                                                                    15 
##                                                                  cranberry brie arepa 
##                                                                                     6 
##                                                            cranberry cheddar gougeres 
##                                                                                    19 
##                                                                     cranberry chutney 
##                                                                                    20 
##                                                                     cranberry cordial 
##                                                                                     2 
##                                                                  cranberry crumb cake 
##                                                                                    52 
##                                                                   cranberry curd tart 
##                                                                                   538 
##                                                                       cranberry fluff 
##                                                                                     2 
##                                                             cranberry herringbone pie 
##                                                                                    26 
##                                                                  cranberry lemon bars 
##                                                                                   282 
##                                                             cranberry lemon eton mess 
##                                                                                    23 
##                                                           cranberry lemon stripe cake 
##                                                                                    34 
##                                                                cranberry linzer torte 
##                                                                                    15 
##                                                                cranberry orange jelly 
##                                                                                    47 
##                                                               cranberry orange relish 
##                                                                                    77 
##                                                           cranberry pear crumble bars 
##                                                                                    34 
##                                                          cranberry pomegranate relish 
##                                                                                    34 
##                                                           cranberry pomegranate sauce 
##                                                                                     8 
##                                                    cranberry raspberry pecan conserve 
##                                                                                     6 
##                                                                       cranberry sauce 
##                                                                                    90 
##                                                                 cranberry sauce salsa 
##                                                                                     3 
##                                                           cranberry sauce with chiles 
##                                                                                    15 
##                                                       cranberry sauce with pinot noir 
##                                                                                    44 
##                                                          craquelin topped cream puffs 
##                                                                                    11 
##                                    crawfish and shrimp pot with spiced sweet potatoes 
##                                                                                     1 
##                                                                     crawfish etouffee 
##                                                                                    25 
##                                                                    cream cheese dough 
##                                                                                    18 
##                                                                 cream cheese frosting 
##                                                                                    20 
##                                cream cheese sandwiches with dates pecans and rosemary 
##                                                                                    10 
##                                                               cream cheese semifreddo 
##                                                                                     2 
##                                          cream cheese swirl tart with chocolate crust 
##                                                                                    10 
##                                                               creamed braising greens 
##                                                                                    22 
##                                   creamed corn with gorgonzola tomatoes and pine nuts 
##                                                                                    22 
##                                                            creamed corn without cream 
##                                                                                    35 
##                                                                 creamed greens potpie 
##                                                                                    85 
##                                   creamed mushroom bruschetta with caramelized onions 
##                                                                                    15 
##                                        creamed rice with english peas and country ham 
##                                                                                    20 
##                                                                 creamed spinach pasta 
##                                                                                    85 
##                                                                 creamed spinach sauce 
##                                                                                     5 
##                                                             creamed tomatoes on toast 
##                                                                                    12 
##                                             creamed turkey with sweet potato biscuits 
##                                                                                     8 
##                                                                creamy asparagus pasta 
##                                                                                    82 
##                                                          creamy avocado miso dressing 
##                                                                                     3 
##                                                            creamy avocado pesto pasta 
##                                                                                    18 
##                                                   creamy blue cheese dip with walnuts 
##                                                                                    17 
##                                              creamy braised chanterelles and potatoes 
##                                                                                    17 
##                                                            creamy braised white beans 
##                                                                                   463 
##                                           creamy bucatini with spring onions and mint 
##                                                                                     8 
##                                   creamy butternut squash pasta with sage and walnuts 
##                                                                                    88 
##                                                      creamy cabbage soup with gruyere 
##                                                                                   100 
##                                                   creamy cashew butternut squash soup 
##                                                                                   108 
##                                   creamy cauliflower pasta with pecorino bread crumbs 
##                                                                                   330 
##                                       creamy cauliflower soup with rosemary olive oil 
##                                                                                   426 
##                                                      creamy celery root soup with ham 
##                                                                                     1 
##                                           creamy chicken liver pasta with wild morels 
##                                                                                    28 
##                                                             creamy chicken liver pate 
##                                                                                    27 
##                                       creamy chickpea pasta with spinach and rosemary 
##                                                                                   422 
##                                                              creamy coconut popsicles 
##                                                                                    16 
##                                                          creamy corn and poblano soup 
##                                                                                    47 
##                                                          creamy corn pasta with basil 
##                                                                                   615 
##                                                  creamy double garlic mashed potatoes 
##                                                                                    54 
##                                     creamy farro with crispy mushrooms and sour cream 
##                                                                                   170 
##                                                                       creamy gazpacho 
##                                                                                     1 
##                                              creamy goat cheese and cucumber sandwich 
##                                                                                     6 
##                                                 creamy goat cheese bacon and date dip 
##                                                                                    79 
##                                                                creamy homemade yogurt 
##                                                                                   233 
##                                                          creamy leek and parsnip soup 
##                                                                                   151 
##                                                                      creamy leek soup 
##                                                                                    27 
##                                                          creamy lemon pops with basil 
##                                                                                     5 
##                                                           creamy meyer lemon dressing 
##                                                                                    20 
##                                         creamy mussel stew with peas fennel and lemon 
##                                                                                     2 
##                                                                     creamy oat groats 
##                                                                                     2 
##                                                creamy one pot mushroom and leek pasta 
##                                                                                   130 
##                                       creamy one pot pasta with chicken and mushrooms 
##                                                                                   352 
##                                                                     creamy onion tart 
##                                                                                     2 
##                                               creamy pasta with bacon and red cabbage 
##                                                                                    50 
##                                  creamy pasta with roasted zucchini almonds and basil 
##                                                                                    29 
##                                               creamy pasta with smoked bacon and peas 
##                                                                                   272 
##                                                         creamy polenta with mushrooms 
##                                                                                   288 
##                                              creamy polenta with parmesan and sausage 
##                                                                                    49 
##                                                                  creamy potato gratin 
##                                                                                    17 
##                                     creamy potato gratin with smoked and fresh salmon 
##                                                                                    15 
##                                           creamy potato salad with yogurt vinaigrette 
##                                                                                    20 
##                                                                   creamy pumpkin soup 
##                                                                                    81 
##                                                   creamy queso with pickled jalapenos 
##                                                                                    43 
##                                                               creamy ramp pesto pasta 
##                                                                                    23 
##                                                                 creamy ranch dressing 
##                                                                                     1 
##                                                                 creamy rice casserole 
##                                                                                     4 
##                                                                   creamy rice pudding 
##                                                                                    41 
##                                                 creamy spinach artichoke chicken stew 
##                                                                                   140 
##                                              creamy stovetop corn with poblano chiles 
##                                                                                    14 
##                                                       creamy strawberry moscato torte 
##                                                                                    30 
##                           creamy swiss chard pasta with leeks tarragon and lemon zest 
##                                                                                   127 
##                                          creamy tomato gazpacho with crunchy pecorino 
##                                                                                    23 
##                                                                 creamy turmeric pasta 
##                                                                                   191 
##                                                            creamy vegan hot chocolate 
##                                                                                    20 
##                                                                  creamy vegan polenta 
##                                                                                     2 
##                                          creamy vegan polenta with mushrooms and kale 
##                                                                                    35 
##                                                             creamy vegan tofu noodles 
##                                                                                   102 
##                                                                    creamy vinaigrette 
##                                                                                     4 
##                                                  creamy weeknight macaroni and cheese 
##                                                                                   132 
##                                                creamy white bean and fennel casserole 
##                                                                                   186 
##                                      creamy white bean and seaweed stew with parmesan 
##                                                                                    12 
##                                         creamy white bean soup with spicy paprika oil 
##                                                                                   146 
##                                                      creamy white beans with herb oil 
##                                                                                   322 
##                                                 creamy wild mushroom and parsnip soup 
##                                                                                    19 
##                                                                                 crema 
##                                                                                    16 
##                                                                        creme anglaise 
##                                                                                     4 
##                                                             creme brulee french toast 
##                                                                                    61 
##                                                                      creme brulee pie 
##                                                                                    56 
##                                                                         creme fraiche 
##                                                                                     8 
##                                           creme fraiche cheesecake with sour cherries 
##                                                                                    24 
##                                                               creme fraiche poundcake 
##                                                                                   115 
##                                                                  creole redfish gumbo 
##                                                                                     9 
##                                                                  creole spiced shrimp 
##                                                                                     2 
##                                                                crepes style manicotti 
##                                                                                    24 
##                                              crepes with grilled peaches and apricots 
##                                                                                    10 
##                                                    crepes with raspberry cassis sauce 
##                                                                                    28 
##                                                                               crespeu 
##                                                                                     2 
##                                      crisp braised duck legs with aromatic vegetables 
##                                                                                    84 
##                                        crisp chicken schnitzel with lemony herb salad 
##                                                                                   129 
##                                                                 crisp fried plantains 
##                                                                                     3 
##                                  crisp gnocchi with brussels sprouts and brown butter 
##                                                                                   923 
##                                                  crisp kale chips with chile and lime 
##                                                                                    21 
##                                                  crisp lamb with yogurt and scallions 
##                                                                                    13 
##                                              crisp nori chips with toasted sesame oil 
##                                                                                     1 
##                                                  crisp peanut butter sandwich cookies 
##                                                                                    19 
##                                                                      crisp pork belly 
##                                                                                    12 
##                                    crisp quinoa cakes with almonds rosemary and dijon 
##                                                                                    16 
##                               crisp quinoa cakes with cilantro scallions and sriracha 
##                                                                                     3 
##                                         crisp quinoa cakes with pine nuts and raisins 
##                                                                                     6 
##                                                                   crisp raw apple pie 
##                                                                                     2 
##                                  crisp smashed potatoes with fried onions and parsley 
##                                                                                    63 
##                                                                crisp spiced chickpeas 
##                                                                                    10 
##                                                         crisp stuffed chicken cutlets 
##                                                                                    37 
##                                                                     crisp toffee bars 
##                                                                                    29 
##                                              crisp tofu katsu with lemon tahini sauce 
##                                                                                   100 
##                                                           crisp turkey stuffed crepes 
##                                                                                     8 
##                                      crisp zucchini blossoms stuffed with goat cheese 
##                                                                                    19 
##                                               crisped chickpeas in spicy brown butter 
##                                                                                    58 
##                                                   crispy baked fish with tartar sauce 
##                                                                                    10 
##                                        crispy bean cakes with harissa lemon and herbs 
##                                                                                   132 
##                                  crispy calamari lemon and maitake salad over arugula 
##                                                                                     8 
##                                crispy duck salad with green beans and honeyed almonds 
##                                                                                     9 
##                                                                crispy feta with lemon 
##                                                                                    54 
##                                 crispy frico chicken breasts with mushrooms and thyme 
##                                                                                   104 
##                                              crispy fried rice with bacon and cabbage 
##                                                                                   125 
##                                                                 crispy fried shallots 
##                                                                                     1 
##                                     crispy gnocchi with burst tomatoes and mozzarella 
##                                                                                   171 
##                                     crispy grains and halloumi with smashed cucumbers 
##                                                                                     1 
##                                                                           crispy kale 
##                                                                                     3 
##                                     crispy lamb meatballs with chickpeas and eggplant 
##                                                                                    95 
##                                       crispy lamb with cumin scallions and red chiles 
##                                                                                    85 
##                                                              crispy mushroom focaccia 
##                                                                                    15 
##                                                            crispy oven bacon and eggs 
##                                                                                    98 
##                                                                  crispy parmesan eggs 
##                                                                                    57 
##                                     crispy parmesan eggs with radicchio and pea salad 
##                                                                                    29 
##                                              crispy parmesan roast chicken with lemon 
##                                                                                   165 
##                                                             crispy polenta medallions 
##                                                                                     3 
##                                         crispy pork cheek belly or turkey thigh salad 
##                                                                                     1 
##                                              crispy pork chops with buttered radishes 
##                                                                                   126 
##                                                                   crispy potato kugel 
##                                                                                    98 
##                                                crispy rice with shrimp bacon and corn 
##                                                                                   178 
##                                          crispy roasted brussels sprouts and shallots 
##                                                                                    56 
##                                                            crispy shallots and garlic 
##                                                                                     1 
##                                                               crispy smoked shiitakes 
##                                                                                     1 
##                                                   crispy sour cream and onion chicken 
##                                                                                   367 
##                                                      crispy spiced cauliflower steaks 
##                                                                                   109 
##                                     crispy spiced chickpeas with peppers and tomatoes 
##                                                                                    60 
##                                                                    crispy spiced kale 
##                                                                                     4 
##                                    crispy stuffed mushrooms with harissa and apricots 
##                                                                                    45 
##                                      crispy tofu with cashews and blistered snap peas 
##                                                                                   580 
##                                                                      crispy yam fries 
##                                                                                     1 
##                                                                            croissants 
##                                                                                    46 
##                                                                         croque madame 
##                                                                                    25 
##                                                                       croque monsieur 
##                                                                                    37 
##                                                   croque monsieur breakfast casserole 
##                                                                                    62 
##                                                                   crostini alla norma 
##                                                                                    30 
##                                            crostini with sun dried tomato and anchovy 
##                                                                                     8 
##                                                                   crown roast of pork 
##                                                                                    15 
##                                             crown roast of pork with fennel and lemon 
##                                                                                     9 
##                                             crumb cake with coconut pistachio topping 
##                                                                                     7 
##                             crunchy baked potatoes with anchovy parmesan and rosemary 
##                                                                                    15 
##                                                          crunchy berry almond crumble 
##                                                                                    36 
##                                                          crunchy burmese ginger salad 
##                                                                                     5 
##                                                                 crunchy cabbage salad 
##                                                                                     3 
##                                               crunchy calamari with ancho chile glaze 
##                                                                                    11 
##                                   crunchy chickpeas with aleppo pepper and lemon zest 
##                                                                                     2 
##                                          crunchy chickpeas with sesame cumin and lime 
##                                                                                    19 
##                                     crunchy chickpeas with turmeric ginger and pepper 
##                                                                                     6 
##                                                             crunchy eggplant parmesan 
##                                                                                    72 
##                                           crunchy noodle kugel a la great aunt martha 
##                                                                                    19 
##                                                      crunchy roasted zaatar chickpeas 
##                                                                                   112 
##                                      crunchy scotch eggs with horseradish and pickles 
##                                                                                    12 
##                                                              crunchy soft shell crabs 
##                                                                                     6 
##                                                  crunchy topped whole wheat plum cake 
##                                                                                    17 
##                                 crunchy vietnamese cabbage salad with pan seared tofu 
##                                                                                    37 
##                                   crushed baby potatoes with sardines celery and dill 
##                                                                                    31 
##                                                           crushed sour cream potatoes 
##                                                                                    53 
##                                                       crustless egg and cheese quiche 
##                                                                                    31 
##                                                                      crustless quiche 
##                                                                                    91 
##                                      crusty broiled cod with littlenecks and chourico 
##                                                                                    29 
##                                                       cruze farm buttermilk poundcake 
##                                                                                    16 
##                                                                     cuban black beans 
##                                                                                   144 
##                                                              cuban style arroz congri 
##                                                                                    43 
##                                                   cucumber and israeli couscous salad 
##                                                                                    26 
##                                                              cucumber and mache salad 
##                                                                                    24 
##                                                             cucumber and radish raita 
##                                                                                     5 
##                                       cucumber and radish salad with yogurt and cumin 
##                                                                                     4 
##                                      cucumber and tomato salad with cilantro and mint 
##                                                                                    40 
##                                                                    cucumber and tonic 
##                                                                                    17 
##                                                                      cucumber collins 
##                                                                                     8 
##                                                                       cucumber kimchi 
##                                                                                    22 
##                                                   cucumber melon and watermelon salad 
##                                                                                    22 
##                                                                        cucumber raita 
##                                                                                    18 
##                                         cucumber salad with roasted peanuts and chile 
##                                                                                   115 
##                                             cucumber salad with soy ginger and garlic 
##                                                                                   119 
##                                                                  cucumber salsa salad 
##                                                                                     2 
##                                                                         cucumber soup 
##                                                                                    27 
##                                                  cucumber soup with soy and scallions 
##                                                                                     6 
##                     cucumber tomato salad with seared halloumi and olive oil croutons 
##                                                                                    25 
##                                                             cucumber watermelon salad 
##                                                                                    39 
##                         cucumber yogurt salad with dill sour cherries and rose petals 
##                                                                                    21 
##                                                    cucumbers with feta mint and sumac 
##                                                                                    43 
##                                                    cucumbers with labneh and cherries 
##                                                                                    12 
##                                                                       cultured butter 
##                                                                                     7 
##                                                               cultured butter cookies 
##                                                                                   156 
##                                 cumin lamb meatballs with tahini yogurt dipping sauce 
##                                                                                    94 
##                                                                   cumin lamb stir fry 
##                                                                                    92 
##                                                         cumin lime shrimp with ginger 
##                                                                                   105 
##                                                                            cumin rice 
##                                                                                     1 
##                                              cumin roasted salmon with cilantro sauce 
##                                                                                   141 
##                                                     cumin scented summer squash salad 
##                                                                                    13 
##                                           cumin steak with kale fennel and feta salad 
##                                                                                    14 
##                                                             currant ginger shortbread 
##                                                                                    12 
##                                                                  curried carrot salad 
##                                                                                     1 
##                                                         curried cauliflower flatbread 
##                                                                                    14 
##                                                              curried cauliflower soup 
##                                                                                   120 
##                                                                curried chickpea salad 
##                                                                                    38 
##                                             curried duck legs with ginger and rhubarb 
##                                                                                     4 
##                                                                     curried egg salad 
##                                                                                    30 
##                                                                          curried goat 
##                                                                                    12 
##                                                curried lentil rice and carrot burgers 
##                                                                                     5 
##                                                  curried lentil squash and apple stew 
##                                                                                    93 
##                                                       curried meatballs with eggplant 
##                                                                                     7 
##                                          curried red lentil soup with toasted coconut 
##                                                                                    72 
##                                                                          curried rice 
##                                                                                    65 
##                                                         curried rice and quinoa salad 
##                                                                                     7 
##                                 curried roast chicken with grapefruit honey and thyme 
##                                                                                    27 
##                                                         curried shrimp and crab gumbo 
##                                                                                    33 
##                               curried swordfish with tomatoes greens and garlic toast 
##                                                                                    52 
##                                                                 curried waldorf salad 
##                                                                                    27 
##                                      curry chicken breasts with chickpeas and spinach 
##                                                                                   107 
##                              curry creamed spinach and tofu or pork with potato crust 
##                                                                                    10 
##                                                                curry glazed duck legs 
##                                                                                     1 
##                                                       curry laced grated carrot salad 
##                                                                                     2 
##                                                 curry noodles with shrimp and coconut 
##                                                                                    83 
##                                                                           curry paste 
##                                                                                     1 
##                                                      curry rubbed sweet potato planks 
##                                                                                     3 
##                                                             curry spiced lamb burgers 
##                                                                                    18 
##                                                            curry yogurt chicken wings 
##                                                                                     2 
##                                                                            currywurst 
##                                                                                    13 
##                                                                               curtido 
##                                                                                    17 
##                                                                  cutout sugar cookies 
##                                                                                    12 
##                                                                               cyn cyn 
##                                                                                     2 
##                                                              daikon and carrot pickle 
##                                                                                     5 
##                                                                              daiquiri 
##                                                                                     9 
##                                         dami yeh gojeh nokhod farangi tomato egg rice 
##                                                                                    10 
##                                                          dandelion or chard colcannon 
##                                                                                    10 
##                               dandelion salad with beets bacon and goat cheese toasts 
##                                                                                     6 
##                                           dandelion salad with garlic confit dressing 
##                                                                                     2 
##                                                                        dandelion tart 
##                                                                                    19 
##                                                         daniel bouluds chicken tagine 
##                                                                                   180 
##                                daniel skurnicks franco chinese steamed ginger custard 
##                                                                                    38 
##                                                                          danish dough 
##                                                                                    46 
##                                                                danny bowiens pastrami 
##                                                                                    17 
##                                                           darina allens shepherds pie 
##                                                                                    43 
##                                                   dark chocolate and pomegranate bark 
##                                                                                    27 
##                                                    dark chocolate cherry ganache bars 
##                                                                                    27 
##                                          dark chocolate flan with pumpkinseed praline 
##                                                                                     3 
##                                                            dark chocolate mint sorbet 
##                                                                                    13 
##                                             dark chocolate mousse with candied ginger 
##                                                                                    19 
##                                                                dark chocolate pudding 
##                                                                                   101 
##                                          dark molasses gingerbread with whipped cream 
##                                                                                    66 
##                                                                         dark n stormy 
##                                                                                    12 
##                                                                  date and walnut bars 
##                                                                                    59 
##                                                               date and walnut cookies 
##                                                                                    42 
##                                                                      date butter tart 
##                                                                                     3 
##                                                                   date cake delicious 
##                                                                                    16 
##                                         date smoothie with brown rice and almond milk 
##                                                                                     4 
##                                                 date stuffed parathas with yogurt dip 
##                                                                                     9 
##                                                       dave arnolds italiano stalliano 
##                                                                                     1 
##                                                               david firestones latkes 
##                                                                                    20 
##                                                     david lebovitzs fresh ginger cake 
##                                                                                    73 
##                                             david taniss chocolate hazelnut ice cream 
##                                                                                     2 
##                                                    david taniss crispy fried shallots 
##                                                                                    12 
##                                                             david taniss onion confit 
##                                                                                     2 
##                                                     david taniss persian jeweled rice 
##                                                                                    81 
##                                                              david taniss risi e bisi 
##                                                                                    12 
##                                                             david taniss shrimp broth 
##                                                                                    12 
##                                                          david taniss vegetable broth 
##                                                                                     2 
##                                                             david taniss yogurt sauce 
##                                                                                     3 
##                                                                death in the afternoon 
##                                                                                     2 
##                                                                    deathbed manhattan 
##                                                                                    15 
##                                                  deborah madisons fragrant onion tart 
##                                                                                    13 
##                                                             deconstructed pumpkin pie 
##                                                                                     6 
##                                                                   deep dish apple pie 
##                                                                                    45 
##                                                         deep dish honey apple galette 
##                                                                                   125 
##                                                                      deep fried borek 
##                                                                                     1 
##                                     deep fried cauliflower with crispy dukkah coating 
##                                                                                     5 
##                                                              deep fried spring onions 
##                                                                                     4 
##                                      deep purple blueberry smoothie with black quinoa 
##                                                                                     5 
##                                                                        dees margarita 
##                                                                                     4 
##                                                                     deluxe cheesecake 
##                                                                                    87 
##                                                       denesse willeys fresh plum cake 
##                                                                                     7 
##                                                                dessert galette pastry 
##                                                                                     5 
##                                                                       deviled chicken 
##                                                                                    11 
##                                 deviled crab meat and chicory salad with egg dressing 
##                                                                                     2 
##                                        devils food cake with black pepper buttercream 
##                                                                                    31 
##                                    devils food cake with toasted marshmallow frosting 
##                                                                                    35 
##                                                            devils food white out cake 
##                                                                                    15 
##                                                         diana davilas chiles rellenos 
##                                                                                    26 
##                                                            dijon and cognac beef stew 
##                                                                                   820 
##                                                              dijon rice with broccoli 
##                                                                                    44 
##                                                                             dill soup 
##                                                                                     4 
##                                                                        diplomat cream 
##                                                                                    11 
##                                                             dipped chocolate anything 
##                                                                                     4 
##                                                         dirty chai earthquake cookies 
##                                                                                   167 
##                                                                        dirty horchata 
##                                                                                    52 
##                                                                            dirty rice 
##                                                                                    46 
##                                                                  diy vegan mayonnaise 
##                                                                                    26 
##                                                                  dodo fried plantains 
##                                                                                    14 
##                                                     dolester miles coconut pecan cake 
##                                                                                    95 
##                                                   dolester miless lemon meringue tart 
##                                                                                    35 
##                                                       donald links eggplant casserole 
##                                                                                    67 
##                                                                      doppelbock bread 
##                                                                                     3 
##                                          dora charless lost and found lemon poundcake 
##                                                                                    55 
##                                                                doriss salty hot fudge 
##                                                                                    26 
##                                                doro wat ethiopian style spicy chicken 
##                                                                                    80 
##                                                                                  dosa 
##                                                                                    42 
##                                    dosas with mustard greens and pumpkin seed chutney 
##                                                                                    12 
##                                                                      double apple pie 
##                                                                                   169 
##                                                   double buckwheat blueberry pancakes 
##                                                                                    16 
##                                                              double chocolate cookies 
##                                                                                   153 
##                                                         double chocolate rice pudding 
##                                                                                     4 
##                                                        double ranch mozzarella sticks 
##                                                                                     9 
##                                                          double strawberry cheesecake 
##                                                                                    51 
##                                                                             doughnuts 
##                                                                                   113 
##                                         dried fruit compote with fresh apple and pear 
##                                                                                     1 
##                                                                dried fruit pastelitos 
##                                                                                     6 
##                                                                        dried lime tea 
##                                                                                     1 
##                                                                dried porcini consomme 
##                                                                                     5 
##                                                                         drop biscuits 
##                                                                                   104 
##                                                    drop biscuits with corn and cheese 
##                                                                                     5 
##                                                                       drunken pharaoh 
##                                                                                     1 
##                                                            dry brined chicken breasts 
##                                                                                    42 
##                                                                     dry brined turkey 
##                                                                                   224 
##                                                dry brined turkey with sheet pan gravy 
##                                                                                   107 
##                                                               dry rubbed london broil 
##                                                                                    54 
##                                                                     dry rye manhattan 
##                                                                                     2 
##                                                                     du jour doughnuts 
##                                                                                     8 
##                                                     dua gia pickled bean sprout salad 
##                                                                                     4 
##                                                             dua hanh pickled shallots 
##                                                                                     4 
##                                                                     dubonnet cocktail 
##                                                                                     2 
##      duck breast with braised belgian endive shaved cauliflower and green peppercorns 
##                                                                                    23 
##                                                             duck fat potatoes for two 
##                                                                                    30 
##                                                                       duck fried rice 
##                                                                                    11 
##                                                                         duck meatloaf 
##                                                                                     1 
##                                            duck or rabbit livers with onion marmalade 
##                                                                                     1 
##                                                                       duck prosciutto 
##                                                                                    20 
##                                                                 duck stock and confit 
##                                                                                     2 
##                                               duck with cherries and red wine vinegar 
##                                                                                    32 
##                                             dudhi kofta curry indian squash dumplings 
##                                                                                    30 
##                                                                                dukkah 
##                                                                                     2 
##                                                               dukkah dusted sand dabs 
##                                                                                     1 
##                                                              dulce de leche chocoflan 
##                                                                                    88 
##                                             dutch baby with bacon and runny camembert 
##                                                                                    60 
##                                                                  earl grey madeleines 
##                                                                                    29 
##                                earl grey tea cake with dark chocolate and orange zest 
##                                                                                   305 
##                                                      earlonnes chicken and brown rice 
##                                                                                    54 
##                                                           easiest chicken noodle soup 
##                                                                                   166 
##                                                               easiest chocolate sauce 
##                                                                                    10 
##                                                                   easiest lentil soup 
##                                                                                   145 
##                                                             easiest vanilla ice cream 
##                                                                                    68 
##                                                           east 62nd street lemon cake 
##                                                                                   147 
##                                                           east coast grills cornbread 
##                                                                                   158 
##                                                                        easter barszcz 
##                                                                                     1 
##                                                                          easter bread 
##                                                                                    16 
##                                                                  easter egg nest cake 
##                                                                                    49 
##                                                                 eastern broccoli slaw 
##                                                                                     5 
##                                                      eastern north carolina fish stew 
##                                                                                    10 
##                                                                easy as pie apple cake 
##                                                                                   304 
##                                                                          easy baklava 
##                                                                                    17 
##                                                                   easy chicken kapama 
##                                                                                    63 
##                                                                  easy chocolate fudge 
##                                                                                    84 
##                                                easy christmas pudding without the rum 
##                                                                                     1 
##                                                                      easy duck confit 
##                                                                                    45 
##                                             easy fish stew with mediterranean flavors 
##                                                                                   180 
##                                                                            easy matzo 
##                                                                                    52 
##                                                                   easy rhubarb trifle 
##                                                                                    31 
##                                                                    easy roast chicken 
##                                                                                     7 
##                                                                easy sheet pan chicken 
##                                                                                   190 
##                                                                           easy yogurt 
##                                                                                   147 
##                                                            ed levines matzo ball soup 
##                                                                                     2 
##                                             edamame dip with red onion and sesame oil 
##                                                                                    11 
##                                                                  edamame in the shell 
##                                                                                     2 
##                                                                      edamame tofu dip 
##                                                                                    11 
##                                                                  edna lewiss biscuits 
##                                                                                    45 
##                                                              edna lewiss corn muffins 
##                                                                                    22 
##                                               edna lewiss garden strawberry preserves 
##                                                                                     5 
##                                                   edna lewiss lemon cheese layer cake 
##                                                                                     1 
##                                                             edna lewiss peach cobbler 
##                                                                                    33 
##                                                          edna lewiss smothered rabbit 
##                                                                                     3 
##                                                              edna lewiss spiced pears 
##                                                                                     9 
##                                                 edouardo jordans juneteenth red punch 
##                                                                                    42 
##                                                       efo riro stewed amaranth greens 
##                                                                                    13 
##                                                                    egg and herb salad 
##                                                                                    11 
##                                                         egg and lemon soup with ramps 
##                                                                                     6 
##                                                                    egg baked in cream 
##                                                                                    10 
##                                       egg batter pan fried flounder with green garlic 
##                                                                                    28 
##                                                                             egg curry 
##                                                                                    61 
##                                                                         egg drop soup 
##                                                                                     8 
##                                                                         egg in a hole 
##                                                                                   203 
##                                                                        egg lemon soup 
##                                                                                     6 
##                                                            egg lemon soup with matzos 
##                                                                                     6 
##                                                            egg lemon soup with turkey 
##                                                                                    19 
##                                                                               egg nog 
##                                                                                    27 
##                                                            egg noodles with soy broth 
##                                                                                     2 
##                                                             egg salad and greens wrap 
##                                                                                     2 
##                              egg salad sandwiches with green olive celery and parsley 
##                                                                                     7 
##                                                         egg white frittata with leeks 
##                                                                                     8 
##                                                                   eggnog creme brulee 
##                                                                                    12 
##                                                                 eggnog snickerdoodles 
##                                                                                   139 
##                                                            eggplant and potato gratin 
##                                                                                    13 
##                                                    eggplant and roast tomatoes gratin 
##                                                                                    30 
##                                                   eggplant and squash alla parmigiana 
##                                                                                     9 
##                                                               eggplant and tomato pie 
##                                                                                    73 
##                                        eggplant and zucchini pasta with feta and dill 
##                                                                                   116 
##                                       eggplant baked with tomatoes and ricotta salata 
##                                                                                    28 
##                              eggplant bulgur and tomato casserole with yogurt topping 
##                                                                                     4 
##                                                                     eggplant caponata 
##                                                                                    49 
##                                                            eggplant caponata crostini 
##                                                                                     3 
##                                        eggplant caponata pasta with ricotta and basil 
##                                                                                    45 
##                                             eggplant focaccia with ricotta and olives 
##                                                                                    90 
##                                                    eggplant lamb and yogurt casserole 
##                                                                                   225 
##                                                       eggplant parmesan deconstructed 
##                                                                                    12 
##                                                 eggplant ragu with capers and burrata 
##                                                                                    11 
##                                                                      eggplant ravaiya 
##                                                                                    29 
##                                                                        eggplant salad 
##                                                                                    17 
##                                             eggplant salad with mustard miso dressing 
##                                                                                     8 
##                                               eggplant stuffed with rice and tomatoes 
##                                                                                     9 
##                                                eggplant tomato and chickpea casserole 
##                                                                                   171 
##                                                                        eggplant torte 
##                                                                                    10 
##                       eggplant walnut ricotta rolls with fresh greens and basil salad 
##                                                                                     5 
##                                                                   eggplant with pasta 
##                                                                                     1 
##                                                      eggplant with spicy ginger sauce 
##                                                                                     1 
##                                                                        eggplant wraps 
##                                                                                    14 
##                                                      eggplants in a north south sauce 
##                                                                                    14 
##                                                                         eggs benedict 
##                                                                                   134 
##                                                                     eggs in purgatory 
##                                                                                   108 
##                                                                         eggs kejriwal 
##                                                                                   102 
##                                                  eggs poached in buttery sorrel sauce 
##                                                                                    10 
##                                                  eggs poached in curried tomato sauce 
##                                                                                     4 
##                                                        eggs poached in marinara sauce 
##                                                                                    74 
##                                                   eggs with gigante beans and harissa 
##                                                                                     2 
##                                                                   eight grain granola 
##                                                                                     2 
##                                                      einkorn risotto with fresh herbs 
##                                                                                     3 
##                                                                             el chonie 
##                                                                                     2 
##                                                                         el presidente 
##                                                                                     9 
##                                                           eleven madison park granola 
##                                                                                   469 
##                                                         eli zabars egg salad sandwich 
##                                                                                   205 
##                                                     ellens lemon basil salad dressing 
##                                                                                     9 
##                                                          ember roasted slaw with mint 
##                                                                                     9 
##                                                                              embutido 
##                                                                                    14 
##                                       emily luchettis chocolate chip meringue cookies 
##                                                                                    41 
##                                                                        empanada dough 
##                                                                                    10 
##                                                                       emperors garden 
##                                                                                     4 
##                                                                           enchantress 
##                                                                                     2 
##                                                                  enchiladas con carne 
##                                                                                   220 
##                                                                endive and apple salad 
##                                                                                     5 
##                                            endive and apple salad with spiced walnuts 
##                                                                                     9 
##                                                 endive and potato gratin with walnuts 
##                                                                                     3 
##                                              endive and quinoa salad with poached egg 
##                                                                                     1 
##                                      endive and radicchio salad with caramelized pear 
##                                                                                     2 
##                                                          endive apple and kasha salad 
##                                                                                     2 
##                                                         endive apple and walnut salad 
##                                                                                     8 
##                                                                    endive cheese tart 
##                                                                                     1 
##                                                     endive leaves with crab rillettes 
##                                                                                     6 
##                                                endive salad with blue cheese dressing 
##                                                                                    15 
##                                                     endive salad with egg and anchovy 
##                                                                                     8 
##                                                                          enfrijoladas 
##                                                                                    12 
##                                                    english muffin breakfast casserole 
##                                                                                    65 
##                                                           english pea and onion salad 
##                                                                                     2 
##                           english peas with grilled little gems green garlic and mint 
##                                                                                     5 
##                                                                        english scones 
##                                                                                    42 
##                                                                       epigram of lamb 
##                                                                                     1 
##                                                                          ermine icing 
##                                                                                   105 
##                                                                       escabeche salad 
##                                                                                     4 
##                                           escarole salad with smoky halloumi croutons 
##                                                                                    37 
##                                                               escarole soup with rice 
##                                                                                     7 
##                                                                         espresso fizz 
##                                                                                     4 
##                                                evan funkes handmade tagliatelle pasta 
##                                                                                     8 
##                                                  evelyn sharpes french chocolate cake 
##                                                                                    68 
##                                                                 eventide fish chowder 
##                                                                                    37 
##                               everyday salmon with tangy cucumbers and fried shallots 
##                                                                                    37 
##                                                                  everything bagel dip 
##                                                                                    35 
##                                                                     everything danish 
##                                                                                     1 
##                                                         everything parker house rolls 
##                                                                                    47 
##                                                      everything spice phyllo crackers 
##                                                                                     5 
##                                                                 excellent white bread 
##                                                                                   285 
##                                                                 exciting noodle kugel 
##                                                                                   102 
##                                             extra bittersweet chocolate pots de creme 
##                                                                                    52 
##                                                           extra creamy scrambled eggs 
##                                                                                   581 
##                                        extra crispy parmesan crusted roasted potatoes 
##                                                                                   102 
##                                                                 extra flaky pie crust 
##                                                                                    13 
##                                                                     eye of the komodo 
##                                                                                     5 
##                                              fabrizia lanzas sicilian pizza sfincione 
##                                                                                    35 
##                                                                         fade to black 
##                                                                                     2 
##                                                                               falafel 
##                                                                                   124 
##                                  fall vegetable cookpot braised red and green cabbage 
##                                                                                     1 
##                                                                        falling leaves 
##                                                                                     4 
##                        faloodeh persian lime and rose water granita with rice noodles 
##                                                                                     8 
##                                                                family meal fish tacos 
##                                                                                   121 
##                                                                          family pizza 
##                                                                                     1 
##                                                                   fanciulli manhattan 
##                                                                                     3 
##                                                              fancy canned cranberries 
##                                                                                    41 
##                                                                            fancy free 
##                                                                                     5 
##                                                                        fancy meatloaf 
##                                                                                    57 
##                                                     fannie farmers parker house rolls 
##                                                                                    46 
##                                        farfalle with artichokes peas favas and onions 
##                                                                                    15 
##                                                  farfalle with cabbage and black kale 
##                                                                                     2 
##                                                         farfalle with roasted peppers 
##                                                                                     6 
##                                                                                farofa 
##                                                                                     7 
##                                  farro and arborio risotto with leeks herbs and lemon 
##                                                                                    12 
##                                                                   farro and bean soup 
##                                                                                   112 
##                                      farro and green bean salad with walnuts and dill 
##                                                                                    51 
##                                                   farro and lentils with jammy onions 
##                                                                                    47 
##                               farro and swiss chard salad with grapefruit vinaigrette 
##                                                                                     5 
##                                                              farro and vegetable soup 
##                                                                                     8 
##                                                            farro and watermelon salad 
##                                                                                    10 
##                                                farro broccoli bowl with lemony tahini 
##                                                                                   116 
##                                                                          farro e pepe 
##                                                                                    97 
##                                                                         farro nicoise 
##                                                                                    18 
##                                   farro or bulgur with black eyed peas chard and feta 
##                                                                                     5 
##                                                  farro pasta with nettles and sausage 
##                                                                                     9 
##                                              farro pasta with peas pancetta and herbs 
##                                                                                     5 
##                                                    farro pilaf with balsamic cherries 
##                                                                                    28 
##                                            farro risotto with sweet corn and tomatoes 
##                                                                                   106 
##                                                                           farro salad 
##                                                                                     3 
##                                                farro salad with beets greens and feta 
##                                                                                    97 
##                                            farro salad with corn and crispy chickpeas 
##                                                                                    82 
##                                         farro salad with leeks chickpeas and currants 
##                                                                                    49 
##                        farro salad with roasted rutabaga ricotta salata and hazelnuts 
##                                                                                    17 
##                                            farro salad with tomatoes and romano beans 
##                                                                                    11 
##                                       farro with blistered tomatoes pesto and spinach 
##                                                                                    85 
##                                                                  farro with mushrooms 
##                                                                                   203 
##                                               farro with roasted squash feta and mint 
##                                                                                   172 
##                                         farro with salmon cucumber radicchio and dill 
##                                                                                   119 
##                                                       fast no knead whole wheat bread 
##                                                                                    35 
##                                                              fast spaghetti bolognese 
##                                                                                    57 
##                                                      fast vietnamese caramel bluefish 
##                                                                                    47 
##                                                                  fastest roast turkey 
##                                                                                    37 
##                                                    fatimas fingers tunisian egg rolls 
##                                                                                     9 
##                                                                              fattoush 
##                                                                                     3 
##                                                                  fattoush with dukkah 
##                                                                                     3 
##                                                            fatty cue brussels sprouts 
##                                                                                     9 
##                                                         fava bean and asparagus salad 
##                                                                                    13 
##                                                                       fava bean puree 
##                                                                                     6 
##                                                              fava bean soup with mint 
##                                                                                     3 
##                                                            fava bean stew with bulgur 
##                                                                                     2 
##                                                          fazzoletti with chunky pesto 
##                                                                                     1 
##                                                         feast of the seven fishes pie 
##                                                                                   125 
##                                                                              feijoada 
##                                                                                    12 
##                                                                                fennel 
##                                                                                    11 
##                                                                       fennel al forno 
##                                                                                    46 
##                                       fennel and celery salad with lemon and parmesan 
##                                                                                    21 
##                        fennel and orange salad with black olives on a bed of couscous 
##                                                                                     7 
##                                                     fennel and orange scented challah 
##                                                                                    24 
##                                                       fennel apple salad with walnuts 
##                                                                                   121 
##                                   fennel beet and orange salad with cumin vinaigrette 
##                                                                                    20 
##                                   fennel compote with tomatoes olives and fish or not 
##                                                                                     5 
##                                                         fennel garlic and potato soup 
##                                                                                    17 
##                                                                         fennel gratin 
##                                                                                     8 
##                                                           fennel kale and rice gratin 
##                                                                                    67 
##                                                                      fennel marmalade 
##                                                                                     5 
##                                                      fennel mushroom and radish salad 
##                                                                                     6 
##                                                                   fennel quick kimchi 
##                                                                                    16 
##                                                                           fennel rice 
##                                                                                    28 
##                                                  fennel salad with anchovy and olives 
##                                                                                    18 
##                                                        fergus hendersons trotter gear 
##                                                                                    49 
##                                                            fernet branca oreo cookies 
##                                                                                     8 
##                                                      ferran adrias potato chip omelet 
##                                                                                   158 
##                                                                              fesenjan 
##                                                                                    28 
##                                                                              festival 
##                                                                                     5 
##                                                            festive thanksgiving torte 
##                                                                                    43 
##                                                             feta and herb phyllo tart 
##                                                                                    42 
##                                                             feta brined roast chicken 
##                                                                                   115 
##                                                        feta stuffed grilled flatbread 
##                                                                                    33 
##                                                                  feta stuffed peppers 
##                                                                                    15 
##                                   fettuccine with braised mushrooms and baby broccoli 
##                                                                                     7 
##                                    fettuccine with brussels sprouts lemon and ricotta 
##                                                                                    33 
##                                                  fettuccine with lobster and zucchini 
##                                                                                    47 
##                                                fettuccine with merguez and mint pesto 
##                                                                                    28 
##                                         fettuccine with ricotta and a fistful of mint 
##                                                                                    37 
##                                                   fettuccine with sunchokes and herbs 
##                                                                                    12 
##                                                              fettuccine with zucchini 
##                                                                                   140 
##                                                                   field day poundcake 
##                                                                                   157 
##                                                                  fiery sweet potatoes 
##                                                                                    89 
##                                                                   fig and almond cake 
##                                                                                   111 
##                                                fig crostata with sweet parmesan cream 
##                                                                                     4 
##                                                               fig hazelnut financiers 
##                                                                                    13 
##                                                                               fig jam 
##                                                                                    51 
##                                      fig olive tapenade with prosciutto and persimmon 
##                                                                                    24 
##                                                                            fig sorbet 
##                                                                                     3 
##                                 fig tart with caramelized onions rosemary and stilton 
##                                                                                    28 
##                                                                       fig vinaigrette 
##                                                                                     6 
##                                              figs in blankets with port mustard sauce 
##                                                                                     7 
##                                                                     filipino embutido 
##                                                                                     4 
##                        fillet of beef with smoked paprika butter and shishito peppers 
##                                                                                     2 
##                                                                   fines herbes omelet 
##                                                                                    34 
##                                                                      finnish pancakes 
##                                                                                    21 
##                                                                 firehouse chili gumbo 
##                                                                                   136 
##                                                                       fireplace trout 
##                                                                                     5 
##                                                                 fish fry chepa vepudu 
##                                                                                    44 
##                                        fish in bangladeshi shorshe bata mustard paste 
##                                                                                     2 
##                                              fish koftas in tomato and cardamom sauce 
##                                                                                    17 
##                                                                             fish larb 
##                                                                                    17 
##                                                                      fish pepper soup 
##                                                                                    15 
##                                                       fish pie with a sourdough crust 
##                                                                                    44 
##                                             fish sauce and black pepper chicken wings 
##                                                                                     4 
##                                                                   fish stew with rice 
##                                                                                     4 
##                                       fish stuffed with herbs walnuts and pomegranate 
##                                                                                    37 
##                                                                            fish tacos 
##                                                                                   367 
##                                                         fish with grilled salsa verde 
##                                                                                     1 
##                                                       fish with sizzling olive butter 
##                                                                                    77 
##                                                                      fishmongers stew 
##                                                                                    10 
##                                                                        five hour goat 
##                                                                                     1 
##                                                     five ingredient creamy miso pasta 
##                                                                                   249 
##                                                          five peppercorn fish fillets 
##                                                                                    21 
##                                                                            five spice 
##                                                                                     3 
##                                                          five spice crisp fried squid 
##                                                                                     7 
##                                              five spice duck breast with blackberries 
##                                                                                    59 
##                                                                     five spice powder 
##                                                                                     1 
##                                       five spice roasted carrots with toasted almonds 
##                                                                                    40 
##                                                 five vegetables and 15 grain rice pot 
##                                                                                     1 
##                                                                             flag cake 
##                                                                                    40 
##                                                             flaky buttermilk biscuits 
##                                                                                    28 
##                                                               flaky chicken hand pies 
##                                                                                    62 
##                                                                 flaky folded biscuits 
##                                                                                    74 
##                                                                  flaming baba au rhum 
##                                                                                    26 
##                                                                         flan de leche 
##                                                                                    66 
##                                                                  flash cooked cabbage 
##                                                                                     3 
##                                    flattened chicken thighs with roasted lemon slices 
##                                                                                   160 
##                                                                  flavorful fish stock 
##                                                                                     5 
##                                                              flavorfully infused oils 
##                                                                                     1 
##                                                         flax and mixed grains granola 
##                                                                                    12 
##                                           floating island with apricot creme anglaise 
##                                                                                     2 
##                                                                      florida lime pie 
##                                                                                    70 
##                                         flounder with brown butter lemon and tarragon 
##                                                                                    37 
##                                                     flounder with herb blossom butter 
##                                                                                     6 
##                                                               flourless beet brownies 
##                                                                                    17 
##                                                                 flourless carrot cake 
##                                                                                    78 
##                                                               flourless cocoa cookies 
##                                                                                   200 
##                                                               fluffy cheddar biscuits 
##                                                                                   131 
##                                                               fluffy pumpkin pancakes 
##                                                                                   104 
##                                                                       fluke au gratin 
##                                                                                    55 
##                                                                           fluke crudo 
##                                                                                     2 
##                                      fluke in lemon brodetto with scallops and squash 
##                                                                                     6 
##                                                             flutemaginley cider punch 
##                                                                                     4 
##                                                                        focaccia dough 
##                                                                                    26 
##                                           focaccia with sweet onion and caper topping 
##                                                                                     2 
##                                                   focaccia with tomatoes and rosemary 
##                                                                                    13 
##                                                                      folamis bbq tofu 
##                                                                                    28 
##                                                             food processor apple tart 
##                                                                                     1 
##                                                  foods amazing cilantro tofu sandwich 
##                                                                                    14 
##                                                     foolproof lemon garlic mayonnaise 
##                                                                                    10 
##                                                                   foolproof pie dough 
##                                                                                    70 
##                                                                 foolproof tarte tatin 
##                                                                                   154 
##                                                                    foraged fruit tart 
##                                                                                     1 
##                                                                         foragers soup 
##                                                                                     5 
##                                               forbidden rice pudding with blueberries 
##                                                                                    18 
##                                                                     fountain of youth 
##                                                                                     1 
##                                                       four cheese macaroni and cheese 
##                                                                                    55 
##                                             four seasons oysters in champagne veloute 
##                                                                                     1 
##                                                                     four spice salmon 
##                                                                                   132 
##                                                              fourth of july shortcake 
##                                                                                     2 
##                                   fragrant chicken soup with chickpeas and vegetables 
##                                                                                    93 
##                                            fragrant thai style clams in coconut broth 
##                                                                                    20 
##                                                                 frangipane prune tart 
##                                                                                    63 
##                                                   frank de carlos black chickpea soup 
##                                                                                     4 
##                                                                      frank of america 
##                                                                                     4 
##                                            freds chicken salad with balsamic dressing 
##                                                                                   134 
##                                                       freekeh chickpea and herb salad 
##                                                                                    35 
##                                               freekeh with chicken almonds and yogurt 
##                                                                                    66 
##                                                        freestyle roasted chicken parm 
##                                                                                    42 
##                                fregola with artichokes feta toasted almonds and herbs 
##                                                                                     9 
##                                                                     fregola with corn 
##                                                                                    11 
##                                                          frejon beans in coconut milk 
##                                                                                    18 
##                                                                             french 75 
##                                                                                     5 
##                           french chicken liver and green bean salad with garam masala 
##                                                                                     5 
##                                                             french chocolate brownies 
##                                                                                     6 
##                                                                          french fries 
##                                                                                    88 
##                                                            french grated carrot salad 
##                                                                                     8 
##                                                           french lentils with cashews 
##                                                                                     3 
##                                                             french lentils with chard 
##                                                                                    28 
##                                                           french onion grilled cheese 
##                                                                                   200 
##                                                      french onion macaroni and cheese 
##                                                                                   129 
##                                                                   french onion panade 
##                                                                                    76 
##                                                                     french onion soup 
##                                                                                   115 
##                                                    french potato and green bean salad 
##                                                                                   150 
##                                                                french potato pancakes 
##                                                                                    10 
##                                                   french salt cod and potato brandade 
##                                                                                    14 
##                                                                 french toast amandine 
##                                                                                    53 
##                                                      french toast with cinnamon plums 
##                                                                                     8 
##                                               french yogurt cake with marmalade glaze 
##                                                                                    20 
##                                                          fresh and wild mushroom stew 
##                                                                                   118 
##                                                                     fresh apple salsa 
##                                                                                     5 
##                                                                          fresh cheese 
##                                                                                     1 
##                                                            fresh corn and tomato soup 
##                                                                                    24 
##                                             fresh corn griddle cakes with spicy salsa 
##                                                                                    16 
##                                                                       fresh egg pasta 
##                                                                                    59 
##                                                    fresh fava bean and shrimp risotto 
##                                                                                     7 
##                                                              fresh fig and date shake 
##                                                                                     1 
##                                       fresh fig cake with honey cream cheese frosting 
##                                                                                    56 
##                                                                        fresh fig tart 
##                                                                                    46 
##                                                                   fresh green chorizo 
##                                                                                    10 
##                                                   fresh ham with maple balsamic glaze 
##                                                                                    33 
##                                                                       fresh herb kuku 
##                                                                                    42 
##                                                                    fresh herb risotto 
##                                                                                    41 
##                                         fresh multi bean salad with charred red onion 
##                                                                                     1 
##                                                  fresh pasta with prosciutto and peas 
##                                                                                    13 
##                                                              fresh pea soup with miso 
##                                                                                     9 
##                                                                         fresh ricotta 
##                                                                                   190 
##                                        fresh ricotta with rhubarb ginger and cardamom 
##                                                                                    11 
##                                         fresh strawberries with almond creme anglaise 
##                                                                                    10 
##                                                           fresh strawberry bundt cake 
##                                                                                    88 
##                                                                  fresh strawberry pie 
##                                                                                   183 
##                                                fresh tomato soup with basil and farro 
##                                                                                    31 
##                                                                       fresh tortillas 
##                                                                                     1 
##                                                                      fried apple pies 
##                                                                                    14 
##                                                                      fried artichokes 
##                                                                                    16 
##                                                  fried asparagus with caesar dressing 
##                                                                                     4 
##                                                                    fried cakes arepas 
##                                                                                     5 
##                                          fried chicken biscuits with hot honey butter 
##                                                                                    99 
##                                              fried chickpeas with chorizo and spinach 
##                                                                                    44 
##                                                                      fried corn cakes 
##                                                                                    26 
##                                                                  fried egg quesadilla 
##                                                                                    44 
##                                        fried eggplant with chickpeas and mint chutney 
##                                                                                   141 
##                                                                  fried eggs and ramps 
##                                                                                     6 
##                                                   fried eggs with garlicky green rice 
##                                                                                    49 
##                                                                   fried fish sandwich 
##                                                                                    58 
##     fried green beans scallions and brussels sprouts with buttermilk cornmeal coating 
##                                                                                     7 
##                                             fried green tomatoes with bacon remoulade 
##                                                                                    11 
##                                                                       fried guacamole 
##                                                                                     6 
##                                                                           fried matzo 
##                                                                                     6 
##                                                   fried mushroom and cheese empanadas 
##                                                                                     2 
##                                                                       fried pear pies 
##                                                                                     1 
##                                                  fried pickles with pickled ranch dip 
##                                                                                    19 
##                                               fried red thai jasmine rice with shrimp 
##                                                                                     8 
##                                                                            fried rice 
##                                                                                   167 
##                                                      fried rice with bacon and ginger 
##                                                                                     6 
##                                                            fried rice with prosciutto 
##                                                                                     3 
##                                                                        fried scallops 
##                                                                                     6 
##                                                        fried shallots and shallot oil 
##                                                                                     2 
##                                                       fried snapper with creole sauce 
##                                                                                     1 
##                                                                           fried squid 
##                                                                                     9 
##                                   fried tagliatelle with chickpeas and smoky tomatoes 
##                                                                                   146 
##                                                         fried winter squash with mint 
##                                                                                     3 
##                                                                        fried zucchini 
##                                                                                    33 
##                                                                 fried zucchini rounds 
##                                                                                     2 
##                                           fried zucchini with pecorino and hot pepper 
##                                                                                     8 
##                                               frijoles de fiesta fiesta refried beans 
##                                                                                    22 
##                                                                    frisee aux lardons 
##                                                                                     7 
##                                                         frisee salad with poached egg 
##                                                                                     5 
##                                                 frisee with croutons and spicy olives 
##                                                                                     3 
##                                      frisee with pickled cherries pistachios and brie 
##                                                                                     1 
##                                                                              frittata 
##                                                                                     5 
##                                                      frittata with bread and bottarga 
##                                                                                     2 
##                                          frittata with brown rice peas and pea shoots 
##                                                                                     5 
##                                                 frittata with kasha leeks and spinach 
##                                                                                     7 
##                                         frittata with peas herbs and feta or parmesan 
##                                                                                     4 
##                                                      frittata with turnips and olives 
##                                                                                     9 
##                                           frittata with zucchini goat cheese and dill 
##                                                                                    44 
##                                                                  fritto misto di mare 
##                                                                                     3 
##                                                                         frogmore stew 
##                                                                                    32 
##                                                                       frosted cookies 
##                                                                                     2 
##                                                         frosted holiday sugar cookies 
##                                                                                    89 
##                                                                       frosty lime pie 
##                                                                                    12 
##                                                                frozen banana daiquiri 
##                                                                                     3 
##                                                           frozen blackberry margarita 
##                                                                                     2 
##                                                            frozen espresso zabaglione 
##                                                                                     9 
##                                                                     frozen fudge pops 
##                                                                                    46 
##                                                                   frozen irish coffee 
##                                                                                     9 
##                                    frozen maple mousse pie with chocolate maple sauce 
##                                                                                     7 
##                                                                      frozen margarita 
##                                                                                     8 
##                                        frozen melon with crushed raspberries and lime 
##                                                                                     9 
##                                                                    frozen pina colada 
##                                                                                     2 
##                          frozen strawberry coconut smoothie with pomegranate molasses 
##                                                                                     1 
##                                                                    frozen tom collins 
##                                                                                    20 
##                                                          fruit cobbler with any fruit 
##                                                                                    55 
##                                                 fruit crumble with quinoa oat topping 
##                                                                                     7 
##                                                                 fruit filled scuffins 
##                                                                                    17 
##                                                                          fruit fluden 
##                                                                                     2 
##                                                                         fruit galette 
##                                                                                   116 
##                                                            fruit stuffed loin of pork 
##                                                                                     7 
##                                                             frutti di mare rice salad 
##                                                                                     8 
##                                                                        fudge brownies 
##                                                                                    68 
##                                                                   fudgy bourbon balls 
##                                                                                   160 
##                                                                fudgy nutella brownies 
##                                                                                    72 
##                                                                         fufu swallows 
##                                                                                    20 
##                                                                                 fungi 
##                                                                                     8 
##                                                   fusilli with broccoli and anchovies 
##                                                                                   109 
##                                                                  fuyu persimmon salad 
##                                                                                     6 
##                                gabriella mlynarczyks smoky brown butter old fashioned 
##                                                                                     3 
##                                                                             gado gado 
##                                                                                    12 
##                                                           gajak peanut sesame brittle 
##                                                                                     4 
##                                               gajar halwa carrot and cardamom pudding 
##                                                                                    21 
##                                                        gajjara kosambari carrot salad 
##                                                                                    34 
##                                                         galbi korean style short ribs 
##                                                                                    56 
##                                                                      galette des rois 
##                                                                                    74 
##                                                   galettes completes buckwheat crepes 
##                                                                                    29 
##                                                                       game day nachos 
##                                                                                    31 
##                                    game hens with sumac pomegranate and cardamom rice 
##                                                                                    30 
##                                        gamja salad with cucumber carrot and red onion 
##                                                                                     7 
##                                                                               ganache 
##                                                                                     3 
##                   gandules con bolitas de platano pigeon peas with plantain dumplings 
##                                                                                     7 
##                                                                          garam masala 
##                                                                                     5 
##                                                            garam masala chicken wings 
##                                                                                     1 
##                                                             garam masala pumpkin tart 
##                                                                                    23 
##                                                     garbanzos and greens with chorizo 
##                                                                                    24 
##                                                             garden greens vichyssoise 
##                                                                                     2 
##                                                               garden vegetable gratin 
##                                                                                     4 
##                                                           garganelli with ragu antica 
##                                                                                     4 
##                                                             garlic aioli potato salad 
##                                                                                    57 
##                       garlic and thyme roasted chicken with crispy drippings croutons 
##                                                                                    61 
##                                               garlic braised short ribs with red wine 
##                                                                                   201 
##                                                                          garlic bread 
##                                                                                    31 
##                                                                          garlic broth 
##                                                                                     7 
##                                      garlic broth with basmati rice turkey and squash 
##                                                                                     1 
##                                                   garlic chicken with guasacaca sauce 
##                                                                                    84 
##                                                                          garlic clams 
##                                                                                     6 
##                                  garlic ginger chicken breasts with cilantro and mint 
##                                                                                   177 
##                                                                          garlic knots 
##                                                                                     5 
##                                                           garlic parsley potato cakes 
##                                                                                     7 
##                                                                          garlic rasam 
##                                                                                    43 
##                                                                  garlic saffron sauce 
##                                                                                     2 
##                                                                    garlic scape pesto 
##                                                                                    68 
##                                                              garlic shrimp brochettes 
##                                                                                    10 
##                                                               garlic shrimp with peas 
##                                                                                    42 
##                                                                           garlic soup 
##                                                                                    20 
##                                                garlic soup with potatoes and broccoli 
##                                                                                     6 
##                                                 garlic soup with quinoa and snap peas 
##                                                                                     2 
##                                                              garlic soup with spinach 
##                                                                                    43 
##                                                                   garlic tahini sauce 
##                                                                                    13 
##                                garlicky beef tenderloin with orange horseradish sauce 
##                                                                                   109 
##                                 garlicky beet spread with yogurt dill and horseradish 
##                                                                                    26 
##                                                             garlicky buttered carrots 
##                                                                                    34 
##                                                                   garlicky caesar dip 
##                                                                                    11 
##                                        garlicky chicken thighs with scallion and lime 
##                                                                                   357 
##                                             garlicky chicken with lemon anchovy sauce 
##                                                                                   520 
##                                                    garlicky hasselback sweet potatoes 
##                                                                                    20 
##                                                                  garlicky pork burger 
##                                                                                     1 
##                                                          garlicky red chili hot sauce 
##                                                                                    11 
##                              garlicky smoky grilled london broil with chipotle chiles 
##                                                                                     9 
##                                      garlicky steak with carrot walnut and dill salad 
##                                                                                    18 
##                                                                         gateau basque 
##                                                                                    36 
##                                                                         gateau breton 
##                                                                                    32 
##                                                                       gateau creusois 
##                                                                                     1 
##                                                           gateau dhelene coconut cake 
##                                                                                    36 
##                                                                              gazpacho 
##                                                                                     4 
##                                                                   gazpacho sans bread 
##                                                                                     8 
##                                                                          gefilte fish 
##                                                                                    50 
##                                                                 general tsos tofu sub 
##                                                                                     8 
##                                                                     genevrier des sud 
##                                                                                     2 
##                                             gently cooked salmon with mashed potatoes 
##                                                                                     6 
##                                               georgian bean salad with cilantro sauce 
##                                                                                     4 
##                                                               georgian cilantro sauce 
##                                                                                    14 
##                                                                  gerards mustard tart 
##                                                                                    12 
##                                                                 german chocolate cake 
##                                                                                    35 
##                                                              german chocolate cookies 
##                                                                                   178 
##                                            ghanaian spinach stew with sweet plantains 
##                                                                                    11 
##                                            giant beans with spinach tomatoes and feta 
##                                                                                    15 
##                                              giant chocolate and peanut butter cookie 
##                                                                                    48 
##                                                             giant cinnamon roll scone 
##                                                                                   118 
##                                         giant couscous cake with roasted pepper sauce 
##                                                                                    92 
##                                                 giant crinkled chocolate chip cookies 
##                                                                                   309 
##                                                      giant green pie torta pasqualina 
##                                                                                    39 
##                                                        giant limas with winter squash 
##                                                                                     7 
##                                                               giant yorkshire pudding 
##                                                                                    52 
##                                                                           giardiniera 
##                                                                                    11 
##                               gilgeori toast korean street toast with cabbage and egg 
##                                                                                   101 
##                                                                     gillette cocktail 
##                                                                                     4 
##                                                                 gin and coconut water 
##                                                                                     3 
##                                                                gin and juice cocktail 
##                                                                                     9 
##                                                                          gin and soda 
##                                                                                     4 
##                                                 gin and tonic with bitters and orange 
##                                                                                     9 
##                                                                               gin fix 
##                                                                                     1 
##                                                                              gin fizz 
##                                                                                     3 
##                                                                             gin julep 
##                                                                                     1 
##                                                                              gin mule 
##                                                                                     1 
##                                                                    gin southside fizz 
##                                                                                     2 
##                                                                       gin tom collins 
##                                                                                     1 
##                                         ginevra iversons chocolate hazelnut ice cream 
##                                                                                     1 
##                                                                            ginger ale 
##                                                                                     5 
##                                                         ginger apple upside down cake 
##                                                                                    36 
##                                                               ginger cauliflower soup 
##                                                                                    76 
##                                                  ginger chicken with crisp napa salad 
##                                                                                    20 
##                                                                 ginger chocolate cake 
##                                                                                    16 
##                                               ginger cucumber carrot and cabbage slaw 
##                                                                                     4 
##                                                                    ginger dill salmon 
##                                                                                   147 
##                                                                     ginger fried rice 
##                                                                                    68 
##                                                                    ginger gingerbread 
##                                                                                     2 
##                                                                      ginger ice cream 
##                                                                                    23 
##                                                                   ginger lime chicken 
##                                                                                   509 
##                                                               ginger mango cream tart 
##                                                                                    16 
##                                                                        ginger martini 
##                                                                                    11 
##                                                               ginger molasses cookies 
##                                                                                    69 
##                                                               ginger scallion chicken 
##                                                                                   224 
##                                                                          ginger syrup 
##                                                                                     1 
##                                                           ginger turmeric honey syrup 
##                                                                                     9 
##                                                             gingerbread buche de noel 
##                                                                                    33 
##                                                                gingerbread cheesecake 
##                                                                                    13 
##                                                                     gingerbread house 
##                                                                                    12 
##                                                                  gingerbread pancakes 
##                                                                                    41 
##                                                                 gingerbread rum balls 
##                                                                                    55 
##                                                            gingerbread snickerdoodles 
##                                                                                    38 
##                                                       gingered strawberry rhubarb pie 
##                                                                                     4 
##                                                        gingered winter fruit ambrosia 
##                                                                                     1 
##                                                       gingery brownie crinkle cookies 
##                                                                                   134 
##                                              gingery cabbage rolls with pork and rice 
##                                                                                    43 
##                                                                  gingery chicken stew 
##                                                                                    68 
##                                  gingery fried rice with bok choy mushrooms and basil 
##                                                                                   108 
##                                   gingery grilled chicken thighs with charred peaches 
##                                                                                    99 
##                                                               gingery mixed berry pie 
##                                                                                    25 
##                                                                 gjelinas roasted yams 
##                                                                                   135 
##                                                                          glazed bacon 
##                                                                                    25 
##                                                        glazed beef and scallion rolls 
##                                                                                     3 
##                                      glazed cod with bok choy ginger and oyster sauce 
##                                                                                    78 
##                                                                glazed grilled carrots 
##                                                                                    61 
##                                                                    glazed holiday ham 
##                                                                                    43 
##                                                                      glazed lamb ribs 
##                                                                                    26 
##                                                                           glazed pork 
##                                                                                     3 
##                                                        glazed shiitakes with bok choy 
##                                                                                   125 
##                                                         gluten free apple almond tart 
##                                                                                    12 
##                                                             gluten free apple crumble 
##                                                                                    12 
##                                    gluten free apple pear and cranberry pecan crumble 
##                                                                                     9 
##                                            gluten free apple pecan cornbread stuffing 
##                                                                                     5 
##                                                    gluten free apricot walnut muffins 
##                                                                                    12 
##                                                  gluten free banana chocolate muffins 
##                                                                                    56 
##                                gluten free buckwheat poppy seed and blueberry muffins 
##                                                                                    18 
##                                 gluten free candied cranberry rosemary walnut crumble 
##                                                                                     3 
##                                              gluten free chocolate buckwheat biscotti 
##                                                                                    15 
##                                                    gluten free chocolate chip cookies 
##                                                                                   230 
##                          gluten free chocolate glazed almond layer cake with cherries 
##                                                                                     1 
##                                             gluten free cinnamon sugar cake doughnuts 
##                                                                                     9 
##                                                                 gluten free cornbread 
##                                                                                     3 
##                                           gluten free cornmeal fig and orange muffins 
##                                                                                     9 
##                                                 gluten free cornmeal molasses muffins 
##                                                                                    10 
##                                                            gluten free dessert pastry 
##                                                                                     8 
##                                                               gluten free flour blend 
##                                                                                     6 
##                             gluten free hazelnut cheesecake with salted caramel glaze 
##                                                                                     9 
##                                      gluten free penne with peas ricotta and tarragon 
##                                                                                     4 
##                                                                     gluten free pizza 
##                                                                                    11 
##                                          gluten free pumpkin dumplings with radicchio 
##                                                                                    15 
##                                      gluten free pumpkin muffins with crumble topping 
##                                                                                    18 
##                                                               gluten free pumpkin pie 
##                                                                                     7 
##                                                 gluten free raisin pistachio biscotti 
##                                                                                     8 
##                        gluten free spaghetti with baby broccoli mushrooms and walnuts 
##                                                                                     5 
##                                    gluten free whole grain cheese and mustard muffins 
##                                                                                     9 
##                                       gluten free whole grain mediterranean pie crust 
##                                                                                     8 
##                                              gnocchi with spring vegetables and basil 
##                                                                                     7 
##                                                       goat cheese and fig quick bread 
##                                                                                   142 
##                                                        goat cheese and walnut galette 
##                                                                                     1 
##                                      goat cheese chard and herb pie in a phyllo crust 
##                                                                                    20 
##                                     goat cheese ice cream with fennel lemon and honey 
##                                                                                    22 
##                                                                             goat ragu 
##                                                                                     5 
##                                                                             goat sugo 
##                                                                                     1 
##                  gobi taka tin vegan stir fried cauliflower with peppers and tomatoes 
##                                                                                     8 
##                                    gochujang barbecue ribs with peanuts and scallions 
##                                                                                    50 
##                                        gochujang glazed eggplant with fried scallions 
##                                                                                    98 
##                                                                             gold rush 
##                                                                                    28 
##                           golden beet and beet greens salad with yogurt mint and dill 
##                                                                                    16 
##                                         golden beet salad with cider vinegar dressing 
##                                                                                     6 
##                                                                           golden bowl 
##                                                                                     2 
##                                                                    golden ginger cake 
##                                                                                    88 
##                                                           golden leek and potato soup 
##                                                                                   158 
##                                                         golden raisin and pecan thins 
##                                                                                    11 
##                                                              golden whole wheat bread 
##                                                                                     8 
##                                                         gong bao chicken with peanuts 
##                                                                                    50 
##                                   gonzalo guzmans pork braised butter beans with eggs 
##                                                                                    24 
##                                                  good for almost everything pie dough 
##                                                                                     3 
##                                                              good old chili con carne 
##                                                                                    10 
##                                                    gooey pumpkin chocolate swirl bars 
##                                                                                    20 
##                                                                        goose barbacoa 
##                                                                                     2 
##                                       goose matzo balls with dried ginger and parsley 
##                                                                                     3 
##                                            gorgonzola walnut crostini with pear salad 
##                                                                                     3 
##                                                       gougeres with pancetta and sage 
##                                                                                    18 
##                                                                  graham cracker crust 
##                                                                                     5 
##                                        grain frittata with chile lime and fresh herbs 
##                                                                                    19 
##                                                                      grains and beans 
##                                                                                    52 
##                                                                        grainy mustard 
##                                                                                    21 
##                                                                 grammys spice cookies 
##                                                                                   136 
##                                                                 grand marnier souffle 
##                                                                                     1 
##                                                                   grannys tomato tart 
##                                                                                     4 
##                                                                               granola 
##                                                                                    30 
##                                                           granola bars with chocolate 
##                                                                                    43 
##                                                                         granola bites 
##                                                                                     8 
##                                                                       granola muffins 
##                                                                                    13 
##                                                            granola with popped quinoa 
##                                                                                    17 
##                                                                        grape focaccia 
##                                                                                     6 
##                                                                           grape salad 
##                                                                                    12 
##                                                             grape tomato quick kimchi 
##                                                                                    34 
##                                                    grapefruit and navel orange gratin 
##                                                                                     4 
##                                                                     grapefruit cooler 
##                                                                                     2 
##                                                                 grapefruit crumb cake 
##                                                                                    21 
##                                                                      grapefruit fluff 
##                                                                                    10 
##                                                                        grapefruit ice 
##                                                                                     2 
##                                                                       grapefruit tini 
##                                                                                    10 
##                                        grapefruit vinaigrette with greens or broccoli 
##                                                                                    12 
##                                                grapefruit with olive oil and sea salt 
##                                                                                    16 
##                                                                  grasshopper brownies 
##                                                                                    47 
##                                               grated carrot kohlrabi and radish salad 
##                                                                                    10 
##                                            grated carrot salad with dates and oranges 
##                                                                                     8 
##                                                   grated carrots with tahini dressing 
##                                                                                     3 
##                                                grated squash corn and tomatillo tacos 
##                                                                                    10 
##                                                               gratinee of cauliflower 
##                                                                                    83 
##                                                                               gravlax 
##                                                                                    14 
##                                                              gravy from a brined bird 
##                                                                                     2 
##                                                             great south bay duck ragu 
##                                                                                    30 
##                                                 greek baked beans with honey and dill 
##                                                                                    27 
##                                             greek baked fish with tomatoes and onions 
##                                                                                    77 
##                                                             greek baked squash omelet 
##                                                                                    12 
##                                                          greek baked vegetables briam 
##                                                                                    12 
##                                                        greek beet and beet greens pie 
##                                                                                    18 
##                                                           greek black eyed peas salad 
##                                                                                    12 
##                                                                      greek bruschetta 
##                                                                                     8 
##                                                    greek bulgur with brussels sprouts 
##                                                                                    14 
##                                                  greek cabbage pie with dill and feta 
##                                                                                    24 
##                                                        greek chicken and tomato salad 
##                                                                                     4 
##                                        greek chicken stew with cauliflower and olives 
##                                                                                   270 
##                                                                 greek fishermans stew 
##                                                                                   115 
##                                                                     greek goddess dip 
##                                                                                   195 
##                                                                  greek lemon potatoes 
##                                                                                   187 
##                                                                      greek lentil pie 
##                                                                                    11 
##                                                            greek pumpkin and leek pie 
##                                                                                    16 
##                                                                           greek salad 
##                                                                                    19 
##                                                                  greek salad sandwich 
##                                                                                    15 
##                                                                  greek scrambled eggs 
##                                                                                    38 
##                                               greek skillet pies with feta and greens 
##                                                                                    64 
##                              greek stewed green beans and yellow squash with tomatoes 
##                                                                                    23 
##                                                                greek stuffed tomatoes 
##                                                                                    13 
##                                           greek style dinner pie with leftover greens 
##                                                                                    28 
##                                              greek style fish with marinated tomatoes 
##                                                                                    15 
##                                 greek style kohlrabi pie or gratin with dill and feta 
##                                                                                     8 
##                                                                    greek style nachos 
##                                                                                    23 
##                                                          greek style watermelon salad 
##                                                                                   112 
##                                                                    greek tomato salad 
##                                                                                    48 
##                                                         greek watermelon barley salad 
##                                                                                    10 
##                                                          greek yellow split pea puree 
##                                                                                     9 
##                                                           greek zucchini and herb pie 
##                                                                                    18 
##                                                               greek zucchini fritters 
##                                                                                    64 
##                                      green and wax bean salad with tomato vinaigrette 
##                                                                                    14 
##                                                                 green and white pizza 
##                                                                                    64 
##                                           green bean and fava bean salad with walnuts 
##                                                                                     6 
##                                                                  green bean casserole 
##                                                                                   103 
##                                         green bean salad with chickpeas and mushrooms 
##                                                                                     4 
##                                 green bean salad with lime vinaigrette and red quinoa 
##                                                                                    20 
##                                            green beans and greens with fried shallots 
##                                                                                    51 
##                                           green beans and tofu skins with rice sticks 
##                                                                                     7 
##                                                     green beans corn and carrot salad 
##                                                                                    65 
##                                                     green beans with herbs and olives 
##                                                                                    33 
##                                                    green beans with lemon vinaigrette 
##                                                                                     2 
##                                    green beans with mustard seeds cashews and coconut 
##                                                                                    42 
##                                                           green ceviche with cucumber 
##                                                                                     4 
##                                             green chilaquiles with chicken and squash 
##                                                                                     9 
##                                                           green chilaquiles with eggs 
##                                                                                    30 
##                                                     green chile breakfast quesadillas 
##                                                                                    11 
##                                                       green chile cheeseburger deluxe 
##                                                                                    20 
##                                                              green chile chicken stew 
##                                                                                    78 
##                                                                   green chile chutney 
##                                                                                     4 
##                                                         green garlic and butter clams 
##                                                                                     1 
##                                                                    green garlic broth 
##                                                                                     1 
##                                       green garlic caesar salad with anchovy croutons 
##                                                                                    10 
##                                            green garlic chive and red pepper frittata 
##                                                                                     2 
##                                                     green garlic potato and leek soup 
##                                                                                    11 
##                                                                green garlic tabbouleh 
##                                                                                    17 
##                                                                    green garlic toast 
##                                                                                    21 
##                                         green gnocchi with peas and fresh sage butter 
##                                                                                     6 
##                                                                     green goddess dip 
##                                                                                     4 
##                                                                green goddess dressing 
##                                                                                   147 
##                                                             green goddess pasta salad 
##                                                                                    35 
##                                                         green goddess roasted chicken 
##                                                                                   213 
##                                      green goddess salmon with potatoes and snap peas 
##                                                                                   105 
##                                                                  green isaacs special 
##                                                                                     1 
##                                                                           green juice 
##                                                                                    15 
##                                       green lasagna with bolognese sauce and bechamel 
##                                                                                    29 
##                                                                  green masala chicken 
##                                                                                    24 
##                                                                 green mashed potatoes 
##                                                                                    14 
##                                                               green mole with chicken 
##                                                                                     1 
##                                                                     green okonomiyaki 
##                                                                                    39 
##                                                                    green papaya salad 
##                                                                                    15 
##                                                                   green pea guacamole 
##                                                                                    22 
##                                           green peach salad with simple lime dressing 
##                                                                                     7 
##                                                            green peppercorn guacamole 
##                                                                                     2 
##                                                                green rice arroz verde 
##                                                                                    36 
##                                                                      green rice pilaf 
##                                                                                    66 
##                                                    green salad with asian vinaigrette 
##                                                                                    10 
##                                                      green salad with soy vinaigrette 
##                                                                                    10 
##                                                              green sauce with avocado 
##                                                                                     1 
##                                                 green shakshuka with avocado and lime 
##                                                                                   206 
##                                                green smoothie with cucumber and cumin 
##                                                                                     5 
##                              green smoothie with pineapple arugula greens and cashews 
##                                                                                    11 
##                                               green strata with goat cheese and herbs 
##                                                                                    51 
##                                                          green tea and ginger granita 
##                                                                                     2 
##                                                          green tea and raspberry cake 
##                                                                                     2 
##                                               green tea ginger marshmallow shortbread 
##                                                                                     2 
##                                                   green tomato and swiss chard gratin 
##                                                                                    12 
##                                                                  green tomato chutney 
##                                                                                    10 
##                                                                 green tomato frittata 
##                                                                                    20 
##                                                                    green tomato salad 
##                                                                                    10 
##                                              green tomato salad with russian dressing 
##                                                                                     8 
##                                                              green tomato salsa verde 
##                                                                                    17 
##                                     green tomato soup with bacon and brioche croutons 
##                                                                                    10 
##                                    green wheat and roasted vegetables with herb salad 
##                                                                                     1 
##                                        greens and chayote enchiladas with salsa verde 
##                                                                                    19 
##                                                      greens and garlic frittata to go 
##                                                                                    32 
##                                                            greens and mushroom panini 
##                                                                                     3 
##                                                         greens and red cabbage gratin 
##                                                                                     7 
##                                        greens frittata with mozzarella and prosciutto 
##                                                                                    18 
##                                                                         greens quiche 
##                                                                                    15 
##                                                     greg colliers sweet potato pikliz 
##                                                                                    15 
##                                                                             grenadine 
##                                                                                     2 
##                                                                       grenadine syrup 
##                                                                                     1 
##                                                     grill domes demonstration chicken 
##                                                                                     3 
##                           grilled albacore with yogurt dill sauce on a bed of arugula 
##                                                                                     3 
##                                            grilled arctic char with horseradish crema 
##                                                                                    22 
##                                                    grilled asparagus with caper salsa 
##                                                                                    43 
##                                                                grilled baby back ribs 
##                                                                                    95 
##                                        grilled baby back ribs with spicy peanut shake 
##                                                                                    15 
##                                       grilled bone in rib eye steaks with blue cheese 
##                                                                                    29 
##                                                                      grilled broccoli 
##                                                                                   113 
##                                              grilled broccoli with apricot puttanesca 
##                                                                                    16 
##                      grilled broccoli with soy sauce maple syrup and balsamic vinegar 
##                                                                                    61 
##                                                                  grilled caesar salad 
##                                                                                    10 
##                                 grilled carrots with yogurt carrot top oil and dukkah 
##                                                                                    22 
##                                                               grilled cheese sandwich 
##                                                                                   471 
##                                           grilled cheese with apples and apple butter 
##                                                                                    64 
##                                     grilled cheese with jalapeno tomato and fried egg 
##                                                                                     8 
##                                      grilled chicken breasts stuffed with herb butter 
##                                                                                     9 
##                                          grilled chicken breasts with spicy cucumbers 
##                                                                                    67 
##                                                          grilled chicken caesar salad 
##                                                                                    35 
##                                                                  grilled chicken parm 
##                                                                                    36 
##                                    grilled chicken pita with yogurt sauce and arugula 
##                                                                                     9 
##                              grilled chicken salad with green beans capers and olives 
##                                                                                    20 
##                                      grilled chicken skewers with deconstructed pesto 
##                                                                                    11 
##                                      grilled chicken skewers with tarragon and yogurt 
##                                                                                    98 
##                                                  grilled chile flank steak with salsa 
##                                                                                    12 
##                                grilled clams and mussels with garlic almonds and mint 
##                                                                                    21 
##                                                       grilled clams with fried garlic 
##                                                                                     1 
##                                               grilled clams with lemon cayenne butter 
##                                                                                     6 
##                                                                          grilled corn 
##                                                                                    47 
##                                     grilled corn and avocado salad with feta dressing 
##                                                                                   126 
##                                         grilled corn asparagus and spring onion salad 
##                                                                                     7 
##                                                            grilled corn mexican style 
##                                                                                    70 
##                                      grilled corn on the cob with chipotle mayonnaise 
##                                                                                     5 
##                                        grilled corn with cheese lime and chile elotes 
##                                                                                    14 
##                                                        grilled corn with chile butter 
##                                                                                     4 
##                                                grilled corn with jalapeno feta butter 
##                                                                                    20 
##                                                   grilled corn with sesame soy butter 
##                                                                                     3 
##                                                  grilled cumin lamb with spicy onions 
##                                                                                    12 
##                                       grilled duck breast with miso ginger and orange 
##                                                                                    21 
##                                          grilled eggplant and tomatoes with chermoula 
##                                                                                     1 
##                                                   grilled eggplant peppers and onions 
##                                                                                    14 
##                                                                grilled eggplant salad 
##                                                                                   143 
##                                              grilled feta and roasted squash sandwich 
##                                                                                     7 
##                                                grilled figs with pomegranate molasses 
##                                                                                    20 
##                       grilled fingerling potato salad with chipotle bacon vinaigrette 
##                                                                                     9 
##                                                        grilled fish fillets or steaks 
##                                                                                     5 
##                                                         grilled fish with salsa verde 
##                                                                                    61 
##                                      grilled flank steak on ciabatta with red peppers 
##                                                                                     8 
##                                        grilled flank steak with worcestershire butter 
##                                                                                    71 
##                                                                      grilled flounder 
##                                                                                    26 
##                                                                  grilled garlic bread 
##                                                                                    17 
##                                          grilled garlic bread with basil and parmesan 
##                                                                                     3 
##                                             grilled goat cheese and broccoli sandwich 
##                                                                                     4 
##                                grilled goat cheese roasted pepper and greens sandwich 
##                                                                                     6 
##                                            grilled gorgonzola and beet green sandwich 
##                                                                                     4 
##                                                       grilled halloumi and vegetables 
##                                                                                    20 
##                                                                    grilled hamburgers 
##                                                                                    13 
##                                    grilled lamb chops with lettuce and ranch dressing 
##                                                                                    41 
##                                   grilled lamb chops with rouille and cherry tomatoes 
##                                                                                    20 
##                                                grilled lamb kebabs with smoky peaches 
##                                                                                    31 
##                                                      grilled lamb on rosemary skewers 
##                                                                                     8 
##                                                   grilled lamb with scallion pancakes 
##                                                                                     9 
##                                                            grilled lebanese flatbread 
##                                                                                    38 
##                                                      grilled leeks with romesco sauce 
##                                                                                    11 
##                                                          grilled leg of lamb sams way 
##                                                                                    28 
##                                      grilled leg of lamb with spicy lime yogurt sauce 
##                                                                                    36 
##                                                                       grilled lobster 
##                                                                                     5 
##                                                                   grilled mango salsa 
##                                                                                     1 
##                                   grilled merguez and onions with mint lemon couscous 
##                                                                                     1 
##                                           grilled mushroom skewers in red chile paste 
##                                                                                     4 
##                                                     grilled mushrooms in foil packets 
##                                                                                     5 
##                                                     grilled okra with cajun remoulade 
##                                                                                     4 
##                                           grilled or oven roasted santa maria tri tip 
##                                                                                   127 
##                                grilled or pan cooked albacore with soy mirin marinade 
##                                                                                    10 
##                                                   grilled or pan fried marinated tofu 
##                                                                                    31 
##                           grilled or roasted pattypan steaks with italian salsa verde 
##                                                                                     4 
##                                           grilled oysters with buttery soy sake glaze 
##                                                                                     2 
##                                          grilled oysters with harissa parmesan butter 
##                                                                                     1 
##                                                 grilled oysters with hot sauce butter 
##                                                                                    53 
##                                        grilled oysters with lemony garlic herb butter 
##                                                                                     4 
##                                              grilled pacific halibut with mango salsa 
##                                                                                    13 
##                               grilled peach sundaes with salted bourbon caramel sauce 
##                                                                                     7 
##                                           grilled peaches with dukkah and blueberries 
##                                                                                    16 
##                                                    grilled peppers with garlic yogurt 
##                                                                                     1 
##                               grilled pizza with grilled eggplant and cherry tomatoes 
##                                                                                     3 
##                                        grilled pizza with grilled red onions and feta 
##                                                                                     3 
##                                                                       grilled polenta 
##                                                                                    15 
##                                grilled polenta with spicy tomato sauce and fried eggs 
##                                                                                     4 
##                                  grilled pomegranate glazed chicken with tomato salad 
##                                                                                    29 
##                                                            grilled porgies and onions 
##                                                                                     1 
##                                                              grilled pork and peaches 
##                                                                                    87 
##                                               grilled pork belly with soy mirin glaze 
##                                                                                     6 
##                                                  grilled pork chops with cherry sauce 
##                                                                                    61 
##                                   grilled pork chops with peanuts sesame and cilantro 
##                                                                                    25 
##                                                                grilled pork escabeche 
##                                                                                     2 
##                                         grilled pork loin with herbs cumin and garlic 
##                                                                                    24 
##                                                  grilled pork loin with wine salt rub 
##                                                                                     6 
##                             grilled pork porterhouse with an apple maple ginger sauce 
##                                                                                     5 
##                                          grilled pork skewers with peanut basil sauce 
##                                                                                    26 
##                                       grilled pork with whole spices and garlic bread 
##                                                                                    21 
##                                     grilled ratatouille with crostini and goat cheese 
##                                                                                    22 
##                                   grilled roast chicken with spinach ricotta crostini 
##                                                                                    58 
##                                                                       grilled romaine 
##                                                                                    57 
##                                                          grilled rose water poundcake 
##                                                                                     7 
##                                       grilled salmon salad with lime chiles and herbs 
##                                                                                    81 
##                                                        grilled salmon with kale chips 
##                                                                                     4 
##                                                                      grilled sardines 
##                                                                                     5 
##                          grilled sardines and asparagus with citrus chiles and sesame 
##                                                                                     1 
##                                                        grilled sausages and radicchio 
##                                                                                    18 
##                                                   grilled sausages onions and peppers 
##                                                                                    45 
##                                                                 grilled scallion lamb 
##                                                                                     8 
##                                                 grilled scallops with kale and olives 
##                                                                                     4 
##                                       grilled scallops with peaches corn and tomatoes 
##                                                                                    33 
##                                       grilled sea scallops with corn and pepper salsa 
##                                                                                    62 
##                             grilled sea scallops with yellow beets cucumbers and lime 
##                                                                                    39 
##                                             grilled sesame chicken and eggplant salad 
##                                                                                    22 
##                                                   grilled sesame lime chicken breasts 
##                                                                                    84 
##                            grilled shrimp and eggplant with asian fish sauce and mint 
##                                                                                    31 
##                                  grilled shrimp and eggplant with fish sauce and mint 
##                                                                                    31 
##                                  grilled shrimp skewers with roasted red pepper sauce 
##                                                                                    20 
##                                        grilled shrimp with wilted spinach and peaches 
##                                                                                    29 
##                                             grilled skirt steak with garlic and herbs 
##                                                                                    60 
##                                       grilled skirt steak with smoky eggplant chutney 
##                                                                                    16 
##                                                   grilled slaw with ginger and sesame 
##                                                                                     7 
##                                  grilled soy basted chicken thighs with spicy cashews 
##                                                                                   204 
##                               grilled spatchcocked chicken with honey chile and lemon 
##                                                                                    55 
##                                       grilled spot prawns or shrimp with corn pudding 
##                                                                                     2 
##                                           grilled steak and vegetables with tortillas 
##                                                                                     5 
##                                        grilled steak salad with chile and brown sugar 
##                                                                                    47 
##                                  grilled steak tacos with cherry tomato avocado salsa 
##                                                                                    21 
##                                            grilled summer beans with garlic and herbs 
##                                                                                    10 
##                                        grilled summer vegetables with tahini dressing 
##                                                                                    68 
##                                     grilled swiss chard stems with roasted garlic oil 
##                                                                                    10 
##                               grilled swordfish kebabs with golden raisin chimichurri 
##                                                                                     5 
##                                     grilled swordfish with smoky tomato anchovy salsa 
##                                                                                    65 
##                                                                          grilled tofu 
##                                                                                    52 
##                               grilled tomatoes and onions with feta harissa pine nuts 
##                                                                                    25 
##                                                      grilled vanilla ginger pineapple 
##                                                                                    11 
##                                                     grilled watermelon and feta salad 
##                                                                                    11 
##                                 grilled whole fish with lemongrass chiles and coconut 
##                                                                                    24 
##                                grilled zaatar chicken with garlic yogurt and cilantro 
##                                                                                   129 
##                                                      grilled zucchini and feta toasts 
##                                                                                     9 
##                                                              grilled zucchini ribbons 
##                                                                                    11 
##                                   grits cakes with country ham and bourbon mayonnaise 
##                                                                                     8 
##                                                                       grits rancheras 
##                                                                                     4 
##                                    ground beef chili with chocolate and peanut butter 
##                                                                                   108 
##                                                                     ground lamb pulao 
##                                                                                    76 
##                                         grouper fillets with ginger and coconut curry 
##                                                                                    74 
##                                                                      grown up granita 
##                                                                                     4 
##                                                             gruyere and chive souffle 
##                                                                                    48 
##                                                                             guacamole 
##                                                                                    18 
##                                                                  guacamole con frutas 
##                                                                                     5 
##                                                                      guadalajara sour 
##                                                                                     1 
##                                                                     guinness brownies 
##                                                                                    38 
##                                                                          guinness pie 
##                                                                                   257 
##                                     gungjung tteokbokki korean royal court rice cakes 
##                                                                                    12 
##                                                                                gyudon 
##                                                                                    33 
##                                                 haitian cornmeal porridge mayi moulen 
##                                                                                     9 
##                                                                    haitian pork griot 
##                                                                                    88 
##                                                        hake with clams in salsa verde 
##                                                                                    10 
##                                             halibut ceviche with jalapeno and parsley 
##                                                                                     1 
##                                                    halibut chard and potato casserole 
##                                                                                    14 
##                                    halibut in foil packets with north african flavors 
##                                                                                    11 
##                                                                       halibut nicoise 
##                                                                                    19 
##                                              halibut with brown butter lemon and sage 
##                                                                                    94 
##                                                                                halvah 
##                                                                                    31 
##                                                      halvah semifreddo with hazelnuts 
##                                                                                     5 
##                                                 ham and bean soup with collard greens 
##                                                                                    82 
##                                                        ham and cheese brioche pudding 
##                                                                                   102 
##                                                             ham and cheese croissants 
##                                                                                     2 
##                                                      ham and cheese croque with dijon 
##                                                                                    13 
##                                           ham and cheese pasta with a handful of peas 
##                                                                                    61 
##                                                               ham and radicchio toast 
##                                                                                    13 
##                                                                         ham bone soup 
##                                                                                   102 
##                                                                             ham broth 
##                                                                                     4 
##                                                                              ham buns 
##                                                                                    15 
##                                        ham cured smoked pork with cognac orange glaze 
##                                                                                     9 
##                                                                   ham omelet sandwich 
##                                                                                     8 
##                                                  hamantaschen with poppy seed filling 
##                                                                                    44 
##                                                                hamburgers diner style 
##                                                                                    73 
##                                                               hamburgers tavern style 
##                                                                                    78 
##                                                                     han oak galbijjim 
##                                                                                   140 
##                                                               handmade lasagna sheets 
##                                                                                    27 
##                                                handvo savory vegetable semolina bread 
##                                                                                     5 
##                                                                  hanjan chicken wings 
##                                                                                    16 
##                                                                        happy holidaze 
##                                                                                     2 
##                                                                           harira soup 
##                                                                                    82 
##                                                                               harissa 
##                                                                                     1 
##                                                  harissa chicken thighs with shallots 
##                                                                                   130 
##                                                                              haroseth 
##                                                                                     9 
##                                                                     haroseth truffles 
##                                                                                     7 
##                              haroseth with chestnuts pine nuts pears and dried fruits 
##                                                                                     8 
##                                                 harvest tart with pumpkin and peppers 
##                                                                                    28 
##                                                                   hasselback kielbasa 
##                                                                                   109 
##                                           hasselback potatoes with garlic paprika oil 
##                                                                                    34 
##                                                                         hawaiian buns 
##                                                                                    38 
##                                                                   hawaiian guava cake 
##                                                                                    64 
##                                        hazelnut and coriander spiced sous vide salmon 
##                                                                                     7 
##                                                               hazelnut chive dressing 
##                                                                                     2 
##                                                                 hazelnut citrus torte 
##                                                                                    34 
##                                                    hazelnut orange and honey biscotti 
##                                                                                    14 
##                                                       hazelnut pear and cardamom tart 
##                                                                                    26 
##                                                                           health soup 
##                                                                                    68 
##                                                   hearty bean nachos with spicy salsa 
##                                                                                     9 
##                                              hearty beef stew with red onions and ale 
##                                                                                   170 
##                                                     hearty quinoa and white bean soup 
##                                                                                   118 
##                                                      hearty split pea soup with bacon 
##                                                                                   169 
##                      hearty whole wheat pasta with brussels sprouts cheese and potato 
##                                                                                    32 
##                                                                         heavenly hots 
##                                                                                    11 
##                                                                         hefty borscht 
##                                                                                     3 
##                          heirloom squash salad with pepita puree and pickled shallots 
##                                                                                     1 
##                                      heirloom tomato concasse with wilted swiss chard 
##                                                                                     4 
##                                                                  heirloom tomato tart 
##                                                                                   295 
##                                                                    hemingway daiquiri 
##                                                                                     1 
##                                                                henriettas hash browns 
##                                                                                    15 
##                                                                      henry bain sauce 
##                                                                                    11 
##                                                               herb and olive frittata 
##                                                                                     8 
##                                           herb and radish salad with feta and walnuts 
##                                                                                   117 
##                                                  herb crepes with goat cheese filling 
##                                                                                    10 
##                                                                         herb fritters 
##                                                                                     1 
##                                                                              herb oil 
##                                                                                     6 
##                                                             herb omelet pita sandwich 
##                                                                                    26 
##                                                                  herb roasted chicken 
##                                                                                     9 
##                                                                            herb stock 
##                                                                                     2 
##                                                  herbed chicken and spinach meatballs 
##                                                                                   106 
##                                                                herbed compound butter 
##                                                                                    12 
##                                                                   herbed garlic bread 
##                                                                                    31 
##                                          herbed goat cheese and roasted pepper toasts 
##                                                                                     2 
##                                 herbed grain salad with mushrooms hazelnuts and pears 
##                                                                                    30 
##                                        herbed omelet wraps with rice noodles and duck 
##                                                                                     5 
##                                            herbed pappardelle with parsley and garlic 
##                                                                                    19 
##                                              herbed spring salad with egg and walnuts 
##                                                                                    26 
##                                                                       herbed tomatoes 
##                                                                                    28 
##                                                    herbed white bean and sausage stew 
##                                                                                   375 
##                                                                         herbed yogurt 
##                                                                                    12 
##                                               herby bread and butter stuffing for two 
##                                                                                    64 
##                                      herby farro with butternut squash and sour cream 
##                                                                                    34 
##                                                  herby feta and yogurt dip with sumac 
##                                                                                     7 
##                                                 herby polenta with corn eggs and feta 
##                                                                                    78 
##                                                            herby pork larb with chile 
##                                                                                   114 
##                                                herby potato salad with smashed olives 
##                                                                                     6 
##                                       herby tomato salad with tamarind maple dressing 
##                                                                                    39 
##                                            herring and potato salad with brown butter 
##                                                                                     2 
##                                                                          hete bliksem 
##                                                                                     5 
##                                                                         hibiscus fizz 
##                                                                                     6 
##                                   hibiscus quesadillas quesadilla con flor de jamaica 
##                                                                                    17 
##                                                                 highlands baked grits 
##                                                                                     1 
##                                                                highlands braised beef 
##                                                                                     8 
##                                               hindbaersnitter danish raspberry slices 
##                                                                                     6 
##                                                               hmong egg roll stuffing 
##                                                                                     3 
##                                                                   hoecakes with fruit 
##                                                                                    11 
##                                               hoisin glazed pork bowl with vegetables 
##                                                                                    36 
##                                                                       holiday stollen 
##                                                                                    27 
##                                                                     hollandaise sauce 
##                                                                                    34 
##                                                                      home cured bacon 
##                                                                                    25 
##                                                                 home cured pork belly 
##                                                                                     7 
##                                                        home cured pork tenderloin ham 
##                                                                                     9 
##                                                            home made mushroom lasagna 
##                                                                                   144 
##                                                        homemade banana berry smoothie 
##                                                                                    10 
##                                                                homemade chicken broth 
##                                                                                     7 
##                                                                  homemade corned beef 
##                                                                                   209 
##                                                              homemade cultured butter 
##                                                                                    27 
##                                                            homemade dumpling wrappers 
##                                                                                    26 
##                                                                       homemade fritos 
##                                                                                     8 
##                                                                  homemade ginger beer 
##                                                                                    22 
##                                                         homemade green bean casserole 
##                                                                                    38 
##                                                             homemade hamburger helper 
##                                                                                   327 
##                                                                   homemade mayonnaise 
##                                                                                     3 
##                                                                      homemade merguez 
##                                                                                    14 
##                                                              homemade nondairy yogurt 
##                                                                                    16 
##                                                                        homemade oreos 
##                                                                                     7 
##                                                                 homemade orgeat syrup 
##                                                                                     5 
##                                                                   homemade pita bread 
##                                                                                   244 
##                                                                        homemade pocky 
##                                                                                    62 
##                                                             homemade red wine vinegar 
##                                                                                    10 
##                                              homemade sour bulgur trahana from ikaria 
##                                                                                     1 
##                                                               homemade tortilla chips 
##                                                                                    16 
##                                                                     homemade twinkies 
##                                                                                     9 
##                                                         homemade whole grain crackers 
##                                                                                    13 
##                                                   honey and soy glazed chicken thighs 
##                                                                                   227 
##                                                             honey apple bread pudding 
##                                                                                    12 
##                                                                             honey bee 
##                                                                                     5 
##                                               honey cured hickory smoked shoulder ham 
##                                                                                    11 
##                                                           honey ice cream with a kick 
##                                                                                     8 
##                          honey roasted brussels sprouts with harissa and lemon relish 
##                                                                                    67 
##                                                      honey roasted peanut thumbprints 
##                                                                                    64 
##                                                             honey rosemary beer bread 
##                                                                                     8 
##                                           honey soy braised pork with lime and ginger 
##                                                                                    61 
##                                                                     honey spice bread 
##                                                                                     8 
##                                                                      honey wheat cake 
##                                                                                     2 
##                                                     honeycrisp apple and parsnip soup 
##                                                                                    13 
##                                                                              horchata 
##                                                                                    38 
##                                                         horn and hardarts baked beans 
##                                                                                     2 
##                                           horn and hardarts baked macaroni and cheese 
##                                                                                     5 
##                                                              horseradish beer mustard 
##                                                                                     2 
##                                                       horseradish creme fraiche sauce 
##                                                                                    14 
##                                                           horseradish matzo ball soup 
##                                                                                     5 
##                                                                     horseradish sauce 
##                                                                                     2 
##                                                                             hortopita 
##                                                                                     7 
##                                               hot and numbing stir fried new potatoes 
##                                                                                    36 
##                                                            hot and sour dumpling soup 
##                                                                                   112 
##                                               hot and sour seared tofu with snap peas 
##                                                                                    37 
##                                                               hot and sour soba salad 
##                                                                                     7 
##                                                                             hot brown 
##                                                                                    23 
##                                                                      hot buttered rum 
##                                                                                     3 
##                                                                             hot cakes 
##                                                                                    10 
##                                                                     hot cheese olives 
##                                                                                    72 
##                                                               hot crab and oyster dip 
##                                                                                    23 
##                                            hot fudge and salted chocolate bits sundae 
##                                                                                    16 
##                                                                     hot honey nut mix 
##                                                                                     7 
##                                                                      hot honey shrimp 
##                                                                                   225 
##                                                                   hot italian sausage 
##                                                                                    10 
##                                        hot italian sausage and broccoli rabe frittata 
##                                                                                    46 
##                                                                        hot milk punch 
##                                                                                     6 
##                                   hot pepper fettuccine with roasted butternut squash 
##                                                                                    11 
##                                                                         hot rum punch 
##                                                                                     5 
##                                         hot sauce roast chicken with tangy kale salad 
##                                                                                    27 
##                                                                      hot sauce shrimp 
##                                                                                     4 
##                                                          hot shoppes mighty mo burger 
##                                                                                     3 
##                                                                hot slaw mexican style 
##                                                                                    24 
##                                                                             hot toddy 
##                                                                                    13 
##                                                                hotel du pont cocktail 
##                                                                                     2 
##                                                                       house made buns 
##                                                                                    17 
##                                                        housemans roasted squash salad 
##                                                                                    60 
##                                                                                hudutu 
##                                                                                     7 
##                                                                       huevos en torta 
##                                                                                     1 
##                                                                      huevos rancheros 
##                                                                                     7 
##                                                              huevos rotos broken eggs 
##                                                                                   225 
##                                                                        huguenot torte 
##                                                                                     4 
##                                                                     huli huli chicken 
##                                                                                   204 
##                                                                                hummer 
##                                                                                     2 
##                                                                      hummingbird cake 
##                                                                                     7 
##                                                                                hummus 
##                                                                                   163 
##                                                                 hummus from jerusalem 
##                                                                                   178 
##                                                   hummus with crisp maitake mushrooms 
##                                                                                     1 
##                                                        hummus with sun dried tomatoes 
##                                                                                     6 
##                                                                           hummus wrap 
##                                                                                    13 
##                                                             hungarian cabbage strudel 
##                                                                                     3 
##                                                                 hungarian lentil stew 
##                                                                                     3 
##                                                    hungarian potato and egg casserole 
##                                                                                    13 
##                                                      hush puppies with crab and bacon 
##                                                                                     4 
##                                                                        husk cornbread 
##                                                                                    20 
##                                                                     ice cold martinez 
##                                                                                    10 
##                                                                        ice cold schav 
##                                                                                    47 
##                                                                  ice cream sandwiches 
##                                                                                    69 
##                                             iceberg lettuce with blue cheese dressing 
##                                                                                    13 
##                                        iga babi bali balinese sticky glazed pork ribs 
##                                                                                    13 
##                                                                           il sorpasso 
##                                                                                    14 
##                                                     ile flottante with fresh cherries 
##                                                                                    13 
##                                                                          imam bayildi 
##                                                                                    17 
##                                           ina gartens make ahead coquilles st jacques 
##                                                                                   174 
##                                                               indian butter chickpeas 
##                                                                                   157 
##                                                             indian fresh apple pickle 
##                                                                                     7 
##                                                             indian ish baked potatoes 
##                                                                                    45 
##                                indian ish nachos with cheddar black beans and chutney 
##                                                                                   134 
##                                                   indian lamb curry with basmati rice 
##                                                                                    24 
##                                                                indian pumpkin pudding 
##                                                                                    24 
##                                                   indian spiced corn soup with yogurt 
##                                                                                    69 
##                                   indian spiced eggs with spinach and turmeric yogurt 
##                                                                                    29 
##                                                indian spiced tomato and egg casserole 
##                                                                                   135 
##                                                               indian style rice salad 
##                                                                                     8 
##                                                       indian style split pea fritters 
##                                                                                     2 
##                                                                 indiana fried chicken 
##                                                                                    48 
##                                                    indonesian chicken curry opor ayam 
##                                                                                     5 
##                    indonesian chicken soup with noodles turmeric and ginger soto ayam 
##                                                                                    92 
##                                                              indonesian corn fritters 
##                                                                                     3 
##                                                        indonesian style chicken salad 
##                                                                                    75 
##                                               indoor smoked salt and pepper beef ribs 
##                                                                                     4 
##                                                         inside out lamb cheeseburgers 
##                                                                                    19 
##                                                            inside out lamb persillade 
##                                                                                    24 
##                                           instant kimchi with greens and bean sprouts 
##                                                                                     9 
##                                                    instant pickled carrot with ginger 
##                                                                                    29 
##                                                    instant pot carrot saffron risotto 
##                                                                                    29 
##                                           instant pot chicken juk with scallion sauce 
##                                                                                    22 
##                                                                   instant pot khichdi 
##                                                                                    17 
##                                instant pot mashed potatoes with sour cream and chives 
##                                                                                    19 
##                                                      iranian herb and walnut frittata 
##                                                                                     3 
##                                                                irish brown soda bread 
##                                                                                    40 
##                                                                          irish coffee 
##                                                                                    10 
##                                                                 irish cream poundcake 
##                                                                                    69 
##                                                                            irish stew 
##                                                                                   112 
##                                                                           irish tacos 
##                                                                                    82 
##                                                                          irish trifle 
##                                                                                     8 
##                                                        irish whiskey in cocktail form 
##                                                                                     5 
##                                  iroquois white corn cakes with maple syrup and bacon 
##                                                                                     1 
##                                                                island buttermilk cake 
##                                                                                    17 
##                                                                isle of manhattan fizz 
##                                                                                     1 
##                                                   israeli couscous and chickpea salad 
##                                                                                    28 
##                                              israeli couscous and spicy herb frittata 
##                                                                                     6 
##                                                israeli couscous bean and tomato salad 
##                                                                                    23 
##                                           israeli couscous eggplant and tomato gratin 
##                                                                                    54 
##                                                israeli couscous salad tabbouleh style 
##                                                                                     8 
##                                         israeli couscous with mixed summer vegetables 
##                                                                                     7 
##                                                                         italia libera 
##                                                                                     3 
##                                                                italian almond cookies 
##                                                                                   102 
##                                                                italian fennel sausage 
##                                                                                    14 
##                                                                          italian fizz 
##                                                                                     1 
##                                                      italian flourless chocolate cake 
##                                                                                    43 
##                                                                       italian fonduta 
##                                                                                     1 
##                                                            italian lemon ricotta cake 
##                                                                                   108 
##                                                                      italian marinade 
##                                                                                    19 
##                                                 italian meat sauce with half the meat 
##                                                                                    14 
##                                                 italian potato pasta soup with greens 
##                                                                                   114 
##                                    italian red wine braised duck with olive gremolata 
##                                                                                     8 
##                                                               italian ricotta cookies 
##                                                                                   147 
##                                                            italian sausage sandwiches 
##                                                                                    70 
##                                                              italian spinach stuffing 
##                                                                                    15 
##                              italian style braised rabbit with rosemary and mushrooms 
##                                                                                    11 
##                                                               italian style fish stew 
##                                                                                    83 
##                                                     italian style rustic tomato stock 
##                                                                                     3 
##                                                           italian style tuna sandwich 
##                                                                                    88 
##                                                 italian subs with sausage and peppers 
##                                                                                    25 
##                                                                  italian tomato sauce 
##                                                                                     7 
##                                            italian wedding soup with turkey meatballs 
##                                                                                   281 
##                                                      italianate sunday salad dressing 
##                                                                                    10 
##                                                                             jack rose 
##                                                                                     1 
##                                             jacques pepins steamed and roasted turkey 
##                                                                                    16 
##                                                                           jajangmyeon 
##                                                                                    23 
##                                                                 jalapeno brown butter 
##                                                                                     3 
##                                                           jalapeno grilled pork chops 
##                                                                                    27 
##                                                    jalapeno jangjorim with jammy eggs 
##                                                                                     7 
##                                                                      jalapeno pickles 
##                                                                                    10 
##                                                                      jalapeno poppers 
##                                                                                    32 
##                                                                   jalapeno spoonbread 
##                                                                                     5 
##                                                                 jamaican beef patties 
##                                                                                     5 
##                                                   jamaican curry chicken and potatoes 
##                                                                                    50 
##                                                                    jamaican margarita 
##                                                                                     1 
##                                                                  jamaican oxtail stew 
##                                                                                    98 
##                                                                jamaican spiced turkey 
##                                                                                     9 
##                                                         jamaican sweet potato pudding 
##                                                                                    12 
##                                                          james beards farmers chicken 
##                                                                                    20 
##                                                              james river corn pudding 
##                                                                                     1 
##                                                        jamie boudreaus chocolate milk 
##                                                                                     1 
##                                                         jamie olivers chicken in milk 
##                                                                                   228 
##                                           jamie olivers vegetarian black bean burgers 
##                                                                                    71 
##                                                               jap chae korean noodles 
##                                                                                     8 
##                                                           japanese beef and rice soup 
##                                                                                     6 
##                                                  japanese burgers with wasabi ketchup 
##                                                                                    16 
##                                                                   japanese cheesecake 
##                                                                                    62 
##                                              japanese chicken and root vegetable stew 
##                                                                                    21 
##                                                                  japanese curry brick 
##                                                                                    72 
##                                                      japanese leeks with miso mustard 
##                                                                                     2 
##                                                                   japanese milk bread 
##                                                                                   150 
##                                                             japanese souffle pancakes 
##                                                                                    81 
##                                                              japanese style beef stew 
##                                                                                   166 
##                                                             japanese style rice salad 
##                                                                                    22 
##                                                      japanese style tuna noodle salad 
##                                                                                   121 
##                                                          japchae korean glass noodles 
##                                                                                     9 
##                                                                       jar vinaigrette 
##                                                                                     1 
##                                                                         jardin fresca 
##                                                                                     1 
##                                                                               jasmine 
##                                                                                     9 
##                                          jean georges vongerichtens fried sushi cakes 
##                                                                                    11 
##                                         jean georges vongerichtens ginger vinaigrette 
##                                                                                    22 
##                                            jean georges vongerichtens squash on toast 
##                                                                                    70 
##                                                                jelly doughnut pudding 
##                                                                                     1 
##                                                                       jelly doughnuts 
##                                                                                    12 
##                                  jerk chicken meatballs with barbecue pineapple glaze 
##                                                                                    44 
##                                                     jerk chicken with pickled bananas 
##                                                                                    87 
##                                                                             jerk ribs 
##                                                                                    52 
##                                      jerusalem artichoke soup with crispy sage leaves 
##                                                                                    15 
##                                                                       jerusalem grill 
##                                                                                    69 
##                                                    jessica b harriss summer succotash 
##                                                                                    20 
##                                       jeweled grains with broccoli peas and red onion 
##                                                                                    16 
##                                     jicama salad with lime vinaigrette and mint cream 
##                                                                                     7 
##                                                          jim harrisons caribbean stew 
##                                                                                    92 
##                                                           jim meehans singapore sling 
##                                                                                     1 
##                                                                         jingalov hats 
##                                                                                    90 
##                                                           jiwons blueberry basil soju 
##                                                                                     1 
##                                                        jo rooneys buttermilk biscuits 
##                                                                                    13 
##                                                          joan nathans matzo ball soup 
##                                                                                    88 
##                                                  joanne changs maple blueberry scones 
##                                                                                   259 
##                                                                           jollof rice 
##                                                                                    61 
##                                                        jonathan waxmans roast chicken 
##                                                                                    29 
##                              joojeh kabab ba holu saffron chicken kababs with peaches 
##                                                                                    26 
##                                                                            journalist 
##                                                                                     2 
##                                                                             juicy blt 
##                                                                                    67 
##                                                                     juicy lucy burger 
##                                                                                    53 
##                                                                     juicy orange cake 
##                                                                                    57 
##                                           julia childs aunt helens fluffy pumpkin pie 
##                                                                                    75 
##                                                          julia childs berry clafoutis 
##                                                                                   209 
##                                                      julia childs eggplant walnut dip 
##                                                                                    41 
##                                               julia childs pork with allspice dry rub 
##                                                                                    23 
##                                                  julia childs provencal potato gratin 
##                                                                                    60 
##                                                  julia childs provencale tomato sauce 
##                                                                                    62 
##                                                        julia moskins beef bourguignon 
##                                                                                    10 
##                                                                 julienne carrot salad 
##                                                                                    15 
##                                                                           jungle bird 
##                                                                                     4 
##                                                                     juniper and tonic 
##                                                                                     3 
##                                                 kaddu sweet and sour butternut squash 
##                                                                                    45 
##                                                                     kajmak with herbs 
##                                                                                     6 
##                                                   kale and bacon hash brown casserole 
##                                                                                    15 
##                                kale and brussels sprouts salad with pear and halloumi 
##                                                                                    29 
##                                            kale and quinoa salad with plums and herbs 
##                                                                                     5 
##                                              kale and quinoa salad with tofu and miso 
##                                                                                   111 
##                                                kale and red cabbage slaw with walnuts 
##                                                                                    24 
##                                                         kale and ricotta salata salad 
##                                                                                     3 
##                                                         kale and sugar snap pea salad 
##                                                                                    60 
##                                                             kale romaine caesar salad 
##                                                                                    76 
##                                                    kale salad with apples and cheddar 
##                                                                                   175 
##                              kale salad with butternut squash cranberries and pepitas 
##                                                                                    16 
##                                               kale salad with cranberries and cashews 
##                                                                                    18 
##                                    kale salad with cranberries pecans and blue cheese 
##                                                                                    39 
##                                                                      kale sauce pasta 
##                                                                                   283 
##                                                                        kale tabbouleh 
##                                                                                    48 
##                                                                             kalimotxo 
##                                                                                     3 
##                                          kalpudding meatloaf with caramelized cabbage 
##                                                                                   354 
##                                                        karaage japanese fried chicken 
##                                                                                    80 
##                                                                                 kasha 
##                                                                                    18 
##                                                                        kasha caliente 
##                                                                                    14 
##                                                           kasha stuffed roast chicken 
##                                                                                     1 
##                                              kasha varnishkes with confit of gizzards 
##                                                                                     1 
##                                                     kasha with squash and pomegranate 
##                                                                                     5 
##                                                                           katsu curry 
##                                                                                     9 
##                                                        katsudon pork cutlet rice bowl 
##                                                                                    46 
##                                                                          kebab halabi 
##                                                                                    10 
##                                                         keema samosas chicken samosas 
##                                                                                    24 
##                                                              keema spiced ground meat 
##                                                                                   113 
##                                                        kelly fieldss haystack cookies 
##                                                                                    15 
##                                                             kenmares asparagus gratin 
##                                                                                     1 
##                                                          kenneth mccoys old fashioned 
##                                                                                     2 
##                                                                  kentucky butter cake 
##                                                                                   165 
##                                                  keo lac vung peanut and sesame candy 
##                                                                                    14 
##                                                                           kerala beef 
##                                                                                    21 
##                                                               kerala roadside chicken 
##                                                                                    91 
##                                                                          key lime pie 
##                                                                                   146 
##                                            key lime pie bars with vanilla wafer crust 
##                                                                                   177 
##                                                                    key lime poundcake 
##                                                                                    56 
##                                        khachapuri adjaruli georgian cheese bread boat 
##                                                                                    47 
##                         khao soi gai northern thai coconut curry noodles with chicken 
##                                                                                    21 
##                                                            khatti dal hyderabad style 
##                                                                                    12 
##                                                                               khichdi 
##                                                                                    30 
##                             khoresh e bademjoon persian lamb eggplant and tomato stew 
##                                                                                    29 
##                 khoresh e fesenjoon persian chicken stew with pomegranate and walnuts 
##                                                                                    61 
##                               khoresh e ghormeh sabzi persian herb bean and lamb stew 
##                                                                                    39 
##                                          khoresh karafs persian celery stew with lamb 
##                                                                                    35 
##                                                               kichri with massour dal 
##                                                                                    18 
##                                                                                kimbap 
##                                                                                    14 
##                                                                                kimchi 
##                                                                                    32 
##                                                      kimchi and potato hash with eggs 
##                                                                                    18 
##                                                                    kimchi bibim guksu 
##                                                                                    17 
##                                                                     kimchi fried rice 
##                                                                                   153 
##                                                                 kimchi grilled cheese 
##                                                                                    47 
##                                                             kimchi jjigae kimchi soup 
##                                                                                    84 
##                                                               kimchi jjigae with ribs 
##                                                                                     6 
##                                                                    kimchi noodle cake 
##                                                                                    27 
##                                                 kimchi noodle soup with wilted greens 
##                                                                                    15 
##                                                     kimchi omelet with sriracha syrup 
##                                                                                    21 
##                                                                        kimchi pancake 
##                                                                                    10 
##                                                                  kimchi radish pickle 
##                                                                                    10 
##                                                                  kimchi rice porridge 
##                                                                                    12 
##                                                                     kimchi tuna salad 
##                                                                                     2 
##                                                             kimchijeon kimchi pancake 
##                                                                                    90 
##                                                                             king cake 
##                                                                                    27 
##                                                                      kingston negroni 
##                                                                                     6 
##                                                                                   kir 
##                                                                                     2 
##                                                                                kishke 
##                                                                                     5 
##                                                                  kitchen sink cookies 
##                                                                                    39 
##                                                                     knafeh a la creme 
##                                                                                     5 
##                                                        kohlrabi and celery root puree 
##                                                                                     1 
##                                                                   kohlrabi home fries 
##                                                                                     7 
##                                                                      kohlrabi risotto 
##                                                                                    13 
##                                                                              kolaches 
##                                                                                     4 
##                                                                              kombucha 
##                                                                                    41 
##                                                             konbis egg salad sandwich 
##                                                                                    83 
##                                                   kongguksu cold soy milk noodle soup 
##                                                                                     5 
##                                                          korean acorn jelly dotorimuk 
##                                                                                     3 
##                                                       korean barbecue style meatballs 
##                                                                                   341 
##                                   korean braised spare ribs with soy and black pepper 
##                                                                                    10 
##                                                              korean bulgogi bolognese 
##                                                                                   145 
##                                                                  korean chicken tacos 
##                                                                                    25 
##                        korean chilled buckwheat noodles with chilled broth and kimchi 
##                                                                                     7 
##                                                                    korean corn cheese 
##                                                                                    35 
##                                                              korean fried cauliflower 
##                                                                                    11 
##                                                                  korean fried chicken 
##                                                                                    50 
##                                                     korean grilled beef lettuce wraps 
##                                                                                    32 
##                                                          korean meatballs and noodles 
##                                                                                    88 
##                                                                korean pancakes pa jun 
##                                                                                    13 
##                                                korean spicy chicken stew dakdori tang 
##                                                                                    36 
##                                                          kosher pickles the right way 
##                                                                                    14 
##                                                                               kringle 
##                                                                                    20 
##                                               kua kling southern thai style red curry 
##                                                                                    35 
##                                                       kubaneh yemeni pull apart rolls 
##                                                                                    75 
##                                                        kuku paka chicken with coconut 
##                                                                                   104 
##                                                      kuku sabzi persian herb frittata 
##                                                                                    47 
##                                                          kuku stuffed beef tenderloin 
##                                                                                     1 
##                                             kukul mas maluwa sri lankan chicken curry 
##                                                                                    24 
##                                                        kumquat and chocolate yule log 
##                                                                                    50 
##                                                       kumquat and clove gin and tonic 
##                                                                                     3 
##                                               kunun gyada spiced peanut rice porridge 
##                                                                                    29 
##                                kuri squash mushroom and kale tart with rosemary crust 
##                                                                                     5 
##                                                                         la canadiense 
##                                                                                     1 
##                                                                     la puesta del sol 
##                                                                                     1 
##                                                                    la quebrada spritz 
##                                                                                     1 
##                                                                      la style chorizo 
##                                                                                     2 
##                                               la zucca magicas orange and olive salad 
##                                                                                     5 
##                                                        lablabi tunisian chickpea soup 
##                                                                                   158 
##                                           labneh dip with sizzled scallions and chile 
##                                                                                    78 
##                                             lady bird johnsons pedernales river chili 
##                                                                                     4 
##                                                                       lalla mussa dal 
##                                                                                    20 
##                                  lamb and couscous salad with chickpeas mint and feta 
##                                                                                     4 
##                                                                lamb and eggplant pide 
##                                                                                    12 
##                                          lamb and fig skewers with honey and rosemary 
##                                                                                    12 
##                                       lamb and rice stuffed cabbage with tomato sauce 
##                                                                                     9 
##                                                             lamb and white bean chili 
##                                                                                   134 
##                                                                          lamb biryani 
##                                                                                   100 
##                                             lamb braised with white beans and turnips 
##                                                                                    10 
##                                                                  lamb chops au poivre 
##                                                                                    10 
##                                                   lamb chops fried in parmesan batter 
##                                                                                     8 
##                                                lamb chops scottadito with crispy kale 
##                                                                                     7 
##                                               lamb chops with beans corn and zucchini 
##                                                                                     6 
##                                                 lamb chops with dates feta and tahini 
##                                                                                    28 
##                                                        lamb chops with green tomatoes 
##                                                                                    17 
##                                 lamb chops with guajillo chili sauce and charro beans 
##                                                                                     3 
##                                                            lamb flatbread with zaatar 
##                                                                                    21 
##                                                 lamb harissa and almond sausage rolls 
##                                                                                    67 
##                                       lamb in frascati wine abbacchio alla cacciatora 
##                                                                                     3 
##                                         lamb leg steak with olive relish and tomatoes 
##                                                                                    12 
##                                                   lamb meatballs and collard dolmades 
##                                                                                     7 
##                                               lamb meatballs with spiced tomato sauce 
##                                                                                   171 
##                                               lamb necks braised in wine with peppers 
##                                                                                     9 
##                                                    lamb ragout with spring vegetables 
##                                                                                    15 
##                                                          lamb shank tagine with dates 
##                                                                                    31 
##                                                   lamb shanks in red wine with prunes 
##                                                                                     1 
##                                                   lamb shanks with caramelized onions 
##                                                                                     4 
##                                                         lamb shoulder mafe with fonio 
##                                                                                    22 
##                                                       lamb steak with lebanese spices 
##                                                                                    27 
##                                                                             lamb stew 
##                                                                                     3 
##                                                                           lamb tagine 
##                                                                                   135 
##                                                         lamb tagine with green olives 
##                                                                                     9 
##                                                      lamb with herb paste and spinach 
##                                                                                     2 
##                                                      lamb with lemon grass and ginger 
##                                                                                     3 
##                                                            lamb with mint chimichurri 
##                                                                                    14 
##                                                                      lambrusco spritz 
##                                                                                     2 
##                                                       lancashire cheese and onion pie 
##                                                                                     5 
##                                                                             lane cake 
##                                                                                    10 
##                                                                  lantern cracker jack 
##                                                                                     4 
##                                                                   lard and cracklings 
##                                                                                     1 
##                                                                        lard pie crust 
##                                                                                    14 
##                                             larders smoked carrots with roasted yeast 
##                                                                                     6 
##                                               large white bean tuna and spinach salad 
##                                                                                    27 
##                                                     lasagna with asparagus and chives 
##                                                                                     6 
##                                                           lasagna with collard greens 
##                                                                                    20 
##                                                     lasagna with pistou and mushrooms 
##                                                                                    12 
##                                          lasagna with roasted beets and herb bechamel 
##                                                                                     4 
##                                                         lasagna with roasted broccoli 
##                                                                                    18 
##                                     lasagna with roasted brussels sprouts and carrots 
##                                                                                    18 
##                                   lasagna with roasted eggplant mushrooms and carrots 
##                                                                                    40 
##                                      lasagna with roasted kabocha squash and bechamel 
##                                                                                    15 
##                                                lasagna with spicy roasted cauliflower 
##                                                                                    48 
##                                             lasagna with spinach and roasted zucchini 
##                                                                                   136 
##                                               lasagna with spinach and wild mushrooms 
##                                                                                    32 
##                                        lasagna with tomato sauce and roasted eggplant 
##                                                                                    54 
##                                                    last minute sort of spanish shrimp 
##                                                                                    14 
##                                                                             last word 
##                                                                                     5 
##                                                                                latkes 
##                                                                                   107 
##                                                   laurent tourondels favorite granola 
##                                                                                    39 
##                                                  laurie colwins baked mustard chicken 
##                                                                                   128 
##                                  laurie colwins creamed spinach with jalapeno peppers 
##                                                                                    29 
##                                                            laurie colwins gingerbread 
##                                                                                    26 
##                                  lavash pizza with greens baby broccoli and mushrooms 
##                                                                                     2 
##                                                lavash pizza with onions and anchovies 
##                                                                                     1 
##                                                       lavash pizza with smoked salmon 
##                                                                                     2 
##                                 lavash pizza with tomatoes mozzarella and goat cheese 
##                                                                                    22 
##                                    lavash pizza with zucchini and goat cheese topping 
##                                                                                     2 
##                                                                     lavender hill cob 
##                                                                                     1 
##                                                                       lavender mojito 
##                                                                                     4 
##                                                                        lavender syrup 
##                                                                                     4 
##                                                               layered vegetable torte 
##                                                                                    96 
##                                                                          lazy lobster 
##                                                                                    18 
##                                                                           lazy madame 
##                                                                                     1 
##                                                                    lazy old fashioned 
##                                                                                    13 
##                                                                           lazy sonker 
##                                                                                     8 
##                                                                        le grand aioli 
##                                                                                    26 
##                                                                      leafy herb salad 
##                                                                                    28 
##                                                                    leafy tomato sauce 
##                                                                                     1 
##                                                                lean but good potatoes 
##                                                                                    10 
##                                    lebanese potatoes with cilantro sauce batata harra 
##                                                                                     1 
##                                    lebanese style bread salad with tomatoes and herbs 
##                                                                                    20 
##                                                                    lebanese tabbouleh 
##                                                                                    50 
##                                                            leek and cardamom fritters 
##                                                                                    17 
##                                                         leek and mushroom cottage pie 
##                                                                                   122 
##                                          leek and potato souffle with ham and fontina 
##                                                                                    27 
##                                                          leek and spring onion gratin 
##                                                                                    38 
##                                                                leek and tomato gratin 
##                                                                                    12 
##                                     leek and turnip soup with kale and walnut garnish 
##                                                                                     6 
##                                                                   leek and yogurt pie 
##                                                                                     7 
##                                                                    leek bread pudding 
##                                                                                    10 
##                                                           leek kale and potato latkes 
##                                                                                    19 
##                                                       leek or spinach souffle pudding 
##                                                                                    26 
##                                  leek potato and zucchini pancakes with baby lettuces 
##                                                                                     2 
##                                                                           leek quiche 
##                                                                                    58 
##                                        leek risotto with sugar snap peas and pancetta 
##                                                                                    43 
##                                                             leek turnip and rice soup 
##                                                                                    88 
##                                              leek vegetable fritters with lemon cream 
##                                                                                     3 
##                                                                   leeks in white wine 
##                                                                                    20 
##                                                     leeks vinaigrette with sieved egg 
##                                                                                    10 
##                                                                                 lefse 
##                                                                                    10 
##                                                      leg of lamb with moroccan spices 
##                                                                                     4 
##                                                         leg of lamb with savory beans 
##                                                                                    13 
##                                                              lemon almond butter cake 
##                                                                                   326 
##                                                    lemon almond cake with lemon glaze 
##                                                                                   101 
##                                                 lemon and blood orange gelee parfaits 
##                                                                                     2 
##                                         lemon and garlic chicken with cherry tomatoes 
##                                                                                    77 
##                                               lemon and garlic chicken with mushrooms 
##                                                                                   146 
##                                          lemon and garlic chicken with spiced spinach 
##                                                                                    27 
##                                               lemon and thyme grilled chicken breasts 
##                                                                                    89 
##                                       lemon angel food cake with preserved lemon curd 
##                                                                                    92 
##                                                                 lemon barley stuffing 
##                                                                                     4 
##                                                lemon bars with olive oil and sea salt 
##                                                                                   306 
##                                                                  lemon blueberry bars 
##                                                                                    62 
##                                                     lemon bundt cake with poppy seeds 
##                                                                                    20 
##                                                                  lemon caper dressing 
##                                                                                    33 
##                                                   lemon chicken with garlic chile oil 
##                                                                                    24 
##                                                            lemon cream cheese cookies 
##                                                                                    77 
##                                                                            lemon curd 
##                                                                                    32 
##                                                                        lemon daiquiri 
##                                                                                     3 
##                                                                    lemon drizzle cake 
##                                                                                    98 
##                                                               lemon garlic kale salad 
##                                                                                   280 
##                                                     lemon garlic pepper chicken wings 
##                                                                                     4 
##                                                                     lemon gin granita 
##                                                                                     2 
##                                                                     lemon ginger tart 
##                                                                                    58 
##                                                            lemon goop and vinaigrette 
##                                                                                   137 
##                                                 lemon grass and rice noodle fish soup 
##                                                                                     6 
##                                                       lemon grass ginger pork sliders 
##                                                                                     6 
##                                                        lemon herb buttermilk dressing 
##                                                                                    20 
##                                                                      lemon lime syrup 
##                                                                                     1 
##                                                                       lemon meltaways 
##                                                                                    90 
##                                             lemon meringue bars with poppy seed crust 
##                                                                                    14 
##                                                                lemon meringue cookies 
##                                                                                    67 
##                                                          lemon meringue pots de creme 
##                                                                                    18 
##                                                             lemon olive oil ice cream 
##                                                                                    33 
##                                                               lemon or lime ice cream 
##                                                                                     6 
##                                                                   lemon poppy muffins 
##                                                                                    64 
##                                                              lemon poppy seed cookies 
##                                                                                    13 
##                                   lemon poppy seed pancakes with greek yogurt and jam 
##                                                                                    33 
##                                                            lemon poppy seed poundcake 
##                                                                                   265 
##                                                          lemon potato salad with mint 
##                                                                                   152 
##                                                                    lemon pudding cake 
##                                                                                   244 
##                                          lemon pudding cakes with sugared raspberries 
##                                                                                   128 
##                                                lemon raspberry danish with mascarpone 
##                                                                                    28 
##                                                   lemon risotto with brussels sprouts 
##                                                                                    10 
##                                                      lemon risotto with summer squash 
##                                                                                    30 
##                               lemon roasted potatoes with smoked paprika and rosemary 
##                                                                                    42 
##                                            lemon sheet cake with buttercream frosting 
##                                                                                   162 
##                                         lemon sheet cake with raspberry whipped cream 
##                                                                                    76 
##                                            lemon shortcakes with gingered blueberries 
##                                                                                    10 
##                                                lemon snacking cake with coconut glaze 
##                                                                                   101 
##                                                         lemon soda buttermilk parfait 
##                                                                                    35 
##                                                                         lemon souffle 
##                                                                                    30 
##                                                             lemon spice visiting cake 
##                                                                                   385 
##                                             lemon sweet rolls with cream cheese icing 
##                                                                                   176 
##                                                       lemon tart with a touch of lime 
##                                                                                    17 
##                                    lemony asparagus salad with shaved cheese and nuts 
##                                                                                    58 
##                                                           lemony brussels sprout slaw 
##                                                                                    35 
##                                                    lemony carrot and cauliflower soup 
##                                                                                   451 
##                                              lemony cauliflower with garlic and herbs 
##                                                                                    51 
##                                    lemony cauliflower with hazelnuts and brown butter 
##                                                                                    16 
##                                        lemony chicken feta meatball soup with spinach 
##                                                                                    34 
##                                              lemony chicken soup with fennel and dill 
##                                                                                   181 
##                                                    lemony couscous and pecan dressing 
##                                                                                     2 
##                                                         lemony egg soup with escarole 
##                                                                                    34 
##                                    lemony farro pasta salad with goat cheese and mint 
##                                                                                    83 
##                                lemony mashed potatoes with asparagus almonds and mint 
##                                                                                    22 
##                                    lemony orzo with asparagus and garlic bread crumbs 
##                                                                                   237 
##                                                           lemony parsley and egg soup 
##                                                                                     8 
##                                           lemony pasta with asparagus and white beans 
##                                                                                    53 
##                                               lemony pasta with chickpeas and parsley 
##                                                                                   198 
##                                            lemony pasta with kelp chile and anchovies 
##                                                                                    12 
##                                            lemony pasta with zucchini and fresh herbs 
##                                                                                    88 
##                                                           lemony pea and spinach soup 
##                                                                                     5 
##                                                          lemony roasted chicken wings 
##                                                                                    72 
##                                                           lemony shrimp and bean stew 
##                                                                                   488 
##                                                        lemony spinach soup with farro 
##                                                                                   116 
##                                                              lemony turmeric tea cake 
##                                                                                   395 
##                                            lemony whipped feta with charred scallions 
##                                                                                   165 
##                                         lemony white bean soup with turkey and greens 
##                                                                                   426 
##                                          lemony white beans with anchovy and parmesan 
##                                                                                    49 
##                                                                  lemony zucchini slaw 
##                                                                                    25 
##                                    lentil and carrot salad with middle eastern spices 
##                                                                                    12 
##                                                              lentil and escarole soup 
##                                                                                    24 
##                                   lentil and herb salad with roasted peppers and feta 
##                                                                                    13 
##                                            lentil and orzo stew with roasted eggplant 
##                                                                                   217 
##                                                                lentil and tomato stew 
##                                                                                    55 
##                                                                 lentil and tuna salad 
##                                                                                    37 
##                                                   lentil celery and tomato minestrone 
##                                                                                    14 
##                                                         lentil minestrone with greens 
##                                                                                    22 
##                                                   lentil pate with cumin and turmeric 
##                                                                                     3 
##                                                                          lentil salad 
##                                                                                    12 
##                                                         lentil salad with fresh favas 
##                                                                                     4 
##                                                  lentil salad with roasted vegetables 
##                                                                                    81 
##                                                          lentil salad with walnut oil 
##                                                                                    21 
##                                                            lentil soup with chipotles 
##                                                                                    60 
##                                                  lentil soup with cilantro lots of it 
##                                                                                    17 
##                                            lentil soup with smoked sausage and apples 
##                                                                                   104 
##                                                                           lentil stew 
##                                                                                    10 
##                                            lentil stew with pumpkin or sweet potatoes 
##                                                                                    53 
##                                                                    lentil tomato soup 
##                                                                                   102 
##                                                 lentils and rice with or without pork 
##                                                                                     3 
##                                                                    lentils cacciatore 
##                                                                                   152 
##                                                                       lentils diavolo 
##                                                                                   116 
##                                           lentils with chorizo greens and yellow rice 
##                                                                                   104 
##                                                            lentils with curried tarka 
##                                                                                     4 
##                                             lentils with pasta and caramelized onions 
##                                                                                    15 
##                                                    lentils with smoked trout rilletes 
##                                                                                     2 
##                                                         lettuce and green garlic soup 
##                                                                                    10 
##                                              lettuce salad with charred spring onions 
##                                                                                     1 
##                                                                  liberian peanut soup 
##                                                                                     3 
##                                                  libyan aharaimi fish in tomato sauce 
##                                                                                    38 
##                                                                         liege waffles 
##                                                                                    15 
##                                                                    light brioche buns 
##                                                                                   136 
##                                                   light lentil soup with smoked trout 
##                                                                                     5 
##                                                    ligurian kale pie torta di verdura 
##                                                                                     8 
##                                                            lima bean and porcini soup 
##                                                                                    16 
##                                                 lima bean spread with feta and zaatar 
##                                                                                     4 
##                                                                        limber de coco 
##                                                                                    20 
##                                                                lime cumin vinaigrette 
##                                                                                     3 
##                                                               lime mint and rum tarts 
##                                                                                    14 
##                                                lime squares with raw sugar shortbread 
##                                                                                    16 
##                                                               lime sugar dipping salt 
##                                                                                    11 
##                                                               limoncello once removed 
##                                                                                    10 
##                                                         linguine with asparagus pesto 
##                                                                                    28 
##                                          linguine with chickpeas broccoli and ricotta 
##                                                                                   105 
##                                                              linguine with clam sauce 
##                                                                                   227 
##                           linguine with clams roasted tomatoes and caramelized garlic 
##                                                                                    30 
##                                                               linguine with crab meat 
##                                                                                    15 
##                                            linguine with crisp chickpeas and rosemary 
##                                                                                   120 
##                                                     linguine with lobster and avocado 
##                                                                                    29 
##                                                 linguine with melted onions and cream 
##                                                                                    49 
##                                 linguine with shrimp and lemon pistachio bread crumbs 
##                                                                                    41 
##                                                                        linzer cookies 
##                                                                                    71 
##                                                                          linzer trees 
##                                                                                    24 
##                                                                  lions head meatballs 
##                                                                                     1 
##                                                                            lions tail 
##                                                                                     3 
##                                                                 lisbon chocolate cake 
##                                                                                   314 
##                                       little gems salad with garlicky almond dressing 
##                                                                                     7 
##                                        little onion tarts with gorgonzola and walnuts 
##                                                                                    36 
##                                                                     live basil gimlet 
##                                                                                    18 
##                                                                 loaded baked frittata 
##                                                                                    54 
##                                                                      loaded miso soup 
##                                                                                    59 
##                                                                         loaded nachos 
##                                                                                    71 
##                                    loaded sweet potatoes with black beans and cheddar 
##                                                                                   131 
##                                                                        lobster bisque 
##                                                                                    58 
##                                                                        lobster butter 
##                                                                                    18 
##                                                                           lobster dip 
##                                                                                     1 
##                                                                lobster mac and cheese 
##                                                                                    93 
##                                          lobster pasta with yellow tomatoes and basil 
##                                                                                    48 
##                                                                     lobster pastitsio 
##                                                                                     1 
##                                     lobster salad with green beans tomatoes and basil 
##                                                                                    17 
##                                                        lobster stew with a pastry lid 
##                                                                                    17 
##                                                                     lobster succotash 
##                                                                                    13 
##                                                                  lobster summer rolls 
##                                                                                    20 
##                                                           lobster with pasta and mint 
##                                                                                    13 
##                                                                             loco moco 
##                                                                                    76 
##                                                                long cooked vegetables 
##                                                                                    86 
##                                    long simmered eggplant stuffed with farro or spelt 
##                                                                                     6 
##                                   longevity noodles with chicken ginger and mushrooms 
##                                                                                   171 
##                                                                            los amores 
##                                                                                     2 
##                                             lot 2s pecorino fried bread with broccoli 
##                                                                                     6 
##                                                              louies holiday manicotti 
##                                                                                     2 
##                                       louisiana brown jasmine rice and shrimp risotto 
##                                                                                     6 
##                                                                       low knead bread 
##                                                                                    24 
##                                                              low knead sandwich bread 
##                                                                                     8 
##                                                             lowcountry collard greens 
##                                                                                    29 
##                                                                  lowcountry okra soup 
##                                                                                    79 
##                                                           lowcountry pickled coleslaw 
##                                                                                    26 
##                                                                           lox chowder 
##                                                                                    22 
##                                                                          lucali salad 
##                                                                                   126 
##                                                              lucky peach lamb burgers 
##                                                                                    58 
##                                                         lucy buffetts oyster dressing 
##                                                                                    27 
##                                                   ludo lefebvres roasted carrot salad 
##                                                                                    66 
##                                                                                 lugaw 
##                                                                                    18 
##                                                                       lumpia shanghai 
##                                                                                    19 
##                                                                              lunchbox 
##                                                                                     1 
##                                                              lunchbox harvest muffins 
##                                                                                    96 
##                                                                       lus bloody mary 
##                                                                                    14 
##                                                                               maamoul 
##                                                                                     1 
##                                                  maangchis cheese buldak fire chicken 
##                                                                                   275 
##                                                                 mac and queso fundido 
##                                                                                    43 
##                                                                          mac n cheese 
##                                                                                     1 
##                                                                    macaroni milanaise 
##                                                                                    52 
##                                                                        macaroni salad 
##                                                                                    37 
##                                                   macaroni salad with lemon and herbs 
##                                                                                   195 
##                                      macaroni with tomato sauce chard and goat cheese 
##                                                                                    17 
##                                                                              macarons 
##                                                                                    24 
##                                                                 macedonian cheese pie 
##                                                                                     1 
##                                   mache and endive salad with clementines and walnuts 
##                                                                                     5 
##                           mache and radicchio salad with beets and walnut vinaigrette 
##                                                                                     1 
##                                                      mache salad with yogurt dressing 
##                                                                                     2 
##                                                                               machuca 
##                                                                                     1 
##                                            mackerel with lemon olive oil and tomatoes 
##                                                                                    12 
##                                                 mackerel with olives almonds and mint 
##                                                                                    20 
##                                                                    mackerel with peas 
##                                                                                     1 
##                                            mackerel with pistachio and cardamom salsa 
##                                                                                     8 
##                                                                     mad mushroom stew 
##                                                                                    11 
##                                                        made in the pan chocolate cake 
##                                                                                   326 
##                                                                            madeleines 
##                                                                                    14 
##                                      madhur jaffreys pressure cooker dal dal makkhani 
##                                                                                    54 
##                                                         maduros fried sweet plantains 
##                                                                                    68 
##                                                                     magic cookie bars 
##                                                                                    76 
##                                                 magret with rhubarb and blood oranges 
##                                                                                     4 
##                                    maha sarsours maqluba upside down chicken and rice 
##                                                                                    57 
##                                                     mahi ba somagh sumac roasted fish 
##                                                                                    33 
##                                                                  mahonys beef po boys 
##                                                                                    16 
##                                                                               mai tai 
##                                                                                     6 
##                                                 maida heatters chocolate mousse torte 
##                                                                                    48 
##                                            maison alephs sesame halvah 1 001 feuilles 
##                                                                                    11 
##                                                     majorcan bread and vegetable soup 
##                                                                                     3 
##                                                              make ahead fried chicken 
##                                                                                    38 
##                                                                    make ahead martini 
##                                                                                    12 
##                                                     make it your own udon noodle soup 
##                                                                                    15 
##                                                    makhani dal butter dal mogul style 
##                                                                                    12 
##                                              malaysian stir fried noodles with shrimp 
##                                                                                     3 
##                                                     malaysian style ginger chile crab 
##                                                                                     3 
##                                                         mall style vegetable stir fry 
##                                                                                    52 
##                                                                             mallorcas 
##                                                                                     6 
##                                             malt chocolate and marshmallow sandwiches 
##                                                                                    58 
##                                                    malted milk fudge ripple ice cream 
##                                                                                    31 
##                                                         malted milk ice cream bonbons 
##                                                                                     1 
##                                                                manchurian cauliflower 
##                                                                                    22 
##                                                                     mandarin pancakes 
##                                                                                    15 
##                                                                        mandarin punch 
##                                                                                     1 
##                          mandarin rice stuffing with chestnuts and shiitake mushrooms 
##                                                                                     3 
##                                                               mandoo korean dumplings 
##                                                                                     8 
##                                                                                 mandu 
##                                                                                     3 
##                                                       mango and sticky rice popsicles 
##                                                                                    12 
##                                                              mango blueberry smoothie 
##                                                                                    16 
##                                                             mango buttermilk smoothie 
##                                                                                     9 
##                                                                      mango cheesecake 
##                                                                                    26 
##                                                                       mango lassi ice 
##                                                                                     8 
##                                                                     mango lime sorbet 
##                                                                                    11 
##                                                      mango orange and ginger smoothie 
##                                                                                    13 
##                                                                             mango pie 
##                                                                                   138 
##                                                                mango rose water lassi 
##                                                                                    10 
##                                                                          mango royale 
##                                                                                    65 
##                                                                            mango slaw 
##                                                                                    64 
##                                                                mango tamarind chutney 
##                                                                                    11 
##                                                                mango tres leches cake 
##                                                                                    26 
##                                                                             mangonada 
##                                                                                    30 
##                                                                             manhattan 
##                                                                                    58 
##                                                                manhattan clam chowder 
##                                                                                    48 
##                                                        manhattan with amaro and cocoa 
##                                                                                     5 
##                                      maple and miso sheet pan salmon with green beans 
##                                                                                   320 
##                                                                    maple baked salmon 
##                                                                                   204 
##                                                               maple breakfast sausage 
##                                                                                    23 
##                                                          maple candied sweet potatoes 
##                                                                                    23 
##                                                    maple cardamom saffron sticky buns 
##                                                                                    23 
##                                           maple glazed sweet potato wedges with bacon 
##                                                                                     5 
##                                                           maple pear upside down cake 
##                                                                                    54 
##                                                             maple pecan bourbon balls 
##                                                                                    29 
##                                                              maple pecan caramel corn 
##                                                                                    96 
##                                                 maple pecan galette with fresh ginger 
##                                                                                    94 
##                                                              maple pecan monkey bread 
##                                                                                    29 
##                                                                  maple pecan pancakes 
##                                                                                    44 
##                                                            maple pecan sweet potatoes 
##                                                                                     3 
##                                 maple roasted brussels sprouts with toasted hazelnuts 
##                                                                                    43 
##                                       maple roasted squash with sage and lime for two 
##                                                                                    36 
##                                    maple roasted tofu with butternut squash and bacon 
##                                                                                    72 
##                                                                 maple shortbread bars 
##                                                                                    59 
##                                                                 maple spice ice cream 
##                                                                                     8 
##                                                  maple tart with oatmeal cookie crust 
##                                                                                    37 
##                                                                         maple vinegar 
##                                                                                     3 
##                                                                 maple walnut blondies 
##                                                                                    44 
##                                                                             mapo ragu 
##                                                                                   230 
##                                                                             mapo tofu 
##                                                                                    93 
##                                                                      mapo tofu nachos 
##                                                                                    12 
##                                                                   mapo tofu spaghetti 
##                                                                                    32 
##                                                                           maque choux 
##                                                                                    80 
##                                                          maras tofu with mixed grains 
##                                                                                    56 
##                                                                   maraschino cherries 
##                                                                                     8 
##                                                                marbled tahini cookies 
##                                                                                   108 
##                                                       marcella hazans bolognese sauce 
##                                                                                   966 
##                                             marcella hazans roast chicken with lemons 
##                                                                                   101 
##                                                          marcella hazans tomato sauce 
##                                                                                   608 
##               marcus samuelssons quinoa with broccoli cauliflower and toasted coconut 
##                                                                                    21 
##                                                                             margarita 
##                                                                                    59 
##                                                              marilyn monroes stuffing 
##                                                                                    10 
##                                                                marinara style mussels 
##                                                                                     4 
##                                         marinated beet salad with whipped goat cheese 
##                                                                                    76 
##                                           marinated cauliflower and carrots with mint 
##                                                                                    20 
##                                    marinated celery salad with chickpeas and parmesan 
##                                                                                   164 
##                                                                   marinated chickpeas 
##                                                                                    29 
##                                             marinated feta with herbs and peppercorns 
##                                                                                    23 
##                                                 marinated giant white beans and beets 
##                                                                                     5 
##                                                                 marinated goat cheese 
##                                                                                     5 
##                                                        marinated salmon on toothpicks 
##                                                                                     5 
##                                             marinated tofu sandwich with asian greens 
##                                                                                     2 
##                                                   marinated tofu sandwich with greens 
##                                                                                     2 
##                                                              marinated venison steaks 
##                                                                                    32 
##                                                              marinated zucchini salad 
##                                                                                    28 
##                                  marinated zucchini with farro chickpeas and parmesan 
##                                                                                    18 
##                                                             mark araxs marinated lamb 
##                                                                                     2 
##                                                            mark bittmans banana bread 
##                                                                                   105 
##                                                       mark bittmans basic pizza dough 
##                                                                                    52 
##                                                           mark bittmans bouillabaisse 
##                                                                                    45 
##                                                       mark bittmans eggplant parmesan 
##                                                                                   146 
##                                                                 mark bittmans gravlax 
##                                                                                    33 
##                                                              mark bittmans mint julep 
##                                                                                    12 
##                                                          mark bittmans mushroom stock 
##                                                                                     5 
##                                                        mark bittmans pasta with clams 
##                                                                                    46 
##                                                            mark bittmans pastry cream 
##                                                                                     7 
##                                                                 mark bittmans rouille 
##                                                                                     5 
##                                                              mark bittmans sushi rice 
##                                                                                     6 
##                                                                 mark bittmans tamales 
##                                                                                    16 
##                                    market tables quinoa hush puppies with chile aioli 
##                                                                                     2 
##                                     marsala marinated chicken with roasted vegetables 
##                                                                                    77 
##                                                                          marshmallows 
##                                                                                    24 
##                                                      martha rose shulmans risi e bisi 
##                                                                                     1 
##                                                     martha rose shulmans roasted okra 
##                                                                                    31 
##                                    martha rose shulmans scrambled eggs with mushrooms 
##                                                                                     6 
##                                                    martha rose shulmans tortilla soup 
##                                                                                     5 
##                                                                               martini 
##                                                                                    47 
##                                                                  martini on the rocks 
##                                                                                     3 
##                                                                         mary pickford 
##                                                                                     2 
##                                                           mashama baileys pecan pesto 
##                                                                                    14 
##                                                               mashed butternut squash 
##                                                                                    25 
##                                                           mashed carrots and potatoes 
##                                                                                    16 
##                                                                    mashed cauliflower 
##                                                                                    40 
##                                     mashed eggplant with capers scallions and parsley 
##                                                                                    21 
##                                                               mashed fava bean toasts 
##                                                                                    13 
##                                              mashed potato and broccoli raab pancakes 
##                                                                                     9 
##                                                    mashed potato and cabbage pancakes 
##                                                                                    35 
##                                                               mashed potato casserole 
##                                                                                   148 
##                                           mashed potato latkes with dill and shallots 
##                                                                                    13 
##                                          mashed potato salad with scallions and herbs 
##                                                                                    59 
##                                                                       mashed potatoes 
##                                                                                   136 
##                                     mashed sweet potatoes with maple and brown butter 
##                                                                                    12 
##                                        mashed turnips and potatoes with turnip greens 
##                                                                                    16 
##                                                                            masoor dal 
##                                                                                    20 
##                                                                      massa man hattan 
##                                                                                     1 
##                                         mast o khiar persian cucumber and herb yogurt 
##                                                                                    16 
##                                                 master recipe for biscuits and scones 
##                                                                                    58 
##                                                       master recipe for tiny pancakes 
##                                                                                    14 
##                                                              master shortbread recipe 
##                                                                                    24 
##                                               matar kachori fried pea filled pastries 
##                                                                                     7 
##                                                                            matcha pie 
##                                                                                    30 
##                                                         matzo ball soup a la mexicana 
##                                                                                    29 
##                                                  matzo ball soup with celery and dill 
##                                                                                   117 
##                                                    matzo brei with caramelized apples 
##                                                                                     1 
##                                                                        matzo frittata 
##                                                                                    28 
##                                                                         matzo lasagna 
##                                                                                    73 
##                                                             matzo lox eggs and onions 
##                                                                                    10 
##                                                                     matzo meal latkes 
##                                                                                     5 
##                                                      matzo toffee with candied ginger 
##                                                                                    31 
##                                maureen aboods eggplant with lamb tomato and pine nuts 
##                                                                                   217 
##                                    maureen aboods lavender and orange blossom cookies 
##                                                                                    19 
##                                                    maya citrus salsa with red snapper 
##                                                                                    25 
##                                               mayo marinated chicken with chimichurri 
##                                                                                   139 
##                                                                            mayonnaise 
##                                                                                     2 
##                                  meal in a bowl with chicken rice noodles and spinach 
##                                                                                     7 
##                                                        meat and potato skillet gratin 
##                                                                                   173 
##                                                                     meatball parmesan 
##                                                                                    45 
##                                                                         meatball subs 
##                                                                                    30 
##                                                             meatball toad in the hole 
##                                                                                    43 
##                                                                             meatballs 
##                                                                                    23 
##                                            meatballs in sour cherry sauce kabab karaz 
##                                                                                    18 
##                                                               meatballs with any meat 
##                                                                                   218 
##                                                  meatless meatballs in marinara sauce 
##                                                                                    51 
##                                                                              meatloaf 
##                                                                                    95 
##                                                                     meatloaf parmesan 
##                                                                                    44 
##                                                                   meatloaf stroganoff 
##                                                                                   117 
##                                                         meatloaf with moroccan spices 
##                                                                                    54 
##                                           mediterranean artichoke and fresh fava stew 
##                                                                                     4 
##                                mediterranean citrus chicken skewers with tahini sauce 
##                                                                                     4 
##                      mediterranean cucumber and yogurt salad with red or black quinoa 
##                                                                                     4 
##                                     mediterranean fish chowder with potatoes and kale 
##                                                                                    43 
##                                                            mediterranean lentil puree 
##                                                                                     1 
##                                                            mediterranean lentil salad 
##                                                                                    48 
##                                                    mediterranean okra and tomato stew 
##                                                                                    17 
##                                                       mediterranean smashed chickpeas 
##                                                                                    32 
##                                              mee goreng southeast asian fried noodles 
##                                                                                     9 
##                                                                 meen gassi fish curry 
##                                                                                    23 
##                                                            meera sodhas chicken curry 
##                                                                                   240 
##                                                                     meera sodhas naan 
##                                                                                   157 
##                                             mele e cottechino apples and pork sausage 
##                                                                                     2 
##                                           melissa clarks chocolate hazelnut ice cream 
##                                                                                     2 
##                                                    melissa clarks oysters rockefeller 
##                                                                                     3 
##                                         melon and avocado salad with fennel and chile 
##                                                                                    40 
##                                                       melon cucumber and tomato salad 
##                                                                                     2 
##                                                     melon pomegranate almond smoothie 
##                                                                                     3 
##                                                                          melon sorbet 
##                                                                                     5 
##                                                                            melon soup 
##                                                                                     2 
##                                             melon with red chili flakes salt and lime 
##                                                                                     2 
##                                                           melted pepper ricotta toast 
##                                                                                    16 
##                                                                  melted pepper spread 
##                                                                                    62 
##                                                         melted red peppers and garlic 
##                                                                                     2 
##                                                             memphis dry rub mushrooms 
##                                                                                    65 
##                                                                  memphis dry rub ribs 
##                                                                                    31 
##                                             mendiant tart with dark chocolate ganache 
##                                                                                     2 
##                                            menemen turkish scrambled eggs with tomato 
##                                                                                    54 
##                                                         mercimek koftesi lentil balls 
##                                                                                    10 
##                                           meringue mess with rhubarb and strawberries 
##                                                                                    21 
##                                                          methi makai kebab corn kebab 
##                                                                                     2 
##                            mexican chicken soup with chick peas avocado and chipotles 
##                                                                                     3 
##                                                               mexican chocolate shake 
##                                                                                     3 
##                                                        mexican chocolate tofu pudding 
##                                                                                   127 
##                                                                 mexican hot chocolate 
##                                                                                    17 
##                                                                      mexican hot dogs 
##                                                                                    54 
##                                                                       mexican martini 
##                                                                                    16 
##                                                                          mexican rice 
##                                                                                   108 
##                                                                mexican scrambled eggs 
##                                                                                     8 
##                                                              mexican seafood cocktail 
##                                                                                     1 
##                          mexican street corn paleta corn sour cream and lime popsicle 
##                                                                                     2 
##                                                                   mexican style atole 
##                                                                                     1 
##                                                meyer lemon and blood orange marmalade 
##                                                                                    21 
##                                                                 mezcal corpse reviver 
##                                                                                     1 
##                                                                        mezcal negroni 
##                                                                                     6 
##                                      mezzelune pasta with peas and shiitake mushrooms 
##                                                                                     9 
##                                                                  microwave mixed rice 
##                                                                                     1 
##                                                                 microwave nut brittle 
##                                                                                     5 
##                                                                    microwave pralines 
##                                                                                     4 
##                                                     microwave saffron turkish delight 
##                                                                                     2 
##                                        microwaved black cod with scallions and ginger 
##                                                                                     4 
##                                                          middle eastern avocado puree 
##                                                                                     8 
##                                       middle eastern inspired herb and garlic chicken 
##                                                                                   249 
##                                                                   middle school tacos 
##                                                                                    95 
##                              midnight pasta with garlic anchovy capers and red pepper 
##                                                                                   281 
##                                midnight pasta with roasted garlic olive oil and chile 
##                                                                                    81 
##                                                                 migas breakfast tacos 
##                                                                                    36 
##                                                              migas with pico de gallo 
##                                                                                     1 
##                                                                   milk and honey cake 
##                                                                                    39 
##                                                         milk chocolate banana pudding 
##                                                                                    23 
##                                    milk poached chicken breasts with young vegetables 
##                                                                                     1 
##                                                                            milk punch 
##                                                                                     2 
##                                                              millet and greens gratin 
##                                                                                     6 
##                                                         millet and red pepper polenta 
##                                                                                     1 
##                           millet polenta with mushrooms and broccoli or broccoli raab 
##                                                                                     1 
##                               millet polenta with tomato sauce eggplant and chickpeas 
##                                                                                     7 
##                                                     millet with corn mango and shrimp 
##                                                                                    12 
##                                                                 millionaires meatloaf 
##                                                                                    18 
##                                                               millionaires shortbread 
##                                                                                   101 
##                                                                                mimosa 
##                                                                                     8 
##                                   minestrone with giant white beans and winter squash 
##                                                                                    74 
##                                         minestrone with shell beans and almond pistou 
##                                                                                     3 
##                                            mini almond cakes with chocolate or cherry 
##                                                                                    83 
##                                                               mini apple tartes tatin 
##                                                                                    24 
##                                            mini bell peppers stuffed with goat cheese 
##                                                                                     7 
##                                                           mini brie and apple quiches 
##                                                                                     7 
##                                                                        mini corn dogs 
##                                                                                     3 
##                                                               mini gingerbread houses 
##                                                                                     6 
##                                      mini meatball soup with broccoli and orecchiette 
##                                                                                   101 
##                                    mini peppers stuffed with tuna and olive rillettes 
##                                                                                     2 
##                                                                mini sweet potato pies 
##                                                                                    23 
##                                                              miniature home cured ham 
##                                                                                    14 
##                                                    mint chocolate chip ice cream cake 
##                                                                                    26 
##                                                                          mint chutney 
##                                                                                     9 
##                                                                            mint julep 
##                                                                                    23 
##                                                               mint or basil ice cream 
##                                                                                     7 
##                                                                     minty fruit salad 
##                                                                                    26 
##                                                                  minty yogurt chutney 
##                                                                                     6 
##                                                                miracle mushroom gravy 
##                                                                                    17 
##                                                       miso and apple glazed baked ham 
##                                                                                     5 
##                                                                           miso butter 
##                                                                                    10 
##                                                                     miso butterscotch 
##                                                                                     2 
##                                                                          miso chicken 
##                                                                                   499 
##                                        miso chicken in ginger leek and scallion broth 
##                                                                                    41 
##                                                                    miso chicken wings 
##                                                                                     7 
##                                                                miso french onion soup 
##                                                                                    37 
##                                                                  miso ginger dressing 
##                                                                                    66 
##                                                                  miso glazed eggplant 
##                                                                                    54 
##                                                           miso glazed eggplant slices 
##                                                                                     6 
##                                              miso glazed eggplant with a bowl of rice 
##                                                                                    18 
##                                                                      miso glazed fish 
##                                                                                   115 
##                                                          miso glazed grilled scallops 
##                                                                                    25 
##                                                                  miso glazed sea bass 
##                                                                                    27 
##                                                                       miso mayonnaise 
##                                                                                     6 
##                                                                    miso peanut spread 
##                                                                                     6 
##                                        miso sesame vinaigrette thats good on anything 
##                                                                                    46 
##                                                                            miso stock 
##                                                                                     9 
##                                                                       mission burrito 
##                                                                                    25 
##                                                   mission chinese foods cabbage salad 
##                                                                                    28 
##                                                                   mississippi mud pie 
##                                                                                    32 
##                                                                     mississippi roast 
##                                                                                   933 
##                                                                      mixed apples pie 
##                                                                                    55 
##                                    mixed bean and winter squash stew with fresh basil 
##                                                                                     6 
##                                                  mixed bean salad with pickled ginger 
##                                                                                     2 
##                                                         mixed berry and beet smoothie 
##                                                                                    16 
##                                                     mixed grain and blueberry muffins 
##                                                                                    25 
##                               mixed grains risotto with kale walnuts and black quinoa 
##                                                                                    17 
##                                        mixed greens galette with onions and chickpeas 
##                                                                                     7 
##                                                                            mixed nuts 
##                                                                                     5 
##                                          mixed red fruit apricot and hazelnut galette 
##                                                                                     1 
##                                                            mixed root vegetable saute 
##                                                                                     1 
##                                                                  mixed sausage paella 
##                                                                                    37 
##                                                                     mjs egg casserole 
##                                                                                     4 
##                               moan dut khnao kchei baked chicken with young jackfruit 
##                                                                                     1 
##                                                             mocha chocolate chip cake 
##                                                                                    83 
##                                                                       mocha ice cream 
##                                                                                    10 
##                                                                   mochi rice stuffing 
##                                                                                     4 
##                                                                 modern chicken potpie 
##                                                                                   176 
##                                                                      modern hot toddy 
##                                                                                     4 
##                                                                        modern timpano 
##                                                                                    35 
##                                                                               mofongo 
##                                                                                     1 
##                                                                      mofongo stuffing 
##                                                                                     1 
##                                               moist gingerbread cake with lemon glaze 
##                                                                                    53 
##                                                                       mojito iced tea 
##                                                                                     2 
##                                                           mojo chicken with pineapple 
##                                                                                    54 
##                                                                           mojo turkey 
##                                                                                    17 
##                                                      moka dupont a french icebox cake 
##                                                                                    98 
##                                        mokonuts rye cranberry chocolate chunk cookies 
##                                                                                   120 
##                                    mollie katzen inspired potato and broccoli burgers 
##                                                                                     3 
##                                                            molten chocolate babycakes 
##                                                                                    21 
##                                                                 molten chocolate cake 
##                                                                                    93 
##                                                       molten chocolate doughnut holes 
##                                                                                     6 
##                                                                     momofukus bo ssam 
##                                                                                   490 
##                                                                  moms famous rum cake 
##                                                                                    22 
##                                                                          monkey bread 
##                                                                                    17 
##                                                              monkfish a la provencale 
##                                                                                     6 
##                                                monkfish roasted with herbs and olives 
##                                                                                    30 
##                                                            monkfish with caper butter 
##                                                                                    36 
##                                                   monterey bay abalone meuniere style 
##                                                                                     2 
##                                                                     moo shu mushrooms 
##                                                                                    42 
##                                                                          moo shu pork 
##                                                                                    19 
##                                                                        moos manhattan 
##                                                                                     1 
##                                                           moqueca brazilian fish stew 
##                                                                                     9 
##                                                        moqueca brazilian seafood stew 
##                                                                                    42 
##                                                      more vegetable than egg frittata 
##                                                                                    82 
##                                               morning couscous with oranges and dates 
##                                                                                     6 
##                                                                 morning glory muffins 
##                                                                                   242 
##                                          morning oatmeal with cherries and pistachios 
##                                                                                     7 
##                                                          moroccan almond argan butter 
##                                                                                     2 
##                                                       moroccan baked fish with onions 
##                                                                                    46 
##                                  moroccan baked fish with potatoes peppers and olives 
##                                                                                    96 
##                                                    moroccan carrot blood orange salad 
##                                                                                    10 
##                                                                   moroccan carrot dip 
##                                                                                    11 
##                                                     moroccan carrot soup with mussels 
##                                                                                     2 
##                                                                  moroccan chicken pie 
##                                                                                    80 
##                                                                moroccan chicken salad 
##                                                                                     4 
##                                                         moroccan chickpeas with chard 
##                                                                                   170 
##                                                          moroccan cooked carrot salad 
##                                                                                    18 
##                                                 moroccan fava bean and vegetable soup 
##                                                                                    19 
##                                                                     moroccan herb jam 
##                                                                                    19 
##                                                               moroccan jewish tanzeya 
##                                                                                     3 
##                                                                     moroccan moufleta 
##                                                                                    11 
##                                                                     moroccan pancakes 
##                                                                                     7 
##                                                  moroccan semolina and almond cookies 
##                                                                                    44 
##                                                                    moroccan shakshuka 
##                                                                                    17 
##                                                        moroccan steamed lamb shoulder 
##                                                                                    13 
##                                                             moroccan stuffed tomatoes 
##                                                                                     2 
##                                                           moroccan style carrot salad 
##                                                                                     3 
##                                             moroccan style cornish hens with couscous 
##                                                                                     9 
##                                                   moroccan style pumpkin with lentils 
##                                                                                    30 
##                                                                  moroccan tomato soup 
##                                                                                    12 
##                                                                     mortadella mousse 
##                                                                                     3 
##                                                                           moscow mule 
##                                                                                    32 
##                                                                              mostarda 
##                                                                                     3 
##                                                                     mott and mulberry 
##                                                                                     2 
##                                                       moussaka with roasted mushrooms 
##                                                                                    40 
##                                    mozzarella in carrozza fried mozzarella sandwiches 
##                                                                                    64 
##                                     mozzarella with charred radicchio and salsa verde 
##                                                                                    18 
##                                                       mr micawbers favorite gin punch 
##                                                                                     3 
##                                                                   mrouzia lamb shanks 
##                                                                                    50 
##                                                              mrs sebastianis malfatti 
##                                                                                     1 
##                                                                          muddy puddle 
##                                                                                     1 
##                                                                       mughlai paratha 
##                                                                                    20 
##                                                                             muhammara 
##                                                                                    11 
##                                                muhammara red pepper and walnut spread 
##                                                                                    61 
##                                                                          mula espanol 
##                                                                                     1 
##                                    mulled cider with cardamom black pepper and ginger 
##                                                                                     3 
##                                                                      mulled manhattan 
##                                                                                     7 
##                                                                           mulled wine 
##                                                                                    14 
##                                                               mulled wine but chilled 
##                                                                                     5 
##                                         mulling spice cake with cream cheese frosting 
##                                                                                    70 
##                                                                           mumbai mule 
##                                                                                     6 
##                                           mung bean dal with apples and coconut tarka 
##                                                                                    16 
##                                                                    mung bean pancakes 
##                                                                                     6 
##                                               murdock recipe chocolate walnut cookies 
##                                                                                    10 
##                                                         murdock recipe vegetable soup 
##                                                                                     1 
##                                                                      murg malai kebab 
##                                                                                     1 
##                                                             mushroom and beef burgers 
##                                                                                    17 
##                                                           mushroom and beef meatballs 
##                                                                                    21 
##                                                             mushroom and beet borscht 
##                                                                                    25 
##                                                              mushroom and daikon soup 
##                                                                                     3 
##                                                         mushroom and fresh herb salad 
##                                                                                     6 
##                                                      mushroom and grain cheeseburgers 
##                                                                                     4 
##                                                            mushroom and greens gratin 
##                                                                                     7 
##                                                         mushroom and spinach frittata 
##                                                                                    38 
##                                                           mushroom and turkey burgers 
##                                                                                    18 
##                                                        mushroom and wild rice strudel 
##                                                                                     7 
##                                                                  mushroom barley soup 
##                                                                                     1 
##                                                                  mushroom bourguignon 
##                                                                                   640 
##                                                                mushroom bread pudding 
##                                                                                   135 
##                         mushroom bulgur spinach and turkey fritters with yogurt sauce 
##                                                                                     9 
##                                             mushroom burgers with almonds and spinach 
##                                                                                     5 
##                                                       mushroom chickpea hazelnut tart 
##                                                                                    13 
##                                               mushroom farro soup with parmesan broth 
##                                                                                    48 
##                                                         mushroom hash with black rice 
##                                                                                     7 
##                                                                      mushroom lasagna 
##                                                                                   118 
##                                     mushroom melt with parsley pesto kale and arugula 
##                                                                                     3 
##                                             mushroom mille feuille with tomato coulis 
##                                                                                    24 
##                                                                    mushroom miso soup 
##                                                                                    36 
##                                                           mushroom omelet with chives 
##                                                                                    17 
##                                                                mushroom parmesan tart 
##                                                                                   102 
##                                                               mushroom pasta stir fry 
##                                                                                    64 
##                                                                       mushroom potpie 
##                                                                                   155 
##                                                                  mushroom quesadillas 
##                                                                                    31 
##                                                                       mushroom ragout 
##                                                                                    84 
##                                                                 mushroom ragout gravy 
##                                                                                    18 
##                                                                   mushroom ragu pasta 
##                                                                                   107 
##                                                            mushroom risotto with peas 
##                                                                                   142 
##                                                                         mushroom soup 
##                                                                                   116 
##                                                                mushroom soup gratinee 
##                                                                                    37 
##                               mushroom spinach soup with cinnamon coriander and cumin 
##                                                                                   451 
##                                                 mushroom spring rolls in lettuce cups 
##                                                                                     1 
##                                                                     mushroom stir fry 
##                                                                                     6 
##                                                                         mushroom tart 
##                                                                                    38 
##                                                         mushroom toast with pea puree 
##                                                                                    12 
##                                                             mushroom udon noodle bowl 
##                                                                                    77 
##                                               mushrooms and chives with tofu croutons 
##                                                                                     3 
##                                                            mushrooms in lettuce wraps 
##                                                                                     2 
##                                                                    mushrooms on toast 
##                                                                                   210 
##                                     mussakhan roast chicken with sumac and red onions 
##                                                                                    65 
##                                                                          mussel pizza 
##                                                                                     6 
##                                                                        mussel risotto 
##                                                                                     6 
##                                                          mussels in broth with matcha 
##                                                                                     1 
##                                                                  mussels with chorizo 
##                                                                                    29 
##                                                                        mustard batons 
##                                                                                     3 
##                                             mustard salmon with spring vegetable stew 
##                                                                                     4 
##                                                           mustard shallot vinaigrette 
##                                                                                   122 
##                                                                   mustard vinaigrette 
##                                                                                    22 
##                                                  mustardy braised rabbit with carrots 
##                                                                                    11 
##                                       muzaffar seviyan sweet vermicelli with cardamom 
##                                                                                     6 
##                                                            my favorite bread stuffing 
##                                                                                     5 
##                                                          my mothers chicken spaghetti 
##                                                                                     3 
##                                   my pain catalan with extra tomatoes and goat cheese 
##                                                                                     1 
##                                                                 naan indian flatbread 
##                                                                                    49 
##                                                                nam prik pao chile jam 
##                                                                                     2 
##                                                    namoura syrup soaked semolina cake 
##                                                                                    73 
##                                                       nana joses chocolate pecan cake 
##                                                                                    21 
##                                                                          nanaimo bars 
##                                                                                    84 
##                                                                 nanas stuffed cabbage 
##                                                                                     1 
##                                                                        nancy macarons 
##                                                                                     6 
##                                           napa cabbage kimchi with steamed pork belly 
##                                                                                     1 
##                                          narjissiya with asparagus halloumi and sumac 
##                                                                                    15 
##                                                     nashville style hot fried chicken 
##                                                                                    45 
##                                        nasi goreng ayam indonesian chicken fried rice 
##                                                                                    17 
##                                                              nava atlass quinoa pilaf 
##                                                                                     3 
##                                      nava atlass spinach leek and potato matzo gratin 
##                                                                                     2 
##                                                      nava atlass sweet potato tzimmes 
##                                                                                     9 
##                                                    neapolitan easter bread casatiello 
##                                                                                    18 
##                                                       neapolitan pasta with swordfish 
##                                                                                    18 
##                                                      neck bones pork neck and noodles 
##                                                                                    18 
##                                                       nectarine and blueberry galette 
##                                                                                    70 
##                                            nectarine and peach jam with lemon verbena 
##                                                                                     9 
##                                             nectarine or peach and blackberry galette 
##                                                                                    13 
##                                      nectarine raspberry cobbler with ginger biscuits 
##                                                                                    42 
##                                                                        nectarine tart 
##                                                                                    36 
##                                                  nectarines and berries in wine sauce 
##                                                                                     2 
##                                                                               negroni 
##                                                                                    67 
##                                                                  negroni and the goat 
##                                                                                     4 
##                                                                        negroni bianco 
##                                                                                    10 
##                                                          nem nuong vietnamese sausage 
##                                                                                    10 
##                                                                  new classic brownies 
##                                                                                    85 
##                                                                        new crab louis 
##                                                                                     9 
##                                                                   new crop applesauce 
##                                                                                    31 
##                                                              new england roast turkey 
##                                                                                    24 
##                                                                  new mexican hot dish 
##                                                                                   123 
##                                                                    new mexican pozole 
##                                                                                    65 
##                                                       new potatoes baked in parchment 
##                                                                                    20 
##                                                 new shrimp louie poached shrimp salad 
##                                                                                    42 
##                                                        new years black eyed pea salad 
##                                                                                    29 
##                                                         new york deli style rye bread 
##                                                                                    57 
##                                                                    new york sour shot 
##                                                                                     7 
##                                                                 next day fried greens 
##                                                                                     6 
##                                nicoise salad with basil and anchovy lemon vinaigrette 
##                                                                                    39 
##                                              niku jyaga japanese beef and potato stew 
##                                                                                    19 
##                                         nishime dashi braised vegetables with chicken 
##                                                                                     5 
##                                                     no bake blueberry cheesecake bars 
##                                                                                    46 
##                                                         no bake butterscotch custards 
##                                                                                    89 
##                                                               no bake cheesecake bars 
##                                                                                    34 
##                             no bake cheesecake with caramelized pineapple and coconut 
##                                                                                    11 
##                                                         no bake chocolate mousse bars 
##                                                                                   117 
##                                                                       no bake cookies 
##                                                                                    81 
##                                                                  no bake granola bars 
##                                                                                     7 
##                                              no bake lemon custards with strawberries 
##                                                                                   241 
##                                                         no bake mango lime cheesecake 
##                                                                                    53 
##                                                                    no churn ice cream 
##                                                                                     7 
##                                                                         no fuss grits 
##                                                                                    12 
##                                                                  no fuss jerk chicken 
##                                                                                    40 
##                                                                        no knead bread 
##                                                                                  1653 
##                                                                 no knead dinner rolls 
##                                                                                    48 
##                                                                    no smoker pastrami 
##                                                                                    18 
##                                                                nomad espresso martini 
##                                                                                     1 
##                                                                noodle and apple kugel 
##                                                                                    20 
##                                            noodle bowl with broccoli and smoked trout 
##                                                                                     4 
##                                         noodle bowl with mushrooms spinach and salmon 
##                                                                                    34 
##                        noodle bowl with soba enoki mushrooms sugar snap peas and tofu 
##                                                                                     5 
##                                                          nordic whole grain rye bread 
##                                                                                    72 
##                                                                             noreaster 
##                                                                                    37 
##                                                    north african bean and squash soup 
##                                                                                     3 
##                                 north african bean stew with barley and winter squash 
##                                                                                   188 
##                                                               north african meatballs 
##                                                                                   349 
##                                              northeastern potato eggplant and peppers 
##                                                                                     2 
##                                                 northern greek mushroom and onion pie 
##                                                                                    14 
##                                                                  norwegian apple cake 
##                                                                                    60 
##                                                                 not quite picon biere 
##                                                                                     3 
##                                                       not quite whole grain baguettes 
##                                                                                    24 
##                                             not risotto with shrimp and winter squash 
##                                                                                     1 
##                                          not too sweet wok popped coconut kettle corn 
##                                                                                     7 
##                                                                nova scotia fish cakes 
##                                                                                    47 
##                                                                        noyaux extract 
##                                                                                    19 
##                                                                  nutella banana bread 
##                                                                                   194 
##                                                                   nutella panna cotta 
##                                                                                    18 
##                                                                         oak ice cream 
##                                                                                     4 
##                                                                oat and tahini cookies 
##                                                                                    25 
##                                                            oat milk chocolate pudding 
##                                                                                   198 
##                                        oatmeal and teff with cinnamon and dried fruit 
##                                                                                     7 
##                                                 oatmeal buttermilk blueberry pancakes 
##                                                                                    40 
##                                           oatmeal creme brulee with almond and orange 
##                                                                                     5 
##                                                              oatmeal sandwich cookies 
##                                                                                    39 
##                                                                     oatmeal tabbouleh 
##                                                                                     5 
##                                         oats with amaranth chia seeds and blueberries 
##                                                                                     9 
##                                                                  oaxaca old fashioned 
##                                                                                    11 
##                                                       oden with homemade shrimp balls 
##                                                                                    17 
##                                                                   off oven roast beef 
##                                                                                    98 
##                                                                            oh my word 
##                                                                                     4 
##                                               oil free spinach with ginger and garlic 
##                                                                                     4 
##                                                                         okonomi latke 
##                                                                                    15 
##                                                                 okra and potato salad 
##                                                                                    19 
##                               okra avocado and tomato salad with chili and lime juice 
##                                                                                     7 
##                                                         okra salad with toasted cumin 
##                                                                                    14 
##                                                                         old fashioned 
##                                                                                    22 
##                                                    old fashioned butterscotch pudding 
##                                                                                   143 
##                                                      old fashioned butterscotch sauce 
##                                                                                     3 
##                                                   old fashioned chocolate pudding pie 
##                                                                                    20 
##                                                     old fashioned doughnut bundt cake 
##                                                                                   138 
##                                                          old fashioned scalloped corn 
##                                                                                    25 
##                                                         old fashioned strawberry cake 
##                                                                                    77 
##                                                                       olive gremolata 
##                                                                                     1 
##                                                        olive oil and coconut brownies 
##                                                                                    21 
##                                                                    olive oil bechamel 
##                                                                                    14 
##                                         olive oil braised chickpeas and broccoli rabe 
##                                                                                    76 
##                                                      olive oil brownies with sea salt 
##                                                                                   159 
##                                                  olive oil bundt cake with beet swirl 
##                                                                                    24 
##                                                                        olive oil cake 
##                                                                                   226 
##                                                                     olive oil challah 
##                                                                                   164 
##                                                                    olive oil crackers 
##                                                                                    16 
##                                  olive oil granola with dried apricots and pistachios 
##                                                                                   165 
##                                                             olive oil mashed potatoes 
##                                                                                    63 
##                                                                       olive oil matzo 
##                                                                                    32 
##                                                                   olive oil plum cake 
##                                                                                    26 
##                                         olive oil poached cod with green pepper puree 
##                                                                                     7 
##                                                     olive oil poached fish with pasta 
##                                                                                     1 
##                                olive oil poached halibut nuggets with garlic and mint 
##                                                                                    14 
##                                                              olive oil poached salmon 
##                                                                                     4 
##                                                               olive oil refried beans 
##                                                                                    76 
##                                    olive oil roasted chicken with caramelized carrots 
##                                                                                   184 
##                                                olive oil walnut cake with pomegranate 
##                                                                                    38 
##                                                              olive oil zucchini bread 
##                                                                                   326 
##                                                                    olive walnut pasta 
##                                                                                    62 
##                                                                                omelet 
##                                                                                    45 
##                                                                     omelet mousseline 
##                                                                                    24 
##                                              omelets with roasted vegetables and feta 
##                                                                                     3 
##                                                          omurice japanese rice omelet 
##                                                                                    12 
##                                                                  one bowl carrot cake 
##                                                                                    39 
##                                                    one bowl chocolate mayonnaise cake 
##                                                                                    91 
##                                                                  one hour texas chili 
##                                                                                     7 
##                                                          one pan bruschetta spaghetti 
##                                                                                    86 
##                                      one pan chicken thighs with coconut creamed corn 
##                                                                                    68 
##                                            one pan chicken with peperonata and olives 
##                                                                                    36 
##                                one pan coconut curry rice with chicken and vegetables 
##                                                                                   219 
##                                                  one pan crispy spaghetti and chicken 
##                                                                                   136 
##                                               one pan feta pasta with cherry tomatoes 
##                                                                                    47 
##                                                   one pan one pot thanksgiving dinner 
##                                                                                    98 
##                                                    one pan orzo with spinach and feta 
##                                                                                   492 
##                                                     one pan pasta with garlic and oil 
##                                                                                     2 
##                                                  one pan pasta with harissa bolognese 
##                                                                                   130 
##                                       one pan pork chops with feta snap peas and mint 
##                                                                                   148 
##                                             one pan roasted fish with cherry tomatoes 
##                                                                                   216 
##                                        one pan shrimp and pearl couscous with harissa 
##                                                                                    54 
##                                                       one pan shrimp enchiladas verde 
##                                                                                    98 
##                                       one pan spicy meatballs with lentils and fennel 
##                                                                                    76 
##                                                     one pan tuna white bean casserole 
##                                                                                   125 
##                                                       one pot barbecue pork and beans 
##                                                                                    29 
##                                     one pot braised chard with gnocchi peas and leeks 
##                                                                                    85 
##                           one pot braised chicken with coconut milk tomato and ginger 
##                                                                                   335 
##                                        one pot chicken and rice with ginger and cumin 
##                                                                                    69 
##                                                       one pot creamy pasta and greens 
##                                                                                     6 
##                                one pot french onion soup with garlic gruyere croutons 
##                                                                                    59 
##                                      one pot french onion soup with porcini mushrooms 
##                                                                                   105 
##                                               one pot japanese curry chicken and rice 
##                                                                                   143 
##                                                           one pot meatballs and sauce 
##                                                                                    50 
##                                                one pot mujadara with leeks and greens 
##                                                                                   137 
##                                              one pot orzo with shrimp tomato and feta 
##                                                                                    31 
##                                                  one pot pasta with ricotta and lemon 
##                                                                                   474 
##                                                one pot pasta with sausage and spinach 
##                                                                                    78 
##                                                                one pot rice and beans 
##                                                                                   168 
##                                    one pot smoky fish with tomato olives and couscous 
##                                                                                   155 
##                                       one pot spaghetti with cherry tomatoes and kale 
##                                                                                   468 
##                                        one pot spanish style shrimp and chorizo pasta 
##                                                                                    48 
##                                             one pot turmeric coconut rice with greens 
##                                                                                   455 
##                                                          one pot zucchini basil pasta 
##                                                                                   101 
##                                                              onion and thyme frittata 
##                                                                                     8 
##                                                     onion and zucchini frittata to go 
##                                                                                     7 
##                                                                       onion marmalade 
##                                                                                    10 
##                                                                          onion quiche 
##                                                                                    58 
##                                                                        onion sandwich 
##                                                                                    66 
##                                                        onion soup gratinee with cider 
##                                                                                     1 
##                                                                            onion tart 
##                                                                                   107 
##                                                       onion tart with bacon or olives 
##                                                                                     7 
##                                                                  oops trifle parfaits 
##                                                                                     4 
##                                                                    open blueberry pie 
##                                                                                     3 
##                                                      open faced hot turkey sandwiches 
##                                                                                     6 
##                                                              orange almond mandelbrot 
##                                                                                    15 
##                                                                orange and olive salad 
##                                                                                     1 
##                                               orange and radish salad with pistachios 
##                                                                                    24 
##                                                                           orange beef 
##                                                                                   288 
##                                                                 orange butter cookies 
##                                                                                    39 
##                                                              orange cake ancona style 
##                                                                                    17 
##                                                              orange cardamom pancakes 
##                                                                                    33 
##                                                        orange chicken with vegetables 
##                                                                                    20 
##                                                          orange cranberry glazed cake 
##                                                                                    45 
##                                                      orange creamsicle ice cream cake 
##                                                                                    24 
##                                                                 orange currant scones 
##                                                                                    68 
##                                                                 orange marmalade cake 
##                                                                                   145 
##                                                                        orange savarin 
##                                                                                     6 
##                                orange scented sweet potato gratin with apple and pear 
##                                                                                     6 
##                                          orange scented winter squash and carrot soup 
##                                                                                     8 
##                                                 orange sorbet with blood orange salad 
##                                                                                     1 
##                                                                          orchid thief 
##                                                                                    12 
##                 orecchiette with basil and pistachio pesto and green and yellow beans 
##                                                                                     8 
##                                         orecchiette with broccoli rabe and red pepper 
##                                                                                     5 
##                                       orecchiette with brussels sprouts and bratwurst 
##                                                                                    84 
##                                          orecchiette with cherry tomatoes and arugula 
##                                                                                   105 
##                                         orecchiette with corn jalapeno feta and basil 
##                                                                                   111 
##                                                   orecchiette with fennel and sausage 
##                                                                                    38 
##                             orecchiette with grated squash walnuts and ricotta salata 
##                                                                                     9 
##                                            orecchiette with nduja shrimp and tomatoes 
##                                                                                    12 
##                                              orecchiette with raw and cooked tomatoes 
##                                                                                     1 
##                                orecchiette with sweet sausage and broccoli rabe pesto 
##                                                                                    18 
##                              orecchiette with swiss chard red peppers and goat cheese 
##                                                                                     9 
##                                                orecchiette with tomato sauce and kale 
##                                                                                    42 
##                                                      original chatham artillery punch 
##                                                                                    15 
##                                                                   original plum torte 
##                                                                                  1012 
##                                                      orzo salad with peppers and feta 
##                                                                                    15 
##                                                      orzo with peas and parsley pesto 
##                                                                                    23 
##                                                     orzo with summer squash and pesto 
##                                                                                    23 
##                                                                  osso buco portobello 
##                                                                                     5 
##                                                          osso buco style turkey necks 
##                                                                                     6 
##                                                  osso buco with orange herb gremolata 
##                                                                                    22 
##                                                    otis lees detroit famous poundcake 
##                                                                                   199 
##                                                                our lady of the harbor 
##                                                                                     1 
##                                                                          out of state 
##                                                                                     1 
##                                                                      outdoor fish fry 
##                                                                                    16 
##                                                     outdoor fried chicken for a crowd 
##                                                                                     8 
##                                                                     outdoor porchetta 
##                                                                                    10 
##                                                                            oven bacon 
##                                                                                    56 
##                                         oven baked grains with pecans and maple syrup 
##                                                                                     1 
##                                                                     oven baked millet 
##                                                                                     1 
##                                                       oven barbecued pimenton brisket 
##                                                                                     3 
##                                oven braised guinness beef stew with horseradish cream 
##                                                                                    35 
##                             oven fried patatas bravas crispy potatoes with two sauces 
##                                                                                    92 
##                                                                            oven fries 
##                                                                                    26 
##                                    oven fries with tahini yogurt and smoky sweet nuts 
##                                                                                    11 
##                                      oven poached pacific sole with lemon caper sauce 
##                                                                                    48 
##                                                         oven roasted chicken shawarma 
##                                                                                   933 
##                                               oven roasted mussels with fresh spinach 
##                                                                                     5 
##                              oven roasted salmon quinoa and asparagus with wasabi oil 
##                                                                                     3 
##                                                             oven roasted weekend beef 
##                                                                                    29 
##                                                                      oven smoked ribs 
##                                                                                    16 
##                                                oven steamed arctic char with piperade 
##                                                                                     3 
##                                oven steamed cod or mahi mahi in green tomatillo salsa 
##                                                                                     8 
##                                                                   oven steamed salmon 
##                                                                                    58 
##                               oven steamed salmon with lentils and sun dried tomatoes 
##                                                                                     4 
##                                                                overnight french toast 
##                                                                                   132 
##                                                                        overnight oats 
##                                                                                   165 
##                                                 oxtail stew in peanut sauce kare kare 
##                                                                                    29 
##                                           oyakodon japanese chicken and egg rice bowl 
##                                                                                    41 
##                                                            oyster and blue cheese pie 
##                                                                                     7 
##                                               oyster pan roast with sea urchin butter 
##                                                                                     2 
##                                       oyster pie with leeks bacon and mashed potatoes 
##                                                                                    19 
##                                                                 oyster stuffing cakes 
##                                                                                     4 
##                                                                  oysters with sausage 
##                                                                                     1 
##                                                                      ozoni mochi soup 
##                                                                                     2 
##                                                                   pacific cod ceviche 
##                                                                                     2 
##                                                                           pad kee mao 
##                                                                                   122 
##                                                                              pad thai 
##                                                                                   163 
##                                                             pad thai style rice salad 
##                                                                                     2 
##                                                                  paella master recipe 
##                                                                                    31 
##                                                                    paella of the land 
##                                                                                    15 
##                                                                     paella of the sea 
##                                                                                    34 
##                                                     paella with shrimp and fava beans 
##                                                                                    14 
##                                                                      pain au chocolat 
##                                                                                     5 
##                                                                        pain au levain 
##                                                                                     6 
##                                                              pakistani potato samosas 
##                                                                                    35 
##                                                                  palm sugar pecan pie 
##                                                                                     5 
##                                                                                paloma 
##                                                                                    42 
##                                                                            pan bagnat 
##                                                                                     1 
##                                                           pan baked lemon almond tart 
##                                                                                   336 
##                                                                        pan con tomate 
##                                                                                    39 
##                                         pan cooked brussels sprouts with green garlic 
##                                                                                     3 
##                                           pan cooked celery with tomatoes and parsley 
##                                                                                     7 
##                                      pan cooked summer squash with tomatoes and basil 
##                                                                                    26 
##                                                     pan de jamon venezuelan ham bread 
##                                                                                     6 
##                                                                         pan de muerto 
##                                                                                     1 
##                                              pan fried baby artichokes with gremolata 
##                                                                                     5 
##                                                          pan fried breaded pork chops 
##                                                                                    16 
##                                                              pan fried broccoli stems 
##                                                                                    20 
##                                       pan fried eggplant with chile honey and ricotta 
##                                                                                    56 
##                                 pan fried halibut with spiced chickpea and herb salad 
##                                                                                    34 
##                                                               pan fried risotto cakes 
##                                                                                     4 
##                                           pan fried salmon with green coconut chutney 
##                                                                                    10 
##                                    pan griddled sweet potatoes with miso ginger sauce 
##                                                                                    53 
##                                                                             pan pizza 
##                                                                                   223 
##                                                                       pan pizza dough 
##                                                                                    36 
##                                                           pan roasted baby artichokes 
##                                                                                     9 
##                              pan roasted cauliflower with garlic parsley and rosemary 
##                                                                                   136 
##                                      pan roasted cauliflower with kale pesto and feta 
##                                                                                     8 
##                                                    pan roasted chicken in cream sauce 
##                                                                                    99 
##                                              pan roasted chicken with chiles de arbol 
##                                                                                     8 
##                                                     pan roasted corn and tomato salad 
##                                                                                    20 
##                                                  pan roasted duck with wild mushrooms 
##                                                                                    13 
##                                          pan roasted eggplant with peanut chile sauce 
##                                                                                    71 
##                                             pan roasted fish fillets with herb butter 
##                                                                                   230 
##                                           pan roasted green beans with golden almonds 
##                                                                                    69 
##                                            pan roasted pork chops with apple fritters 
##                                                                                    19 
##                                           pan roasted pork chops with pea shoot pesto 
##                                                                                     7 
##                                                           pan roasted root vegetables 
##                                                                                     5 
##                                                      pan roasted salmon with jalapeno 
##                                                                                   115 
##                              pan roasted shrimp with mezcal tomatoes and arbol chiles 
##                                                                                    10 
##                                              pan roasted spiced cauliflower with peas 
##                                                                                    47 
##                                  pan seared asparagus salad with frisee and fried egg 
##                                                                                    11 
##                                               pan seared asparagus with crispy garlic 
##                                                                                    21 
##                                                                      pan seared gyoza 
##                                                                                    33 
##                                              pan seared hake and asparagus with aioli 
##                                                                                    40 
##                                      pan seared mackerel with sweet peppers and thyme 
##                                                                                    10 
##                                                  pan seared marinated halibut fillets 
##                                                                                   154 
##                            pan seared oatmeal with warm fruit compote and cider syrup 
##                                                                                    14 
##                                                              pan seared ranch chicken 
##                                                                                    46 
##                                       pan seared salmon with celery olives and capers 
##                                                                                    87 
##                                                  pan seared steak with red wine sauce 
##                                                                                    48 
##                                       pan seared tilefish with garlic herbs and lemon 
##                                                                                     9 
##                                         pan seared veal steaks with green peppercorns 
##                                                                                     2 
##                                                                                panade 
##                                                                                     4 
##                            pancit palabok rice noodles with chicken ragout and shrimp 
##                                                                                     6 
##                                                      pane integrale whole wheat bread 
##                                                                                    15 
##                                                                               panelle 
##                                                                                    13 
##                                                               panettone bread pudding 
##                                                                                    31 
##                                  panini with artichoke hearts spinach and red peppers 
##                                                                                    29 
##                                                                panko fried vegetables 
##                                                                                     3 
##                                                       panna cotta with dulce de leche 
##                                                                                     2 
##                                                     panna cotta with figs and berries 
##                                                                                    16 
##                                                         panna cotta with ginger syrup 
##                                                                                     2 
##                                                                     pantry crumb cake 
##                                                                                   332 
##                                                                            panzanella 
##                                                                                     4 
##                                                                  panzanella of plenty 
##                                                                                     6 
##                                                    panzanella with crisp chicken skin 
##                                                                                    13 
##                                                  panzanella with mozzarella and herbs 
##                                                                                    98 
##                                                panzanella with winter squash and sage 
##                                                                                    14 
##                                                            paola di mauros roman lamb 
##                                                                                    16 
##                                  papaya and blueberry salad with ginger lime dressing 
##                                                                                     3 
##                                                                           paper plane 
##                                                                                    11 
##                                    pappardelle with beets beet greens and goat cheese 
##                                                                                     3 
##                          pappardelle with fresh ricotta squash blossoms and basil oil 
##                                                                                     9 
##                                                   pappardelle with greens and ricotta 
##                                                                                    61 
##                                                    pappardelle with pancetta and peas 
##                                                                                    33 
##                                                                  parboiled brown rice 
##                                                                                     1 
##                                                             parmesan and dill popcorn 
##                                                                                    12 
##                                                                        parmesan broth 
##                                                                                    33 
##                                    parmesan chicken breast with tomato and herb salad 
##                                                                                    15 
##                                                                     parmesan crackers 
##                                                                                     9 
##                                                               parmesan cream crackers 
##                                                                                    46 
##                                                         parmesan crusted rack of lamb 
##                                                                                    43 
##                                                                   parmesan lamb chops 
##                                                                                    17 
##                                           parmesan white bean soup with hearty greens 
##                                                                                   180 
##                                                             parsley and romaine salad 
##                                                                                     2 
##                                                                        parsley hummus 
##                                                                                    13 
##                                                                         parsley pesto 
##                                                                                    13 
##                                          parsley salad with barley dill and hazelnuts 
##                                                                                     8 
##                                             parsley salad with fennel and horseradish 
##                                                                                     8 
##                                                                     parsleyed noodles 
##                                                                                    19 
##                                                 parsnip and carrot soup with tarragon 
##                                                                                    11 
##                                                                       parsnip ecrasse 
##                                                                                     8 
##                                                                        parsnip gratin 
##                                                                                    12 
##                                                parsnip gratin with turmeric and cumin 
##                                                                                    33 
##                              parsnip sheet cake with cream cheese frosting and ginger 
##                                                                                     8 
##                                                      parsnips and apples with marsala 
##                                                                                     8 
##                                                                       party picadillo 
##                                                                                     4 
##                                       passover inspired braised lamb with dried fruit 
##                                                                                    32 
##                                                        pasta aglio olio e peperoncino 
##                                                                                    84 
##                                                pasta aglio olio with butternut squash 
##                                                                                   122 
##                                                                   pasta alla genovese 
##                                                                                    85 
##                                                                     pasta alla gricia 
##                                                                                     4 
##                                                                      pasta alla norma 
##                                                                                   139 
##                                                               pasta alla norma my way 
##                                                                                    50 
##                                                                pasta alla norma sorta 
##                                                                                   126 
##                                                                      pasta alla vodka 
##                                                                                   210 
##                                                                     pasta amatriciana 
##                                                                                     9 
##                                                              pasta beans and tomatoes 
##                                                                                    36 
##                                          pasta e ceci italian pasta and chickpea stew 
##                                                                                   498 
##                                                                       pasta e fagioli 
##                                                                                     4 
##                                 pasta fredda with cherry tomatoes anchovies and herbs 
##                                                                                    67 
##                                                                       pasta primavera 
##                                                                                    38 
##                                               pasta primavera with asparagus and peas 
##                                                                                   361 
##                                          pasta salad with marinated tomatoes and tuna 
##                                                                                     9 
##                                      pasta salad with roasted eggplant chile and mint 
##                                                                                    91 
##                                  pasta salad with summer tomatoes basil and olive oil 
##                                                                                    84 
##                                                                          pasta tahdig 
##                                                                                   104 
##                                           pasta with anchovies garlic chiles and kale 
##                                                                                    90 
##                                                    pasta with artichokes and pancetta 
##                                                                                    48 
##                                              pasta with asparagus arugula and ricotta 
##                                                                                    44 
##                                           pasta with bacon cheese lemon and pine nuts 
##                                                                                    91 
##                                                          pasta with beans and mussels 
##                                                                                     7 
##                                                  pasta with brown butter and parmesan 
##                                                                                   119 
##                                                      pasta with burst cherry tomatoes 
##                                                                                   233 
##                             pasta with caramelized cabbage anchovies and bread crumbs 
##                                                                                   182 
##                    pasta with caramelized onion swiss chard and garlicky bread crumbs 
##                                                                                    74 
##                                  pasta with caramelized peppers anchovies and ricotta 
##                                                                                    93 
##                                                                pasta with cauliflower 
##                                                                                    65 
##                                                 pasta with cauliflower bacon and sage 
##                                                                                    63 
##                                  pasta with cauliflower spicy tomato sauce and capers 
##                                                                                    46 
##                                                    pasta with chickpeas and a negroni 
##                                                                                    70 
##                                         pasta with chickpeas chorizo and bread crumbs 
##                                                                                    26 
##                                                           pasta with chinese broccoli 
##                                                                                    10 
##                                                 pasta with chorizo chickpeas and kale 
##                                                                                    49 
##                                                  pasta with collard greens and onions 
##                                                                                    48 
##                                                     pasta with double sun dried sauce 
##                                                                                     3 
##                                                     pasta with foie gras and truffles 
##                                                                                     4 
##                                                 pasta with fresh herbs lemon and peas 
##                                                                                    97 
##                                                         pasta with fresh tomato sauce 
##                                                                                     9 
##                                             pasta with fresh tomato sauce and ricotta 
##                                                                                    74 
##                                              pasta with fried lemons and chile flakes 
##                                                                                   275 
##                                                           pasta with funghi trifolati 
##                                                                                     6 
##                                       pasta with garlicky anchovies and broccoli rabe 
##                                                                                    50 
##                                   pasta with garlicky spinach and buttered pistachios 
##                                                                                   138 
##                                           pasta with green beans and almond gremolata 
##                                                                                    86 
##                                                           pasta with green puttanesca 
##                                                                                    97 
##                                    pasta with kale pesto and roasted butternut squash 
##                                                                                   206 
##                                        pasta with marinated tomatoes and summer herbs 
##                                                                                    85 
##                                                   pasta with meatballs and herb sauce 
##                                                                                    17 
##                                            pasta with mint basil and fresh mozzarella 
##                                                                                    83 
##                                                   pasta with morels peas and parmesan 
##                                                                                    42 
##                                                     pasta with mushrooms and broccoli 
##                                                                                    19 
##                                                    pasta with mushrooms and gremolata 
##                                                                                    17 
##                                             pasta with mushrooms fried eggs and herbs 
##                                                                                    29 
##                                                    pasta with mussels in tomato sauce 
##                                                                                    24 
##                                          pasta with mussels tomatoes and fried capers 
##                                                                                    46 
##                                                         pasta with parsnips and bacon 
##                                                                                   177 
##                                                pasta with peas prosciutto and lettuce 
##                                                                                    25 
##                                                    pasta with pepper and tomato sauce 
##                                                                                     9 
##                                                                      pasta with pesto 
##                                                                                    27 
##                                                       pasta with portobello mushrooms 
##                                                                                    70 
##                                                 pasta with radicchio bacon and pecans 
##                                                                                    37 
##                                         pasta with radicchio gorgonzola and hazelnuts 
##                                                                                    22 
##                                       pasta with roast chicken currants and pine nuts 
##                                                                                    34 
##                                     pasta with roasted broccoli almonds and anchovies 
##                                                                                    51 
##                                        pasta with roasted cauliflower and blue cheese 
##                                                                                   146 
##                                         pasta with roasted eggplant pepper and garlic 
##                                                                                     2 
##                                        pasta with roasted red peppers and goat cheese 
##                                                                                    18 
##                                   pasta with roasted winter squash and ricotta salata 
##                                                                                     9 
##                                                pasta with salsa crudo and green beans 
##                                                                                     1 
##                                                        pasta with sardines and fennel 
##                                                                                    56 
##                                           pasta with sardines bread crumbs and capers 
##                                                                                   111 
##                                                           pasta with sausage and parm 
##                                                                                    25 
##                                pasta with sausage caramelized cabbage and goat cheese 
##                                                                                    48 
##                                       pasta with sausage squash and sage brown butter 
##                                                                                   141 
##                                         pasta with seared zucchini and ricotta salata 
##                                                                                    18 
##                                                   pasta with shell beans and tomatoes 
##                                                                                     1 
##                                  pasta with spicy sausage broccoli rabe and chickpeas 
##                                                                                    72 
##                                pasta with spicy sausages tomatoes rosemary and olives 
##                                                                                    22 
##                                                         pasta with tomatoes and beans 
##                                                                                    22 
##                                     pasta with tomatoes capers olives and breadcrumbs 
##                                                                                    69 
##                                                pasta with tomatoes greens and ricotta 
##                                                                                    13 
##                                                  pasta with tuna capers and scallions 
##                                                                                   104 
##                                                        pasta with venison and porcini 
##                                                                                     1 
##                                             pasta with walnut sauce and broccoli raab 
##                                                                                    21 
##                                          pasta with wilted greens bacon and fried egg 
##                                                                                    45 
##                                                 pasta with winter squash and tomatoes 
##                                                                                    19 
##                                                          pasta with zucchini and mint 
##                                                                                    10 
##                                              pasta with zucchini feta and fried lemon 
##                                                                                   179 
##                                                        pastel israeli spiced meat pie 
##                                                                                    86 
##                                                                              pasteles 
##                                                                                    11 
##                                          pastelillos de guayaba guava cheese pastries 
##                                                                                    16 
##                                            pastelitos guava and cream cheese pastries 
##                                                                                    11 
##                                                                              pastelon 
##                                                                                    43 
##                                                                      pastis made easy 
##                                                                                     1 
##                                pastitsio greek baked pasta with cinnamon and tomatoes 
##                                                                                    37 
##                               pastrami hash with confit potatoes parsley and shallots 
##                                                                                    12 
##                            pastry nests with poached pears and feta and saffron cream 
##                                                                                     8 
##                                                                          pate a choux 
##                                                                                    14 
##                                         pate a choux for cheese puffs and cream puffs 
##                                                                                    10 
##                                                                       patra ni machhi 
##                                                                                    15 
##                                                                           patty melts 
##                                                                                    29 
##                                                                 paul buxmans biscuits 
##                                                                                     9 
##                                                                        pawpaw pudding 
##                                                                                    12 
##                                                                  pbj sandwich cookies 
##                                                                                     6 
##                                                                 pea dip with parmesan 
##                                                                                    12 
##                                                                 peach almond smoothie 
##                                                                                     4 
##                                                                 peach and blue cheese 
##                                                                                     4 
##                                    peach and blueberry cobbler with hazelnut biscuits 
##                                                                                    24 
##                                                                 peach buttermilk soup 
##                                                                                     4 
##                                                         peach compote with rose water 
##                                                                                     1 
##                                                                peach crumble slab pie 
##                                                                                    83 
##                                                                       peach doughnuts 
##                                                                                     9 
##                                                             peach focaccia with thyme 
##                                                                                    71 
##                                                            peach or apricot ice cream 
##                                                                                     6 
##                                                                    peach polenta cake 
##                                                                                    85 
##                                                                       peach poundcake 
##                                                                                   308 
##                                                               peach puree vinaigrette 
##                                                                                     1 
##                                                        peach raspberry ice cream cake 
##                                                                                    24 
##                                                                   peach raspberry pie 
##                                                                                    22 
##                             peach upside down skillet cake with bourbon whipped cream 
##                                                                                   102 
##                                                                peach vanilla smoothie 
##                                                                                     5 
##                                                                 peaches and cream pie 
##                                                                                   105 
##                                                                   peaches in red wine 
##                                                                                     2 
##                                                               peaches with zabaglione 
##                                                                                    10 
##                                                                peacock alley martinez 
##                                                                                     4 
##                                                                         peanut butter 
##                                                                                     3 
##                                      peanut butter and chocolate ice cream sandwiches 
##                                                                                     3 
##                                                     peanut butter and pickle sandwich 
##                                                                                   183 
##                                                                   peanut butter balls 
##                                                                                    52 
##                                                         peanut butter blackberry bars 
##                                                                                    77 
##                                                                peanut butter blossoms 
##                                                                                   291 
##                                                                peanut butter brownies 
##                                                                                    83 
##                                                                 peanut butter cookies 
##                                                                                   190 
##                                                               peanut butter ice cream 
##                                                                                     6 
##                                                            peanut butter miso cookies 
##                                                                                   362 
##                                                            peanut butter no bake bars 
##                                                                                    38 
##                                                         peanut butter paprika cookies 
##                                                                                    20 
##                                                                     peanut butter pie 
##                                                                                    65 
##                                      peanut butter sandwich with sriracha and pickles 
##                                                                                   157 
##                                                              peanut butter wafer cake 
##                                                                                    83 
##                                                                  peanut chicken wings 
##                                                                                    29 
##                                                                         peanut dukkah 
##                                                                                     1 
##                                                           peanut laddoo buckeye balls 
##                                                                                    19 
##                                                            peanut noodles with shrimp 
##                                                                                   116 
##                                                      peanut shortbread with honeycomb 
##                                                                                   115 
##                                                          pear and almond danish braid 
##                                                                                    34 
##                                                                pear and apple souffle 
##                                                                                     9 
##                                     pear and arugula smoothie with ginger and walnuts 
##                                                                                    13 
##                                                          pear and frangipane crostata 
##                                                                                    25 
##                                                              pear and red wine sorbet 
##                                                                                     9 
##                                                       pear apple butter with cardamom 
##                                                                                    13 
##                                                                        pear clafoutis 
##                                                                                    29 
##                                                                pear cranberry galette 
##                                                                                     5 
##                                                                       pear crumb cake 
##                                                                                    65 
##                                                                   pear ginger crumble 
##                                                                                    15 
##                                                                      pear ginger tart 
##                                                                                     4 
##                                                    pear haroseth with pecans and figs 
##                                                                                     9 
##                                                                           pear kuchen 
##                                                                                    14 
##                                          pear smoothie with spinach celery and ginger 
##                                                                                    16 
##                                            pear snacking cake with brown butter glaze 
##                                                                                    53 
##                                                                   pear vanilla sorbet 
##                                                                                    11 
##                                         pearl couscous with creamy feta and chickpeas 
##                                                                                   232 
##                                           pearl couscous with sauteed cherry tomatoes 
##                                                                                    41 
##                                                  pearl couscous with shrimp and clams 
##                                                                                    15 
##                                                                       pearl of puebla 
##                                                                                     3 
##                                                           pears poached in beaujolais 
##                                                                                     7 
##                                                  pears poached in red wine and cassis 
##                                                                                     5 
##                                                                peas with poached eggs 
##                                                                                     2 
##                                                   pecan crunch cream cheese poundcake 
##                                                                                     9 
##                                                                             pecan pie 
##                                                                                    26 
##                                                            pecan pie bites with gravy 
##                                                                                     5 
##                                                                    pecan pie brownies 
##                                                                                    38 
##                                                                   pecan pie ice cream 
##                                                                                    10 
##                                                            pecan pie sandwich cookies 
##                                                                                    73 
##                                                                    pecan pie truffles 
##                                                                                   252 
##                                                                    pecan raisin rolls 
##                                                                                    26 
##                                                                         pecan tassies 
##                                                                                    25 
##                                                               pecorino and pear salad 
##                                                                                     1 
##                          peeled asparagus salad with radish and toasted pumpkin seeds 
##                                                                                     2 
##                                                                             pegu club 
##                                                                                     1 
##                                           peking duck with honey and five spice glaze 
##                                                                                    36 
##                                                                   penne allarrabbiata 
##                                                                                    81 
##                                     penne carbonara with fava beans peas and pecorino 
##                                                                                     5 
##                                                        penne with asparagus carbonara 
##                                                                                    22 
##                                        penne with brussels sprouts chile and pancetta 
##                                                                                   100 
##                                           penne with carrots chanterelles and sausage 
##                                                                                    12 
##                               penne with heirloom tomatoes basil green beans and feta 
##                                                                                    10 
##                                                penne with mushroom ragout and spinach 
##                                                                                    13 
##                                               penne with peas pea greens and parmesan 
##                                                                                    15 
##                                                  penne with radicchio and goat cheese 
##                                                                                    17 
##                                                 pepper and sausage cornbread dressing 
##                                                                                    10 
##                                              peppered duck breast with red wine sauce 
##                                                                                    35 
##                                                                       peppermint bark 
##                                                                                     7 
##                                                                   peppermint brownies 
##                                                                                    46 
##                                                            peppermint stick ice cream 
##                                                                                    10 
##                                                             peppermint stripe cookies 
##                                                                                    92 
##                                                                       pepperoni rolls 
##                                                                                    14 
##                                          peppers stuffed with farro and smoked cheese 
##                                                                                    21 
##                                          peppers stuffed with rice zucchini and herbs 
##                                                                                    16 
##                                              peppery flank steak tagliata in the oven 
##                                                                                    34 
##                                     peppery lamb with shell beans and cherry tomatoes 
##                                                                                     3 
##                                      perciatelli with broccoli tomatoes and anchovies 
##                                                                                     6 
##                                                       perfect black and white cookies 
##                                                                                   151 
##                                                                   perfect boiled eggs 
##                                                                                   424 
##                                                           perfect buttermilk pancakes 
##                                                                                   656 
##                                                        perfect chocolate chip cookies 
##                                                                                   535 
##                                                               perfect corn muffin mix 
##                                                                                    64 
##                                                                   perfect hash browns 
##                                                                                    17 
##                                                                 perfect instant ramen 
##                                                                                   537 
##                                                                     perfect peach pie 
##                                                                                   123 
##                                                                     perfect pie crust 
##                                                                                    68 
##                                                                            periodista 
##                                                                                     6 
##                                                                                pernil 
##                                                                                    48 
##                                                   persian cod with herbs and tamarind 
##                                                                                    21 
##                                                               persian haroseth hallaq 
##                                                                                     4 
##                                                                 persian herb frittata 
##                                                                                     2 
##                                                                  persian jeweled rice 
##                                                                                     6 
##                                                            persian spiced lamb shanks 
##                                                                                    77 
##                                                                 persian tamarind fish 
##                                                                                    32 
##                                                            persimmon and orange salad 
##                                                                                     2 
##                                                                     persimmon pudding 
##                                                                                    40 
##                                          persimmon salad with pomegranate and walnuts 
##                                                                                    19 
##                                                                 persimmon spice bread 
##                                                                                    20 
##                                     peruvian cheesy potato soup with spicy herb sauce 
##                                                                                     3 
##                                        peruvian pork stew with chiles lime and apples 
##                                                                                   111 
##                                    peruvian roasted chicken with spicy cilantro sauce 
##                                                                                   373 
##                                                       pescado frito fried red snapper 
##                                                                                     5 
##                                                                      pesto and pistou 
##                                                                                    14 
##                                                             pesto filled deviled eggs 
##                                                                                    12 
##                                                      pesto stuffed portobello burgers 
##                                                                                     4 
##                                                    peter reinharts whole wheat bagels 
##                                                                                    19 
##                                                     philadelphia style ice cream base 
##                                                                                    15 
##                                            pho with carrots turnips broccoli and tofu 
##                                                                                     6 
##                                                             pho with spinach and tofu 
##                                                                                     2 
##                                             phyllo pastry with fresh figs and ricotta 
##                                                                                     4 
##                                                phyllo ricotta torte with spring herbs 
##                                                                                    51 
##                                                 phyllo triangles with squash and mint 
##                                                                                     6 
##                                                                             picadillo 
##                                                                                   314 
##                                                  pickle brined fried chicken sandwich 
##                                                                                   135 
##                                                                       pickleback slaw 
##                                                                                   113 
##                                                                     pickled asparagus 
##                                                                                     6 
##                                                            pickled beets with caraway 
##                                                                                    16 
##                                                                pickled broccoli stems 
##                                                                                    17 
##                                                                 pickled carrot slices 
##                                                                                     8 
##                                                               pickled cocktail onions 
##                                                                                    13 
##                                                                  pickled deviled eggs 
##                                                                                    21 
##                                                                   pickled green beans 
##                                                                                     6 
##                                            pickled green tomato and mirliton chowchow 
##                                                                                     1 
##                                                                pickled green tomatoes 
##                                                                                    15 
##                                                                     pickled jalapenos 
##                                                                                    14 
##                                                                      pickled mackerel 
##                                                                                     1 
##                                                                pickled mushroom salad 
##                                                                                    28 
##                                                             pickled mustard condiment 
##                                                                                     5 
##                                                     pickled peaches with sweet spices 
##                                                                                    11 
##                                                                        pickled shrimp 
##                                                                                    21 
##                                                                         pico de gallo 
##                                                                                     8 
##                                                                       pico de lettuce 
##                                                                                     1 
##                                              pierogi ruskie potato and cheese pierogi 
##                                                                                   125 
##                                                          pierre hermes ispahan sables 
##                                                                                    63 
##                                                                pigeon peas with mango 
##                                                                                     4 
##                                                                     pigs in a blanket 
##                                                                                    18 
##                                                                                pikliz 
##                                                                                    28 
##                                                               pimento cheese frittata 
##                                                                                    17 
##                                                                pimenton potted shrimp 
##                                                                                     1 
##                                                       pimms cup with muddled cucumber 
##                                                                                    11 
##                                                             pimms cup with watermelon 
##                                                                                     1 
##                                                                           pina colada 
##                                                                                     6 
##                                  pinakbet vegetables stewed in fermented shrimp paste 
##                                                                                     9 
##                                                         pineapple and millet smoothie 
##                                                                                     1 
##                                                               pineapple avocado salsa 
##                                                                                     6 
##                                                        pineapple banana mint smoothie 
##                                                                                    12 
##                                                              pineapple basil smoothie 
##                                                                                    21 
##                                                                       pineapple curry 
##                                                                                     4 
##                                                                     pineapple express 
##                                                                                     2 
##                                                   pineapple marinated chicken breasts 
##                                                                                   178 
##                                          pineapple orange granola and carrot smoothie 
##                                                                                     4 
##                                                                       pineapple salsa 
##                                                                                    19 
##                                                                     pineapple swizzle 
##                                                                                     1 
##                                                    pineapple tequila goat cheese cake 
##                                                                                     3 
##                                                                              pink gin 
##                                                                                     5 
##                         pink grapefruit and radicchio salad with dates and pistachios 
##                                                                                     9 
##                 pink grapefruit avocado and pomegranate salad with nasturtium flowers 
##                                                                                     4 
##                                                                            piparkakut 
##                                                                                     4 
##                                                                              piperade 
##                                                                                    10 
##                                                                                 pirlo 
##                                                                                     2 
##                                                                            pisco sour 
##                                                                                     2 
##                                                                          pissaladiere 
##                                                                                    23 
##                                                            pistachio and cherry bombe 
##                                                                                    22 
##                                                          pistachio and raspberry tart 
##                                                                                    36 
##                                                pistachio and rose water semolina cake 
##                                                                                    56 
##                                                                     pistachio baklava 
##                                                                                    46 
##                                                                    pistachio biscotti 
##                                                                                     9 
##                                           pistachio green mole mole verde de pistache 
##                                                                                    13 
##                                                                   pistachio ice cream 
##                                                                                     3 
##                                        pistachio linzer cookies with orange marmalade 
##                                                                                    10 
##                                                                   pistachio pinwheels 
##                                                                                    95 
##                                                 pistachio poundcake with strawberries 
##                                                                                    13 
##                                                    pistachio rose and strawberry buns 
##                                                                                    14 
##                                                                         pizza calzone 
##                                                                                    14 
##                                                                           pizza dough 
##                                                                                   124 
##                                                    pizza dough with sourdough starter 
##                                                                                    11 
##                                                                pizza dough with yeast 
##                                                                                     7 
##                                                                      pizza margherita 
##                                                                                   123 
##                                                                    pizza on the grill 
##                                                                                    12 
##                        pizza on the grill with cherry tomatoes mozzarella and arugula 
##                                                                                     2 
##                                                              pizza rustica easter pie 
##                                                                                    44 
##                              pizza with caramelized onions figs bacon and blue cheese 
##                                                                                    38 
##                                       pizza with caramelized onions ricotta and chard 
##                                                                                    38 
##                                            pizza with green garlic potatoes and herbs 
##                                                                                     5 
##                                  pizza with mushrooms goat cheese arugula and walnuts 
##                                                                                     3 
##                                             pizza with roasted peppers and mozzarella 
##                                                                                     3 
##                                          pizza with shrimp bacon and artichoke hearts 
##                                                                                     6 
##                                                   pizza with spring onions and fennel 
##                                                                                    10 
##                                                      pizza with sweet and hot peppers 
##                                                                                    20 
##                          pizzeria locales butterscotch pudding with chocolate ganache 
##                                                                                    23 
##                                                     pla goong spicy thai shrimp salad 
##                                                                                    50 
##                                                                        planters punch 
##                                                                                     4 
##                                                        plum almond and orange galette 
##                                                                                     2 
##                                                                      plum almond tart 
##                                                                                    25 
##                                          plum and fig crumble with quinoa oat topping 
##                                                                                     2 
##                                                                plum chutney crumb pie 
##                                                                                     9 
##                                                                     plum cobbler bars 
##                                                                                    66 
##                                                              plum glaze for baked ham 
##                                                                                     1 
##                                                           plum graham cracker crumble 
##                                                                                    71 
##                                                    plum red grape and almond smoothie 
##                                                                                     2 
##                                                                plum sorbet or granita 
##                                                                                     3 
##                                                                             plum tart 
##                                                                                     7 
##                               poached apricots with pistachio and amaretto mascarpone 
##                                                                                     9 
##                                      poached chicken breasts with parsley onion salad 
##                                                                                    24 
##                                 poached chicken breasts with tomatillos and jalapenos 
##                                                                                    42 
##                                            poached eggs in red wine oeufs en meurette 
##                                                                                     4 
##                                                     poached eggs with mint and yogurt 
##                                                                                    39 
##                                                                         poached pears 
##                                                                                    20 
##                                                             poached pears in red wine 
##                                                                                     3 
##                                                                       poached rhubarb 
##                                                                                    11 
##                                            poached shrimp with thai basil and peanuts 
##                                                                                     9 
##                                                                       pocket dressing 
##                                                                                     3 
##                                                                  poilanes corn sables 
##                                                                                    62 
##                                                                               polenta 
##                                                                                    44 
##                                     polenta al forno with spinach ricotta and fontina 
##                                                                                    39 
##                                                     polenta and broccoli rabe lasagna 
##                                                                                     9 
##                              polenta and sausages for a crowd polenta alla spianatora 
##                                                                                    58 
##                                        polenta lasagna with spinach and herby ricotta 
##                                                                                   169 
##                                                 polenta or grits with beans and chard 
##                                                                                    12 
##                                               polenta pizza with pancetta and spinach 
##                                                                                    26 
##                                                  polenta with braised root vegetables 
##                                                                                     7 
##                                                 polenta with goat cheese and rosemary 
##                                                                                    20 
##                                             polenta with mushrooms favas and tomatoes 
##                                                                                     6 
##                                                polenta with parmesan and tomato sauce 
##                                                                                     6 
##                                                           polenta with pomodoro sauce 
##                                                                                     2 
##                                        polenta with wild mushrooms and marinara sauce 
##                                                                                    19 
##                                                    polenta with zucchini and tomatoes 
##                                                                                    17 
##                                                        polish cottage cheese dip gzik 
##                                                                                    41 
##                                                                              polkanes 
##                                                                                     1 
##                                                                      pollo en fricase 
##                                                                                   109 
##                                          polo ba tahdig persian rice with bread crust 
##                                                                                    31 
##                                        polpettone stuffed with eggplant and provolone 
##                                                                                     6 
##                                                 polpettone with spinach and provolone 
##                                                                                    33 
##                                                          pomegranate and rose granita 
##                                                                                    15 
##                                                              pomegranate gin preserve 
##                                                                                     2 
##                                                     pomegranate glazed lamb meatballs 
##                                                                                    35 
##                                                            pomegranate lime and tonic 
##                                                                                     1 
##                                                      pomegranate molasses butter cake 
##                                                                                    44 
##                                                pomegranate orange relish with walnuts 
##                                                                                     2 
##                                                                     pomegranate salad 
##                                                                                    10 
##                                                                    pomegranate spritz 
##                                                                                     8 
##                                                                     pomegranate syrup 
##                                                                                     2 
##                                                              pomegranate winter punch 
##                                                                                     2 
##                                                                           pommes anna 
##                                                                                    70 
##                                                                        pommes annette 
##                                                                                    13 
##                                                                               popcorn 
##                                                                                     2 
##                                                            popcorn masa for empanadas 
##                                                                                    38 
##                                          popcorn with coconut flakes and mustard seed 
##                                                                                     1 
##                                                                              popovers 
##                                                                                   147 
##                                               poppy lemon and sunflower seed pancakes 
##                                                                                     9 
##                                                                       poppy seed cake 
##                                                                                    71 
##                                                                     porchetta at home 
##                                                                                     4 
##                                                                  porchetta pork chops 
##                                                                                   158 
##                                                                  porchetta pork roast 
##                                                                                   235 
##                                                                         porcini broth 
##                                                                                     6 
##                                                 pork and beans with garlic and greens 
##                                                                                    33 
##                                                              pork and chive dumplings 
##                                                                                    32 
##                                                         pork and fennel sausage rolls 
##                                                                                    60 
##                                                            pork and green chile tacos 
##                                                                                    27 
##                                                             pork and green chili stew 
##                                                                                    24 
##                                                           pork and portobello burgers 
##                                                                                    13 
##                                                            pork and ricotta meatballs 
##                                                                                   236 
##                                                              pork and shrimp won tons 
##                                                                                    22 
##                                                                 pork belly cracklings 
##                                                                                     2 
##                                                             pork belly tea sandwiches 
##                                                                                     3 
##                                                pork braised with turnips and marjoram 
##                                                                                     8 
##                                                     pork chops in cherry pepper sauce 
##                                                                                    64 
##                                                       pork chops in lemon caper sauce 
##                                                                                   492 
##                                                                  pork chops in pipian 
##                                                                                    37 
##                                                                 pork chops puttanesca 
##                                                                                    21 
##                                                      pork chops with apples and cider 
##                                                                                   195 
##                                                     pork chops with brandied cherries 
##                                                                                    84 
##                                                           pork chops with onion gravy 
##                                                                                    45 
##                                                          pork chops with salted plums 
##                                                                                    52 
##                                                    pork chops with shiitake mushrooms 
##                                                                                    16 
##                                                   pork chops with tamarind and ginger 
##                                                                                    91 
##                                                    pork cutlets with lemon and capers 
##                                                                                    70 
##                                                                    pork fennel burger 
##                                                                                    19 
##                                                                            pork gyros 
##                                                                                    73 
##                                           pork katsu with pickled cucumbers and shiso 
##                                                                                    48 
##                                             pork meatballs with ginger and fish sauce 
##                                                                                   284 
##                                       pork noodle soup with ginger and toasted garlic 
##                                                                                   220 
##                                                                 pork ragu al maialino 
##                                                                                    29 
##                                                                        pork rillettes 
##                                                                                    10 
##                                                pork roast with roasted jalapeno gravy 
##                                                                                    64 
##                                          pork satay with thai spices and peanut sauce 
##                                                                                    56 
##                                                     pork schnitzel with quick pickles 
##                                                                                   109 
##                                              pork shoulder steaks with hot pepper dip 
##                                                                                    20 
##                                                                         pork sinigang 
##                                                                                     7 
##                                               pork stew with pears and sweet potatoes 
##                                                                                   108 
##                                                   pork stewed with lentils and celery 
##                                                                                    30 
##                                         pork tenderloin stuffed with herbs and capers 
##                                                                                    73 
##                                              pork tenderloin with shallots and prunes 
##                                                                                    47 
##                    pork top loin roast with asparagus spring onion and butter lettuce 
##                                                                                    12 
##                                                                         pork vindaloo 
##                                                                                    31 
##                                                       pork with peppers and chickpeas 
##                                                                                     4 
##                                                                            port toddy 
##                                                                                     5 
##                                                     portobello mushroom cheeseburgers 
##                                                                                    22 
##                                                                portobello patty melts 
##                                                                                    77 
##                                                          portuguese egg custard tarts 
##                                                                                    25 
##                                                          portuguese pumpkin preserves 
##                                                                                     3 
##                                                          post thanksgiving cobb salad 
##                                                                                     5 
##                                                                             pot roast 
##                                                                                   288 
##                                                         potato and chard stalk gratin 
##                                                                                     2 
##                                            potato and chourico soup with crunchy kale 
##                                                                                     6 
##                                                         potato and collard green hash 
##                                                                                    14 
##                                                              potato and leek focaccia 
##                                                                                    21 
##                                                             potato and onion frittata 
##                                                                                    23 
##                                             potato and pea patties with indian spices 
##                                                                                     5 
##                                                               potato and pesto gratin 
##                                                                                     7 
##                                                             potato and radicchio tart 
##                                                                                    24 
##                                                              potato and sorrel gratin 
##                                                                                    11 
##                                                         potato and swiss chard gratin 
##                                                                                    23 
##                                                 potato and white bean puttanesca soup 
##                                                                                   111 
##                                                                          potato bread 
##                                                                                    18 
##                                                                      potato cavatelli 
##                                                                                    32 
##                                      potato cheddar soup with quick pickled jalapenos 
##                                                                                   197 
##                                                    potato cheese pierogies with bacon 
##                                                                                    18 
##                                                    potato chip chocolate chip cookies 
##                                                                                    30 
##                                                               potato curry sukhe aloo 
##                                                                                     1 
##                                                 potato focaccia with oyster mushrooms 
##                                                                                     1 
##                                                              potato gnocchi four ways 
##                                                                                    16 
##                                       potato gratin with swiss chard and sumac onions 
##                                                                                    57 
##                                                   potato green bean and spinach salad 
##                                                                                    19 
##                                   potato hot cakes with cheddar cream and salsa verde 
##                                                                                    24 
##                                                                          potato kugel 
##                                                                                    74 
##                                                                    potato leek gratin 
##                                                                                   185 
##                                                                     potato mousseline 
##                                                                                    16 
##                                                                            potato nik 
##                                                                                    42 
##                                                            potato pancakes version ii 
##                                                                                     1 
##                                                                          potato rolls 
##                                                                                    13 
##                                                   potato sage and lemon zest focaccia 
##                                                                                     5 
##                                                      potato salad and tomatillo tacos 
##                                                                                     6 
##                                                potato salad with capers and anchovies 
##                                                                                    43 
##                                      potato salad with pepperoni shallots and vinegar 
##                                                                                     2 
##                                                        potato salad with sweet relish 
##                                                                                    22 
##                            potato salmon and spinach patties with garlicky dill cream 
##                                                                                    33 
##                                                        potato soup with indian spices 
##                                                                                    39 
##                                                potato tart with goat cheese and thyme 
##                                                                                    38 
##                                                      potato waffles with smoked trout 
##                                                                                     7 
##                                                                    potatoes au gratin 
##                                                                                   117 
##                                                                       potatoes dogana 
##                                                                                     5 
##                                                       potatoes with anchovy and pesto 
##                                                                                     1 
##                                                                  poulet a la normande 
##                                                                                    20 
##                                                                             poundcake 
##                                                                                    32 
##                                                            poundcake and strawberries 
##                                                                                    20 
##                                                               pouring ribbons sidecar 
##                                                                                     2 
##                                                                                pozole 
##                                                                                    31 
##                                                                          pozole verde 
##                                                                                    20 
##                                                           pozole with duck and mezcal 
##                                                                                     2 
##                                                                              pralines 
##                                                                                    10 
##                      pre summer greek salad with shaved broccoli and peppers or beets 
##                                                                                    16 
##                                                               preheated oven popovers 
##                                                                                    64 
##                                                                  prepared horseradish 
##                                                                                    15 
##                                                            preserved crushed tomatoes 
##                                                                                     2 
##                                                                      preserved lemons 
##                                                                                    49 
##                                                        preserved roasted tomato puree 
##                                                                                     1 
##                                                       pressure cooker bbq pulled pork 
##                                                                                    19 
##                                                              pressure cooker beef pho 
##                                                                                    77 
##                               pressure cooker beef short ribs with red wine and chile 
##                                                                                   145 
##                                        pressure cooker beef stew with maple and stout 
##                                                                                    77 
##                                                       pressure cooker black bean soup 
##                                                                                   114 
##                                           pressure cooker bone broth or chicken stock 
##                                                                                    39 
##                                                 pressure cooker chicken and dumplings 
##                                                                                    48 
##                                                         pressure cooker chicken korma 
##                                                                                    49 
##                                      pressure cooker chicken soup with lemon and rice 
##                                                                                    15 
##                                                         pressure cooker chicken stock 
##                                                                                     7 
##                                  pressure cooker chicken tagine with butternut squash 
##                                                                                   125 
##                                        pressure cooker chicken tortellini tomato soup 
##                                                                                    15 
##                                      pressure cooker chicken with 40 cloves of garlic 
##                                                                                    17 
##                                   pressure cooker chickpea red pepper and tomato stew 
##                                                                                     9 
##                                               pressure cooker chipotle chicken pozole 
##                                                                                    68 
##                                          pressure cooker chipotle honey chicken tacos 
##                                                                                   219 
##                                                     pressure cooker chocolate pudding 
##                                                                                    34 
##                                                    pressure cooker classic beef chili 
##                                                                                   110 
##                                                 pressure cooker coconut curry chicken 
##                                                                                   204 
##                                               pressure cooker corned beef and cabbage 
##                                                                                    75 
##                                     pressure cooker garlicky beans with broccoli rabe 
##                                                                                    54 
##                                                   pressure cooker garlicky cuban pork 
##                                                                                   118 
##                             pressure cooker guinness beef stew with horseradish cream 
##                                                                                    47 
##                                                        pressure cooker hot honey ribs 
##                                                                                    18 
##                                                  pressure cooker indian butter shrimp 
##                                                                                    63 
##                                                            pressure cooker kalbi jjim 
##                                                                                    34 
##                                          pressure cooker korean soy glazed pork belly 
##                                                                                    35 
##                                                        pressure cooker lamb meatballs 
##                                                                                    32 
##                                              pressure cooker lentil soup with sausage 
##                                                                                   197 
##                                      pressure cooker miso chicken ramen with bok choy 
##                                                                                    36 
##                                           pressure cooker mushroom and wild rice soup 
##                                                                                   134 
##                                                             pressure cooker osso buco 
##                                                                                    33 
##                                                       pressure cooker porcini risotto 
##                                                                                    96 
##                                                  pressure cooker pork puttanesca ragu 
##                                                                                    74 
##                                             pressure cooker pork with citrus and mint 
##                                                                                    49 
##                                                             pressure cooker pot roast 
##                                                                                    45 
##                              pressure cooker punjabi rajma indian spiced kidney beans 
##                                                                                    49 
##                                                    pressure cooker red beans and rice 
##                                                                                    36 
##                               pressure cooker ribollita with smoked mozzarella toasts 
##                                                                                    27 
##                                                   pressure cooker salsa verde chicken 
##                                                                                    68 
##                                              pressure cooker short ribs in plum sauce 
##                                                                                    29 
##                                                        pressure cooker shrimp biryani 
##                                                                                    86 
##                                               pressure cooker spaghetti and meatballs 
##                                                                                   152 
##                                                   pressure cooker spicy pork shoulder 
##                                                                                   285 
##                                 pressure cooker split pea soup with horseradish cream 
##                                                                                    35 
##                                      pressure cooker squash with honey and lemongrass 
##                                                                                    12 
##                                        pressure cooker sticky tamarind baby back ribs 
##                                                                                   100 
##                                       pressure cooker sweet potato coconut curry soup 
##                                                                                    90 
##                                      pressure cooker vietnamese caramel pork and eggs 
##                                                                                    11 
##                                             pressure cooker vietnamese caramel salmon 
##                                                                                   103 
##                                              pressure cooker white bean parmesan soup 
##                                                                                   105 
##                                          pretzel pork and chive dumplings with tahini 
##                                                                                     6 
##                                                                    pretzel shortbread 
##                                                                                    67 
##                                                                        prime rib hash 
##                                                                                    12 
##                                                                       prime rib roast 
##                                                                                   131 
##                                                         profiteroles with raspberries 
##                                                                                     8 
##                                                     prosciutto fig and parmesan rolls 
##                                                                                    20 
##                                                             prosciutto parmesan stock 
##                                                                                     4 
##                                prosciutto wrapped chicken breasts with broccoli puree 
##                                                                                     3 
##                                                            provencal artichoke ragout 
##                                                                                     3 
##                                                                   provencal fish stew 
##                                                                                    71 
##                                                provencal garlic soup with poached egg 
##                                                                                    16 
##                                                                 provencal greens soup 
##                                                                                   192 
##                                                       provencal haroseth for passover 
##                                                                                    11 
##                                                                 provencal onion pizza 
##                                                                                     7 
##                                                              provencal spinach gratin 
##                                                                                    13 
##                                                       provencal tomato and basil soup 
##                                                                                    84 
##                                                      provencal tomato and bean gratin 
##                                                                                    10 
##                                                    provencal tomato and squash gratin 
##                                                                                   138 
##                                        provencal veal breast stuffed with swiss chard 
##                                                                                     8 
##                                                   provencal vegetable soup with basil 
##                                                                                    12 
##                                                       provencal white wine beef daube 
##                                                                                    40 
##                                               provencal zucchini and swiss chard tart 
##                                                                                    25 
##                                                    provoleta grilled provolone cheese 
##                                                                                    17 
##                                                   prune and almond braised short ribs 
##                                                                                    19 
##                                                                         prune pudding 
##                                                                                     8 
##                                                            prunes poached in red wine 
##                                                                                     3 
##                                                                      publican chicken 
##                                                                                    24 
##                                                                             puff puff 
##                                                                                    10 
##                                                        puffed rice salad with chicken 
##                                                                                     5 
##                                              puffy corn pancake with blackberry sauce 
##                                                                                    19 
##                                                                  pulled lamb shoulder 
##                                                                                    22 
##                                                                pulled pork sandwiches 
##                                                                                   124 
##                                                                pulled turkey with jus 
##                                                                                    13 
##                                                             pumpkin and ginger scones 
##                                                                                    30 
##                                                pumpkin and saffron jasmine rice pilaf 
##                                                                                     6 
##                                                                        pumpkin bisque 
##                                                                                    10 
##                                            pumpkin blondies with chocolate and pecans 
##                                                                                    61 
##                                                                         pumpkin bread 
##                                                                                   122 
##                                           pumpkin bread with brown butter and bourbon 
##                                                                                   230 
##                                            pumpkin bread with chocolate chip streusel 
##                                                                                    67 
##                                      pumpkin bundt cake with maple brown butter glaze 
##                                                                                   108 
##                                                                pumpkin caramel mousse 
##                                                                                     7 
##                                                                    pumpkin cheesecake 
##                                                                                     1 
##                                                               pumpkin cheesecake bars 
##                                                                                    86 
##                                                        pumpkin chocolate chip cookies 
##                                                                                    56 
##                                                                     pumpkin cornbread 
##                                                                                    67 
##                                                                          pumpkin flan 
##                                                                                    16 
##                                                                   pumpkin fudge torte 
##                                                                                    66 
##                                                                        pumpkin gelato 
##                                                                                     4 
##                                                             pumpkin ginger oat scones 
##                                                                                    97 
##                                                                 pumpkin ginger sorbet 
##                                                                                     7 
##                                                             pumpkin kabocha no nimono 
##                                                                                     1 
##                                           pumpkin layer cake with caramel buttercream 
##                                                                                    78 
##                                                               pumpkin maple cornbread 
##                                                                                   104 
##                                                                 pumpkin maple muffins 
##                                                                                   290 
##                                                                           pumpkin pie 
##                                                                                    90 
##                                                                 pumpkin pie milkshake 
##                                                                                    15 
##                                                        pumpkin pie with a vodka crust 
##                                                                                    16 
##                                       pumpkin ravioli with sage walnut pumpkin butter 
##                                                                                    20 
##                                                          pumpkin risotto con la zucca 
##                                                                                     7 
##                                                pumpkin roll with coffee caramel cream 
##                                                                                    28 
##                           pumpkin seed battered chicken with cranberry cabernet sauce 
##                                                                                     6 
##                                pumpkin sheet cake with molasses cream cheese frosting 
##                                                                                    44 
##                                       pumpkin skillet cake with cream cheese frosting 
##                                                                                    28 
##                                    pumpkin soup served in a pumpkin potage au potiron 
##                                                                                    11 
##                                                     pumpkin soup with ancho and apple 
##                                                                                    58 
##                                                pumpkin sticky toffee puddings for two 
##                                                                                    93 
##                                                                         punch romaine 
##                                                                                     3 
##                                                       pungent parsley and caper sauce 
##                                                                                     8 
##                                                                         punjabi chana 
##                                                                                    29 
##                                                                               pupusas 
##                                                                                     5 
##                                                                    pure potato latkes 
##                                                                                   321 
##                                                               puree of asparagus soup 
##                                                                                    28 
##                                                                puree of chickpea soup 
##                                                                                    10 
##                                                       puree of shell beans and potato 
##                                                                                     1 
##                                                        puree of winter vegetable soup 
##                                                                                     5 
##                                                                      pureed asparagus 
##                                                                                    13 
##                                                  pureed beets with yogurt and caraway 
##                                                                                     2 
##                                                       pureed broccoli and celery soup 
##                                                                                    46 
##                                                                         pureed carrot 
##                                                                                     5 
##                                                                    pureed carrot soup 
##                                                                                    50 
##                                                                         pureed fennel 
##                                                                                     4 
##                                                                  pureed mushroom soup 
##                                                                                    53 
##                                pureed potato and broccoli soup with parmesan croutons 
##                                                                                    15 
##                                                            pureed potatoes with lemon 
##                                                                                    20 
##                                            pureed roasted squash and yams with citrus 
##                                                                                     2 
##                                                     pureed tomato and red pepper soup 
##                                                                                    57 
##                                                     pureed trahana and vegetable soup 
##                                                                                     1 
##                                              pureed white bean and winter squash soup 
##                                                                                     8 
##                                                    pureed white bean soup with pistou 
##                                                                                     4 
##                                              pureed winter squash and red lentil soup 
##                                                                                    68 
##                                                 pureed winter squash soup with ginger 
##                                                                                    24 
##                                                       pureed zucchini soup with curry 
##                                                                                    47 
##                                                                       puritan pudding 
##                                                                                     9 
##                                                purple barley risotto with cauliflower 
##                                                                                     6 
##                                purple hull peas and mustard greens in smoky potlikker 
##                                                                                    33 
##                                                 purslane salad with cherries and feta 
##                                                                                     5 
##                                      purslane salad with mushrooms walnuts and olives 
##                                                                                     2 
##                                                                      quail and grapes 
##                                                                                     5 
##                                                      quail with chestnuts and raisins 
##                                                                                     1 
##                                                         quail with fregola and olives 
##                                                                                     2 
##                                                                quealy watsons cabrito 
##                                                                                    10 
##                                                                         quealys queso 
##                                                                                    27 
##                                                                   queens park swizzle 
##                                                                                     2 
##                                                                     quesabirria tacos 
##                                                                                    20 
##                                         quesadilla with mushroom ragout and chipotles 
##                                                                                     3 
##                                                                                 queso 
##                                                                                    62 
##                                                                         queso fundido 
##                                                                                     3 
##                                      queso fundido with chorizo jalapeno and cilantro 
##                                                                                    70 
##                                                                           queso gravy 
##                                                                                    13 
##                                                                       quiche lorraine 
##                                                                                    55 
##                                                     quiche with herbs and goat cheese 
##                                                                                    74 
##                                                   quiche with red peppers and spinach 
##                                                                                    53 
##                                                  quick braised cod with herbed yogurt 
##                                                                                   102 
##                                             quick braised greens and beans with bacon 
##                                                                                    18 
##                                   quick broiled pork chops with peanuts and gochujang 
##                                                                                    22 
##                                                           quick chicken and dumplings 
##                                                                                   179 
##                                                                   quick chicken stock 
##                                                                                     2 
##                                                                     quick chile sauce 
##                                                                                     2 
##                                                           quick fresh tomatillo salsa 
##                                                                                    15 
##                                                              quick fresh tomato sauce 
##                                                                                   214 
##                                                           quick green tomatillo salsa 
##                                                                                    19 
##                                    quick grilled flanken with chili sesame and ginger 
##                                                                                     2 
##                                                                       quick lamb ragu 
##                                                                                   236 
##                                                                     quick mango kulfi 
##                                                                                    47 
##                                                                      quick minestrone 
##                                                                                    60 
##                                                                    quick pickled amba 
##                                                                                    14 
##                                                                  quick pickled ginger 
##                                                                                     2 
##                                                                    quick pickled okra 
##                                                                                    11 
##                                                         quick pickled vegetable salad 
##                                                                                    22 
##                                                              quick pickled vegetables 
##                                                                                     9 
##                                                                         quick pickles 
##                                                                                    32 
##                                                                     quick pizza dough 
##                                                                                   113 
##                                                                quick preserved lemons 
##                                                                                    10 
##                                                              quick pumpkin sage pasta 
##                                                                                    17 
##                                                     quick ragu with ricotta and lemon 
##                                                                                    70 
##                                                   quick roasted chicken with tarragon 
##                                                                                    41 
##                                                         quick roasted tomatillo salsa 
##                                                                                    16 
##                                   quick seared short ribs with charred scallion salsa 
##                                                                                    20 
##                                                 quick tomato white bean and kale soup 
##                                                                                   159 
##                                                                    quick walnut bread 
##                                                                                    16 
##                                                    quick white bean and celery ragout 
##                                                                                   106 
##                                                                    quick yogurt sauce 
##                                                                                     1 
##                                                                        quince compote 
##                                                                                     3 
##                                                                        quince crumble 
##                                                                                     2 
##                                                quince with cipollini onions and bacon 
##                                                                                     4 
##                                                            quinoa and asparagus salad 
##                                                                                    11 
##                                                                 quinoa and beet pilaf 
##                                                                                    11 
##                                                               quinoa and carrot kugel 
##                                                                                    28 
##                                               quinoa and cauliflower kugel with cumin 
##                                                                                    14 
##                                                                quinoa and chard cakes 
##                                                                                    19 
##                                                              quinoa and greens burger 
##                                                                                    12 
##                                                               quinoa and lentil pilaf 
##                                                                                    27 
##                                         quinoa and rice bowl with kale kimchi and egg 
##                                                                                    80 
##                                                              quinoa and squash gratin 
##                                                                                    29 
##                                       quinoa and vegetable burgers with asian flavors 
##                                                                                     3 
##                                quinoa and wild rice salad with ginger sesame dressing 
##                                                                                    18 
##                                    quinoa bowl with artichokes spring onions and peas 
##                                                                                    12 
##                          quinoa bowl with crispy brussels sprouts eggplant and tahini 
##                                                                                    85 
##                                                quinoa lentil sprout and arugula salad 
##                                                                                     4 
##                                                            quinoa oat crumble topping 
##                                                                                    11 
##                                                                       quinoa pancakes 
##                                                                                    23 
##                                quinoa pea and black bean salad with cumin vinaigrette 
##                                                                                    17 
##                                         quinoa pilaf with sweet peas and green garlic 
##                                                                                     2 
##                                         quinoa salad with avocado and kalamata olives 
##                                                                                     8 
##                                         quinoa salad with chicken almonds and avocado 
##                                                                                    20 
##                                  quinoa salad with roasted carrots and frizzled leeks 
##                                                                                    13 
##                                         quinoa salad with swiss chard and goat cheese 
##                                                                                    49 
##                                                     quinoa spinach and mushroom salad 
##                                                                                     7 
##                                                        quinoa spinach and poached egg 
##                                                                                     8 
##                                                         quinoa with corn and zucchini 
##                                                                                    36 
##                                       quinoa with roasted winter vegetables and pesto 
##                                                                                     8 
##                                                              quinoa with thai flavors 
##                                                                                    15 
##                                                 quintessential chocolate chip cookies 
##                                                                                   248 
##                                                        rabbit loin with bitter greens 
##                                                                                     2 
##                                                                          rabbit stock 
##                                                                                     1 
##                                       rack of lamb with pimenton garlic and olive oil 
##                                                                                    13 
##                                                                              raclette 
##                                                                                     2 
##                         radicchio or asian greens salad with golden beets and walnuts 
##                                                                                     1 
##                                                       radicchio or red endive risotto 
##                                                                                     3 
##                                                        radicchio pizza with gremolata 
##                                                                                     4 
##                                              radicchio rolls with ricotta and walnuts 
##                                                                                     5 
##                                              radicchio salad with anchovy vinaigrette 
##                                                                                    21 
##                            radicchio salad with crunchy shiitake mushrooms and barley 
##                                                                                    17 
##                                         radicchio salad with golden beets and walnuts 
##                                                                                     1 
##                                                   radicchio with walnut anchovy sauce 
##                                                                                     3 
##                                       radish and herb salad with meyer lemon dressing 
##                                                                                    29 
##                                                                       radish gazpacho 
##                                                                                     9 
##                                                radish sandwiches with butter and salt 
##                                                                                    68 
##                                            radishes with sweet butter and kosher salt 
##                                                                                    39 
##                                                                          rainbow beef 
##                                                                                    16 
##                                                                          rainbow cake 
##                                                                                    47 
##                                                               rainbow carrot stir fry 
##                                                                                    17 
##                                          rainbow peppers and shrimp with rice noodles 
##                                                                                    15 
##                                                                  rainbow potato roast 
##                                                                                    22 
##                                                                  rainbow quinoa salad 
##                                                                                    91 
##                                        rainbow quinoa salad with fava beans and herbs 
##                                                                                     2 
##                                                              rainbow quinoa tabbouleh 
##                                                                                    11 
##                                                                 rainbow sprinkle cake 
##                                                                                   196 
##                            rainbow trout baked in foil with tomatoes garlic and thyme 
##                                                                                    19 
##                                                     raisin haters apple chile chutney 
##                                                                                     9 
##                                                                      raisin rye bread 
##                                                                                     1 
##                                                                       ramen carbonara 
##                                                                                   128 
##                                ramen with charred scallions green beans and chile oil 
##                                                                                   173 
##                                                                         ramp focaccia 
##                                                                                     6 
##                                                                           ramp omelet 
##                                                                                    14 
##                                                       ranch dressing with fresh herbs 
##                                                                                    26 
##                                                    raos meatballs with marinara sauce 
##                                                                                   135 
##                                                           raspberry and cream eclairs 
##                                                                                    19 
##                                                           raspberry and cream roulade 
##                                                                                    17 
##                                                     raspberry chocolate almond spread 
##                                                                                     6 
##                                                                   raspberry cream pie 
##                                                                                     4 
##                                                                     raspberry crumble 
##                                                                                     5 
##                                                               raspberry hazelnut tart 
##                                                                                    10 
##                                         raspberry mochi butter cake with matcha glaze 
##                                                                                    36 
##                                                          raspberry nutter butter bars 
##                                                                                    14 
##                                              raspberry pavlova with peaches and cream 
##                                                                                    14 
##                                                               raspberry rose rugelach 
##                                                                                    25 
##                                                                 raspberry rose sorbet 
##                                                                                     3 
##                                                                       raspberry sauce 
##                                                                                     5 
##                                                                       raspberry spuma 
##                                                                                    25 
##                                                    raspberry swirl no bake cheesecake 
##                                                                                    22 
##                                                                     raspberry vinegar 
##                                                                                     6 
##                                                                raspberry vinegar tart 
##                                                                                     1 
##                                                         rasta pasta with jerk chicken 
##                                                                                    25 
##                                                                           ratatouille 
##                                                                                   139 
##                                 ratatouille and sausage potpie with cornmeal biscuits 
##                                                                                    19 
##                                                                       ratatouille pie 
##                                                                                    74 
##                                                                 rau ram pico de gallo 
##                                                                                     2 
##                                             ravioli alla burrata with pistachio pesto 
##                                                                                    13 
##                                         ravioli verdi with butter parmesan and pepper 
##                                                                                    15 
##                                    raw and cooked tomato and herb salad with couscous 
##                                                                                     3 
##                                                                   raw artichoke salad 
##                                                                                     1 
##                                                            raw beets with creamy dill 
##                                                                                     2 
##                                                     raw beets with sherry vinaigrette 
##                                                                                     4 
##                                    raw butternut squash salad with cranberry dressing 
##                                                                                     2 
##                                    raw butternut squash salad with raisins and ginger 
##                                                                                     7 
##                                                                      raw lime cordial 
##                                                                                     3 
##                                                                 raw scallops on bacon 
##                                                                                     3 
##                                     rawia bisharas brussels sprouts with tahini sauce 
##                                                                                    19 
##                                                                   real ranch dressing 
##                                                                                    33 
##                                                                      really big beets 
##                                                                                    29 
##                                                really old fashioned marinated rib eye 
##                                                                                     4 
##                                                        reconstituted steamed couscous 
##                                                                                     2 
##                                        red and black rice with leeks and pea tendrils 
##                                                                                     3 
##                                                         red bean and green bean salad 
##                                                                                     2 
##                                                            red bean and walnut spread 
##                                                                                     6 
##                                           red bean salad with walnuts and fresh herbs 
##                                                                                    12 
##                                                                         red bean stew 
##                                                                                   115 
##                                          red bean stew with fried onions and cilantro 
##                                                                                    61 
##                                                                    red beans and rice 
##                                                                                   231 
##                                                 red berry cabbage and almond smoothie 
##                                                                                     5 
##                                                            red cabbage and apple soup 
##                                                                                     8 
##                                                red cabbage and black rice greek style 
##                                                                                     7 
##                   red cabbage carrot and broccoli stem latkes with caraway and sesame 
##                                                                                     4 
##                                                 red cabbage cilantro and walnut salad 
##                                                                                    17 
##                                                                     red cabbage salad 
##                                                                                     3 
##                                                          red chilaquiles with chicken 
##                                                                                    23 
##                                                             red chile pork brochettes 
##                                                                                     2 
##                                                   red coconut rice pudding with mango 
##                                                                                     4 
##                                                red cooked beef short ribs with daikon 
##                                                                                     6 
##                                     red curry lentils with sweet potatoes and spinach 
##                                                                                   654 
##                                          red curry mussels and roasted sweet potatoes 
##                                                                                    12 
##                                                                      red flannel hash 
##                                                                                    16 
##                                                             red flannel potato latkes 
##                                                                                     1 
##                                                                     red hook cocktail 
##                                                                                     2 
##                                                                           red hot ale 
##                                                                                     2 
##                                                          red lentil and bulgur kufteh 
##                                                                                     2 
##                                                         red lentil kofta with spinach 
##                                                                                     2 
##                                                                       red lentil loaf 
##                                                                                    31 
##                                                                       red lentil soup 
##                                                                                    45 
##                                                     red onion soup with cheese toasts 
##                                                                                     4 
##                                                                         red peas soup 
##                                                                                     4 
##                                    red pepper crab croquetas with garlic almond sauce 
##                                                                                    10 
##                                                             red pepper eggplant ajvar 
##                                                                                     6 
##                                                                 red pepper mayonnaise 
##                                                                                     3 
##                              red pepper rice bulgur or freekeh with saffron and chile 
##                                                                                    10 
##                  red rice or farro with miso roasted squash leeks red pepper and tofu 
##                                                                                     4 
##                                                                           red rooster 
##                                                                                     5 
##                                                          red shrimp chowder with corn 
##                                                                                     7 
##                                                            red stripe steamed mussels 
##                                                                                     2 
##                                                                       red velvet cake 
##                                                                                   171 
##                                        red velvet cookies with white chocolate chunks 
##                                                                                    43 
##                                                            red velvet crinkle cookies 
##                                                                                    30 
##                                                                   red velvet cupcakes 
##                                                                                     9 
##                                              red wine braised short ribs with carrots 
##                                                                                    31 
##                                   red wine braised short ribs with lemongrass and soy 
##                                                                                    83 
##                                                   red wine cranberry sauce with honey 
##                                                                                    62 
##                                                        red wine honey cake with plums 
##                                                                                    38 
##                                                 red wine pinto beans with smoky bacon 
##                                                                                    30 
##                                                      red wine spaghetti with pancetta 
##                                                                                   100 
##                                                 refried bean zucchini and corn gratin 
##                                                                                    39 
##                                                              refrigerator corn relish 
##                                                                                     4 
##                                                               reginas butter biscuits 
##                                                                                    86 
##                                                                             remoulade 
##                                                                                     6 
##                                                           rendang daging beef rendang 
##                                                                                    10 
##                                                           restaurant style pork chops 
##                                                                                    38 
##                                                                       reuben sandwich 
##                                                                                    43 
##                                           reveling red cabbage apple and walnut salad 
##                                                                                     4 
##                                                   reverse manhattan berretto da notte 
##                                                                                     4 
##                                                    reversed impossible chocolate flan 
##                                                                                    37 
##                                                             rhode island clam chowder 
##                                                                                    96 
##                                                            rhubarb butterscotch sauce 
##                                                                                     1 
##                                                                       rhubarb compote 
##                                                                                    38 
##                                                                         rhubarb crisp 
##                                                                                   198 
##                                                                  rhubarb custard bars 
##                                                                                   107 
##                                                rhubarb ice cream with a caramel swirl 
##                                                                                    21 
##                                                                 rhubarb macaroon tart 
##                                                                                    37 
##                                                                rhubarb oat shortcakes 
##                                                                                    29 
##                                                                     rhubarb poundcake 
##                                                                                    70 
##                                                                   rhubarb quick bread 
##                                                                                   121 
##                                      rhubarb raspberry cobbler with cornmeal biscuits 
##                                                                                    41 
##                                                                         rhubarb shake 
##                                                                                     8 
##                                                                        rhubarb sorbet 
##                                                                                     9 
##                                                             rhubarb strawberry mousse 
##                                                                                     6 
##                                                                         rhubarb syrup 
##                                                                                    12 
##                                                              rhubarb upside down cake 
##                                                                                   281 
##                                                    rib eye steak and potatoes for two 
##                                                                                    63 
##                                                                     rib roast of beef 
##                                                                                    48 
##                                                                             ribollita 
##                                                                                   221 
##                                                                ribollita with cabbage 
##                                                                                     4 
##                                                            rice and beans with extras 
##                                                                                    78 
##                                 rice and red beans with coconut milk chile and garlic 
##                                                                                    28 
##                        rice balls stuffed with mozzarella and beef suppli al telefono 
##                                                                                     5 
##                                                 rice bowl with cabbage and baked tofu 
##                                                                                    18 
##                                                   rice bowl with oven baked miso tofu 
##                                                                                    50 
##                                               rice bowl with spinach and smoked trout 
##                                                                                     9 
##                                              rice cake soup with bok choy and edamame 
##                                                                                    54 
##                                                                            rice cakes 
##                                                                                    44 
##                                                            rice cooker steel cut oats 
##                                                                                    25 
##                                     rice cracker crusted tuna with spicy citrus sauce 
##                                                                                     3 
##                                                                  rice flour poundcake 
##                                                                                   115 
##                                             rice fritters with orange blossom custard 
##                                                                                     3 
##                                      rice krispies treats with chocolate and pretzels 
##                                                                                    99 
##                                                                     rice noodle salad 
##                                                                                     5 
##                           rice noodle salad with crispy tofu and lime peanut dressing 
##                                                                                    17 
##                                       rice noodle salad with salted peanuts and herbs 
##                                                                                    26 
##                                               rice noodles with garlicky cashew sauce 
##                                                                                    45 
##                                       rice noodles with seared pork carrots and herbs 
##                                                                                    41 
##                                                rice noodles with spicy pork and herbs 
##                                                                                   113 
##                              rice noodles with stir fried chicken turnips and carrots 
##                                                                                     4 
##                                    rice noodles with zucchini tomatoes and fresh mint 
##                                                                                     8 
##                                                   rice pilaf with carrots and parsley 
##                                                                                    23 
##                                                rice pilaf with pistachios and almonds 
##                                                                                    24 
##                                        rice pilaf with pumpkin currants and pine nuts 
##                                                                                    20 
##                                            rice porridge with squash and brown butter 
##                                                                                    47 
##                                                                          rice pudding 
##                                                                                    55 
##                                                              rice pudding with ginger 
##                                                                                     8 
##                                                      rice pudding with golden raisins 
##                                                                                    38 
##                                             rice pudding with rose water and cardamom 
##                                                                                     2 
##                                       rice salad with currants almonds and pistachios 
##                                                                                    62 
##                                                      rice salad with peanuts and tofu 
##                                                                                     9 
##                                             rice stick salad with shredded vegetables 
##                                                                                     4 
##                         rice sticks with uncooked tomato sauce tuna capers and olives 
##                                                                                     1 
##                               rice sticks with walnut and basil pesto and green beans 
##                                                                                     1 
##                                                                      rice with cheese 
##                                                                                     3 
##                                             rice with mushrooms arroz con champinones 
##                                                                                     9 
##                                             rice with peanuts asian dressing and tofu 
##                                                                                     9 
##                                                                rice with poached eggs 
##                                                                                    16 
##                                                                      rice with rabbit 
##                                                                                     2 
##                                                         rich and buttery corn muffins 
##                                                                                   138 
##                                                                rich chocolate cookies 
##                                                                                    33 
##                                               rich garlic soup with spinach and pasta 
##                                                                                    13 
##                                                       rick eastons pizza with peppers 
##                                                                                    17 
##                                                      rick eastons pizza with potatoes 
##                                                                                    15 
##                                                   rick katzs brownies for julia child 
##                                                                                     9 
##                                            ricotta and peach crostini with pistachios 
##                                                                                     7 
##                                                ricotta and spinach frittata with mint 
##                                                                                    12 
##                                                                ricotta cheese gnocchi 
##                                                                                   172 
##                                    ricotta dumplings with buttered peas and asparagus 
##                                                                                   226 
##                                                    ricotta gnocchi with parsley pesto 
##                                                                                    31 
##                                                     ricotta stuffed shells with pesto 
##                                                                                    46 
##                                                   ricotta tart with lemon poppy crust 
##                                                                                    47 
##                                  rigatoni al forno with cauliflower and broccoli rabe 
##                                                                                    58 
##                                                     rigatoni and cauliflower al forno 
##                                                                                   279 
##                                                              rios spicy chicken wings 
##                                                                                    32 
##                                                 rishia zimmerns chicken with shallots 
##                                                                                   784 
##                                                                           risi e bisi 
##                                                                                    61 
##                                                                      risotto al salto 
##                                                                                    32 
##                                                               risotto marseille style 
##                                                                                    11 
##                                                  risotto milanese with parmesan stock 
##                                                                                    13 
##                                                               risotto nero with squid 
##                                                                                    20 
##                                                      risotto with asparagus and pesto 
##                                                                                    17 
##                                   risotto with asparagus fresh fava beans and saffron 
##                                                                                     2 
##                                                                 risotto with broccoli 
##                                                                                    22 
##                                                    risotto with eggplant and tomatoes 
##                                                                                    21 
##                                                              risotto with green beans 
##                                                                                     6 
##                                                       risotto with kale and red beans 
##                                                                                     7 
##                                                      risotto with parsnips and greens 
##                                                                                    11 
##                                                         risotto with peas and sausage 
##                                                                                    16 
##                                                  risotto with pumpkin ginger and sage 
##                                                                                     7 
##                                                    risotto with roasted winter squash 
##                                                                                    40 
##                                                      risotto with sausage and parsley 
##                                                                                   191 
##                                                    risotto with slow roasted tomatoes 
##                                                                                     3 
##                                                 risotto with spring carrots and leeks 
##                                                                                     7 
##                                                        risotto with tomatoes and corn 
##                                                                                    26 
##                                                risotto with turkey mushrooms and peas 
##                                                                                    10 
##                                         risotto with winter squash and collard greens 
##                                                                                    12 
##                                                         ritzy cheddar chicken breasts 
##                                                                                    75 
##                                                                       roast beef hash 
##                                                                                     1 
##                                                       roast chicken in a butter crust 
##                                                                                    55 
##                                            roast chicken legs with cilantro gremolata 
##                                                                                    13 
##                                roast chicken salad with croutons and shallot dressing 
##                                                                                     8 
##                                                      roast chicken with apricot glaze 
##                                                                                    22 
##                                                roast chicken with apricots and olives 
##                                                                                    93 
##                                       roast chicken with crunchy seaweed and potatoes 
##                                                                                     5 
##                                                              roast chicken with lemon 
##                                                                                     5 
##                                                   roast chicken with lemon and zaatar 
##                                                                                    46 
##                                          roast chicken with maple butter and rosemary 
##                                                                                   212 
##                                   roast chicken with peppers focaccia and basil aioli 
##                                                                                    36 
##                            roast chicken with root vegetables and verjus beurre blanc 
##                                                                                     1 
##                                                             roast chickens with plums 
##                                                                                   159 
##                                                     roast duck with orange and ginger 
##                                                                                    87 
##                                                                           roast goose 
##                                                                                    34 
##                                               roast guinea hen with grilled radicchio 
##                                                                                     2 
##                                                       roast heritage turkey and gravy 
##                                                                                     9 
##                                                                            roast lamb 
##                                                                                   111 
##                                            roast lamb shoulder with spring vegetables 
##                                                                                     9 
##                                                       roast oysters and tomato butter 
##                                                                                     5 
##                                                      roast pork and pepper sandwiches 
##                                                                                     7 
##                                                      roast pork butt with salsa verde 
##                                                                                    37 
##                                                                        roast pork dip 
##                                                                                    13 
##                                roast shoulder of lamb with couscous and date stuffing 
##                                                                                     6 
##                                                      roast trout with bacon and herbs 
##                                                                                    12 
##                                                                          roast turkey 
##                                                                                    23 
##                                           roast turkey breast with fig olive tapenade 
##                                                                                    10 
##                                                                      roast turkey pav 
##                                                                                    17 
##                                  roast turkey with berry mint sauce and black walnuts 
##                                                                                     6 
##                                                roast turkey with garlic and anchovies 
##                                                                                    66 
##                                                     roast turkey with orange and sage 
##                                                                                    92 
##                                                                  roasted acorn squash 
##                                                                                    36 
##                                                                 roasted almond butter 
##                                                                                     1 
##                                                roasted and raw brussels sprouts salad 
##                                                                                    25 
##                                    roasted apple and pear compote with candied ginger 
##                                                                                     6 
##                                            roasted apple shallot and blue cheese tart 
##                                                                                    50 
##                                            roasted artichokes with anchovy mayonnaise 
##                                                                                    35 
##                                              roasted artichokes with ricotta and peas 
##                                                                                     4 
##                                                                     roasted asparagus 
##                                                                                    78 
##                                                 roasted asparagus and scallion quiche 
##                                                                                    41 
##                                                  roasted asparagus and scallion salad 
##                                                                                    95 
##                                                            roasted asparagus frittata 
##                                                                                    31 
##                               roasted asparagus with buttered almonds capers and dill 
##                                                                                    26 
##                                        roasted asparagus with crispy leeks and capers 
##                                                                                    74 
##                                                          roasted bacon wrapped rabbit 
##                                                                                     4 
##                                     roasted beet and winter squash salad with walnuts 
##                                                                                    29 
##                                       roasted beet salad with goat cheese and walnuts 
##                                                                                     8 
##                             roasted beets with chiles ginger yogurt and indian spices 
##                                                                                    36 
##                                                    roasted beets with moroccan spices 
##                                                                                    11 
##                                               roasted beets with pears and pistachios 
##                                                                                    12 
##                                             roasted beets with pine nuts and parmesan 
##                                                                                     6 
##                                    roasted beets with yogurt pistachios and coriander 
##                                                                                    26 
##                                                                roasted belgian endive 
##                                                                                     6 
##                                                                 roasted blood oranges 
##                                                                                     1 
##                                     roasted broccoli and potato tacos with fried eggs 
##                                                                                    36 
##                                                                 roasted broccoli rabe 
##                                                                                    10 
##                             roasted broccoli with almonds and cardamom malai broccoli 
##                                                                                    77 
##                                                          roasted broccoli with shrimp 
##                                                                                    85 
##                                             roasted broccoli with tahini garlic sauce 
##                                                                                    75 
##                                           roasted broccoli with vinegar mustard glaze 
##                                                                                    45 
##                                            roasted broccolini and lemon with parmesan 
##                                                                                    61 
##                                                              roasted brussels sprouts 
##                                                                                    63 
##                      roasted brussels sprouts and mushrooms with gremolata and quinoa 
##                                                                                    17 
##                                   roasted brussels sprouts butternut squash and apple 
##                                                                                     6 
##                                 roasted brussels sprouts with a pomegranate reduction 
##                                                                                     5 
##                                          roasted brussels sprouts with honey and miso 
##                                                                                    48 
##                         roasted brussels sprouts with pistachios and cipollini onions 
##                                                                                     8 
##                                               roasted butternut squash and red onions 
##                                                                                    89 
##                                                  roasted butternut squash bread salad 
##                                                                                    53 
##                                roasted butternut squash with brown butter vinaigrette 
##                                                                                    27 
##                                        roasted butternut squash with lentils and feta 
##                                                                                   206 
##                                                      roasted carrot and avocado salad 
##                                                                                    18 
##                                                roasted carrot parsnip and potato soup 
##                                                                                    45 
##                                     roasted carrot salad with arugula and pomegranate 
##                                                                                    92 
##                                                                       roasted carrots 
##                                                                                    71 
##                                 roasted carrots and parsnips with rosemary and garlic 
##                                                                                    11 
##                                roasted carrots and scallions with thyme and hazelnuts 
##                                                                                    13 
##                                      roasted carrots with cilantro yogurt and peanuts 
##                                                                                    33 
##                       roasted carrots with shallots mozzarella and spicy bread crumbs 
##                                                                                     2 
##                                               roasted carrots with turmeric and cumin 
##                                                                                    93 
##                                                                 roasted cashew butter 
##                                                                                     1 
##                              roasted cauliflower gratin with tomatoes and goat cheese 
##                                                                                   356 
##                               roasted cauliflower hazelnut and pomegranate seed salad 
##                                                                                    26 
##                                           roasted cauliflower paneer and lentil salad 
##                                                                                    84 
##                                   roasted cauliflower raisins and anchovy vinaigrette 
##                                                                                     6 
##                                     roasted cauliflower salad with halloumi and lemon 
##                                                                                   117 
##                         roasted cauliflower salad with watercress walnuts and gruyere 
##                                                                                    54 
##                                                              roasted cauliflower soup 
##                                                                                   106 
##                                                            roasted cauliflower steaks 
##                                                                                    20 
##                                      roasted cauliflower with feta almonds and olives 
##                                                                                   170 
##                                           roasted cauliflower with lemon brown butter 
##                                                                                    43 
##                           roasted cauliflower with pancetta olives and crisp parmesan 
##                                                                                   701 
##                                       roasted cauliflower with parsley anchovy butter 
##                                                                                     1 
##                                                roasted cauliflower with ras el hanout 
##                                                                                    34 
##                                         roasted cauliflower with tahini parsley sauce 
##                                                                                    25 
##                                        roasted chicken breasts with harissa chickpeas 
##                                                                                    11 
##                                                             roasted chicken provencal 
##                                                                                  1068 
##                              roasted chicken thighs with cauliflower and herby yogurt 
##                                                                                   110 
##                                  roasted chicken thighs with lemon thyme and rosemary 
##                                                                                   189 
##                                  roasted chicken thighs with peaches basil and ginger 
##                                                                                   140 
##                              roasted chicken thighs with peanut butter barbecue sauce 
##                                                                                    67 
##                                             roasted chicken thighs with winter squash 
##                                                                                   231 
##                                                roasted chicken with figs and rosemary 
##                                                                                   104 
##                                                roasted chicken with fish sauce butter 
##                                                                                    22 
##                                             roasted chicken with lemon glazed rhubarb 
##                                                                                    42 
##                                                 roasted chicken with preserved lemons 
##                                                                                    16 
##                                                               roasted coconut carrots 
##                                                                                    23 
##                                                        roasted corn and edamame salad 
##                                                                                    12 
##                                                         roasted corn and tomato salsa 
##                                                                                     5 
##                     roasted delicata squash with peanut sesame and squash seed dukkah 
##                                                                                     8 
##                                                                   roasted dill salmon 
##                                                                                   115 
##                                                             roasted duck fat potatoes 
##                                                                                    31 
##                                         roasted eggplant and buffalo mozzarella pizza 
##                                                                                    20 
##                                      roasted eggplant and chickpeas with tomato sauce 
##                                                                                    28 
##                                                roasted eggplant and red pepper gratin 
##                                                                                     5 
##                                                     roasted eggplant and tomato pasta 
##                                                                                   103 
##                                 roasted eggplant salad with leeks and cilantro leaves 
##                                                                                     6 
##                                                roasted eggplant with spiced chickpeas 
##                                                                                    34 
##                                                    roasted eggplant yogurt cheese dip 
##                                                                                     2 
##                                             roasted fish with blood orange and fennel 
##                                                                                     6 
##                                            roasted fish with ginger scallions and soy 
##                                                                                    47 
##                                   roasted fish with lemon sesame and herb breadcrumbs 
##                                                                                     9 
##                                                       roasted fish with romesco salsa 
##                                                                                     1 
##                                           roasted fish with spice butter and tomatoes 
##                                                                                    22 
##                                       roasted garlic and white bean dip with rosemary 
##                                                                                    79 
##                                                                    roasted garlic oil 
##                                                                                     5 
##                                           roasted golden beet and winter squash salad 
##                                                                                    46 
##                                         roasted grape and butternut squash bruschetta 
##                                                                                    10 
##                                                                    roasted grapefruit 
##                                                                                    30 
##                             roasted grapes with caramelized wine and yogurt ice cream 
##                                                                                     6 
##                                      roasted green beans with pancetta and lemon zest 
##                                                                                    26 
##                                            roasted halibut and potatoes with rosemary 
##                                                                                    63 
##                                       roasted halibut with lemons olives and rosemary 
##                                                                                   171 
##                                                    roasted hazelnut vanilla ice cream 
##                                                                                     4 
##                      roasted japanese eggplant with crushed tomato pecorino and thyme 
##                                                                                    22 
##                                                                     roasted lamb ribs 
##                                                                                    23 
##                                                roasted leeks and potatoes vinaigrette 
##                                                                                     8 
##                                                         roasted mango or banana lassi 
##                                                                                     7 
##                                             roasted mushroom and broccoli grain bowls 
##                                                                                    47 
##                                            roasted mushroom and butternut squash tart 
##                                                                                   123 
##                                                 roasted mushroom and gruyere sandwich 
##                                                                                    23 
##                                                                 roasted mushroom base 
##                                                                                    23 
##                     roasted mushrooms with braised black lentils and parsley croutons 
##                                                                                    30 
##                                                         roasted mushrooms with garlic 
##                                                                                    11 
##                                  roasted mushrooms with goat cheese and organic grits 
##                                                                                     2 
##                                         roasted new potatoes with garlic and tamarind 
##                                                                                    19 
##                                                               roasted okra and onions 
##                                                                                    20 
##                                 roasted or grilled whole fish with tomato vinaigrette 
##                                                                                     9 
##                                                      roasted orange negroni sbagliato 
##                                                                                     3 
##                                                              roasted pear quick bread 
##                                                                                    26 
##                                         roasted pears with coconut butterscotch sauce 
##                                                                                    11 
##                                               roasted pepper and goat cheese sandwich 
##                                                                                    15 
##                                                                  roasted pepper sauce 
##                                                                                    13 
##                                                       roasted pepper tacos with cream 
##                                                                                     1 
##                                                                roasted pepper tartine 
##                                                                                    13 
##                                        roasted peppers with capers olives and anchovy 
##                                                                                     7 
##                                                    roasted peppers with lemon ricotta 
##                                                                                    19 
##                                                              roasted pistachio butter 
##                                                                                     1 
##                                                roasted pork with red chili corn bread 
##                                                                                     1 
##                                                        roasted portobellos with pesto 
##                                                                                    22 
##                                                                   roasted potato hash 
##                                                                                    45 
##                                              roasted potatoes with anchovies and tuna 
##                                                                                   205 
##                                                  roasted potatoes with figs and thyme 
##                                                                                    27 
##                                                                 roasted pumpkin seeds 
##                                                                                    11 
##                                                   roasted rabbit with olives and feta 
##                                                                                     9 
##                                                               roasted radish crostini 
##                                                                                    24 
##                                                       roasted radishes with anchovies 
##                                                                                    36 
##                                                   roasted red pepper filled with tuna 
##                                                                                    13 
##                                                               roasted rhubarb cobbler 
##                                                                                    68 
##                                                               roasted root vegetables 
##                                                                                    15 
##                                                  roasted root vegetables with polenta 
##                                                                                    35 
##                             roasted salmon and brussels sprouts with citrus soy sauce 
##                                                                                    76 
##                                    roasted salmon glazed with brown sugar and mustard 
##                                                                                   509 
##                                  roasted salmon with asparagus lemon and brown butter 
##                                                                                    35 
##                                                   roasted salmon with fennel and lime 
##                                                                                    91 
##                                           roasted salmon with jalapeno honey and lime 
##                                                                                    77 
##                         roasted salmon with miso rice and ginger scallion vinaigrette 
##                                                                                   153 
##                                                 roasted salmon with peas and radishes 
##                                                                                    70 
##                                               roasted salmon with toasted sesame slaw 
##                                                                                    26 
##                                               roasted sausages with grapes and onions 
##                                                                                   224 
##                                        roasted shrimp and pineapple with peanut sauce 
##                                                                                    41 
##                                                    roasted shrimp cocktail with aioli 
##                                                                                    31 
##                                                       roasted shrimp with breadcrumbs 
##                                                                                    34 
##                                                roasted shrimp with rosemary and lemon 
##                                                                                    16 
##                          roasted squash and ginger noodle soup with winter vegetables 
##                                                                                    11 
##                           roasted squash and radicchio salad with buttermilk dressing 
##                                                                                    77 
##                                       roasted squash and red onion gratin with quinoa 
##                                                                                    32 
##                                                     roasted squash with cheese fondue 
##                                                                                    15 
##                                          roasted squash with coconut chile and garlic 
##                                                                                    21 
##                                              roasted squash with kale and vinaigrette 
##                                                                                    14 
##                                                 roasted squash with pancetta and sage 
##                                                                                     4 
##                                         roasted squash with turmeric ginger chickpeas 
##                                                                                    96 
##                                               roasted squid with chorizo and pimenton 
##                                                                                    10 
##                                                       roasted sweet potato oven fries 
##                                                                                    15 
##                                                      roasted sweet potato pie or flan 
##                                                                                    11 
##                        roasted sweet potato salad with black beans and chile dressing 
##                                                                                    50 
##                                                 roasted sweet potatoes and fresh figs 
##                                                                                    39 
##                                        roasted sweet potatoes with horseradish butter 
##                                                                                    23 
##                                  roasted sweet potatoes with hot honey browned butter 
##                                                                                     8 
##                                            roasted sweet potatoes with smoked paprika 
##                                                                                    63 
##                                   roasted sweet potatoes with yogurt and sesame seeds 
##                                                                                    41 
##                                               roasted tomatillo poblano avocado salsa 
##                                                                                     6 
##                                        roasted tomato and corn pie with cheddar crust 
##                                                                                    27 
##                                                    roasted tomato and white bean stew 
##                                                                                   775 
##                                                          roasted tomato coconut sauce 
##                                                                                    28 
##                                          roasted tomato mozzarella and pesto calzones 
##                                                                                    34 
##                                            roasted tomato tart with ricotta and pesto 
##                                                                                   128 
##                                                                      roasted tomatoes 
##                                                                                     5 
##                                roasted tomatoes and lentils with dukkah crumbled eggs 
##                                                                                     3 
##                                            roasted tomatoes and whipped feta on toast 
##                                                                                    15 
##                               roasted turkey drumsticks with star anise and soy sauce 
##                                                                                    12 
##                                                                  roasted turkey stock 
##                                                                                    81 
##                                    roasted turnips and winter squash with agave glaze 
##                                                                                     8 
##                                    roasted vegan sausages with cauliflower and olives 
##                                                                                    58 
##                                                            roasted vegetable bibimbap 
##                                                                                    27 
##                                                 roasted vegetable galette with olives 
##                                                                                     7 
##                                                                    roasted vegetables 
##                                                                                    98 
##                                                                  roasted veggie tarts 
##                                                                                    12 
##                                                 roasted winter squash with miso glaze 
##                                                                                    15 
##                                                               roasted winter tomatoes 
##                                                                                    44 
##                                                       roasted winter vegetable medley 
##                                                                                     8 
##                            roasted zucchini with garlicky bread crumbs and mozzarella 
##                                                                                   111 
##                                                              robb walshs chili powder 
##                                                                                     3 
##                                                                          robert burns 
##                                                                                     2 
##                                                                  robertas pizza dough 
##                                                                                   813 
##                                                                    rock and rye toddy 
##                                                                                     1 
##                                                          rock fish and spinach gratin 
##                                                                                    11 
##                                                                      rock shrimp roll 
##                                                                                    35 
##                                           rocky mountain rainbow trout with trout roe 
##                                                                                     1 
##                                                             rocky road ice cream bars 
##                                                                                     3 
##                               romaine and radish salad with buttermilk lemon dressing 
##                                                                                     7 
##                                                  romaine salad with couscous confetti 
##                                                                                     4 
##                                                                  roman breakfast cake 
##                                                                                    90 
##                                                                   roman egg drop soup 
##                                                                                    39 
##                                                                          roman steaks 
##                                                                                     3 
##                                                    roman style baked semolina gnocchi 
##                                                                                     3 
##                               roman style spring lamb with fresh sugar snap pea salad 
##                                                                                    19 
##                                                                         romesco sauce 
##                                                                                    17 
##                                                                 root vegetable gratin 
##                                                                                    14 
##                                                                   root vegetable soup 
##                                                                                    71 
##                                            root vegetable tagine with herbed couscous 
##                                                                                    17 
##                                                                            ropa vieja 
##                                                                                    58 
##                                                        roquefort leek and walnut tart 
##                                                                                     9 
##                                                                rose and almond ghriba 
##                                                                                    73 
##                                                                       rose apple tart 
##                                                                                    54 
##                                                                           rose cooler 
##                                                                                     6 
##                                                            rose petal and vanilla tea 
##                                                                                     2 
##                                                                           rose royale 
##                                                                                    19 
##                                                                          rose sangria 
##                                                                                     2 
##                               rose scented berry tart with an almond shortbread crust 
##                                                                                    10 
##                                                rosemary and citrus turkey for a crowd 
##                                                                                    23 
##                                                        rosemary and pistachio granola 
##                                                                                     2 
##                                                                   rosemary applesauce 
##                                                                                     5 
##                                                          rosemary candied orange peel 
##                                                                                     3 
##                                                    rosemary olive oil and orange cake 
##                                                                                   131 
##                                           rosemary rack of lamb with crushed potatoes 
##                                                                                   106 
##                                         rosh hashana chicken with cinnamon and apples 
##                                                                                     3 
##                                                  rosh hashana meat stuffed vegetables 
##                                                                                     1 
##                                                              rosie schaaps cuba libre 
##                                                                                     6 
##                                                                 rosie schaaps negroni 
##                                                                                    14 
##                                                                                 rosti 
##                                                                                    29 
##                                                                                  roti 
##                                                                                    28 
##                                                         rotisserie chicken panzanella 
##                                                                                     8 
##                                        rotisserie chicken salad with greens and herbs 
##                                                                                    35 
##                                                                              rotkraut 
##                                                                                    21 
##                                                      roy chois braised short rib stew 
##                                                                                   121 
##                                                                 roy chois carne asada 
##                                                                                    47 
##                                                                            royal fans 
##                                                                                     2 
##                                                                           royal icing 
##                                                                                    22 
##                                                                              rugelach 
##                                                                                    24 
##                                                               rum and pineapple juice 
##                                                                                     2 
##                                                                         rum and tonic 
##                                                                                     7 
##                                                                            rum barrel 
##                                                                                     1 
##                             rum cranberry ice cream with walnuts and chocolate chunks 
##                                                                                     5 
##                                                                              rum flip 
##                                                                                     6 
##                                                                             rum julep 
##                                                                                     1 
##                                                                         rum manhattan 
##                                                                                     1 
##                                                                   rum manhattan style 
##                                                                                     6 
##                                                                       rum raisin cake 
##                                                                                     6 
##                                                                  rum raisin hot cocoa 
##                                                                                     2 
##                                                            rum with iced hibiscus tea 
##                                                                                     3 
##                                                                    russian honey cake 
##                                                                                   107 
##                                                                         russian salad 
##                                                                                   160 
##                                                                    russian salmon pie 
##                                                                                    64 
##                                                             rustic apple streusel pie 
##                                                                                     6 
##                                                rustic cabbage beef and buckwheat soup 
##                                                                                     6 
##                                                   rustic french pork and chicken pate 
##                                                                                    25 
##                                                 rustic plum crostata with lemon thyme 
##                                                                                    16 
##                                              rustic rancho gordo yellow eye bean soup 
##                                                                                    22 
##                                                                  rustic shrimp bisque 
##                                                                                    17 
##                                                                rustic shrimp cocktail 
##                                                                                    11 
##                                                                   rustic tomato toast 
##                                                                                     9 
##                                                       rutabaga potato mash with bacon 
##                                                                                     8 
##                                                     rutabaga soup with bacon and sage 
##                                                                                     8 
##                                                          ruth reichls chicken diavolo 
##                                                                                    49 
##                                                     ruth reichls giant chocolate cake 
##                                                                                   151 
##                                                 rye and cornmeal muffins with caraway 
##                                                                                    21 
##                                                                   rye and ginger cake 
##                                                                                     3 
##                                                               rye caraway breadsticks 
##                                                                                     1 
##                                                            rye chocolate chip cookies 
##                                                                                    51 
##                                                                     rye old fashioned 
##                                                                                     9 
##                                                                         rye pecan pie 
##                                                                                    23 
##                                                                          rye pretzels 
##                                                                                     8 
##                                                                   rye spaetzle gratin 
##                                                                                    14 
##                                                                       rye tarte tatin 
##                                                                                     8 
##                                       rye toasts with smoked trout and scrambled eggs 
##                                                                                     3 
##                                                                             saag aloo 
##                                                                                     4 
##                                                                           saag paneer 
##                                                                                    54 
##                             saag tofu tofu with spinach ginger coriander and turmeric 
##                                                                                   141 
##                                                      sabines stuffed zucchini flowers 
##                                                                                     1 
##                                                     sable breton galette with berries 
##                                                                                     7 
##                                                         sablefish with hazelnut crust 
##                                                                                     5 
##                                          sabudana khichdi maharashtrian tapioca pilaf 
##                                                                                   106 
##                                                          sabut raan roast leg of lamb 
##                                                                                    15 
##                                                    sabzi polo herbed rice with tahdig 
##                                                                                    75 
##                                                        sabzi polo persian herbed rice 
##                                                                                    11 
##                                                                          sacher torte 
##                                                                                    26 
##                                                   saffron and mushroom barley risotto 
##                                                                                    12 
##                                     saffron fish with red peppers and preserved lemon 
##                                                                                    55 
##                                                            saffron honey marshmallows 
##                                                                                    12 
##                                 saffron ravioli with wild mushrooms and cashew cheese 
##                                                                                     1 
##                            saffron risotto with spring onion saffron and green garlic 
##                                                                                     4 
##                                              saffron sweet potato and red pepper soup 
##                                                                                     1 
##                                                                    sagaponack sangria 
##                                                                                     2 
##                                        sake steamed chicken with ginger and scallions 
##                                                                                    14 
##                                           sake steamed kabocha squash with white miso 
##                                                                                    22 
##                               salad e shirazi persian cucumber tomato and onion salad 
##                                                                                    97 
##                                             salad pizza with white beans and parmesan 
##                                                                                     5 
##                                                salad with anchovy mustard vinaigrette 
##                                                                                    27 
##                                                  salad with buttermilk basil dressing 
##                                                                                     5 
##                   salade juive moroccan confit of tomatoes and peppers with coriander 
##                                                                                     1 
##                                                                      salade lyonnaise 
##                                                                                    51 
##                                                salade nicoise with yogurt vinaigrette 
##                                                                                    20 
##                                 salmon and couscous salad with cucumber feta dressing 
##                                                                                   120 
##                                         salmon and cucumber tartare with wasabi sauce 
##                                                                                     2 
##                                                           salmon and tomatoes in foil 
##                                                                                   233 
##                                                   salmon cakes with thai basil yogurt 
##                                                                                     9 
##                                               salmon en papillote salmon in parchment 
##                                                                                    46 
##                                                                     salmon fried rice 
##                                                                                    64 
##                                                                  salmon in fig leaves 
##                                                                                    16 
##                                                                salmon or tuna tartare 
##                                                                                     5 
##                                                                      salmon rillettes 
##                                                                                     4 
##                                   salmon roe topped baked potatoes with creme fraiche 
##                                                                                     8 
##                                          salmon tacos with greens and tomatillo salsa 
##                                                                                     9 
##                                                     salmon with agrodolce blueberries 
##                                                                                    36 
##                                                     salmon with anchovy garlic butter 
##                                                                                   411 
##                                            salmon with barbecue sauce and hot peppers 
##                                                                                     7 
##                                          salmon with crushed blackberries and seaweed 
##                                                                                    35 
##                                   salmon with potatoes and horseradish tarragon sauce 
##                                                                                   106 
##                                                          salmon with sesame and herbs 
##                                                                                   151 
##                                                      salmon with smoked salmon butter 
##                                                                                    29 
##                                                      salmon with whole lemon dressing 
##                                                                                   212 
##                                                                             salmorejo 
##                                                                                     7 
##                                                                                 salsa 
##                                                                                     1 
##                                                                           salsa cruda 
##                                                                                     5 
##                                                                          salsa fresca 
##                                                                                    30 
##                                                                           salsa macha 
##                                                                                    35 
##                                                                            salsa roja 
##                                                                                     3 
##                                             salsa tatemada nortena fire roasted salsa 
##                                                                                    21 
##                                                                           salsa verde 
##                                                                                     7 
##                                                             salt and pepper beef ribs 
##                                                                                    16 
##                                                         salt and pepper roast chicken 
##                                                                                   138 
##                                                     salt and vinegar roasted potatoes 
##                                                                                    40 
##                                   salt baked new potatoes with pink peppercorn butter 
##                                                                                   105 
##                                                                      salt baked pears 
##                                                                                     7 
##                                                                 salt broiled mackerel 
##                                                                                     4 
##                                                     salt cod potato and chickpea stew 
##                                                                                    16 
##                                                      salt crusted fingerling potatoes 
##                                                                                     8 
##                                          salt massaged cucumbers with miso and sesame 
##                                                                                     2 
##                                    salt packed cold roast beef with bread crumb salsa 
##                                                                                     6 
##                                                                     salt rising bread 
##                                                                                    90 
##                                 salt rubbed sweet potatoes with sour cream and chives 
##                                                                                     6 
##                                                          salted apricot honey cobbler 
##                                                                                    25 
##                                                               salted caramel brownies 
##                                                                                    86 
##                                                                salted caramel cookies 
##                                                                                    42 
##                                                              salted caramel ice cream 
##                                                                                    42 
##                                                    salted caramel peanut brownie bars 
##                                                                                    27 
##                                                           salted caramel rice pudding 
##                                                                                    35 
##                                             salted chocolate chunk shortbread cookies 
##                                                                                   621 
##                                      salted chocolate pudding with whipped sour cream 
##                                                                                    86 
##                                                         salted cocoa hazelnut cookies 
##                                                                                    23 
##                                      salted dark chocolate cake with ganache frosting 
##                                                                                    49 
##                                                                   salted honey butter 
##                                                                                     6 
##                                                          salted lemon ginger spritzer 
##                                                                                    11 
##                                                           salted licorice brigadeiros 
##                                                                                     7 
##                                                                      salted maple pie 
##                                                                                    28 
##                                                           salted pistachio shortbread 
##                                                                                    89 
##                                                               salted pretzel brownies 
##                                                                                    54 
##                                                  salted tahini chocolate chip cookies 
##                                                                                   356 
##                                                      saltimbocca of shad and shad roe 
##                                                                                     1 
##                                                               saltine cracker brickle 
##                                                                                    24 
##                                                                             salty dog 
##                                                                                     3 
##                                                   salty peanut pretzel ice cream cake 
##                                                                                    51 
##                                                                   salty pluff mud pie 
##                                                                                     8 
##                                                         salty spicy vegetable souffle 
##                                                                                     1 
##                                              salty sweet barbecue salmon and broccoli 
##                                                                                    37 
##                                                     salty sweet peanut butter sandies 
##                                                                                   180 
##                                                             sam bealls carrot souffle 
##                                                                                    15 
##                                                           sam siftons vitello tonnato 
##                                                                                     2 
##                                                        sambal stingray in banana leaf 
##                                                                                     2 
##                                                                          sambal tumis 
##                                                                                     5 
##                                                                        sambhar masala 
##                                                                                    10 
##                                  sameh wadis lamb shanks with pomegranate and saffron 
##                                                                                    17 
##                       sameh wadis wheat berries with carrots harissa yogurt and dates 
##                                                                                     9 
##                                                                              samfaina 
##                                                                                     7 
##                                                       samgyetang ginseng chicken soup 
##                                                                                     5 
##                                                                            samosa pie 
##                                                                                    76 
##                                                                               sampita 
##                                                                                    12 
##                                                         samuels roasted mushroom base 
##                                                                                     8 
##                                                                 san antonio margarita 
##                                                                                    72 
##                                             san hua kao ji three flower roast chicken 
##                                                                                     8 
##                                                                              sancocho 
##                                                                                     2 
##                                                     santa maria style grilled tri tip 
##                                                                                     9 
##                                                               santiago style daiquiri 
##                                                                                     3 
##                                                                     saras spinach pie 
##                                                                                     8 
##                                                             saratoga holiday cocktail 
##                                                                                    14 
##                                                                     saratoga potatoes 
##                                                                                    14 
##                                            sardine toasts with tomato and sweet onion 
##                                                                                   155 
##                                                         sardines in vinegar escabeche 
##                                                                                     1 
##                                                                        sauce gribiche 
##                                                                                    13 
##                                                                            sauerkraut 
##                                                                                     4 
##                                                                 sauerkraut and apples 
##                                                                                    24 
##                                                       sauerkraut jeon korean pancakes 
##                                                                                    43 
##                                                                 sauerkraut with bacon 
##                                                                                     4 
##                                               sausage and peppers pasta with broccoli 
##                                                                                   229 
##                                                        sausage egg and kale casserole 
##                                                                                    37 
##                                                                         sausage gravy 
##                                                                                   101 
##                                                                          sausage ragu 
##                                                                                   233 
##                                                                         sausage rolls 
##                                                                                    47 
##                                                                 sausage sage biscuits 
##                                                                                    22 
##                                                        sausage with chard and rhubarb 
##                                                                                    65 
##                                                       sausage with peppers and onions 
##                                                                                   105 
##                                                       sausages with apples and onions 
##                                                                                    58 
##                                                sausages with potatoes and red cabbage 
##                                                                                    75 
##                                                 sausages with tangy gingery pineapple 
##                                                                                   122 
##                                                                   sauteed apple rings 
##                                                                                    12 
##                                                                 sauteed baby bok choy 
##                                                                                    65 
##                                                             sauteed beets with butter 
##                                                                                     8 
##                                        sauteed beets with pasta sage and brown butter 
##                                                                                    26 
##                                     sauteed bluefish with spicy salad and ginger rice 
##                                                                                     2 
##                                                sauteed broccoli with garlic and chile 
##                                                                                     1 
##                                                              sauteed brussels sprouts 
##                                                                                    27 
##                                    sauteed brussels sprouts and apple with prosciutto 
##                                                                                    27 
##                           sauteed brussels sprouts with sausage and pickled red onion 
##                                                                                   124 
##                                          sauteed calfs liver with bacon and radicchio 
##                                                                                     4 
##                                                 sauteed chicken breasts with tarragon 
##                                                                                    90 
##                                              sauteed chicken with licorice and ginger 
##                                                                                     1 
##                                                      sauteed chicken with meyer lemon 
##                                                                                   199 
##                                                   sauteed chicken with roasted grapes 
##                                                                                     9 
##                                               sauteed corn greens bacon and scallions 
##                                                                                    59 
##                                                   sauteed endive with balsamic butter 
##                                                                                     5 
##                                        sauteed flounder with green beans and potatoes 
##                                                                                    14 
##                                            sauteed greens with smoked paprika for two 
##                                                                                    23 
##                                                                          sauteed kale 
##                                                                                   200 
##                               sauteed lamb chops with ramps anchovy capers and olives 
##                                                                                    41 
##                                      sauteed lobster with potatoes tomatoes and basil 
##                                                                                     4 
##                                                                     sauteed mushrooms 
##                                                                                     8 
##                                          sauteed potatoes with black kale and nigella 
##                                                                                    17 
##                                            sauteed salmon with brown butter cucumbers 
##                                                                                    58 
##                                                                      sauteed scallops 
##                                                                                    64 
##                                             sauteed scallops with crushed peppercorns 
##                                                                                    29 
##                             sauteed scallops with shredded duck and hollandaise sauce 
##                                                                                    18 
##                                                   sauteed shredded cabbage and squash 
##                                                                                    13 
##                                                 sauteed shrimp with capers and olives 
##                                                                                    22 
##                                  sauteed shrimp with coconut oil ginger and coriander 
##                                                                                    54 
##                                             sauteed shrimp with fermented black beans 
##                                                                                     8 
##                                                sauteed shrimp with garlic and saffron 
##                                                                                    25 
##                                               sauteed spicy carrots with black quinoa 
##                                                                                     5 
##                                               sauteed squid with chiles mint and lime 
##                                                                                    19 
##                                      sauteed squid with garlic chili and bread crumbs 
##                                                                                     1 
##                   sauteed winter squash with swiss chard red quinoa and aleppo pepper 
##                                                                                     9 
##                                                                    save the day rosti 
##                                                                                     4 
##                                                   savory babka with ricotta and herbs 
##                                                                                    72 
##                            savory bread pudding with artichokes cheddar and scallions 
##                                                                                    34 
##                                    savory bread pudding with broccoli and goat cheese 
##                                                                                    20 
##                                          savory bread pudding with kale and mushrooms 
##                                                                                    40 
##                                  savory bread pudding with swiss chard and red pepper 
##                                                                                     6 
##                                                                   savory burmese slaw 
##                                                                                    12 
##                                    savory butternut squash and parmesan bread pudding 
##                                                                                    21 
##                                                               savory cheddar biscotti 
##                                                                                    15 
##                                            savory clafoutis with corn and swiss chard 
##                                                                                    76 
##                                                                  savory corn fritters 
##                                                                                    46 
##                                      savory cornbread muffins with jalapenos and corn 
##                                                                                    13 
##                                                             savory cornbread stuffing 
##                                                                                    49 
##                                                                     savory dutch baby 
##                                                                                   178 
##                                    savory french toast with cherry tomatoes and basil 
##                                                                                    22 
##                                                            savory gruyere olive bread 
##                                                                                    89 
##                                                          savory ham and gruyere bread 
##                                                                                    32 
##                                                                  savory melon tartare 
##                                                                                     3 
##                                                                savory mini madeleines 
##                                                                                     6 
##                                                              savory oatmeal pan bread 
##                                                                                     9 
##                                                 savory oatmeal with greens and yogurt 
##                                                                                    56 
##                                        savory olive oil bread with figs and hazelnuts 
##                                                                                    10 
##                                                                  savory pecan cookies 
##                                                                                    31 
##                                                                    savory potato tart 
##                                                                                    52 
##                                         savory scones with onion currants and caraway 
##                                                                                     6 
##                                                             savory spiced carrot cake 
##                                                                                    47 
##                                       savory steel cut oats with fried egg and zaatar 
##                                                                                    31 
##                                    savory sticky rice bowls or stir fried sticky rice 
##                                                                                     2 
##                                      savory thai noodles with seared brussels sprouts 
##                                                                                    83 
##                                                                  savory tomato sorbet 
##                                                                                     2 
##                                                                        savory waffles 
##                                                                                     6 
##                   savory whole wheat bread pudding with seared tomatoes and mushrooms 
##                                                                                     3 
##                          savory whole wheat buttermilk scones with rosemary and thyme 
##                                                                                    21 
##                      savoy cabbage slaw with applesauce vinaigrette and mustard seeds 
##                                                                                    12 
##                                                                               sazerac 
##                                                                                    15 
##                                                                                 sazon 
##                                                                                     2 
##                                                          sazon spiced shrimp and okra 
##                                                                                    16 
##                                                            scallion and celery quiche 
##                                                                                    20 
##                                                   scallion cheddar cornbread stuffing 
##                                                                                    13 
##                                                             scallion cornmeal waffles 
##                                                                                    29 
##                                                scallion cream cheese bagel shop style 
##                                                                                     5 
##                                                                     scallion egg wrap 
##                                                                                    38 
##                                              scallion meatballs with soy ginger glaze 
##                                                                                   177 
##                                                          scallion pancakes with squid 
##                                                                                    37 
##                                                            scallop and pepper tempura 
##                                                                                     1 
##                                                              scallop and plum ceviche 
##                                                                                     2 
##                                                                      scallop bourride 
##                                                                                     1 
##                                                                         scallop gumbo 
##                                                                                    66 
##                                                                    scallop panzanella 
##                                                                                     3 
##                                                                         scallop salad 
##                                                                                     9 
##                                                                   scallop salsa cruda 
##                                                                                     1 
##                                                               scalloped potato gratin 
##                                                                                    61 
##                                                                    scalloped potatoes 
##                                                                                   108 
##                                                            scallops and mango skewers 
##                                                                                     2 
##                                     scallops with pomegranate syrup and foriana sauce 
##                                                                                    11 
##                                                           scallops with sorrel butter 
##                                                                                    35 
##                                                              scaloppine with any meat 
##                                                                                    32 
##                                                                  scarletts tuna salad 
##                                                                                   120 
##                                                                 schmaltz and gribenes 
##                                                                                    16 
##                                                                       schmaltz latkes 
##                                                                                    15 
##                                                     schmaltz roasted brussels sprouts 
##                                                                                    19 
##                                                                             schnitzel 
##                                                                                    33 
##                                                                        scirocco punch 
##                                                                                     4 
##                                                                         scorpion bowl 
##                                                                                    15 
##                                                                scotch broth with kale 
##                                                                                    15 
##                                            scott peacocks classic buttermilk biscuits 
##                                                                                     2 
##                                                    scrambled eggs with chicken livers 
##                                                                                     8 
##                                                           scrambled eggs with peppers 
##                                                                                     1 
##                                                         scrambled eggs with trout roe 
##                                                                                     2 
##                                                          scrambled eggs with zucchini 
##                                                                                    66 
##                                                            scrambled peppers and eggs 
##                                                                                    23 
##                                  scrambled tofu with tomatoes scallions and soy sauce 
##                                                                                    11 
##                                                                              scrapple 
##                                                                                     3 
##                                                                scratchy husband pasta 
##                                                                                    89 
##                                                      screaming eagle cheese steak sub 
##                                                                                    64 
##                                                                     screaming greenie 
##                                                                                     1 
##                                               sea bass in a salt crust from ile de re 
##                                                                                     1 
##                                                                 sea scallop carpaccio 
##                                                                                     2 
##                                    sea scallop salad with meyer lemon and pomegranate 
##                                                                                     1 
##                                       sea scallops with brown butter capers and lemon 
##                                                                                   148 
##                                sea scallops with cider glaze and cauliflower two ways 
##                                                                                    18 
##                                                                       seafood chowder 
##                                                                                    93 
##                                                                      seafood in stout 
##                                                                                     1 
##                                                      seafood paella and saffron aioli 
##                                                                                    10 
##                                          seafood pasta with tomato and crushed olives 
##                                                                                    83 
##                                                         seamus mullens pan con tomate 
##                                                                                     8 
##                seared and roasted brussels sprouts with red pepper and mint gremolata 
##                                                                                     2 
##                                           seared belgian endive with walnut gremolata 
##                                                                                    14 
##                                                       seared broccoli and potato soup 
##                                                                                   204 
##                                                               seared brussels sprouts 
##                                                                                    16 
##                                        seared chicken breast with potatoes and capers 
##                                                                                    17 
##                                                           seared fish with beet salsa 
##                                                                                     6 
##                                               seared fish with creamed kale and leeks 
##                                                                                    27 
##                                             seared fish with shiitake mushroom ragout 
##                                                                                    11 
##                                                              seared frozen rib steaks 
##                                                                                     6 
##                                             seared grapefruit with ginger maple syrup 
##                                                                                     9 
##                                                         seared herb marinated chicken 
##                                                                                    49 
##                                      seared lamb chops with anchovies capers and sage 
##                                                                                   110 
##                              seared lamb chops with lemon and butter braised potatoes 
##                                                                                    11 
##                                              seared lamb ribs with spicy yogurt sauce 
##                                                                                     5 
##                                                      seared lamb with a smoky slather 
##                                                                                     2 
##                                     seared pork cutlets with green garlic salsa verde 
##                                                                                    57 
##                                                             seared red cabbage wedges 
##                                                                                    17 
##                                 seared red rice with spinach mushrooms carrot and egg 
##                                                                                     3 
##                                                                      seared rib steak 
##                                                                                    15 
##                                           seared salmon with citrus and arugula salad 
##                                                                                    48 
##                                    seared scallop pasta with burst tomatoes and herbs 
##                                                                                   152 
##                                           seared scallops with hot sauce beurre blanc 
##                                                                                    22 
##                                            seared scallops with jammy cherry tomatoes 
##                                                                                   183 
##                                           seared sea scallops with ginger lime butter 
##                                                                                    83 
##                                           seared sea scallops with pistachio dressing 
##                                                                                    13 
##                                          seared sea scallops with spicy carrot coulis 
##                                                                                    73 
##                                  seared shishito peppers with corn and japanese curry 
##                                                                                     8 
##                                            seared shrimp with chard chiles and ginger 
##                                                                                    47 
##                                                    seared summer squash and egg tacos 
##                                                                                     9 
##                                               seared tuna white bean and fennel salad 
##                                                                                    36 
##                                                                 seared wild mushrooms 
##                                                                                     5 
##                                 seared zucchini with crispy parmesan and black pepper 
##                                                                                   118 
##                                                                seasoned blanched kale 
##                                                                                     3 
##                                                                         seaweed salad 
##                                                                                    19 
##                                                           seaweed salad with scallops 
##                                                                                     4 
##                                                                  seeded banana frappe 
##                                                                                     9 
##                                                         seeded chocolate chip cookies 
##                                                                                    29 
##                                              seeded molasses whole wheat dinner rolls 
##                                                                                    20 
##                                                                  seeded pecan granola 
##                                                                                    75 
##                                            seeded semolina and rice flour breadsticks 
##                                                                                     2 
##                                                             seeded whole wheat scones 
##                                                                                    15 
##                                                         seekh kebab with mint chutney 
##                                                                                     7 
##                                                                      seis leches cake 
##                                                                                    70 
##                                                                        seitan piccata 
##                                                                                    11 
##                                          seitan roulade with oyster mushroom stuffing 
##                                                                                     4 
##                                                          sekihan red bean sticky rice 
##                                                                                     2 
##                                                    semolina pastry with dates makroud 
##                                                                                     1 
##                                                   sephardic challah with whole spices 
##                                                                                    58 
##                                                                  serious potato skins 
##                                                                                    26 
##                                                                  serious turkey stock 
##                                                                                    23 
##                            sesame braised chicken with scallions daikon and mushrooms 
##                                                                                    17 
##                                                 sesame chicken with cashews and dates 
##                                                                                   146 
##                                                                   sesame coconut bars 
##                                                                                     5 
##                                              sesame crusted pork cutlets with cabbage 
##                                                                                     9 
##                                                           sesame date and banana cake 
##                                                                                    65 
##                                                                      sesame flatbread 
##                                                                                     3 
##                                                     sesame ginger chicken noodle soup 
##                                                                                    30 
##                                                             sesame ginger vinaigrette 
##                                                                                    16 
##                                    sesame glazed duck legs with spicy persimmon salad 
##                                                                                    25 
##                                                             sesame miso chicken salad 
##                                                                                    82 
##                                                                   sesame salmon bowls 
##                                                                                    26 
##                                                         sesame snap pea chicken salad 
##                                                                                    38 
##                                    sesame tofu with coconut lime dressing and spinach 
##                                                                                    75 
##                                                                       seven layer dip 
##                                                                                    23 
##                                                              seven vegetable couscous 
##                                                                                    15 
##                                                                        shaddocks fizz 
##                                                                                     5 
##                                      shake and bake chicken thighs with parmesan peas 
##                                                                                    27 
##                                                                      shaker lemon pie 
##                                                                                    12 
##                                                                     shaker lemon tart 
##                                                                                    30 
##                                                                             shakerato 
##                                                                                     2 
##                                                               shaking beef bo luc lac 
##                                                                                    17 
##                                                                   shakshuka with feta 
##                                                                                   772 
##                                                                shalom japans lox bowl 
##                                                                                    25 
##                                                    shanghai stir fried chunky noodles 
##                                                                                    51 
##                                         shaved asparagus salad with ginger and sesame 
##                                                                                    23 
##                                            shaved asparagus with arugula and parmesan 
##                                                                                     8 
##                                     shaved brussels sprouts with pecorino and walnuts 
##                                                                                    81 
##                                                    shaved butternut squash with dates 
##                                                                                     8 
##                                    shaved fennel and apples with mandarin vinaigrette 
##                                                                                     3 
##                                       shaved turnip salad with arugula and prosciutto 
##                                                                                     5 
##                               sheet pan baked feta with broccolini tomatoes and lemon 
##                                                                                   570 
##                                                                    sheet pan bibimbap 
##                                                                                    51 
##                                                                sheet pan cajun salmon 
##                                                                                    25 
##                               sheet pan chicken and potatoes with feta lemon and dill 
##                                                                                   182 
##                                                             sheet pan chicken fajitas 
##                                                                                    74 
##                                         sheet pan chicken with apple fennel and onion 
##                                                                                    73 
##                                           sheet pan chicken with artichokes and herbs 
##                                                                                    20 
##                                   sheet pan chicken with chickpeas cumin and turmeric 
##                                                                                   252 
##                                    sheet pan chicken with jammy tomatoes and pancetta 
##                                                                                   384 
##                             sheet pan chicken with potatoes arugula and garlic yogurt 
##                                                                                   685 
##                                  sheet pan chicken with potatoes scallions and capers 
##                                                                                   283 
##                                       sheet pan chicken with roasted plums and onions 
##                                                                                   381 
##                                            sheet pan chicken with shallots and grapes 
##                                                                                   244 
##                                               sheet pan chicken with squash and dates 
##                                                                                    75 
##                                       sheet pan chicken with squash fennel and sesame 
##                                                                                    32 
##                                      sheet pan chicken with sweet potatoes and fennel 
##                                                                                   181 
##                                     sheet pan chicken with sweet potatoes and peppers 
##                                                                                   239 
##                                                     sheet pan chocolate chip pancakes 
##                                                                                   197 
##                                      sheet pan cod and scallions with cucumber yogurt 
##                                                                                    36 
##                         sheet pan coriander chicken with caramelized brussels sprouts 
##                                                                                   176 
##                                               sheet pan crisp tofu and sweet potatoes 
##                                                                                   126 
##                                       sheet pan cumin pork chops and brussels sprouts 
##                                                                                   222 
##                                 sheet pan fish with chard and spicy red pepper relish 
##                                                                                    35 
##                                       sheet pan gnocchi with asparagus leeks and peas 
##                                                                                   159 
##                                    sheet pan gochujang chicken and roasted vegetables 
##                                                                                   281 
##                                            sheet pan gochujang shrimp and green beans 
##                                                                                   170 
##                                     sheet pan harissa salmon with potatoes and citrus 
##                                                                                   161 
##                                                          sheet pan italian sub dinner 
##                                                                                    92 
##                                                                 sheet pan jerk salmon 
##                                                                                    25 
##                                             sheet pan kielbasa with cabbage and beans 
##                                                                                   102 
##                                        sheet pan lemony chicken with brussels sprouts 
##                                                                                   122 
##                                         sheet pan miso chicken with radishes and lime 
##                                                                                    71 
##                                   sheet pan paprika chicken with potatoes and turnips 
##                                                                                    67 
##                                  sheet pan paprika chicken with tomatoes and parmesan 
##                                                                                   164 
##                                  sheet pan pierogies with brussels sprouts and kimchi 
##                                                                                    67 
##                                            sheet pan pizza with asparagus and arugula 
##                                                                                    74 
##                                     sheet pan ratatouille with goat cheese and olives 
##                                                                                   125 
##                                    sheet pan roast chicken and mustard glazed cabbage 
##                                                                                   186 
##                                             sheet pan roasted fish with sweet peppers 
##                                                                                   254 
##                                               sheet pan roasted mushrooms and spinach 
##                                                                                    79 
##                                                sheet pan roasted salmon nicoise salad 
##                                                                                   108 
##                                  sheet pan salmon and broccoli with sesame and ginger 
##                                                                                   135 
##                                sheet pan sausage meatballs with tomatoes and broccoli 
##                                                                                    42 
##                                     sheet pan sausage parmesan with garlicky broccoli 
##                                                                                    83 
##                                           sheet pan sausage with peppers and tomatoes 
##                                                                                   164 
##                             sheet pan sausage with spring onions potatoes and mustard 
##                                                                                    54 
##                            sheet pan sausages and brussels sprouts with honey mustard 
##                                                                                   289 
##                            sheet pan sausages and mushrooms with arugula and croutons 
##                                                                                    63 
##                               sheet pan sausages with caramelized shallots and apples 
##                                                                                   267 
##                                              sheet pan scallion chicken with bok choy 
##                                                                                   171 
##                                                                 sheet pan shrimp boil 
##                                                                                    41 
##                                                               sheet pan shrimp scampi 
##                                                                                   119 
##                                       sheet pan shrimp with tomatoes feta and oregano 
##                                                                                   188 
##                                                sheet pan spicy roasted broccoli pasta 
##                                                                                   295 
##                                                                      sheet pan supper 
##                                                                                   105 
##                                 sheet pan tarragon chicken with sherry vinegar onions 
##                                                                                   213 
##                                       sheet pan tostadas with black beans and peppers 
##                                                                                    83 
##                                              sheet pan trout with garlicky broccolini 
##                                                                                    72 
##                                                                     shell bean ragout 
##                                                                                     6 
##                                        shell bean salad with tomatoes celery and feta 
##                                                                                     2 
##                                                                  shell bean succotash 
##                                                                                     1 
##                                        shell beans and potato ragout with swiss chard 
##                                                                                     2 
##                                                 shellfish minestrone with basil pesto 
##                                                                                     1 
##                                       shells with summer squash corn beans and tomato 
##                                                                                     6 
##                                                                         shepherds pie 
##                                                                                   195 
##                                        sherried lentil soup with sausage and croutons 
##                                                                                    10 
##                                                                      sherry margarita 
##                                                                                     4 
##                                                          sherry vinegar glazed onions 
##                                                                                    12 
##                                                                sheveed polo dill rice 
##                                                                                    43 
##                                                            shiro ground chickpea stew 
##                                                                                    41 
##                                                      sholeh zard persian rice pudding 
##                                                                                    57 
##                                                                           shoofly pie 
##                                                                                    26 
##                                                                    short grained rice 
##                                                                                     6 
##                                                                short rib chili nachos 
##                                                                                    34 
##                                         short ribs in broth with squash and shiitakes 
##                                                                                     3 
##                                                                    shortbread 10 ways 
##                                                                                   160 
##                                                                    shortbread jammers 
##                                                                                    82 
##                                          shortbread plum tart with honey and cinnamon 
##                                                                                    59 
##                                      shortcut banh mi with pickled carrots and daikon 
##                                                                                    50 
##                                                                  shortcut chilaquiles 
##                                                                                    30 
##                                                                   shortcut choucroute 
##                                                                                    28 
##                                                                    shortcut guanciale 
##                                                                                    13 
##                                                                     shortcut moussaka 
##                                                                                    36 
##                                                                    shortcut pie crust 
##                                                                                    38 
##                                                                shortcut sausage rolls 
##                                                                                     1 
##                                       shredded beet and radish slaw with rice noodles 
##                                                                                     8 
##                           shredded butternut squash with brown butter sage and pecans 
##                                                                                    10 
##                                        shredded oxtail salad with mustard and shallot 
##                                                                                     1 
##                                                 shredded red cabbage and carrot salad 
##                                                                                    16 
##                                                               shredded red chile meat 
##                                                                                    18 
##                                                                   shredded roast duck 
##                                                                                    12 
##                                                   shredded tofu and shiitake stir fry 
##                                                                                   180 
##                                                              shredded vegetable socca 
##                                                                                    13 
##                                                       shrikhand sweet strained yogurt 
##                                                                                    51 
##                                                                  shrimp alla marinara 
##                                                                                    36 
##             shrimp and avocado salad with citrus vinaigrette camarones a la vinagreta 
##                                                                                    14 
##            shrimp and avocado salad with citrus vinaigrette camarones a la vinagretta 
##                                                                                     6 
##                                                            shrimp and brown rice soup 
##                                                                                     2 
##                                                           shrimp and cilantro shu mai 
##                                                                                    22 
##                                                            shrimp and crab campechana 
##                                                                                     2 
##                               shrimp and grits with roasted tomato fennel and sausage 
##                                                                                    19 
##                                                           shrimp and kimchi rice bowl 
##                                                                                    14 
##                                                                shrimp and mango tacos 
##                                                                                   107 
##                             shrimp and potatoes in sambal sambal goreng kentang udang 
##                                                                                    11 
##                                         shrimp and roasted sweet potato hash stuffing 
##                                                                                     1 
##                                                          shrimp and scallop dumplings 
##                                                                                    15 
##                                       shrimp and white beans with fennel and pancetta 
##                                                                                   100 
##                                                  shrimp bathed in olive oil and lemon 
##                                                                                     2 
##                                                                      shrimp bolognese 
##                                                                                    66 
##                                                     shrimp cilantro and tamarind soup 
##                                                                                    21 
##                                                                         shrimp creole 
##                                                                                   263 
##                                                                       shrimp etouffee 
##                                                                                    73 
##                                              shrimp fajitas with peppers and zucchini 
##                                                                                    42 
##                                                   shrimp gumbo with andouille sausage 
##                                                                                    98 
##                                                            shrimp in chardonnay sauce 
##                                                                                     5 
##                                                                  shrimp in green mole 
##                                                                                    21 
##                                                                   shrimp in purgatory 
##                                                                                    30 
##                                                    shrimp in tomatillo and herb sauce 
##                                                                                    13 
##                                                                      shrimp jambalaya 
##                                                                                    27 
##                                           shrimp linguine with herbs corn and arugula 
##                                                                                   169 
##                                                                      shrimp marks way 
##                                                                                     4 
##                                                                        shrimp mofongo 
##                                                                                     2 
##                                                                        shrimp risotto 
##                                                                                    38 
##                                                              shrimp risotto with peas 
##                                                                                    22 
##                                               shrimp salad with horseradish remoulade 
##                                                                                     3 
##                                                               shrimp scampi with orzo 
##                                                                                   730 
##                                                          shrimp stew with grits crust 
##                                                                                    21 
##                                                              shrimp stuffed mirlitons 
##                                                                                     3 
##                         shrimp sugar snap pea and potato salad with mint and pecorino 
##                                                                                    13 
##                                                                          shrimp toast 
##                                                                                    10 
##                                                     shrimp with creamed corn and feta 
##                                                                                    83 
##                                            shrimp with hot fennel sausage and polenta 
##                                                                                    78 
##                                                        shrimp with sun dried tomatoes 
##                                                                                    22 
##                                                                 shu mai style burgers 
##                                                                                     8 
##                                                           shun lees lobster cantonese 
##                                                                                    12 
##                                                         sichuan celery and tofu salad 
##                                                                                    12 
##                                                           sichuan chicken with chiles 
##                                                                                    18 
##                                       sichuan chile crisp sundae with peanut streusel 
##                                                                                     7 
##                                                                     sichuan chile oil 
##                                                                                     9 
##                                                                  sicilian beef ragout 
##                                                                                    52 
##                                           sicilian cauliflower and black olive gratin 
##                                                                                    77 
##                                                sicilian involtini with ham and cheese 
##                                                                                    12 
##                                        sicilian lamb spezzatino with saffron and mint 
##                                                                                    16 
##                                                       sicilian pasta with cauliflower 
##                                                                                    27 
##                                                               sicilian pistachio cake 
##                                                                                    40 
##                                       sicilian stuffed pizza with ricotta and arugula 
##                                                                                    10 
##                                                             sicilian stuffed tomatoes 
##                                                                                     4 
##                                                           sicilian style citrus salad 
##                                                                                    60 
##                                                                               sidecar 
##                                                                                     4 
##                                                                                siesta 
##                                                                                     3 
##                                                                                signal 
##                                                                                     1 
##                                           silky eggplant with almond salsa and yogurt 
##                                                                                    34 
##                              simmered beet greens with roasted beets lemon and yogurt 
##                                                                                    20 
##                                                simmered kabocha squash with scallions 
##                                                                                    31 
##                                                                 simple barbecue sauce 
##                                                                                   174 
##                                                                 simple beans on toast 
##                                                                                    36 
##                                                                  simple bouillabaisse 
##                                                                                     8 
##                                                               simple braised potatoes 
##                                                                                    52 
##                                                                  simple bread pudding 
##                                                                                   371 
##                                                                  simple chickpea soup 
##                                                                                    35 
##                                                                      simple crab soup 
##                                                                                     2 
##                                                             simple grilled lamb chops 
##                                                                                    19 
##                                                               simple grilled sardines 
##                                                                                     6 
##                                                   simple lamb curry with carrot raita 
##                                                                                    28 
##                                                 simple lamb kebabs with greek flavors 
##                                                                                     5 
##                                                                 simple marinara sauce 
##                                                                                     2 
##                                                     simple pencil cob breakfast grits 
##                                                                                     7 
##                                                                    simple pinto beans 
##                                                                                    62 
##                                                 simple provencal winter squash gratin 
##                                                                                     8 
##                                      simple roast chicken with greens and bonus stock 
##                                                                                    34 
##                                                                   simple roast turkey 
##                                                                                   331 
##                                                        simple sea scallops persillade 
##                                                                                     9 
##                                                                           simple slaw 
##                                                                                    47 
##                                                       simple spicy asparagus in a wok 
##                                                                                    18 
##                                                                simple steak au poivre 
##                                                                                    57 
##                                                       simple steamed clams or mussels 
##                                                                                     7 
##                                                                          simple syrup 
##                                                                                     3 
##                                                                   simple tomato sauce 
##                                                                                    84 
##                                          simple trahana soup with lemon and olive oil 
##                                                                                     6 
##                                                           simple vegetarian pho broth 
##                                                                                    39 
##                                                                simple yeasted waffles 
##                                                                                   126 
##                                                              simplest grilled peaches 
##                                                                                    20 
##                                                               simplest grilled salmon 
##                                                                                    28 
##                                                               simplest grilled shrimp 
##                                                                                    12 
##                                                                simplest roast chicken 
##                                                                                   211 
##                                                              simplest strawberry tart 
##                                                                                    67 
##                                                              singaporean braised duck 
##                                                                                    12 
##                                      sinigang tamarind broth with pork and vegetables 
##                                                                                    23 
##                                                        six foot meatless italian hero 
##                                                                                     9 
##                                             sizzled five spice shrimp with red pepper 
##                                                                                    43 
##                                                                   sizzling pork tacos 
##                                                                                    43 
##                                                      skillet baked eggs and asparagus 
##                                                                                    28 
##                                                          skillet beet and farro salad 
##                                                                                    18 
##                                          skillet berry and brown butter toast crumble 
##                                                                                    21 
##                                       skillet brownie with chocolate ganache frosting 
##                                                                                    68 
##                                                           skillet caramel apple crisp 
##                                                                                   106 
##                                                           skillet charred green beans 
##                                                                                     6 
##                                      skillet chicken and farro with caramelized leeks 
##                                                                                     2 
##                               skillet chicken and pearl couscous with moroccan spices 
##                                                                                    73 
##                                    skillet chicken and rice with anchovies and olives 
##                                                                                    41 
##                              skillet chicken and zucchini with charred scallion salsa 
##                                                                                    60 
##                                                                skillet chicken potpie 
##                                                                                   138 
##                                         skillet chicken thighs with broccoli and orzo 
##                                                                                   114 
##                                      skillet chicken with black beans rice and chiles 
##                                                                                   519 
##                                      skillet chicken with couscous lemon and halloumi 
##                                                                                   133 
##                                           skillet chicken with cumin paprika and mint 
##                                                                                   122 
##                                 skillet chicken with mushrooms and caramelized onions 
##                                                                                   114 
##                                               skillet chicken with orzo dill and feta 
##                                                                                   148 
##                                                          skillet chicken with rhubarb 
##                                                                                    52 
##                                 skillet chicken with tomatoes pancetta and mozzarella 
##                                                                                   306 
##                                skillet chicken with white beans and caramelized lemon 
##                                                                                   289 
##                                                    skillet collards and winter squash 
##                                                                                     6 
##                                                                skillet fried potatoes 
##                                                                                     5 
##                                      skillet greens with runny eggs peas and pancetta 
##                                                                                    64 
##                                          skillet hot honey chicken with hearty greens 
##                                                                                   113 
##                                        skillet lasagna with spinach and summer squash 
##                                                                                    52 
##                                skillet macaroni and broccoli and mushrooms and cheese 
##                                                                                    68 
##                                         skillet meatballs with peaches basil and lime 
##                                                                                   295 
##                                 skillet mushrooms and chard with barley or brown rice 
##                                                                                     9 
##                                      skillet mustard chicken with spinach and carrots 
##                                                                                    82 
##                                              skillet pork chops with blistered grapes 
##                                                                                    58 
##                                         skillet refried beans with avocado and radish 
##                                                                                    23 
##                                       skillet roast chicken with caramelized shallots 
##                                                                                    38 
##                      skillet soba baked tofu and green bean salad with spicy dressing 
##                                                                                    27 
##                                                                   skillet spanakopita 
##                                                                                   111 
##                                           skillet wild rice walnut and broccoli salad 
##                                                                                    26 
##                                                    skirt steak with salsa verde salad 
##                                                                                    44 
##                                                                             skordalia 
##                                                                                     1 
##                                           slab bacon tacos with burned scallion crema 
##                                                                                    26 
##                                               slightly creamier sunday salad dressing 
##                                                                                     3 
##                                                                           sloppy joes 
##                                                                                    69 
##                                                            slow baked beans with kale 
##                                                                                   107 
##                                                              slow braised lamb shanks 
##                                                                                    19 
##                                                                             slow clap 
##                                                                                     4 
##                                       slow cooked albacore and fresh shell bean salad 
##                                                                                     3 
##                                               slow cooked goat shoulder moorish style 
##                                                                                     4 
##                                                          slow cooked red chile turkey 
##                                                                                    39 
##                                                        slow cooked red wine beef stew 
##                                                                                   106 
##                                                   slow cooker barbecue pork and beans 
##                                                                                    73 
##                                                           slow cooker bbq pulled pork 
##                                                                                   119 
##                                            slow cooker beef stew with maple and stout 
##                                                                                   191 
##                                                            slow cooker butter chicken 
##                                                                                   509 
##                                                                 slow cooker cassoulet 
##                                                                                   101 
##                               slow cooker chicken cacciatore with mushrooms and bacon 
##                                                                                   103 
##                                          slow cooker chicken ragu with herbed ricotta 
##                                                                                   136 
##                                      slow cooker chicken ramen with bok choy and miso 
##                                                                                    47 
##                                      slow cooker chicken tagine with butternut squash 
##                                                                                    81 
##                                            slow cooker chicken tortellini tomato soup 
##                                                                                    94 
##                                          slow cooker chicken with 20 cloves of garlic 
##                                                                                   119 
##                                       slow cooker chickpea red pepper and tomato stew 
##                                                                                    21 
##                                                                     slow cooker chili 
##                                                                                   233 
##                                              slow cooker chipotle honey chicken tacos 
##                                                                                   287 
##                                                   slow cooker corned beef and cabbage 
##                                                                                    52 
##                                      slow cooker cranberry sauce with port and orange 
##                                                                                    38 
##                              slow cooker creamy chicken soup with lemon rice and dill 
##                                                                                    43 
##                                 slow cooker creamy kale with fontina and bread crumbs 
##                                                                                    22 
##                           slow cooker curried sweet potato soup with coconut and kale 
##                                                                                   216 
##                                 slow cooker guinness beef stew with horseradish cream 
##                                                                                    14 
##                               slow cooker honey soy braised pork with lime and ginger 
##                                                                                    91 
##                                                            slow cooker hot honey ribs 
##                                                                                    32 
##                                                       slow cooker lemony chicken soup 
##                                                                                    26 
##                                       slow cooker lentil soup with sausage and apples 
##                                                                                    14 
##                                       slow cooker lentil soup with sausage and greens 
##                                                                                   203 
##                                slow cooker mashed potatoes with sour cream and chives 
##                                                                                    20 
##                                         slow cooker mashed red potatoes with parmesan 
##                                                                                     8 
##                        slow cooker mulled cider with cardamom black pepper and ginger 
##                                                                                     1 
##                                               slow cooker mushroom and wild rice soup 
##                                                                                    57 
##                                                      slow cooker pork puttanesca ragu 
##                                                                                   123 
##                                         slow cooker pork tacos with hoisin and ginger 
##                                                                                   250 
##                                                                 slow cooker pot roast 
##                                                                                    38 
##                                                  slow cooker pumpkin parmesan polenta 
##                                                                                    24 
##                                                        slow cooker red beans and rice 
##                                                                                    58 
##                                   slow cooker ribollita with smoked mozzarella toasts 
##                                                                                    15 
##                                                       slow cooker salsa verde chicken 
##                                                                                   294 
##                                           slow cooker short ribs with chinese flavors 
##                                                                                   121 
##                                                   slow cooker shortcut chicken pozole 
##                                                                                    31 
##                                                       slow cooker shrimp in purgatory 
##                                                                                    34 
##                                                   slow cooker spaghetti and meatballs 
##                                                                                    32 
##                                   slow cooker spicy black bean and sweet potato chili 
##                                                                                   139 
##                                            slow cooker spinach artichoke chicken stew 
##                                                                                   119 
##                                     slow cooker split pea soup with horseradish cream 
##                                                                                     5 
##                                                            slow cooker steel cut oats 
##                                                                                    15 
##                                                     slow cooker sticky toffee pudding 
##                                                                                    60 
##                                                  slow cooker white bean parmesan soup 
##                                                                                   268 
##                                                       slow cooker white chicken chili 
##                                                                                   289 
##                                                slow roast pork shoulder with herb rub 
##                                                                                    15 
##                                                                     slow roasted beef 
##                                                                                    49 
##                                    slow roasted carrots with brown butter vinaigrette 
##                                                                                    16 
##                                           slow roasted cherry tomatoes with basil oil 
##                                                                                    28 
##                                            slow roasted citrus salmon with herb salad 
##                                                                                   193 
##                    slow roasted duck with mashed white beans sizzled herbs and olives 
##                                                                                    19 
##                                               slow roasted fish with mustard and dill 
##                                                                                    19 
##                                       slow roasted lamb shoulder with coriander seeds 
##                                                                                    10 
##                                   slow roasted oregano chicken with buttered tomatoes 
##                                                                                   121 
##                                          slow roasted salmon with mushroom leek broth 
##                                                                                    44 
##                                                  slow roasted tomato sauce with pasta 
##                                                                                    13 
##                                         slow roasted tomatoes with olive oil and lime 
##                                                                                    66 
##                                                             slow roasted turkish lamb 
##                                                                                    31 
##                                                                   slow smoked brisket 
##                                                                                    20 
##                                                         smacked cucumber quick kimchi 
##                                                                                    53 
##                                                                small apricot galettes 
##                                                                                     1 
##                                                         small batch blueberry muffins 
##                                                                                    45 
##                                                       small batch buttermilk biscuits 
##                                                                                    89 
##                                         small batch gravlax with fennel orange butter 
##                                                                                     1 
##                                                    smashed carrots with feta and mint 
##                                                                                    30 
##                                      smashed chicken burgers with cheddar and parsley 
##                                                                                    73 
##                                                   smashed cucumbers with cumin tahini 
##                                                                                    16 
##                                         smashed potatoes with bacon cheese and greens 
##                                                                                    14 
##                                   smashed potatoes with eggs and rosemary vinaigrette 
##                                                                                    18 
##                                                        smashed potatoes with tapenade 
##                                                                                     5 
##                                 smashed potatoes with thai style chile and herb sauce 
##                                                                                    28 
##                                                     smashed red potatoes with cabbage 
##                                                                                    32 
##                                                smashed turnips with fresh horseradish 
##                                                                                     9 
##                                                                         smithstreeter 
##                                                                                     2 
##                                             smoke roasted chicken thighs with paprika 
##                                                                                    38 
##                                                                  smoked bluefish pate 
##                                                                                     7 
##                                                                 smoked bluefish salad 
##                                                                                     2 
##                                                        smoked bread with maple butter 
##                                                                                     4 
##                                                   smoked bulgur and pomegranate salad 
##                                                                                     6 
##                                           smoked cabbage slaw with creamy horseradish 
##                                                                                     3 
##                                                                  smoked chicken wings 
##                                                                                    11 
##                                                          smoked fish and caviar salad 
##                                                                                     1 
##                                              smoked fish and potato soup with chorizo 
##                                                                                    36 
##                                    smoked herring with fingerling potatoes and chives 
##                                                                                     1 
##                                       smoked salmon fennel and herbed mascarpone tart 
##                                                                                    41 
##                                               smoked salmon sandwich with goat cheese 
##                                                                                     5 
##                               smoked salmon sandwiches with cucumber radish and herbs 
##                                                                                     9 
##                                                        smoked salmon tart for a crowd 
##                                                                                    20 
##                                                             smoked sardines rillettes 
##                                                                                     4 
##                                          smoked trout and beet salad with pink caviar 
##                                                                                     7 
##                                                                smoked trout frittatas 
##                                                                                     1 
##                                                smoked trout hash with tomatillo salsa 
##                                                                                     1 
##                                                                   smoked trout spread 
##                                                                                    25 
##                                                                    smoked turkey pate 
##                                                                                     4 
##                                                               smoked turkey rillettes 
##                                                                                     1 
##                                  smoked whitefish salad with creme fraiche and capers 
##                                                                                     7 
##                                                                        smoking bishop 
##                                                                                     5 
##                                                        smoky and spicy roasted salmon 
##                                                                                     7 
##                                                      smoky beef and vegetable sliders 
##                                                                                    14 
##                                                        smoky braised kale with tomato 
##                                                                                    63 
##                                              smoky cheese grits with summer succotash 
##                                                                                     9 
##                                                                     smoky chimichurri 
##                                                                                     4 
##                                                                smoky eggplant chutney 
##                                                                                    15 
##                                                             smoky eggplant croquettes 
##                                                                                    96 
##                                                    smoky eggplant dip with pita chips 
##                                                                                    17 
##                                             smoky eggplant salad with yogurt and mint 
##                                                                                    58 
##                                                                   smoky eggplant soup 
##                                                                                   109 
##                                                                 smoky eggplant spread 
##                                                                                    36 
##                                                                    smoky fish chowder 
##                                                                                   135 
##                                             smoky lentil stew with leeks and potatoes 
##                                                                                   201 
##                                                        smoky lime chile dipping sauce 
##                                                                                     4 
##                                            smoky lo mein with shiitake and vegetables 
##                                                                                    24 
##                                                     smoky lobster salad with potatoes 
##                                                                                     3 
##                                                                  smoky oven spareribs 
##                                                                                     5 
##                                   smoky pork burgers with fennel and red cabbage slaw 
##                                                                                    23 
##                                                  smoky pork shoulder with chile paste 
##                                                                                    38 
##                                                               smoky quick cooked kale 
##                                                                                     2 
##                                                                   smoky quinoa crumbs 
##                                                                                     3 
##                                                                  smoky red devil eggs 
##                                                                                    38 
##                                  smoky roasted chickpeas with lemon garlic mayonnaise 
##                                                                                     4 
##                                                               smoky stir fried greens 
##                                                                                     5 
##                                                                       smoky tea stock 
##                                                                                     3 
##                                                                smoky tomato carbonara 
##                                                                                    61 
##                                                 smoky white bean and beef sloppy joes 
##                                                                                     9 
##                                                                       smores blondies 
##                                                                                    70 
##                                                                            smores pie 
##                                                                                    32 
##                                                                  smothered pork chops 
##                                                                                   236 
##                                                   smothered shrimp in crab meat gravy 
##                                                                                    16 
##                                                                        snickerdoodles 
##                                                                                   151 
##                                                                        snow pea salad 
##                                                                                     6 
##                                  soba and herb salad with roasted eggplant and pluots 
##                                                                                     5 
##                                 soba noodle and steak salad with ginger lime dressing 
##                                                                                    57 
##                                                                      soba noodle soup 
##                                                                                     6 
##                                      soba noodles in broth with spinach and shiitakes 
##                                                                                     3 
##                           soba noodles in broth with sweet potato cabbage and spinach 
##                                                                                    14 
##                                               soba noodles with chicken and snap peas 
##                                                                                    14 
##                                                       soba noodles with chilled dashi 
##                                                                                     1 
##                                     soba noodles with ginger broth and crunchy ginger 
##                                                                                    54 
##                                         soba noodles with shiitakes broccoli and tofu 
##                                                                                    48 
##                                soba noodles with tofu shiitake mushrooms and broccoli 
##                                                                                    17 
##                                                                            soba salad 
##                                                                                   100 
##                                soba with green garlic spinach edamame and crispy tofu 
##                                                                                     2 
##                                                                        socca farinata 
##                                                                                    87 
##                                                                       soda bread buns 
##                                                                                    40 
##                                                   soda bread with walnuts and raisins 
##                                                                                    10 
##                                                                               sofrito 
##                                                                                     3 
##                                          soft black bean tacos with salsa and cabbage 
##                                                                                    23 
##                                                   soft boiled eggs with anchovy toast 
##                                                                                    41 
##                          soft boiled eggs with watercress and walnut ricotta crostini 
##                                                                                     7 
##                                                                       soft herb salad 
##                                                                                    16 
##                                          soft shell crab crostini with arugula butter 
##                                                                                     3 
##                                                              soft shell crab poor boy 
##                                                                                     4 
##                                                                 soft shell crab toast 
##                                                                                    10 
##                                      soft shell crab with preserved lemon and almonds 
##                                                                                     4 
##                                                    soft shell crabs with curry butter 
##                                                                                    14 
##                                           soft shell crabs with spiced cucumber salad 
##                                                                                     1 
##                                            soft sugar cookies with raspberry frosting 
##                                                                                   144 
##                                         soft tacos with chicken and tomato corn salsa 
##                                                                                    19 
##                                                 soft tacos with mushrooms and cabbage 
##                                                                                    20 
##                                soft tacos with roasted or grilled tomatoes and squash 
##                                                                                     3 
##                                           soft tacos with scrambled tofu and tomatoes 
##                                                                                    10 
##                                                  soju and tonic with lemon lime syrup 
##                                                                                     1 
##                                                                         sole meuniere 
##                                                                                    70 
##                                                    sole with fennel and blood oranges 
##                                                                                    11 
##                                 somen noodles with poached egg bok choy and mushrooms 
##                                                                                    70 
##                                     sonias phyllo and feta torte with dill and nutmeg 
##                                                                                    16 
##                                                             sonoran carne asada tacos 
##                                                                                     5 
##                                                         sonoran style flour tortillas 
##                                                                                    85 
##                                                   sooji dhokla steamed semolina bread 
##                                                                                     3 
##                               sook mei faan cantonese creamed corn with tofu and rice 
##                                                                                    45 
##                                              sopa de albondigas mexican meatball soup 
##                                                                                    50 
##                                    sorghum bowl with black beans amaranth and avocado 
##                                                                                     1 
##                                                                sorghum sweet potatoes 
##                                                                                     1 
##                                                          sos pwa nwa black bean sauce 
##                                                                                    11 
##                                                                               soubise 
##                                                                                    22 
##                                                     souffle omelet with apricot sauce 
##                                                                                     2 
##                                                         souffleed horseradish oysters 
##                                                                                     1 
##                                                  soul kiss cocktail with blood orange 
##                                                                                     2 
##                                                                           soup joumou 
##                                                                                    34 
##                                                                       soupe au pistou 
##                                                                                    17 
##                                             soupe au pistou vegetable soup with pesto 
##                                                                                    33 
##                                                             sour cherry old fashioned 
##                                                                                     5 
##                                                           sour cream and fruit scones 
##                                                                                   106 
##                                                              sour cream and onion dip 
##                                                                                    61 
##                                                  sour cream and roasted red onion dip 
##                                                                                     8 
##                                                         sour cream chicken enchiladas 
##                                                                                    70 
##                                                                          sour pickles 
##                                                                                    18 
##                                                             sourdough english muffins 
##                                                                                    41 
##                                                              sourdough no knead bread 
##                                                                                   208 
##                                                    sourdough pancake or waffle batter 
##                                                                                   284 
##                                                                 sourdough pizza dough 
##                                                                                    81 
##                                                                         sourdough rye 
##                                                                                    13 
##                                                                     sourdough starter 
##                                                                                   158 
##                                                sourdough stuffing with kale and dates 
##                                                                                    30 
##                                                                        sous le soleil 
##                                                                                     1 
##                                      sous vide brown sugar sweet potatoes with pecans 
##                                                                                     3 
##                                                      sous vide cheesy mashed potatoes 
##                                                                                     5 
##                                         sous vide peanut ginger pork with celery slaw 
##                                                                                    46 
##                                           sous vide rib steaks with spicy salsa verde 
##                                                                                    26 
##                                       sous vide salmon with caper parsley vinaigrette 
##                                                                                    20 
##                                       sous vide turkey breast with maple and rosemary 
##                                                                                    17 
##                                                         south carolina pecan tartlets 
##                                                                                     6 
##                                                      south indian cabbage with yogurt 
##                                                                                    16 
##                                                            south texas barbecued duck 
##                                                                                    14 
##                                                          southeast asian mussel salad 
##                                                                                     2 
##                                              southern black eyed peas and cauliflower 
##                                                                                    44 
##                                                    southern buttermilk salad dressing 
##                                                                                    18 
##                                                                 southern caramel cake 
##                                                                                    81 
##                                                                southern cheese straws 
##                                                                                    37 
##                                                           southern cornbread dressing 
##                                                                                    54 
##                                                      southern fried sweet onion rings 
##                                                                                    16 
##                                                   southern livings best fried chicken 
##                                                                                    30 
##                                                          southern macaroni and cheese 
##                                                                                   359 
##                                                                southern shrimp scampi 
##                                                                                    99 
##                                                                    southwest potatoes 
##                                                                                    16 
##                                       southwestern chicken salad with chipotle chiles 
##                                                                                     1 
##                                                 southwestern potato and celery omelet 
##                                                                                     4 
##                              soy butter basted scallops with wilted greens and sesame 
##                                                                                    34 
##                                                                     soy dipping sauce 
##                                                                                     8 
##                                                        soy ginger chicken with greens 
##                                                                                    47 
##                                     soy glazed chicken breasts with pickled cucumbers 
##                                                                                    80 
##                                                                   soy poached chicken 
##                                                                                    13 
##                                                                soy sauce pickled eggs 
##                                                                                    58 
##                                         soy steamed fish with scallions and pistachio 
##                                                                                    43 
##                                                                            spa cooler 
##                                                                                     1 
##                                         spaetzle with kielbasa and caramelized onions 
##                                                                                    58 
##                                                                   spaghetti al limone 
##                                                                                    94 
##                                                                  spaghetti alla norma 
##                                                                                     9 
##                                        spaghetti and drop meatballs with tomato sauce 
##                                                                                   156 
##                                                               spaghetti and meatballs 
##                                                                                    18 
##                                                                   spaghetti carbonara 
##                                                                                   447 
##                                                                   spaghetti friuliano 
##                                                                                     2 
##                               spaghetti in spicy tomato sauce lombrichelli alletrusca 
##                                                                                     3 
##                                                    spaghetti squash gratin with basil 
##                                                                                    91 
##                                  spaghetti squash with garlic parsley and breadcrumbs 
##                                                                                    52 
##                                      spaghetti with broccoli and walnut ricotta pesto 
##                                                                                    22 
##                          spaghetti with broccoli rabe toasted garlic and bread crumbs 
##                                                                                    71 
##                                           spaghetti with burrata and garlic chile oil 
##                                                                                   102 
##                             spaghetti with cauliflower almonds tomatoes and chickpeas 
##                                                                                    46 
##                                  spaghetti with crab meat cherry tomatoes and arugula 
##                                                                                     1 
##                                                                  spaghetti with crabs 
##                                                                                     2 
##                                   spaghetti with fava beans bread crumbs and marjoram 
##                                                                                     2 
##                                    spaghetti with garlicky bread crumbs and anchovies 
##                                                                                    54 
##                                              spaghetti with lentils tomato and fennel 
##                                                                                    20 
##                                                        spaghetti with pork loin sauce 
##                                                                                     1 
##                            spaghetti with roasted cauliflower tomato sauce and olives 
##                                                                                    18 
##                              spaghetti with romano beans black pepper and goat cheese 
##                                                                                     2 
##                                                        spaghetti with salmon two ways 
##                                                                                     5 
##                                                 spaghetti with sausage alla carbonara 
##                                                                                    56 
##                                               spaghetti with shrimp kale and tomatoes 
##                                                                                    19 
##                                                  spaghetti with walnuts and anchovies 
##                                                                                     7 
##                                    spaghetti with zucchini parsley pesto and bottarga 
##                                                                                    27 
##                                                                spaghettini with nduja 
##                                                                                     7 
##                                                              spam macaroni and cheese 
##                                                                                     1 
##                                                                           spam musubi 
##                                                                                    19 
##                                                                           spanakopita 
##                                                                                    37 
##                                                            spanish asparagus revuelto 
##                                                                                   117 
##                                                                  spanish pork skewers 
##                                                                                    17 
##                                                               spanish style lamb stew 
##                                                                                    69 
##                                                      spanish style shrimp with garlic 
##                                                                                    61 
##                                              spanish tortilla with mushrooms and kale 
##                                                                                    13 
##                                             spanish tortilla with tomato pepper salad 
##                                                                                    41 
##                                                              sparkling pineapple soup 
##                                                                                     1 
##                                                                   sparkly gingerbread 
##                                                                                    42 
##                                                 spatchcocked chicken with herb butter 
##                                                                                    54 
##                                                                             speculaas 
##                                                                                    19 
##                                                           speculoos cookie butter pie 
##                                                                                    26 
##                                                                   speedy fish chowder 
##                                                                                   223 
##                                                                 speedy no knead bread 
##                                                                                   131 
##                                                              spelt and lamb meatballs 
##                                                                                    13 
##                                                         spice poached apples or pears 
##                                                                                     2 
##                      spice rubbed baby back ribs with chipotle bourbon barbecue sauce 
##                                                                                    29 
##                         spice rubbed beer can chicken with potatoes and sweet peppers 
##                                                                                     4 
##                                                          spice rubbed braised brisket 
##                                                                                    70 
##                                                     spice rubbed spatchcocked chicken 
##                                                                                   126 
##                                                                        spiced almonds 
##                                                                                     3 
##                             spiced apple sausage stuffing with cranberries and brandy 
##                                                                                     4 
##                                              spiced basmati rice and sweet corn pilaf 
##                                                                                     7 
##                                                      spiced brown lentils with yogurt 
##                                                                                    23 
##                                                              spiced brown sugar syrup 
##                                                                                     1 
##                                                                  spiced caramel syrup 
##                                                                                     7 
##                                      spiced chickpea salad with tahini and pita chips 
##                                                                                   188 
##                                        spiced chickpea stew with coconut and turmeric 
##                                                                                  1706 
##                                   spiced chickpeas with cauliflower and roasted lemon 
##                                                                                   114 
##                                                               spiced clementine syrup 
##                                                                                     2 
##                                                            spiced dried fruit compote 
##                                                                                     1 
##                                              spiced ginger shrimp with burst tomatoes 
##                                                                                   126 
##                                          spiced green beans and baby broccoli tempura 
##                                                                                     3 
##                                         spiced halibut with spinach and chickpea stew 
##                                                                                    15 
##                                                               spiced holiday pralines 
##                                                                                     2 
##                                     spiced irish oatmeal with cream and crunchy sugar 
##                                                                                    86 
##                                spiced lamb and rice with walnuts mint and pomegranate 
##                                                                                    51 
##                                            spiced lamb chops with fennel and cucumber 
##                                                                                    23 
##                                           spiced lamb meatballs with yogurt and herbs 
##                                                                                    94 
##                                              spiced lamb shanks with orange and honey 
##                                                                                    23 
##                                                spiced lamb skewers with lemony onions 
##                                                                                    14 
##                                                      spiced mango chutney with chiles 
##                                                                                    11 
##                                         spiced maqluba with tomatoes and tahini sauce 
##                                                                                    40 
##                                               spiced olive oil cake with orange glaze 
##                                                                                    85 
##                                                spiced orange ginger soy dipping sauce 
##                                                                                     1 
##                                                                      spiced pear tart 
##                                                                                     3 
##                                                     spiced pecan date shortbread bars 
##                                                                                    14 
##                                                                     spiced port punch 
##                                                                                     1 
##                                                                  spiced potted shrimp 
##                                                                                     7 
##                                                            spiced pumpkin cookie cake 
##                                                                                    10 
##                                spiced pumpkin creme brulee with ginger dusted churros 
##                                                                                     1 
##                                                                    spiced pumpkin pie 
##                                                                                    69 
##                                                         spiced red wine poached pears 
##                                                                                    20 
##                                                                spiced roasted almonds 
##                                                                                     6 
##                                       spiced roasted cauliflower with feta and garlic 
##                                                                                    92 
##                                      spiced salmon with sugar snap peas and red onion 
##                                                                                    85 
##                                                              spiced salt baked shrimp 
##                                                                                    15 
##                                            spiced seared eggplant with pearl couscous 
##                                                                                   160 
##                                                                         spiced shrimp 
##                                                                                     2 
##                                       spiced skirt steak with whole roasted plantains 
##                                                                                     3 
##                                   spiced sweet potato fries with chili cilantro cream 
##                                                                                    10 
##                                                                 spiced tomato ketchup 
##                                                                                     4 
##                                          spiced turkey skewers with cumin lime yogurt 
##                                                                                    73 
##                                                             spiced wok popped popcorn 
##                                                                                     1 
##                                                     spiced yellow lentils with quinoa 
##                                                                                    31 
##                                                               spicy 3 minute calamari 
##                                                                                     6 
##                                                   spicy and saucy cherry tomato pasta 
##                                                                                    85 
##                                                                 spicy and tingly beef 
##                                                                                    62 
##                                                               spicy bacon and egg pie 
##                                                                                    35 
##                                                        spicy beef stir fry with basil 
##                                                                                    36 
##                                                                spicy big tray chicken 
##                                                                                    51 
##                                               spicy black bean and sweet potato chili 
##                                                                                   138 
##                                                          spicy braised sweet potatoes 
##                                                                                     6 
##                                             spicy butternut squash pasta with spinach 
##                                                                                   344 
##                                                           spicy calamari with fregola 
##                                                                                    35 
##                                 spicy calamari with tomato caperberries and pine nuts 
##                                                                                    12 
##                                                                 spicy caramel popcorn 
##                                                                                    36 
##                                     spicy caramelized squash with lemon and hazelnuts 
##                                                                                   121 
##                                                       spicy carrot and spinach latkes 
##                                                                                    17 
##                                                spicy carrot parsnip and potato latkes 
##                                                                                     6 
##                                      spicy cauliflower with ginger cumin and tomatoes 
##                                                                                    15 
##                                                   spicy chinese mustard chicken wings 
##                                                                                    24 
##                                                               spicy chipotle crab dip 
##                                                                                     2 
##                                           spicy chorizo and red lentil soup with kale 
##                                                                                    42 
##                                                                   spicy chorizo pasta 
##                                                                                    46 
##                                                              spicy clam chorizo pasta 
##                                                                                     8 
##                                            spicy clam pasta with bacon peas and basil 
##                                                                                    79 
##                                                      spicy clams with garlicky toasts 
##                                                                                    25 
##                                                 spicy coconut mussels with lemongrass 
##                                                                                    36 
##                                                                        spicy coleslaw 
##                                                                                    94 
##                                                           spicy corn and coconut soup 
##                                                                                   249 
##                                                         spicy corn and shishito salad 
##                                                                                    83 
##                                     spicy corn on the cob with miso butter and chives 
##                                                                                    10 
##                                        spicy corn pakoras with mango tamarind chutney 
##                                                                                    32 
##                            spicy couscous salad with tomatoes green beans and peppers 
##                                                                                     9 
##                              spicy crab linguine with mustard creme fraiche and herbs 
##                                                                                    45 
##                                                          spicy cranberry apple relish 
##                                                                                    14 
##                                           spicy cucumbers with yogurt lemon and herbs 
##                                                                                    90 
##                                                       spicy dried fruit dessert sauce 
##                                                                                     3 
##                                                  spicy eggplant salad with sesame oil 
##                                                                                    30 
##                                             spicy egyptian dukkah with chickpea flour 
##                                                                                     2 
##                                                 spicy fried shrimp with green chutney 
##                                                                                    17 
##                                                               spicy garlicky meatloaf 
##                                                                                    60 
##                               spicy ginger applesauce cake with cream cheese frosting 
##                                                                                    27 
##                                               spicy ginger pork noodles with bok choy 
##                                                                                   262 
##                               spicy glass noodles with shiitake mushrooms and cabbage 
##                                                                                    25 
##                                                       spicy green garlic chicken soup 
##                                                                                    13 
##                                                                   spicy green mussels 
##                                                                                     5 
##                                     spicy grilled chicken with tomato cucumber relish 
##                                                                                    24 
##                                    spicy grilled pork with fennel cumin and red onion 
##                                                                                   102 
##                                              spicy grilled squid and green bean salad 
##                                                                                     9 
##                                                                spicy grilled zucchini 
##                                                                                    10 
##                                                                   spicy hot chocolate 
##                                                                                    32 
##                                                             spicy kimchi potato salad 
##                                                                                    34 
##                                                    spicy korean rice cakes tteokbokki 
##                                                                                    21 
##                                                           spicy korean temple noodles 
##                                                                                    12 
##                                                         spicy lacquered chicken wings 
##                                                                                    57 
##                                   spicy lamb sausage with grilled onions and zucchini 
##                                                                                    21 
##                                                             spicy latin chicken wings 
##                                                                                     1 
##                                                     spicy lemon ginger bread stuffing 
##                                                                                     6 
##                                 spicy lemony chicken breasts with croutons and greens 
##                                                                                    24 
##                                     spicy lentil and sweet potato stew with chipotles 
##                                                                                   109 
##                                                                   spicy lobster pasta 
##                                                                                    24 
##                                                        spicy meatballs with chickpeas 
##                                                                                   111 
##                                                 spicy minced shrimp with rice noodles 
##                                                                                    38 
##                                                          spicy molten blue cheese dip 
##                                                                                    73 
##                                         spicy mussels with cauliflower basil and lime 
##                                                                                     8 
##                                            spicy noodle soup with mushrooms and herbs 
##                                                                                   249 
##                                                     spicy orange salad moroccan style 
##                                                                                    21 
##                                                                 spicy orange segments 
##                                                                                     2 
##                                   spicy oven fried rice with gochujang and fried eggs 
##                                                                                    42 
##                                                               spicy pan fried noodles 
##                                                                                   136 
##                                                                       spicy party mix 
##                                                                                    23 
##                                                         spicy peanut and pumpkin soup 
##                                                                                    85 
##                                                                 spicy pickled carrots 
##                                                                                    13 
##                                                                spicy pimenton popcorn 
##                                                                                    28 
##                                        spicy pork stew with hominy and collard greens 
##                                                                                    54 
##                                    spicy quinoa salad with broccoli cilantro and lime 
##                                                                                    58 
##                                    spicy red beans with chicken and andouille sausage 
##                                                                                    33 
##                                                     spicy red pepper cranberry relish 
##                                                                                    57 
##                                       spicy rice noodles with crispy tofu and spinach 
##                                                                                   105 
##                 spicy roasted potatoes with dijon mustard rosemary and smoked paprika 
##                                                                                    39 
##                                                spicy roasted shrimp and broccoli rabe 
##                                                                                    43 
##                                         spicy sesame noodles with chicken and peanuts 
##                                                                                   523 
##                                  spicy sheet pan chicken with sweet potatoes and kale 
##                                                                                    48 
##                                                    spicy sheet pan sausage and squash 
##                                                                                   109 
##                                                       spicy shrimp and chickpea salad 
##                                                                                     9 
##                                                   spicy shrimp boil with lemon butter 
##                                                                                    12 
##                                                                    spicy shrimp saute 
##                                                                                   154 
##                                 spicy shrimp with blistered cucumbers corn and tomato 
##                                                                                    53 
##                                     spicy slow roasted salmon with cucumbers and feta 
##                                                                                   137 
##                                  spicy smashed cucumbers with lime honey and croutons 
##                                                                                    15 
##                                     spicy spaghetti with caramelized onions and herbs 
##                                                                                    82 
##                                        spicy spaghettini with sea urchin and tomatoes 
##                                                                                     2 
##                                                                 spicy spanish mussels 
##                                                                                     8 
##                                                     spicy stewed tripe with scallions 
##                                                                                    28 
##                                                              spicy stir fried cabbage 
##                                                                                    72 
##                             spicy stir fried collard greens with red or green cabbage 
##                                                                                    15 
##                             spicy stir fried eggplant tofu and water spinach ong choy 
##                                                                                     6 
##                                       spicy stir fried japanese eggplant and cucumber 
##                                                                                    26 
##                              spicy stir fried tofu with corn green beans and cilantro 
##                                                                                    34 
##                                        spicy stir fried tofu with kale and red pepper 
##                                                                                    17 
##                                            spicy sweet korean barbecue sauce ssamjang 
##                                                                                    10 
##                                             spicy sweet potato and cheddar croquettes 
##                                                                                    29 
##                                   spicy tamarind pork ribs with scallions and peanuts 
##                                                                                    20 
##                                                      spicy thai pork tenderloin salad 
##                                                                                   134 
##                                             spicy thai squid with chiles and cilantro 
##                                                                                    13 
##                                                       spicy thai watermelon with crab 
##                                                                                     6 
##                                                                   spicy tofu marinade 
##                                                                                    26 
##                                 spicy tomato coconut bisque with shrimp and mushrooms 
##                                                                                    79 
##                                                        spicy tunisian carrot frittata 
##                                                                                    14 
##                                    spicy turkey stir fry with crisp garlic and ginger 
##                                                                                   180 
##                                        spicy watermelon salad with pineapple and lime 
##                                                                                    27 
##                                              spicy white bean stew with broccoli rabe 
##                                                                                   495 
##                                                           spicy wok charred snow peas 
##                                                                                    14 
##                                                         spicy won tons with chile oil 
##                                                                                    16 
##                                                                              spiedies 
##                                                                                    95 
##                                                                  spiked cucumber soup 
##                                                                                     4 
##                                                                   spiked market cider 
##                                                                                     2 
##                                                                    spiked mulled wine 
##                                                                                     1 
##                                                                    spinach and apples 
##                                                                                     4 
##                                                             spinach and bacon tartine 
##                                                                                    33 
##                                                             spinach and chermoula pie 
##                                                                                    73 
##                                                                 spinach and chickpeas 
##                                                                                     1 
##                                       spinach and cilantro soup with tahini and lemon 
##                                                                                   187 
##                                     spinach and endive salad with kasha and mushrooms 
##                                                                                     3 
##                                                                spinach and feta borek 
##                                                                                    41 
##                                                             spinach and garlic omelet 
##                                                                                    15 
##                                                   spinach and goat cheese quesadillas 
##                                                                                    20 
##                                                                spinach and onion tart 
##                                                                                    66 
##                                                              spinach and pea fritters 
##                                                                                    28 
##                                                       spinach and red pepper frittata 
##                                                                                    52 
##                                                          spinach and sardine sandwich 
##                                                                                    30 
##                                                                spinach and tofu salad 
##                                                                                    28 
##                                                     spinach and tofu wontons in broth 
##                                                                                     4 
##                                                              spinach and turkey salad 
##                                                                                     3 
##                                                                spinach and yogurt dip 
##                                                                                     2 
##                                                                 spinach artichoke dip 
##                                                                                   132 
##                                                       spinach artichoke stuffed rolls 
##                                                                                    14 
##                                                                   spinach basil pesto 
##                                                                                    22 
##                                                                 spinach bouillabaisse 
##                                                                                    19 
##                                               spinach dip with garlic yogurt and dill 
##                                                                                    11 
##                                                                       spinach gnocchi 
##                                                                                     8 
##                                                   spinach lasagna with fennel sausage 
##                                                                                    25 
##                                                         spinach risotto with taleggio 
##                                                                                   159 
##                          spinach salad with mushrooms and hibiscus flower vinaigrette 
##                                                                                     2 
##                                            spinach salad with pancetta and fried eggs 
##                                                                                    24 
##                                 spinach salad with persimmons goat cheese and walnuts 
##                                                                                     2 
##                                           spinach salad with prosciutto and persimmon 
##                                                                                     5 
##                          spinach salad with red and chioggia beets quinoa and walnuts 
##                                                                                     5 
##                            spinach salad with roasted vegetables and spiced chickpeas 
##                                                                                    17 
##                                                       spinach sardine and rice gratin 
##                                                                                    12 
##                                     spinach soup with coriander cinnamon and allspice 
##                                                                                    16 
##                                                  spinach spaetzle with bacon and sage 
##                                                                                    31 
##                                                      spinach tofu and sesame stir fry 
##                                                                                   116 
##                                          splayed roast chicken with caramelized ramps 
##                                                                                    92 
##                                                             splayed turkey with herbs 
##                                                                                    91 
##                                                   split green mung beans mumbai style 
##                                                                                     7 
##                                                                        split pea soup 
##                                                                                   103 
##                                                                    split roast turkey 
##                                                                                     1 
##                                                                           sponge cake 
##                                                                                    90 
##                                                              spring antipasto platter 
##                                                                                    12 
##                                                    spring carrot pickles with caraway 
##                                                                                     3 
##                                                              spring chicken miso soup 
##                                                                                    99 
##                                                         spring lamb and chickpea stew 
##                                                                                    25 
##                                           spring lamb and flageolets with fays relish 
##                                                                                     2 
##                                                 spring minestrone with kale and pasta 
##                                                                                    83 
##                                          spring onion and cheese potato cake two ways 
##                                                                                    59 
##                                             spring pasta bolognese with lamb and peas 
##                                                                                    88 
##                                        spring ramen bowl with snap peas and asparagus 
##                                                                                    26 
##                                                             spring roll master recipe 
##                                                                                     3 
##                                     spring rolls with beets brown rice eggs and herbs 
##                                                                                     2 
##                              spring rolls with carrots turnips rice noodles and herbs 
##                                                                                     3 
##                                           spring rolls with shrimp red rice and herbs 
##                                                                                     3 
##                             spring rolls with spinach mushrooms sesame rice and herbs 
##                                                                                     3 
##                              spring rolls with tofu vegetables rice noodles and herbs 
##                                                                                     7 
##                                                spring salad with bagna cauda dressing 
##                                                                                    32 
##                                                                      spring tofu soup 
##                                                                                   105 
##                                    spring vegetable ragout with brown butter couscous 
##                                                                                    42 
##                                                                 spring vegetable soup 
##                                                                                     3 
##                                                                 spring vegetable stew 
##                                                                                     4 
##                                                        springtime spaghetti carbonara 
##                                                                                   206 
##                                                                        spritz cookies 
##                                                                                    28 
##                                       sprouted brown rice bowl with carrot and hijiki 
##                                                                                     1 
##                                                                   spuma di mortadella 
##                                                                                     3 
##                                                                spumoni ice cream cake 
##                                                                                    38 
##                                                        squab with mushrooms and pears 
##                                                                                     2 
##                                                   squash and celeriac quinoa stuffing 
##                                                                                    10 
##                                                       squash eggplant and tomato tian 
##                                                                                    12 
##                                          squid with tomato and pickled mustard greens 
##                                                                                     1 
##                              sri lankan breakfast buns with seeni sambol onion confit 
##                                                                                     3 
##                                             sri lankan dal with coconut and lime kale 
##                                                                                   130 
##                                                             sriracha mayonnaise sauce 
##                                                                                     2 
##                                                        st anselms iceberg wedge salad 
##                                                                                    37 
##                                                               st john beans and bacon 
##                                                                                    27 
##                                                            st louis gooey butter cake 
##                                                                                    94 
##                                                                         st lucia buns 
##                                                                                    15 
##                                                                          st valentine 
##                                                                                     1 
##                                                                     stale bread pizza 
##                                                                                     3 
##                                                                       stalk and trade 
##                                                                                     1 
##                                                             stamped citrus shortbread 
##                                                                                   140 
##                                                           standard masa for empanadas 
##                                                                                     8 
##                                                                    standing rib roast 
##                                                                                    24 
##                                                                      star anise brine 
##                                                                                    31 
##                                                                     stardust cocktail 
##                                                                                     6 
##                                                                         steak fajitas 
##                                                                                    59 
##                                                                           steak hache 
##                                                                                    41 
##                                                                     steak mock frites 
##                                                                                    93 
##                                                       steak n bacon cheddar meatballs 
##                                                                                    21 
##                                                      steak tacos with pineapple salsa 
##                                                                                     7 
##                                                                         steak tartare 
##                                                                                    49 
##                                                     steaks with chimichurri mushrooms 
##                                                                                     4 
##                                                  steamed artichokes with lemon butter 
##                                                                                    13 
##                                     steamed artichokes with vinaigrette dipping sauce 
##                                                                                    17 
##                                    steamed asparagus with pistachios and brown butter 
##                                                                                    13 
##                                                                    steamed blue crabs 
##                                                                                    16 
##                                                                         steamed clams 
##                                                                                    16 
##                                                   steamed clams in spicy tomato sauce 
##                                                                                     6 
##                                    steamed clams with garlic parsley butter and leeks 
##                                                                                     5 
##                                                    steamed clams with jalapeno butter 
##                                                                                    16 
##                                                       steamed clams with spring herbs 
##                                                                                    52 
##                      steamed cod or sea bass salad with red peppers cilantro and mint 
##                                                                                     3 
##                                                      steamed cod with favas and aioli 
##                                                                                     1 
##                                                     steamed corn with clams and bacon 
##                                                                                     3 
##                                              steamed eggplant with spicy peanut sauce 
##                                                                                     6 
##                                      steamed jasmine rice with grilled eggplant salad 
##                                                                                     3 
##                                               steamed mussels with garlic and parsley 
##                                                                                    73 
##                                             steamed mussels with tomatoes and chorizo 
##                                                                                    12 
##                            steamed or roasted beets and beet greens with tahini sauce 
##                                                                                    14 
##                                             steamed whole fish with ginger and sesame 
##                                                                                    32 
##                                               steel cut oatmeal and blueberry muffins 
##                                                                                    72 
##                                                          steel cut oatmeal with fruit 
##                                                                                    48 
##                                                     stephanie johnstons bakewell tart 
##                                                                                    16 
##                                             stephanie l tysons sweet potato cornbread 
##                                                                                    21 
##                                                                          stew chicken 
##                                                                                    24 
##                                                                          stewed beans 
##                                                                                     1 
##                                                                stewed black eyed peas 
##                                                                                    79 
##                                       stewed cauliflower with red onions and tomatoes 
##                                                                                    15 
##                                                               stewed chicken and rice 
##                                                                                    27 
##                                          stewed green beans and tomatoes with trahana 
##                                                                                     2 
##                                                  stewed greens with tomatoes and mint 
##                                                                                     2 
##                                                           stewed lentils with cabbage 
##                                                                                    33 
##                                                     stewed romano beans with tomatoes 
##                                                                                    22 
##                                                               sticky bun monkey bread 
##                                                                                    51 
##                                                          sticky cranberry gingerbread 
##                                                                                   321 
##                                                                sticky rice with mango 
##                                                                                    30 
##                                                                 sticky toffee pudding 
##                                                                                    96 
##                                                   sticky toffee whole wheat date cake 
##                                                                                    23 
##                   stir fried baby squash long beans corn and chiles with soba noodles 
##                                                                                     5 
##                      stir fried baby turnips with spring onions green garlic and tofu 
##                                                                                     2 
##                                                    stir fried balsamic ginger carrots 
##                                                                                     8 
##                                      stir fried bean sprouts with sprouted brown rice 
##                                                                                     5 
##                                                 stir fried beans with tofu and chiles 
##                                                                                    33 
##                                                   stir fried beef and sugar snap peas 
##                                                                                    98 
##                                                 stir fried beet greens tofu and beets 
##                                                                                    25 
##                                                  stir fried bok choy or sturdy greens 
##                                                                                    28 
##                   stir fried broccoli stalks and flowers red peppers peanuts and tofu 
##                                                                                    27 
##                     stir fried brown rice with kale or frizzy mustard greens and tofu 
##                                                                                     5 
##                                 stir fried brown rice with poblano chiles and edamame 
##                                                                                     1 
##                                      stir fried brown rice with red chard and carrots 
##                                                                                    28 
##                                  stir fried brussels sprouts with shallots and sherry 
##                                                                                     3 
##                                                stir fried cabbage tofu and red pepper 
##                                                                                    87 
##                                                       stir fried chicken and bok choy 
##                                                                                    44 
##                                      stir fried chicken and eggplant with asian basil 
##                                                                                    22 
##                                       stir fried chicken and eggplant with thai basil 
##                                                                                    22 
##                                                        stir fried chicken with greens 
##                                                                                    16 
##                                   stir fried chinese broccoli and chicken with hoisin 
##                                                                                    27 
##                   stir fried corn squash and tomatoes with ginger garlic and cilantro 
##                                                                                     2 
##                                                         stir fried cucumber with tofu 
##                                                                                    37 
##                                                         stir fried garlic green beans 
##                                                                                    31 
##                                           stir fried green beans with pork and chiles 
##                                                                                   141 
##                                                stir fried iceberg lettuce with shrimp 
##                                                                                     6 
##                                              stir fried lamb with eggplant and chiles 
##                                                                                    28 
##                                       stir fried leeks with amaranth and green garlic 
##                                                                                     1 
##                                    stir fried lettuce with seared tofu and red pepper 
##                                                                                    16 
##                                              stir fried noodles with tofu and peppers 
##                                                                                    26 
##                                               stir fried pork and greens with noodles 
##                                                                                    10 
##                                                         stir fried pork and pineapple 
##                                                                                    55 
##                                            stir fried quinoa with vegetables and tofu 
##                                                                                    25 
##                                          stir fried rainbow peppers eggplant and tofu 
##                                                                                    42 
##                   stir fried rice and black quinoa with cabbage red pepper and greens 
##                                                                                     3 
##                                    stir fried rice noodles with beets and beet greens 
##                                                                                     9 
##                       stir fried rice stick noodles with bok choy and cherry tomatoes 
##                                                                                    19 
##                             stir fried rice with amaranth or red chard and thai basil 
##                                                                                     4 
##                                                  stir fried sesame shrimp and spinach 
##                                                                                   126 
##                                      stir fried shrimp with snow peas and red peppers 
##                                                                                    13 
##                                                   stir fried shrimp with spicy greens 
##                                                                                    10 
##                                                        stir fried snow peas with soba 
##                                                                                    12 
##                      stir fried soba noodles with long beans eggs and cherry tomatoes 
##                                                                                     2 
##                                       stir fried soba noodles with turkey and cabbage 
##                                                                                     5 
##                                                            stir fried spicy asparagus 
##                                                                                    82 
##                                                     stir fried succotash with edamame 
##                                                                                     7 
##                                                             stir fried sweet potatoes 
##                                                                                    44 
##                                  stir fried sweet potatoes with brown butter and sage 
##                                                                                    11 
##                                                stir fried swiss chard and red peppers 
##                                                                                    18 
##                                                          stir fried tofu and escarole 
##                                                                                     7 
##                                                           stir fried tofu and peppers 
##                                                                                    67 
##                                         stir fried tofu red cabbage and winter squash 
##                                                                                    14 
##                                  stir fried tofu with cabbage carrots and red peppers 
##                                                                                     9 
##                                          stir fried tofu with carrots and red peppers 
##                                                                                     7 
##                                                        stir fried tofu with red chard 
##                                                                                    12 
##                                                stir fried turkey and brussels sprouts 
##                                                                                    24 
##                             stir fried turkey breast with snap or snow peas and chard 
##                                                                                     3 
##                            stir fried vegetarian glass noodles malaysian hawker style 
##                                                                                     2 
##                                           stir fried winter squash and tofu with soba 
##                                                                                    10 
##                                                      stir fries with fresh vegetables 
##                                                                                    28 
##                                           stir fry duck with mushrooms and broccolini 
##                                                                                     3 
##                                          stock and cider brined chicken over stuffing 
##                                                                                    93 
##                                                                           stone fence 
##                                                                                     3 
##                                                      stone fruit and frangipane toast 
##                                                                                     6 
##                                                                   stone fruit chutney 
##                                                                                     2 
##                                                                       stone fruit jam 
##                                                                                    27 
##                                                            stone fruit patchwork bake 
##                                                                                    11 
##                                                                           stout float 
##                                                                                     9 
##                                                 stovetop braised carrots and parsnips 
##                                                                                    19 
##                                         stracciatella alla romana roman egg drop soup 
##                                                                                    56 
##                                                            stracciatella with spinach 
##                                                                                    23 
##                                                       strata with mushrooms and chard 
##                                                                                    18 
##                                                           strawberries in a mango sea 
##                                                                                     4 
##                                                              strawberries in red wine 
##                                                                                     3 
##                                              strawberries with brown butter shortcake 
##                                                                                    25 
##                                                        strawberry and almond smoothie 
##                                                                                     6 
##                                                       strawberry and cream layer cake 
##                                                                                    45 
##                                                   strawberry and ice cream sandwiches 
##                                                                                     3 
##                                                      strawberry and pistachio galette 
##                                                                                   126 
##                                                strawberry and sesame swirl soft serve 
##                                                                                    18 
##                                                             strawberry banana compote 
##                                                                                    10 
##                                                                    strawberry cassata 
##                                                                                    69 
##                                                                  strawberry charlotte 
##                                                                                    20 
##                                                            strawberry cheesecake bars 
##                                                                                    36 
##                                                                strawberry chiffon pie 
##                                                                                     6 
##                                                                    strawberry cobbler 
##                                                                                     1 
##                                                     strawberry coconut ice cream cake 
##                                                                                    15 
##                                                              strawberry drop biscuits 
##                                                                                   100 
##                                                     strawberry gingersnap icebox cake 
##                                                                                   139 
##                                                                    strawberry granola 
##                                                                                     9 
##                                                          strawberry horchata raspados 
##                                                                                     1 
##                                                              strawberry jam with kiwi 
##                                                                                    11 
##                                                                 strawberry jelly cake 
##                                                                                     5 
##                                                               strawberry marsala cake 
##                                                                                    31 
##                                                       strawberry muesli chia smoothie 
##                                                                                     3 
##                                               strawberry muffins with candied almonds 
##                                                                                    17 
##                                                     strawberry or raspberry ice cream 
##                                                                                    11 
##                                                                strawberry orange soup 
##                                                                                     2 
##                  strawberry panna cotta with cereal milk mousse and cornflake crumble 
##                                                                                     2 
##                                                              strawberry peach sangria 
##                                                                                     9 
##                                                                strawberry pretzel pie 
##                                                                                    86 
##                                                          strawberry rhubarb confiture 
##                                                                                    10 
##                                                            strawberry rhubarb muffins 
##                                                                                    22 
##                                                       strawberry shortbread and cream 
##                                                                                    38 
##                                          strawberry shortcake with lemon pepper syrup 
##                                                                                    30 
##                                                                   strawberry slab pie 
##                                                                                    23 
##                                                                   strawberry smoothie 
##                                                                                    25 
##                                                                    strawberry souffle 
##                                                                                    15 
##                                                                       strawberry soup 
##                                                                                     6 
##                                                                 strawberry spoon cake 
##                                                                                   511 
##                                                       street cart style chicken salad 
##                                                                                     3 
##                                                           striped bass allamatriciana 
##                                                                                    12 
##                              striped bass or mahi mahi with fennel leeks and tomatoes 
##                                                                                    41 
##                                                          striped bass with fresh figs 
##                                                                                     5 
##                                                 striped bass with potatoes and olives 
##                                                                                    35 
##                                                                     striped berry pie 
##                                                                                    20 
##                                                                            striptease 
##                                                                                     7 
##                                             strozzapreti with rabbit and green olives 
##                                                                                     2 
##                                                    strozzapreti with roasted tomatoes 
##                                                                                     9 
##                                              stuffed acorn squash with mushroom gravy 
##                                                                                     6 
##                                            stuffed acorn squash with sausage and kale 
##                                                                                     5 
##                                                       stuffed and seared duck breasts 
##                                                                                    18 
##                                stuffed artichokes with lemon zest rosemary and garlic 
##                                                                                     6 
##                                                                 stuffed baby pumpkins 
##                                                                                    27 
##                                  stuffed boneless turkey breast with white wine gravy 
##                                                                                    19 
##                                                              stuffed butternut squash 
##                                                                                     6 
##                                                                stuffed cabbage leaves 
##                                                                                    14 
##                                                                      stuffed calamari 
##                                                                                    19 
##                                                                stuffed collard greens 
##                                                                                    11 
##                                 stuffed delicata squash with lentils and cashew raita 
##                                                                                    21 
##                                                   stuffed ham southern maryland style 
##                                                                                    13 
##                                                                     stuffed jalapenos 
##                                                                                    94 
##                                                          stuffed kale in tomato water 
##                                                                                     2 
##                                             stuffed mushrooms with panko and pecorino 
##                                                                                    42 
##                                                                       stuffed peppers 
##                                                                                   113 
##                                          stuffed peppers with red rice chard and feta 
##                                                                                    16 
##                                                           stuffed pork loin with figs 
##                                                                                    18 
##                                         stuffed portabella mushrooms with swiss chard 
##                                                                                    12 
##                                                          stuffed portobello mushrooms 
##                                                                                    47 
##                         stuffed roasted yellow peppers or red peppers in tomato sauce 
##                                                                                    17 
##                                                                        stuffed shells 
##                                                                                    76 
##                                        stuffed shells filled with spinach and ricotta 
##                                                                                   141 
##                                                          stuffed squid sicilian style 
##                                                                                    34 
##                                                            stuffed standing rib roast 
##                                                                                     7 
##                                      stuffed sweet peppers with tuna bulgur and herbs 
##                                                                                    45 
##                                                       stuffed trout with porter sauce 
##                                                                                     6 
##                                stuffed yellow peppers with israeli couscous and pesto 
##                                                                                    16 
##                                                                stuffing dumpling soup 
##                                                                                    45 
##                                                                      stuffing muffins 
##                                                                                    17 
##                                        stuffing panzanella with cranberry vinaigrette 
##                                                                                    14 
##                                                            stuffing stuffed mushrooms 
##                                                                                    13 
##                                               stuffing with mushrooms leeks and bacon 
##                                                                                    65 
##                                                     succotash with sausage and shrimp 
##                                                                                   122 
##                                                                     sugar cookie bars 
##                                                                                   279 
##                                                                         sugar cookies 
##                                                                                    82 
##                                                                  sugar snap pea salad 
##                                                                                     8 
##                                 sugar snap pea salad with calabrian pepper and fennel 
##                                                                                    14 
##                            sugar snap pea salad with radishes mint and ricotta salata 
##                                                                                    89 
##                                             sugar snap peas with yogurt feta and dill 
##                                                                                    38 
##                                                                   sugared cranberries 
##                                                                                    10 
##                                                                         sugared puffs 
##                                                                                     3 
##                                                                    sugared shortbread 
##                                                                                    52 
##                                                            sugarplum gingerbread cake 
##                                                                                    32 
##                                                  sumac scented eggplant and chickpeas 
##                                                                                    67 
##                                                                    summer aioli feast 
##                                                                                     2 
##                                                                   summer berry buckle 
##                                                                                   304 
##                                                 summer berry crostata with lemon curd 
##                                                                                     8 
##                                                                summer berry ice cream 
##                                                                                    24 
##                                                        summer berry stacked shortcake 
##                                                                                    13 
##                                                                      summer corn soup 
##                                                                                    16 
##                                                                    summer fruit shrub 
##                                                                                     9 
##                                                            summer minestrone al pesto 
##                                                                                    28 
##                                          summer pasta with zucchini ricotta and basil 
##                                                                                   511 
##                                          summer pudding with blackberries and peaches 
##                                                                                    41 
##                                                         summer ratatouille with farro 
##                                                                                    30 
##                                     summer rolls with black bean garlic dipping sauce 
##                                                                                    15 
##                                           summer shrimp scampi with tomatoes and corn 
##                                                                                   198 
##                                  summer squash and red rice salad with lemon and dill 
##                                                                                     2 
##                                                 summer squash bread pudding with feta 
##                                                                                     3 
##                                                                summer squash caponata 
##                                                                                    19 
##                                                               summer squash casserole 
##                                                                                   216 
##                                                summer squash curry shellfish optional 
##                                                                                    55 
##                                      summer squash fritters with garlic dipping sauce 
##                                                                                    68 
##                                    summer squash gratin with pickled rye bread crumbs 
##                                                                                     6 
##                                                    summer squash refrigerator pickles 
##                                                                                     7 
##                       summer squash ribbons with cherry tomatoes and mint basil pesto 
##                                                                                     7 
##                                                   summer squash tahini and yogurt dip 
##                                                                                     2 
##                                summer tacos with corn green beans and tomatillo salsa 
##                                                                                     7 
##                                                                  summer tomato gratin 
##                                                                                     3 
##                                            summer vegetable couscous with spicy pesto 
##                                                                                    31 
##                                                              summer vegetable galette 
##                                                                                    28 
##                                                               summer vegetable gratin 
##                                                                                    38 
##                                                                summer vegetable salad 
##                                                                                     8 
##                                                                          sumo collins 
##                                                                                     1 
##                                                       sun cooked strawberry preserves 
##                                                                                     1 
##                                               sun dried tomato and goat cheese omelet 
##                                                                                     8 
##                                                              sunchoke and apple salad 
##                                                                                     3 
##                                                                          sunday beans 
##                                                                                     7 
##                                                        sunny day real estate cocktail 
##                                                                                     4 
##                                            suon kho pork ribs in savory caramel sauce 
##                                                                                     9 
##                                                               super tomato sandwiches 
##                                                                                     3 
##                                        superiority burgers crispy fried tofu sandwich 
##                                                                                   265 
##                                                                 supernatural brownies 
##                                                                                   197 
##                       supreme de volaille fermiere a la creme chicken breast in cream 
##                                                                                    12 
##                                                         surnoli coconut rice pancakes 
##                                                                                    23 
##                                                          susan gubars matzo ball soup 
##                                                                                     5 
##                                             suvir sarans guacamole with toasted cumin 
##                                                                                     1 
##                                                suvir sarans mushroom and farro burger 
##                                                                                     9 
##                                 suvir sarans palak ki tiki spinach and potato patties 
##                                                                                    61 
##                                                                   swedish almond cake 
##                                                                                   238 
##                                                                 swedish cardamom buns 
##                                                                                   162 
##                                                                     swedish meatballs 
##                                                                                   112 
##                                                                      sweeney potatoes 
##                                                                                    75 
##                                              sweet and pungent apple and cabbage slaw 
##                                                                                    16 
##                                    sweet and salty grilled pork with citrus and herbs 
##                                                                                    82 
##                                     sweet and salty grilled steak with cucumber salad 
##                                                                                   136 
##                                                  sweet and sassy sweet potato pockets 
##                                                                                     2 
##                                       sweet and sour braised brisket with cranberries 
##                                                                                    15 
##                                            sweet and sour butternut squash or pumpkin 
##                                                                                    10 
##                                           sweet and sour cabbage with tofu and grains 
##                                                                                     5 
##                                        sweet and sour cauliflower with golden raisins 
##                                                                                    26 
##                                        sweet and sour eggplant tomatoes and chickpeas 
##                                                                                    29 
##                                             sweet and sour eggplant with garlic chips 
##                                                                                    66 
##                                                                 sweet and sour onions 
##                                                                                     1 
##                         sweet and sour peppers stuffed with rice or bulgur and fennel 
##                                                                                     6 
##                                                                   sweet and sour pork 
##                                                                                     6 
##                                                               sweet and sour sardines 
##                                                                                     1 
##                                  sweet and sour stir fried radishes with their greens 
##                                                                                     5 
##                                                   sweet and sour stuffed grape leaves 
##                                                                                     2 
##                                                          sweet and sour winter squash 
##                                                                                     7 
##                                                           sweet and spicy fruit salad 
##                                                                                    35 
##                                               sweet and spicy grilled chicken breasts 
##                                                                                   107 
##                                                   sweet and spicy grilled flank steak 
##                                                                                    27 
##                                       sweet and spicy grilled vegetables with burrata 
##                                                                                    53 
##                                                           sweet and spicy razor clams 
##                                                                                     2 
##                                       sweet and spicy ribs with cilantro and cucumber 
##                                                                                   100 
##                                                         sweet and spicy roast chicken 
##                                                                                   276 
##                                               sweet and spicy roasted tofu and squash 
##                                                                                   145 
##                                                sweet and spicy tofu with soba noodles 
##                                                                                   135 
##                                                        sweet and tangy sesame noodles 
##                                                                                     7 
##                                                                    sweet baking spice 
##                                                                                     5 
##                                                         sweet cherry upside down cake 
##                                                                                    10 
##                                                       sweet corn and ricotta sformato 
##                                                                                    67 
##                                                                      sweet corn blini 
##                                                                                     9 
##                                    sweet corn ice cream with blackberry verbena sauce 
##                                                                                    15 
##                                                                      sweet corn salad 
##                                                                                    22 
##                                      sweet cream ice cream with toasted wheat berries 
##                                                                                     2 
##                                          sweet focaccia with figs plums and hazelnuts 
##                                                                                     7 
##                                    sweet millet kugel with dried apricots and raisins 
##                                                                                     5 
##                                                     sweet mochi with red bean filling 
##                                                                                    19 
##                                                                   sweet potato aligot 
##                                                                                    21 
##                                                      sweet potato and apple hobo pack 
##                                                                                     4 
##                                                          sweet potato and apple kugel 
##                                                                                    49 
##                            sweet potato and apple latkes with ginger and sweet spices 
##                                                                                     8 
##                                                          sweet potato and apple puree 
##                                                                                    13 
##                                    sweet potato and butternut squash soup with ginger 
##                                                                                    66 
##                                 sweet potato and goat cheese gratin with black olives 
##                                                                                     5 
##                                                     sweet potato and green bean salad 
##                                                                                     6 
##                                                       sweet potato and gruyere gratin 
##                                                                                    87 
##                                            sweet potato and kale salad with roquefort 
##                                                                                     7 
##                                                            sweet potato and onion dip 
##                                                                                    13 
##                                                         sweet potato and parsnip mash 
##                                                                                     8 
##                                         sweet potato and toasted pecan grilled cheese 
##                                                                                     8 
##                                                                  sweet potato bebinca 
##                                                                                    75 
##                                         sweet potato carrot and dried fruit casserole 
##                                                                                    11 
##                                                                sweet potato casserole 
##                                                                                    25 
##                                                            sweet potato casserole pie 
##                                                                                    47 
##                                                                    sweet potato chips 
##                                                                                     4 
##                                                     sweet potato cinnamon swirl bread 
##                                                                                    21 
##                                    sweet potato confit with chorizo and creme fraiche 
##                                                                                    14 
##                                                 sweet potato corn and jalapeno bisque 
##                                                                                     3 
##                                   sweet potato corn cakes with pistachio yogurt sauce 
##                                                                                    10 
##                                                                   sweet potato dreams 
##                                                                                     1 
##                                                                    sweet potato fries 
##                                                                                   256 
##                                               sweet potato garlic soup with chile oil 
##                                                                                    29 
##                                       sweet potato gratin with ginger and orange zest 
##                                                                                     4 
##                                                              sweet potato hash browns 
##                                                                                    20 
##                                        sweet potato hash with bacon and melted onions 
##                                                                                    10 
##                                                         sweet potato hummingbird cake 
##                                                                                    29 
##                                                             sweet potato meringue pie 
##                                                                                    33 
##                                                              sweet potato pecan salad 
##                                                                                    15 
##                                                  sweet potato pumpkin and apple puree 
##                                                                                     7 
##                                     sweet potato quinoa spinach and red lentil burger 
##                                                                                    89 
##                                       sweet potato salad with lime pickle and cashews 
##                                                                                    12 
##                                                                  sweet potato souffle 
##                                                                                    15 
##                                                                     sweet potato soup 
##                                                                                    32 
##                                            sweet potato soup with feta and zaatar oil 
##                                                                                    11 
##                                          sweet potato soup with ginger leek and apple 
##                                                                                    14 
##                                          sweet potato steak fries with crunchy spices 
##                                                                                     2 
##                                                                     sweet potato stew 
##                                                                                    15 
##                                                   sweet potato tea cake with meringue 
##                                                                                    36 
##                                                       sweet potatoes anna with prunes 
##                                                                                    28 
##                                           sweet potatoes with bourbon and brown sugar 
##                                                                                    56 
##                                                 sweet potatoes with cranberry chutney 
##                                                                                    31 
##                                                     sweet potatoes with mustard sauce 
##                                                                                    12 
##                                             sweet potatoes with sour cream and pecans 
##                                                                                    17 
##                                                     sweet potatoes with tahini butter 
##                                                                                   425 
##                                                     sweet potatoes with tsimmes glaze 
##                                                                                    18 
##                                   sweet potatoes with yogurt and cilantro chile sauce 
##                                                                                    61 
##                                                                sweet rhubarb focaccia 
##                                                                                     3 
##                                               sweet spiced mushroom and apricot pilaf 
##                                                                                    30 
##                                                                   sweet spiced pecans 
##                                                                                    18 
##                                                                      sweet tart crust 
##                                                                                    51 
##                                                                      sweet tart dough 
##                                                                                     8 
##                                                                             sweet tea 
##                                                                                    30 
##                                               sweet tomato jam with honey and vanilla 
##                                                                                     3 
##                                                                  sweet vermouth slush 
##                                                                                     8 
##                                     sweet whole wheat focaccia with pears and walnuts 
##                                                                                     4 
##                                               sweetbreads with mushrooms and cherries 
##                                                                                     1 
##                                                   swiss chard and chickpea minestrone 
##                                                                                    26 
##                             swiss chard and lamb torte with fennel pomegranate relish 
##                                                                                    27 
##                                                             swiss chard and rice soup 
##                                                                                    27 
##                                                                  swiss chard fritters 
##                                                                                    28 
##                                                    swiss chard rice bowl with chorizo 
##                                                                                    24 
##                                                                  swiss chard slab pie 
##                                                                                    46 
##                                                      swiss chard stalk and tahini dip 
##                                                                                     6 
##                                                                     swiss chard torta 
##                                                                                     3 
##                                                 swiss chard with caramelized shallots 
##                                                                                     1 
##                                        swiss rosti with smoked salmon and poached egg 
##                                                                                    21 
##                                                                   swordfish au poivre 
##                                                                                     7 
##                                                                         swordfish blt 
##                                                                                    17 
##                                                                     swordfish piccata 
##                                                                                   128 
##                                        swordfish with caramelized eggplant and capers 
##                                                                                   131 
##                                                       swordfish with lemon and fennel 
##                                                                                    81 
##                                                  swordfish with sweet and hot peppers 
##                                                                                    17 
##                                                      sylvia lavs perfect hamantaschen 
##                                                                                     6 
##                                                                 syrian walnut baklava 
##                                                                                    10 
##                                                                       tabard cocktail 
##                                                                                     3 
##                                        tabbouleh with apples walnuts and pomegranates 
##                                                                                    31 
##                                                                              tabletop 
##                                                                                     2 
##                                                                        taco seasoning 
##                                                                                    43 
##                                                                       tacos al pastor 
##                                                                                    17 
##                                                                  tacos de calabacitas 
##                                                                                     1 
##                                                                     tacos de carnitas 
##                                                                                   173 
##                                                                    tacos de picadillo 
##                                                                                    22 
##                                                      tacos with black beans and chard 
##                                                                                    12 
##                                     tacos with green beans chiles and tomatillo salsa 
##                                                                                     3 
##                                  tacos with roasted potatoes squash and peppers rajas 
##                                                                                     7 
##                tacos with roasted vegetables and chickpeas in chipotle ranchera salsa 
##                                                                                     1 
##                                              tacos with spicy tofu tomatoes and chard 
##                                                                                    15 
##                                           tacos with summer squash tomatoes and beans 
##                                                                                    34 
##                                                           tacos with turkey picadillo 
##                                                                                    23 
##                                                                tagine style lamb stew 
##                                                                                   120 
##                                                tagliatelle with mushrooms in red wine 
##                                                                                    24 
##                                                tagliatelle with prosciutto and butter 
##                                                                                   125 
##                                                                tahini chocolate cakes 
##                                                                                    19 
##                                                                 tahini glazed carrots 
##                                                                                    42 
##                                                                 tahini ranch dressing 
##                                                                                    73 
##                                                                          tahini salad 
##                                                                                     8 
##                                                             tahini shortbread cookies 
##                                                                                    29 
##                                                            taiwanese beef noodle soup 
##                                                                                    40 
##                                                                      taiwanese meefun 
##                                                                                    53 
##                                            taiwanese popcorn chicken with fried basil 
##                                                                                    81 
##                                                                                take 3 
##                                                                                     1 
##                                                          takeout style sesame noodles 
##                                                                                   596 
##                                                       taking stock after thanksgiving 
##                                                                                     7 
##                                                            tall and creamy cheesecake 
##                                                                                    22 
##                                                     tamagoyaki japanese rolled omelet 
##                                                                                    20 
##                                                                               tamales 
##                                                                                     9 
##                                     tamales de chile rojo red chile tamales with meat 
##                                                                                     1 
##                                          tamales de frijol oaxacan black bean tamales 
##                                                                                     3 
##                                             tamales de pollo chipotle chicken tamales 
##                                                                                     3 
##                                                                        tamales verdes 
##                                                                                     6 
##                                                                      tamarind chutney 
##                                                                                     4 
##                                                                    tamarind cream pie 
##                                                                                    21 
##                                                                      tamarind ketchup 
##                                                                                     6 
##                                                                        tamarind paste 
##                                                                                     9 
##                                                     tamarind shrimp with coconut milk 
##                                                                                    89 
##                                                        tamarind spiced nuts with mint 
##                                                                                    31 
##                                                                    tandoori mushrooms 
##                                                                                     5 
##                                                                        tandoori steak 
##                                                                                     3 
##                                                                             tang yuan 
##                                                                                    18 
##                                                   tangerine ginger and chocolate tart 
##                                                                                    19 
##                                                                         tangerine ice 
##                                                                                     1 
##                                                                     tangerine sherbet 
##                                                                                     5 
##                                                            tangerine sorbet with sake 
##                                                                                    10 
##                                                              tangy braised short ribs 
##                                                                                   102 
##                                   tangy pork noodle salad with lime and lots of herbs 
##                                                                                    58 
##                                             tangy red lentil soup with nicoise olives 
##                                                                                     1 
##                                                     tapa of mushrooms in garlic sauce 
##                                                                                    15 
##                                                                               taralli 
##                                                                                     5 
##                                                                          taramasalata 
##                                                                                    24 
##                                                             tarragon cucumber pickles 
##                                                                                     1 
##                                                                            tart crust 
##                                                                                     9 
##                                                                            tart dough 
##                                                                                     1 
##                                                                        tart lemon pie 
##                                                                                    32 
##                                                                         tarte flambee 
##                                                                                    34 
##                                                                           tartiflette 
##                                                                                    60 
##                                                                tartines country bread 
##                                                                                   170 
##                                                          tartines pizza or pita dough 
##                                                                                     8 
##                                                                   tater tot casserole 
##                                                                                   137 
##                                                                            tater tots 
##                                                                                    19 
##                                 tea soaked drunken chicken with cilantro scallion oil 
##                                                                                    25 
##                                                             teff and oatmeal pancakes 
##                                                                                    13 
##                                                                      teff carrot cake 
##                                                                                    25 
##                                        teff pancakes with chia millet and blueberries 
##                                                                                     5 
##                                                        teff polenta croutons or cakes 
##                                                                                     1 
##                                                teff polenta with toasted hazelnut oil 
##                                                                                     1 
##                                                        telepans beet and bulgur salad 
##                                                                                     6 
##                                                             tembleque coconut pudding 
##                                                                                    30 
##                                                    tempeh and wild mushroom fricassee 
##                                                                                    18 
##                                                                          tempeh stock 
##                                                                                     1 
##                                  tempura fried green beans with mustard dipping sauce 
##                                                                                    28 
##                                                                        tempura shrimp 
##                                                                                    12 
##                                                   tepary beans with chile agave glaze 
##                                                                                    11 
##                                                          tequila and grapefruit juice 
##                                                                                     6 
##                                                                     tequila and tonic 
##                                                                                     8 
##                                                                tequila and watermelon 
##                                                                                     7 
##                                                                     tequila el diablo 
##                                                                                     3 
##                                                                      tequila highball 
##                                                                                     6 
##                                                                        tequila paloma 
##                                                                                     4 
##                                                   tequila shots with sangrita chasers 
##                                                                                     1 
##                                                                        tequila soleil 
##                                                                                    26 
##                                                                          tequila sour 
##                                                                                     9 
##                                                              tequila watermelon punch 
##                                                                                     7 
##                                                               teriyaki cabbage steaks 
##                                                                                     7 
##                                                                teriyaki chicken wings 
##                                                                                     6 
##                                                                           texas chili 
##                                                                                   269 
##                                               texas hill country style smoked brisket 
##                                                                                     9 
##                                                                     texas style chili 
##                                                                                   172 
##                                                                      thai basil bliss 
##                                                                                     5 
##                                                                   thai carrot burgers 
##                                                                                     1 
##                                                           thai combination fried rice 
##                                                                                    47 
##                                        thai curry risotto with squash and green beans 
##                                                                                   102 
##                                                   thai inspired chicken meatball soup 
##                                                                                   656 
##                                      thai inspired coconut curry soup with vegetables 
##                                                                                    45 
##                                 thai larb gai chicken with lime chili and fresh herbs 
##                                                                                    33 
##                                                thai red curry noodles with vegetables 
##                                                                                    59 
##                                           thai rice soup with pork cilantro meatballs 
##                                                                                    57 
##                                                             thai style baby back ribs 
##                                                                                    14 
##                                                             thai style broiled shrimp 
##                                                                                    20 
##                                                thai style coconut curry chicken tacos 
##                                                                                    24 
##                                                              thai style coconut stock 
##                                                                                     2 
##                                                                 thai style crab cakes 
##                                                                                    26 
##                                                     thai style scallops and asparagus 
##                                                                                     2 
##                                                          thai style sea scallop cakes 
##                                                                                     8 
##                                                                 thai style spare ribs 
##                                                                                    24 
##                                               thai style sprouted rice and herb salad 
##                                                                                     4 
##                                                     thai style sweet and salty shrimp 
##                                                                                    83 
##                                      thai style tomato salad with cucumber and ginger 
##                                                                                    34 
##                                                                 thanksgiving dressing 
##                                                                                    67 
##                                                  thanksgiving leftovers enchilada pie 
##                                                                                    62 
##                                   thanksgiving mixed bean chili with corn and pumpkin 
##                                                                                    15 
##                                                     thanksgiving roasted root veggies 
##                                                                                     1 
##                                                                 thanksgiving sandwich 
##                                                                                     9 
##                                                                the barcelona delusion 
##                                                                                     2 
##                                                                       the benediction 
##                                                                                     1 
##                                                                 the best clam chowder 
##                                                                                   212 
##                                                      the best fried eggplant sandwich 
##                                                                                    58 
##                                                    the best roast beef for sandwiches 
##                                                                                    85 
##                                                               the best scrambled eggs 
##                                                                                   253 
##                                                                       the big lasagna 
##                                                                                   239 
##                                                                    the bitter heiress 
##                                                                                     3 
##                                                                      the boulevardier 
##                                                                                    28 
##                                                                           the bramble 
##                                                                                    10 
##                                                                        the bruniberry 
##                                                                                     1 
##                                                                           the catcher 
##                                                                                     3 
##                                                                          the chadburn 
##                                                                                     2 
##                                                                   the classic martini 
##                                                                                     6 
##                                                                   the comme ca burger 
##                                                                                     6 
##                                                   the crunchiest summer fruit crumble 
##                                                                                    85 
##                                                                the easiest lemon curd 
##                                                                                    54 
##                                                                        the fitty spot 
##                                                                                     2 
##                                                             the fluffiest royal icing 
##                                                                                     6 
##                                    the four seasons chopped lamb steak with pine nuts 
##                                                                                     1 
##                                                  the frankies fried eggplant sandwich 
##                                                                                    34 
##                                                               the general store chili 
##                                                                                     1 
##                                                                            the ghazal 
##                                                                                     3 
##                                                                            the gibson 
##                                                                                    10 
##                                                                       the giving tree 
##                                                                                     1 
##                                                                         the good word 
##                                                                                     1 
##                                                              the greenest green salad 
##                                                                                    86 
##                                                              the helena bonham carter 
##                                                                                     1 
##                                                                       the hummingbird 
##                                                                                     3 
##                                                                              the hunt 
##                                                                                     3 
##                                                            the improved dirty martini 
##                                                                                     4 
##                                                                  the jack rose deluxe 
##                                                                                     2 
##                                                           the james franco the chaser 
##                                                                                     1 
##                                                                     the jeremy renner 
##                                                                                     2 
##                                                       the lee brothers pimento cheese 
##                                                                                   161 
##                                                                  the louisville sling 
##                                                                                     1 
##                                                         the marrows ginger stout cake 
##                                                                                   234 
##                                                                        the montserrat 
##                                                                                     1 
##                                        the most adaptable one bowl cornmeal poundcake 
##                                                                                   121 
##                               the murricane a bourbon watermelon elderflower cocktail 
##                                                                                     7 
##                                                                   the natalie portman 
##                                                                                     1 
##                                                                        the new career 
##                                                                                     1 
##                                                                     the nico melendez 
##                                                                                     3 
##                                                                         the old cuban 
##                                                                                     2 
##                                             the only ice cream recipe youll ever need 
##                                                                                   122 
##                                                                   the original nachos 
##                                                                                    46 
##                                                            the original waldorf salad 
##                                                                                    31 
##                                                                        the pink angel 
##                                                                                     4 
##                                                                            the posset 
##                                                                                     3 
##                                                                       the real burger 
##                                                                                    13 
##                                                                        the reanimator 
##                                                                                     1 
##                                                                     the said and done 
##                                                                                     3 
##                                                                 the seelbach cocktail 
##                                                                                     5 
##                                                             the simplest corn pudding 
##                                                                                     9 
##                                                                          the snowball 
##                                                                                     1 
##                                                                    the southern slope 
##                                                                                    10 
##                                                                  the stores green dip 
##                                                                                   100 
##                                          the temporary vegetarian a portuguese empada 
##                                                                                     1 
##                                                            the ultimate veggie burger 
##                                                                                   134 
##                                                                   the venetian spritz 
##                                                                                     7 
##                                                                            the vesper 
##                                                                                     9 
##                                                         they didnt burn rome in a day 
##                                                                                     4 
##                                                 thick tomato bread soup catalan style 
##                                                                                     2 
##                                                             thin and crisp apple tart 
##                                                                                    31 
##                                                             thin and crispy cornbread 
##                                                                                    31 
##                                                                     thin coconut milk 
##                                                                                     1 
##                                                            thin pan seared pork chops 
##                                                                                    33 
##                                     thit heo kho trung pork and eggs in caramel sauce 
##                                                                                    19 
##                                                                       three bean soup 
##                                                                                     9 
##                                              three cheese and mushroom quinoa risotto 
##                                                                                     8 
##                                                    three cheese cauliflower casserole 
##                                                                                    52 
##                                                                     three cup chicken 
##                                                                                   381 
##                                                                  three cup vegetables 
##                                                                                   174 
##                                                                   three greens gratin 
##                                                                                    31 
##                                                                   three herb iced tea 
##                                                                                     2 
##                                                        three sheets to the watermelon 
##                                                                                     1 
##                                       three sisters bowl with hominy beans and squash 
##                                                                                    38 
##                                                                  three sisters squash 
##                                                                                    28 
##                                                                    three sisters stew 
##                                                                                   149 
##                                                                         thrice cooked 
##                                                                                     1 
##                                 thrice roasted chicken with rosemary lemon and pepper 
##                                                                                    24 
##                                 thumbprint cookies with toasted nuts and whole grains 
##                                                                                    10 
##                                        thumbprints with dulce de leche nutella or jam 
##                                                                                    88 
##                                               thyme meringue cookies with boozy apple 
##                                                                                     4 
##                                                                           thyme syrup 
##                                                                                     1 
##                                                                               tia mia 
##                                                                                     3 
##                                                                                  tian 
##                                                                                   225 
##                                                                     tibetan hot sauce 
##                                                                                     2 
##                                                                 tiger vegetable salad 
##                                                                                    14 
##                                                              tigua indian bowl of red 
##                                                                                     8 
##                                                                timpano alla big night 
##                                                                                    24 
##                                       tinga de pollo chicken with chipotle and onions 
##                                                                                     4 
##                                                          tiny salty chocolaty cookies 
##                                                                                   251 
##                                                          tita ems chicken wings adobo 
##                                                                                    15 
##                                                                      toad in the hole 
##                                                                                     4 
##                                                     toasted almond coconut financiers 
##                                                                                    16 
##                                                              toasted almond snowballs 
##                                                                                    95 
##                                     toasted coconut rice with bok choy and fried eggs 
##                                                                                    49 
##                                                            toasted coconut shortbread 
##                                                                                   108 
##                                                                    toasted corn salsa 
##                                                                                     1 
##                                  toasted millet salad with cucumber avocado and lemon 
##                                                                                     4 
##                                                           toasted spaghetti primavera 
##                                                                                     1 
##                                                             toasts with egg and bacon 
##                                                                                     3 
##                                                     todd mauls rhum agricole daiquiri 
##                                                                                     1 
##                                           todd richardss fried catfish with hot sauce 
##                                                                                    29 
##                          todd richardss grilled peach toast with spicy pimento cheese 
##                                                                                    13 
##                                                 tofu and green beans with chile crisp 
##                                                                                   235 
##                                                       tofu and herb salad with sesame 
##                                                                                    15 
##                                                                          tofu chorizo 
##                                                                                    70 
##                                                                        tofu escabeche 
##                                                                                    22 
##                                                                             tofu larb 
##                                                                                    38 
##                                                       tofu makhani indian butter tofu 
##                                                                                   274 
##                                                                       tofu mayonnaise 
##                                                                                     4 
##                                                                  tofu mushroom quiche 
##                                                                                    27 
##                                                                    tofu mushroom soup 
##                                                                                    30 
##                                                                         tofu scramble 
##                                                                                    64 
##                                                 tofu with hot chipotle barbecue sauce 
##                                                                                    16 
##                                                           tofu with miso peanut sauce 
##                                                                                     6 
##                                                         tofu with peanut ginger sauce 
##                                                                                    60 
##                                                                            tohu thoke 
##                                                                                     8 
##                                                     toll house chocolate chip cookies 
##                                                                                   139 
##                                                                         tom and jerry 
##                                                                                     3 
##                                                                           tom collins 
##                                                                                    11 
##                                                      tomates farcies stuffed tomatoes 
##                                                                                    27 
##                                                                   tomatillo guacamole 
##                                                                                    10 
##                                                             tomatillo pineapple salsa 
##                                                                                     9 
##                                                                       tomatillo salsa 
##                                                                                    21 
##                                                 tomatillo tomato and avocado gazpacho 
##                                                                                     4 
##                                                                  tomato alphabet soup 
##                                                                                    19 
##                                                              tomato and avocado salsa 
##                                                                                     3 
##                                                              tomato and basil risotto 
##                                                                                    69 
##                                                      tomato and carrot marinara sauce 
##                                                                                     5 
##                                                         tomato and fennel seed pickle 
##                                                                                     6 
##                                                           tomato and goat cheese tart 
##                                                                                    70 
##                                       tomato and peach salad with whipped goat cheese 
##                                                                                    56 
##                                                           tomato and watermelon salad 
##                                                                                   167 
##                                        tomato and white bean soup with lots of garlic 
##                                                                                   250 
##                              tomato and zucchini casserole with crisp cheddar topping 
##                                                                                    35 
##                                                  tomato bisque with fresh goat cheese 
##                                                                                    37 
##                                             tomato bread salad with chorizo and herbs 
##                                                                                     6 
##                                                                     tomato bruschetta 
##                                                                                    25 
##                                                                      tomato chile jam 
##                                                                                    25 
##                                                  tomato cobbler with ricotta biscuits 
##                                                                                   179 
##                                                tomato crostata with honey thyme glaze 
##                                                                                    48 
##                                                        tomato cucumber and corn salad 
##                                                                                    32 
##                                                       tomato cucumber soup with basil 
##                                                                                    15 
##                                  tomato eclairs with creamy ricotta and basil filling 
##                                                                                     4 
##                                                   tomato fennel soup with brie toasts 
##                                                                                    29 
##                                                tomato fresh fig and blue cheese salad 
##                                                                                    81 
##                                                                 tomato frittata to go 
##                                                                                     3 
##                                          tomato frittata with fresh marjoram or thyme 
##                                                                                    15 
##                                                                    tomato fruit salad 
##                                                                                     4 
##                                                                       tomato gazpacho 
##                                                                                    18 
##                                                                            tomato jam 
##                                                                                    31 
##                                tomato kale and mozzarella sandwich with parsley pesto 
##                                                                                     2 
##                                                                        tomato ketchup 
##                                                                                    64 
##                                               tomato marinated greens and beans toast 
##                                                                                    50 
##                                                                       tomato nam prik 
##                                                                                     6 
##                                                                  tomato onion compote 
##                                                                                     1 
##                                                                  tomato parmesan soup 
##                                                                                   103 
##                                                tomato pie with pimento cheese topping 
##                                                                                    32 
##                                          tomato poached fish with chile oil and herbs 
##                                                                                   349 
##                                                                      tomato rice soup 
##                                                                                    21 
##                                                       tomato rice with crispy cheddar 
##                                                                                   181 
##                                                                        tomato risotto 
##                                                                                   351 
##                                                                tomato salad on a roll 
##                                                                                    28 
##                                                   tomato salad on cumin spiced yogurt 
##                                                                                    34 
##                                                      tomato salad with anchovy toasts 
##                                                                                    13 
##                                                           tomato salad with red beans 
##                                                                                    11 
##                                             tomato salad with turkish tahini dressing 
##                                                                                     5 
##                                                               tomato salsa with fruit 
##                                                                                     2 
##                                                                     tomato sandwiches 
##                                                                                   216 
##                                                  tomato sauce with capers and vinegar 
##                                                                                    13 
##                                                      tomato sauce with lamb and pasta 
##                                                                                     8 
##                                                    tomato sauce with onion and butter 
##                                                                                    14 
##                                                                           tomato soup 
##                                                                                   337 
##                                                           tomato spelt and herb salad 
##                                                                                     1 
##                                                     tomato squash and eggplant gratin 
##                                                                                    45 
##                                                   tomato steaks with crab corn relish 
##                                                                                     1 
##                                                                  tomato stracciatella 
##                                                                                     7 
##                                       tomato tart with fresh mozzarella and anchovies 
##                                                                                    32 
##                                                     tomato toast with buttered shrimp 
##                                                                                    35 
##                                                                        tomato tonnato 
##                                                                                    34 
##                                                     tomato zucchini and avocado salad 
##                                                                                     9 
##                                                                      tomatoes nicoise 
##                                                                                    57 
##                                                tomatoes stuffed with bulgur and herbs 
##                                                                                     2 
##                                                     tomatoes with basil and anchovies 
##                                                                                    12 
##                                                                          tonic spritz 
##                                                                                     9 
##                                                                           tonic syrup 
##                                                                                     5 
##                                                        tonics and teas from my pantry 
##                                                                                     5 
##                                                                 too hot to hoot punch 
##                                                                                     4 
##                                                     toor dal split yellow pigeon peas 
##                                                                                   106 
##                                                                     top notch volcano 
##                                                                                     1 
##                                                                         torn croutons 
##                                                                                    22 
##                                                                              torrijas 
##                                                                                     2 
##                                                                        torrisi turkey 
##                                                                                    82 
##                                                          torrisis chicken fra diavolo 
##                                                                                     1 
##                                                                      torta sbrisolona 
##                                                                                    12 
##                                                                              tortilla 
##                                                                                     9 
##                                                                     tortilla espanola 
##                                                                                    28 
##                                           tortilla soup with roasted cauliflower rice 
##                                                                                    32 
##                                                   tortillita gaditana with spicy mayo 
##                                                                                     1 
##                                                               tortillitas with shrimp 
##                                                                                    15 
##                                                                               tortoni 
##                                                                                     3 
##                                               tostadas with beans cabbage and avocado 
##                                                                                     2 
##                                         tostadas with smashed black beans or vaqueros 
##                                                                                    17 
##                                          tostadas with sweet and hot peppers and eggs 
##                                                                                     1 
##                                                                              tostones 
##                                                                                    60 
##                                                        tostones fried green plantains 
##                                                                                    58 
##                                                                      toum garlic whip 
##                                                                                    37 
##                                                                     tournedos rossini 
##                                                                                     9 
##                                                                             tourtiere 
##                                                                                    80 
##                                                          traditional irish soda bread 
##                                                                                    62 
##                                                                   traditional sangria 
##                                                                                    22 
##                                                                trahana with mushrooms 
##                                                                                     2 
##                                                             tres leches bread pudding 
##                                                                                    25 
##                                                                      tres leches cake 
##                                                                                    95 
##                                                     tri tip steak with tomato romesco 
##                                                                                    11 
##                                                         tricolor salad alla splendido 
##                                                                                     5 
##                                                                  trini chana and aloo 
##                                                                                    53 
##                                                                 trini chinese chicken 
##                                                                                    65 
##                                                            triple ginger skillet cake 
##                                                                                    80 
##                                                              tropical pineapple sauce 
##                                                                                     4 
##                                                               trout with chive butter 
##                                                                                    27 
##                                                                        tsak sha momos 
##                                                                                    23 
##                                             tsaramaso malagasy white bean tomato stew 
##                                                                                    17 
##                                             tsimmes beef carrot and sweet potato stew 
##                                                                                    38 
##                              tsukune miso nabe chicken meatball hot pot in miso broth 
##                                                                                    35 
##                                                                            tucci ragu 
##                                                                                     2 
##                                                         tumble jumble strawberry tart 
##                                                                                    56 
##                                                                   tuna and bean salad 
##                                                                                    76 
##                                                    tuna au poivre with red wine sauce 
##                                                                                    22 
##                                                 tuna cauliflower and white bean salad 
##                                                                                    17 
##                                                  tuna ceviche or tartare with avocado 
##                                                                                    19 
##                                                     tuna chickpeas and broccoli salad 
##                                                                                     7 
##                                                                             tuna melt 
##                                                                                    62 
##                                                                 tuna mushroom burgers 
##                                                                                     3 
##                                                                 tuna noodle casserole 
##                                                                                    57 
##                                                                tuna or salmon burgers 
##                                                                                    36 
##                                                                             tuna poke 
##                                                                                    62 
##                                                 tuna salad sandwich julia child style 
##                                                                                   191 
##                                                                 tuna salad sandwiches 
##                                                                                    21 
##                                                               tuna steaks with fennel 
##                                                                                    16 
##                                                         tuna stuffed piquillo peppers 
##                                                                                    12 
##                                                     tuna with capers olives and lemon 
##                                                                                    61 
##                                tunisian carrot salad with cumin coriander and caraway 
##                                                                                     2 
##                                   tunisian grilled peppers and tomatoes with couscous 
##                                                                                     5 
##                                                        tunisian shakshuka with shrimp 
##                                                                                    30 
##                                             tunisian style baked cauliflower frittata 
##                                                                                    13 
##                                                          tunisian winter squash puree 
##                                                                                     4 
##                                                          tunisian winter squash salad 
##                                                                                     3 
##                                                                  tunnel of fudge cake 
##                                                                                    24 
##                                                                      turkey a la king 
##                                                                                    64 
##                                     turkey and apple sandwiches with maple mayonnaise 
##                                                                                    28 
##                                           turkey and hominy chili with smoky chipotle 
##                                                                                    68 
##                                                               turkey and mizuna salad 
##                                                                                     2 
##                                                              turkey and noodle gratin 
##                                                                                     4 
##                                                                    turkey and noodles 
##                                                                                     2 
##                                                            turkey and red pepper hash 
##                                                                                     5 
##                                         turkey and rice casserole with yogurt topping 
##                                                                                     8 
##                                                              turkey and spinach curry 
##                                                                                    75 
##                                                          turkey and vegetable burgers 
##                                                                                    25 
##                                                            turkey and wild rice salad 
##                                                                                     4 
##                                      turkey barbecue sandwiches with pickles and slaw 
##                                                                                     9 
##                                                                        turkey biryani 
##                                                                                    39 
##                                        turkey breast roulade with garlic and rosemary 
##                                                                                    92 
##                                                                          turkey brine 
##                                                                                     3 
##                                                                          turkey broth 
##                                                                                     2 
##                                          turkey burgers with green garlic and parsley 
##                                                                                    11 
##                                                                         turkey cubano 
##                                                                                    22 
##                                                                turkey cutlets marsala 
##                                                                                    42 
##                                                                 turkey dinner canapes 
##                                                                                     1 
##                                                             turkey gravy from scratch 
##                                                                                    28 
##                                                           turkey gravy with drippings 
##                                                                                    44 
##                                        turkey hash with brussels sprouts and parsnips 
##                                                                                    30 
##                                                      turkey meatballs in tomato sauce 
##                                                                                   128 
##                                                                       turkey meatloaf 
##                                                                                   118 
##                                                         turkey meatloaf turkish style 
##                                                                                    12 
##                                                                     turkey mole verde 
##                                                                                    26 
##                                            turkey or chicken soup with lemon and rice 
##                                                                                    29 
##                                                                            turkey pho 
##                                                                                    61 
##                                     turkey pie with potatoes squash chard and cheddar 
##                                                                                    15 
##                                turkey pita with cabbage cucumbers and tahini dressing 
##                                                                                     7 
##                                      turkey pitas with cucumbers chickpeas and tahini 
##                                                                                    10 
##                                                                           turkey ragu 
##                                                                                    46 
##                                            turkey salad with fried shallots and herbs 
##                                                                                    14 
##                                              turkey silog garlic fried rice with eggs 
##                                                                                     6 
##                                                       turkey soup with lime and chile 
##                                                                                    41 
##                                                                        turkey tamales 
##                                                                                     3 
##                             turkey thighs with pickled cranberries and onions for two 
##                                                                                    60 
##                           turkey thighs with prosciutto tomatoes olives and then some 
##                                                                                     9 
##                                                                   turkey tikka masala 
##                                                                                   241 
##                                                                  turkey waldorf salad 
##                                                                                    16 
##                                                           turkish bean and herb salad 
##                                                                                     2 
##                                                 turkish burned milk pudding kazandibi 
##                                                                                    14 
##                                                    turkish chicken and okra casserole 
##                                                                                    17 
##                                    turkish eggs with olives feta and tomatoes menemen 
##                                                                                    10 
##                                                                   turkish flour helva 
##                                                                                     8 
##                                                                  turkish fruit butter 
##                                                                                     3 
##                                                            turkish hummus with yogurt 
##                                                                                     7 
##                                                                  turkish pumpkin soup 
##                                                                                    11 
##                                                               turkish shepherds salad 
##                                                                                     8 
##                                      turkish spiced halibut skewers with yogurt sauce 
##                                                                                    23 
##                                                turkish spinach with tomatoes and rice 
##                                                                                    10 
##                                                        turkish style braised eggplant 
##                                                                                    10 
##                                                     turkish style braised green beans 
##                                                                                    29 
##                                                           turkish style braised leeks 
##                                                                                     6 
##                                                             turkish style lamb boreks 
##                                                                                    27 
##                                      turkish tarator sauce with beets and beet greens 
##                                                                                     1 
##                                                        turkish yogurt and spinach dip 
##                                                                                     6 
##                                                                                 turlu 
##                                                                                     4 
##                                          turmeric black pepper chicken with asparagus 
##                                                                                   670 
##                                                                      turmeric chicken 
##                                                                                    10 
##                                                           turmeric rice with tomatoes 
##                                                                                    51 
##                                                                          turmeric tea 
##                                                                                    70 
##                                          turnip and cabbage slaw with yogurt dressing 
##                                                                                     6 
##                                                                         turnip gratin 
##                                                                                    34 
##                                                           turnip leek and potato soup 
##                                                                                    15 
##                                                          tuscan bread and tomato soup 
##                                                                                    17 
##                                                                    tuscan rabbit ragu 
##                                                                                     2 
##                                                                                tuxedo 
##                                                                                     2 
##                                                                           tuxedo no 2 
##                                                                                     7 
##               twice baked butternut squash with cashew cheese walnuts and cranberries 
##                                                                                    19 
##                                                                  twice baked potatoes 
##                                                                                    52 
##                                      twice baked potatoes with cauliflower and cheese 
##                                                                                    44 
##                                                           twice baked sour cherry pie 
##                                                                                    47 
##                                                     twice cooked duck with pea shoots 
##                                                                                     6 
##                                                                 twin peaks cherry pie 
##                                                                                    38 
##                                                               two bean and tuna salad 
##                                                                                    10 
##                                                        two ingredient mashed potatoes 
##                                                                                    18 
##                                                                   two tofu sandwiches 
##                                                                                     7 
##                                                           two tone ginger custard pie 
##                                                                                    34 
##                                           two way chanterelle and pear bread stuffing 
##                                                                                     2 
##                                                                 tzatziki potato salad 
##                                                                                    47 
##                                                                               ube pie 
##                                                                                    17 
##                                      uchucuta sauce andean green herb and chile sauce 
##                                                                                     5 
##                                                ukrainian mushroom and onion dumplings 
##                                                                                     3 
##                                                                     ultimate clambake 
##                                                                                     4 
##                                                                ultrafast avocado soup 
##                                                                                    28 
##                                              umami garlic noodles with mustard greens 
##                                                                                    82 
##                                                 umbrian style chicken alla cacciatora 
##                                                                                   121 
##                                      uncooked tomato and mint sauce with poached eggs 
##                                                                                     3 
##                                                 union square cafes chocolate biscotti 
##                                                                                    74 
##                                                                     unmeasured crepes 
##                                                                                    63 
##                                                                         unstrung harp 
##                                                                                    19 
##                                                              updated funeral potatoes 
##                                                                                    10 
##                                                                updated no knead bread 
##                                                                                    85 
##                                                       updated whiskey ginger highball 
##                                                                                     1 
##                                                   upperlines duck and andouille gumbo 
##                                                                                    22 
##                                                         upside down blood orange cake 
##                                                                                   100 
##                                                     upside down caramel apple muffins 
##                                                                                    74 
##                                                  upside down date cake with marmalade 
##                                                                                    26 
##                                 upside down lemon sponge cake with lemon maple butter 
##                                                                                    51 
##                                                                   upside down martini 
##                                                                                     5 
##                                                                          utica greens 
##                                                                                    78 
##                                                     valencian chickpea and chard soup 
##                                                                                    12 
##                                                          valkyrie house old fashioned 
##                                                                                     4 
##                                                           vanilla bean spritz cookies 
##                                                                                    68 
##                                                                vanilla fruit smoothie 
##                                                                                    13 
##                                                    vanilla honey soft serve ice cream 
##                                                                                    24 
##                                                                  vanilla marshmallows 
##                                                                                    76 
##                                                                     vanilla meringues 
##                                                                                    26 
##                                                           vanilla or coffee ice cream 
##                                                                                    12 
##                                                                veal chops beau sejour 
##                                                                                    30 
##                                                     veal chops in cherry pepper sauce 
##                                                                                    29 
##                                                                         veal parmesan 
##                                                                                    14 
##                                                                         veal pojarski 
##                                                                                    10 
##                                                      veal sliders with wilted cabbage 
##                                                                                     2 
##                                vegan acorn squash burgers with cranberries and pecans 
##                                                                                    14 
##                                                                       vegan apple pie 
##                                                                                    17 
##                                                                  vegan appleberry pie 
##                                                                                     6 
##                                            vegan bolognese with mushrooms and walnuts 
##                                                                                   129 
##                                     vegan braised chinese mushrooms and baby bok choy 
##                                                                                    11 
##                                           vegan braised collard greens with mushrooms 
##                                                                                     7 
##                                                 vegan broccoli soup with cashew cream 
##                                                                                    39 
##                                                 vegan brownies with tahini and halvah 
##                                                                                    36 
##                                                                    vegan cacio e pepe 
##                                                                                   146 
##                                               vegan caesar salad with crisp chickpeas 
##                                                                                    81 
##                                                                   vegan cheeseburgers 
##                                                                                    40 
##                                                                  vegan cheesy popcorn 
##                                                                                    33 
##                                                                           vegan chili 
##                                                                                    57 
##                                                      vegan chocolate chip banana cake 
##                                                                                    73 
##                                                          vegan chocolate chip cookies 
##                                                                                    50 
##                                                              vegan chocolate cupcakes 
##                                                                                    57 
##                                                      vegan coconut ginger black beans 
##                                                                                    64 
##                                                               vegan creamy leek pasta 
##                                                                                    98 
##                                                                       vegan doughnuts 
##                                                                                     4 
##                                                                      vegan enchiladas 
##                                                                                     6 
##                                                              vegan fettuccine alfredo 
##                                                                                    25 
##                                                        vegan frozen coconut lime bars 
##                                                                                     9 
##                                                            vegan green bean casserole 
##                                                                                     3 
##                                                                       vegan ice cream 
##                                                                                    34 
##                                                                         vegan lasagna 
##                                                                                    18 
##                                                                      vegan ma po tofu 
##                                                                                     3 
##                                                                  vegan mac and cheese 
##                                                                                    70 
##                                                                     vegan mac n cheez 
##                                                                                    24 
##                                                                       vegan mapo tofu 
##                                                                                   175 
##                                                                 vegan mashed potatoes 
##                                                                                     6 
##                                                                 vegan matzo ball soup 
##                                                                                    18 
##                                                          vegan mexican cacao brownies 
##                                                                                    10 
##                                                           vegan mexican chocolate pie 
##                                                                                    95 
##                                                         vegan mushroom and leek rolls 
##                                                                                    36 
##                                                               vegan mushroom etouffee 
##                                                                                    40 
##                                                       vegan mushroom make ahead gravy 
##                                                                                   146 
##                                                                       vegan onion dip 
##                                                                                    21 
##                vegan oven roasted pumpkin wedges with cranberry pecan and chile pesto 
##                                                                                     1 
##                                                                        vegan pancakes 
##                                                                                    30 
##                                            vegan pho with carrots noodles and edamame 
##                                                                                     9 
##                                                                       vegan pie crust 
##                                                                                     9 
##                                                                           vegan pizza 
##                                                                                     7 
##                        vegan pizza with apple butternut squash and caramelized onions 
##                                                                                    60 
##                                              vegan pressure cooker red beans and rice 
##                                                                                    35 
##                                                              vegan pumpkin cheesecake 
##                                                                                    42 
##                                           vegan pumpkin cinnamon rolls with cranberry 
##                                                                                    13 
##                                                                     vegan pumpkin pie 
##                                                                                    26 
##                                                                    vegan pumpkin soup 
##                                                                                    15 
##                                                                vegan pumpkin tiramisu 
##                                                                                     7 
##                                                                           vegan queso 
##                                                                                    28 
##                                                                  vegan quick biscuits 
##                                                                                    27 
##                                                        vegan roasted banana ice cream 
##                                                                                    20 
##                                                  vegan slow cooker red beans and rice 
##                                                                                    30 
##                                                                        vegan stuffing 
##                                                                                    23 
##                           vegan summer three bean salad with tofu and soy vinaigrette 
##                                                                                     1 
##                                                   vegan tantanmen with pan fried tofu 
##                                                                                    55 
##                                                           vegan thai curry vegetables 
##                                                                                   150 
##                     vegan turkish kebabs with sumac onions and garlic dill mayonnaise 
##                                                                                    77 
##                                              vegan vietnamese vegetarian noodle salad 
##                                                                                     4 
##                           vegetable and chicken stew with olive oil rosemary biscuits 
##                                                                                    22 
##                                                                   vegetable dumplings 
##                                                                                     9 
##                                                                  vegetable fried rice 
##                                                                                    10 
##                                                        vegetable frittata with quinoa 
##                                                                                     3 
##                                                       vegetable hash with poached egg 
##                                                                                    14 
##                                                                    vegetable pad thai 
##                                                                                     4 
##                                                         vegetable paella with chorizo 
##                                                                                    91 
##                             vegetable pajeon korean scallion pancakes with vegetables 
##                                                                                   149 
##                                                                     vegetable risotto 
##                                                                                    15 
##                                           vegetable shabu shabu in kombu ginger broth 
##                                                                                     9 
##                                                                        vegetable soup 
##                                                                                    12 
##                                                    vegetable tabbouleh with chickpeas 
##                                                                                     9 
##                                                                     vegetable tempura 
##                                                                                    10 
##                                       vegetable tostadas with dark chili garlic sauce 
##                                                                                     1 
##                                                               vegetables a la grecque 
##                                                                                     3 
##                                                        vegetables and dip pita pocket 
##                                                                                     2 
##                                                         vegetarian apple parsnip soup 
##                                                                                     3 
##                                                 vegetarian bean and cheese enchiladas 
##                                                                                   141 
##                                                                  vegetarian bolognese 
##                                                                                    23 
##                                                     vegetarian carbonara with spinach 
##                                                                                   108 
##                            vegetarian chili with butternut squash and moroccan spices 
##                                                                                    66 
##                                               vegetarian chili with winter vegetables 
##                                                                                   173 
##                                                                      vegetarian gumbo 
##                                                                                    17 
##                                                                vegetarian kofta curry 
##                                                                                   178 
##                                                          vegetarian lasagna bolognese 
##                                                                                     2 
##                                                                  vegetarian meatballs 
##                                                                                    13 
##                                 vegetarian mushroom meatballs with honey ginger glaze 
##                                                                                    17 
##                                                    vegetarian mushroom shawarma pitas 
##                                                                                   196 
##                                                        vegetarian mushroom wellington 
##                                                                                   244 
##                                             vegetarian pho with asparagus and noodles 
##                                                                                     4 
##                                                                vegetarian red borscht 
##                                                                                   109 
##                                                             vegetarian salade nicoise 
##                                                                                     2 
##                                                              vegetarian shepherds pie 
##                                                                                   214 
##                                                              vegetarian skillet chili 
##                                                                                   400 
##                                        vegetarian skillet chili with eggs and cheddar 
##                                                                                    79 
##                                                 vegetarian spring rolls with kohlrabi 
##                                                                                     3 
##                                                          vegetarian swedish meatballs 
##                                                                                   123 
##                                                              vegetarian tortilla soup 
##                                                                                   186 
##                                                                          veggie balls 
##                                                                                   119 
##                                              velvet chicken breast with mustard sauce 
##                                                                                    88 
##                                                            velvet fish with mushrooms 
##                                                                                    39 
##                                                                  venetian cauliflower 
##                                                                                   135 
##                                                                       venetian spritz 
##                                                                                    10 
##                                                                       venezuela libre 
##                                                                                     1 
##                                                               venison and trotter pie 
##                                                                                    16 
##                                                 venison chops with shallots and cumin 
##                                                                                     3 
##                                                                     venison osso buco 
##                                                                                     9 
##                                           veracruzana chicken stew with winter squash 
##                                                                                     9 
##                                                                 veracruzana crab soup 
##                                                                                     6 
##                                                     veracruzana vinegar bathed shrimp 
##                                                                                     2 
##                                                                 verjuice dessert bars 
##                                                                                     1 
##                                                       vermont cheddar mashed potatoes 
##                                                                                    79 
##                                                           vermouth braised short ribs 
##                                                                                    65 
##                                                                       vermouth royale 
##                                                                                     5 
##                                                                       vermouth spritz 
##                                                                                    15 
##                                                   vertamae smart grosvenors onion pie 
##                                                                                    61 
##                                                            via carotas insalata verde 
##                                                                                   242 
##                                                                         vichy carrots 
##                                                                                    27 
##                                                                           vichyssoise 
##                                                                                    34 
##                                                                  victoria sponge cake 
##                                                                                    94 
##                                                                   victorian gin punch 
##                                                                                     3 
##                                                          vietnamese braised pork ribs 
##                                                                                    92 
##                                                             vietnamese coffee sundaes 
##                                                                                     7 
##                      vietnamese grilled duck salad with cucumber radishes and peanuts 
##                                                                                    12 
##                                                                vietnamese iced coffee 
##                                                                                    12 
##                                                                       vietnamese lamb 
##                                                                                    25 
##                                           vietnamese lemongrass beef and noodle salad 
##                                                                                    72 
##                                                                 vietnamese pork salad 
##                                                                                     2 
##                                        vietnamese rice noodles with lemongrass shrimp 
##                                                                                    27 
##                                   vietnamese style chicken with fragrant rice noodles 
##                                                                                    11 
##                                                  vietnamese style crispy shrimp cakes 
##                                                                                    19 
##                                                 vietnamese style portobello mushrooms 
##                                                                                     5 
##                                          vietnamese style rice noodle and steak salad 
##                                                                                     5 
##                                        vietnamese style soup with broccoli and quinoa 
##                                                                                     5 
##                                                                           vieux carre 
##                                                                                     3 
##                                                                             vignarola 
##                                                                                     1 
##                                                                           vin dorange 
##                                                                                     8 
##                                                       vina slatallas beef barley soup 
##                                                                                     1 
##                                          vinegar chicken with crisp roasted mushrooms 
##                                                                                    49 
##                                           vinegar chicken with crushed olive dressing 
##                                                                                   879 
##                                                            violet bakery rye brownies 
##                                                                                    79 
##                                                                    vodka cosmopolitan 
##                                                                                     4 
##                                                                          vodka gimlet 
##                                                                                     1 
##                                                                            vodka soda 
##                                                                                     4 
##                                                                               waffles 
##                                                                                   259 
##                                                             walnut apricot bundt cake 
##                                                                                    16 
##                                                                          walnut bread 
##                                                                                    38 
##                                                                           walnut cake 
##                                                                                    62 
##                                                  walnut cinnamon and halloumi baklava 
##                                                                                    18 
##                                                           walnut fougasse or focaccia 
##                                                                                     7 
##                                                   walnut pie with molasses and orange 
##                                                                                     8 
##                                                                           walnut tart 
##                                                                                     8 
##                        warm brussels sprout salad with smoked feta and candied pecans 
##                                                                                     6 
##                                                          warm cabbage and green beans 
##                                                                                     4 
##                                                  warm calamari with winter vegetables 
##                                                                                     1 
##                                                      warm chickpea and broccoli salad 
##                                                                                    31 
##                                         warm chickpea and green bean salad with aioli 
##                                                                                     7 
##                                            warm chickpeas and greens with vinaigrette 
##                                                                                     2 
##                                                            warm corn salad with bacon 
##                                                                                     3 
##                                                          warm corn salad with saffron 
##                                                                                     4 
##                                                       warm deconstructed caesar salad 
##                                                                                     5 
##                                                    warm fig and chocolate sponge cake 
##                                                                                    58 
##                                                                           warm hummus 
##                                                                                     1 
##                                                    warm kale coconut and tomato salad 
##                                                                                    63 
##                                               warm lentil and smoked pork belly salad 
##                                                                                     9 
##                                          warm lentil salad with balsamic roast squash 
##                                                                                    28 
##                                                    warm lentil salad with goat cheese 
##                                                                                    28 
##                         warm millet carrot and kale salad with curry scented dressing 
##                                                                                     1 
##                                                                  warm pickled peppers 
##                                                                                     1 
##                                                      warm rice salad with smoked duck 
##                                                                                     1 
##                                                  warm roasted carrot and barley salad 
##                                                                                    27 
##                                                          warm sweet potato apple pone 
##                                                                                    16 
## warm tofu and fresh soybeans cooked in salted french butter and celery seed gastrique 
##                                                                                    12 
##                                                                               wassail 
##                                                                                     4 
##                                  watercress and endive salad with pears and roquefort 
##                                                                                     1 
##                                                                   watercress barlotto 
##                                                                                     3 
##                                                  watercress pear and gorgonzola salad 
##                                                                                    11 
##                                         watercress pistachio and orange blossom salad 
##                                                                                     8 
##                                          watercress salad with raw beets and radishes 
##                                                                                     7 
##                                                       watermelon and pancetta risotto 
##                                                                                     2 
##                                                           watermelon and tomato salsa 
##                                                                                     1 
##                                                        watermelon burgers with cheese 
##                                                                                     1 
##                                                                      watermelon chaat 
##                                                                                    19 
##                                                watermelon cocktail with gin and basil 
##                                                                                    11 
##                                                                     watermelon cooler 
##                                                                                     3 
##                                                             watermelon cucumber punch 
##                                                                                     6 
##                                                                   watermelon daiquiri 
##                                                                                     3 
##                                                                   watermelon gazpacho 
##                                                                                     8 
##                                                                    watermelon granita 
##                                                                                    19 
##                                                  watermelon juice with basil and lime 
##                                                                                     5 
##                                                                   watermelon lemonade 
##                                                                                     7 
##                                                                  watermelon margarita 
##                                                                                    13 
##                                                              watermelon mint smoothie 
##                                                                                    35 
##                                                  watermelon or cantaloupe agua fresca 
##                                                                                    16 
##                                                                  watermelon popsicles 
##                                                                                    31 
##                                                                      watermelon punch 
##                                                                                     3 
##                                                          watermelon punch with a kick 
##                                                                                     1 
##                                                                watermelon rose trifle 
##                                                                                    54 
##                                                        watermelon salad with pancetta 
##                                                                                     2 
##                                                                     watermelon sorbet 
##                                                                                    31 
##                                                          watermelon sorbet or granita 
##                                                                                     6 
##                                                                      watermelon sugar 
##                                                                                     4 
##                                                                           wedge salad 
##                                                                                    50 
##                                                            weeknight chicken marbella 
##                                                                                   156 
##                                                      weeknight fancy chicken and rice 
##                                                                                   272 
##                                            weeknight lemon chicken breasts with herbs 
##                                                                                   218 
##                                                                         wenzhou punch 
##                                                                                     2 
##                                                 west african peanut soup with chicken 
##                                                                                    64 
##                                                                west cave cellar punch 
##                                                                                     2 
##                                                                west indian lamb curry 
##                                                                                    91 
##                                                                     wet black walnuts 
##                                                                                     4 
##                                                                whatever you want soup 
##                                                                                    62 
##                                                         whatever youve got fried rice 
##                                                                                   113 
##                                     wheat berries with sesame soy sauce and scallions 
##                                                                                     3 
##                                           wheat berries with spinach and spring onion 
##                                                                                     3 
##                                        wheat berries with winter squash and chickpeas 
##                                                                                     6 
##                                                          wheat berry and tomato salad 
##                                                                                    11 
##                                                                 wheat berry tabbouleh 
##                                                                                     1 
##                               wheatberry salad with dried cranberries and goat cheese 
##                                                                                     6 
##                                                                         whelk chowder 
##                                                                                     1 
##                                                 whelks with parsley and garlic butter 
##                                                                                     1 
##                                                                        whipped coffee 
##                                                                                    50 
##                                                                         whipped cream 
##                                                                                    16 
##                                      whipped cream scones with chocolate and cherries 
##                                                                                    26 
##                                                          whiskey orange bread pudding 
##                                                                                     8 
##                                              whiskey soaked dark chocolate bundt cake 
##                                                                                   159 
##                                                                        whist cocktail 
##                                                                                     2 
##                                               white asparagus with cashew cream sauce 
##                                                                                     4 
##                                                                  white barbecue sauce 
##                                                                                     6 
##                           white bean and asparagus salad with tarragon lemon dressing 
##                                                                                    50 
##                                          white bean and avocado salad with garlic oil 
##                                                                                   133 
##                                              white bean and caramelized onion calzone 
##                                                                                     4 
##                                                             white bean and fennel dip 
##                                                                                     9 
##                                     white bean and roasted potato salad with rosemary 
##                                                                                    28 
##                                                   white bean and yogurt green goddess 
##                                                                                     1 
##                                                                    white bean burgers 
##                                                                                    66 
##                                                              white bean caprese salad 
##                                                                                    81 
##                                           white bean hummus with tahini and coriander 
##                                                                                    79 
##                                                                       white bean pate 
##                                                                                    16 
##                                                white bean piccata pasta with broccoli 
##                                                                                    50 
##                                          white bean stew with carrots fennel and peas 
##                                                                                    37 
##                                            white bean summer squash and tomato ragout 
##                                                                                    11 
##                                                                           white beans 
##                                                                                     9 
##                                                                    white beans au vin 
##                                                                                   175 
##                                                               white beans with celery 
##                                                                                    36 
##                                                              white beans with chicory 
##                                                                                     1 
##                                             white beans with radishes miso and greens 
##                                                                                    82 
##                                                                         white borscht 
##                                                                                   207 
##                                                                  white chicken potpie 
##                                                                                    56 
##                                                        white chocolate spice cupcakes 
##                                                                                     7 
##                                                                white house apple cake 
##                                                                                     8 
##                                                        white house fruit and oat bars 
##                                                                                    10 
##                                                                           white linen 
##                                                                                    11 
##                                     white or pink beans with beet greens and parmesan 
##                                                                                     7 
##                                                                     white peach puree 
##                                                                                     2 
##                                                                 white peach sgroppino 
##                                                                                     1 
##                                            white peaches pistachios honey and ricotta 
##                                                                                     8 
##                                                                  white port and tonic 
##                                                                                     2 
##                                                                         white russian 
##                                                                                     4 
##                                                         white sangria and red sangria 
##                                                                                     5 
##                                                    white tepary bean and potato puree 
##                                                                                     2 
##                                                white wine braised rabbit with mustard 
##                                                                                    41 
##                                                                     white wine mojito 
##                                                                                     3 
##                                                                  whole duck cassoulet 
##                                                                                    12 
##                                                      whole fish with lime salsa verde 
##                                                                                     8 
##                                                        whole fish with soy and citrus 
##                                                                                    53 
##                                                    whole grain artisan free form loaf 
##                                                                                     6 
##                                                     whole grain banana yogurt muffins 
##                                                                                   191 
##                                                          whole grain blueberry buckle 
##                                                                                    17 
##                                    whole grain blueberry muffins with orange streusel 
##                                                                                   109 
##                                                                   whole grain granola 
##                                                                                    29 
##                                                       whole grain macaroni and cheese 
##                                                                                    42 
##                                                                  whole grain pancakes 
##                                                                                   145 
##                                  whole grain pasta with mushrooms asparagus and favas 
##                                                                                     6 
##                                                                      whole lemon tart 
##                                                                                    91 
##                                                               whole orange snack cake 
##                                                                                    58 
##                             whole pot roasted cauliflower with tomatoes and anchovies 
##                                                                                   116 
##                                                     whole rainbow trout baked in foil 
##                                                                                    23 
##                                                              whole roast suckling pig 
##                                                                                    29 
##                                                          whole roasted breast of veal 
##                                                                                     9 
##                                      whole roasted cauliflower with almond herb sauce 
##                                                                                   235 
##                                        whole roasted cauliflower with pistachio pesto 
##                                                                                   105 
##                                                whole roasted cauliflower with romesco 
##                                                                                    59 
##                                                whole roasted fish with wild mushrooms 
##                                                                                     8 
##                                                     whole roasted new york strip loin 
##                                                                                    25 
##                   whole roasted rabbit with guanciale wilted greens and pan drippings 
##                                                                                     9 
##                                              whole roasted squid with tomatillo salsa 
##                                                                                     7 
##                                                 whole roasted stuffed delicata squash 
##                                                                                    43 
##                                                           whole wheat almond biscotti 
##                                                                                    24 
##                                                    whole wheat and walnut breadsticks 
##                                                                                     1 
##                                                        whole wheat apple pecan scones 
##                                                                                    29 
##                                        whole wheat bread apple and cranberry dressing 
##                                                                                     2 
##                                                               whole wheat breadsticks 
##                                                                                     1 
##                                                   whole wheat breadsticks with sesame 
##                                                                                     2 
##                                whole wheat buttermilk scones with raisins and oatmeal 
##                                                                                    57 
##                                          whole wheat crumpets with mock clotted cream 
##                                                                                     5 
##                                                                whole wheat date bread 
##                                                                                    18 
##                                                           whole wheat english muffins 
##                                                                                    95 
##                                       whole wheat fettuccine with spicy broccoli rabe 
##                                                                                    16 
##                                                                  whole wheat focaccia 
##                                                                                    14 
##                                  whole wheat focaccia with cherry tomatoes and olives 
##                                                                                     1 
##                                        whole wheat focaccia with peppers and eggplant 
##                                                                                     3 
##                                        whole wheat focaccia with tomatoes and fontina 
##                                                                                     5 
##                                                             whole wheat ginger scones 
##                                                                                    18 
##                                              whole wheat irish soda bread with bulgur 
##                                                                                    21 
##                                                   whole wheat mediterranean pie crust 
##                                                                                    17 
##                                                                   whole wheat muffins 
##                                                                                    72 
##                                               whole wheat pappardelle with fava puree 
##                                                                                     5 
##                                                                 whole wheat pie dough 
##                                                                                    12 
##                                                              whole wheat quinoa bread 
##                                                                                    53 
##                                                             whole wheat seeded loaves 
##                                                                                    20 
##                                                        whole wheat sesame rings simit 
##                                                                                     2 
##                                       whole wheat soda bread with raisins spotted dog 
##                                                                                    22 
##                                   whole wheat spaghetti with green garlic and chicory 
##                                                                                     1 
##                 whole wheat spaghetti with spicy chickpeas rosemary and bonito flakes 
##                                                                                     4 
##                                                  whole wheat yeasted olive oil pastry 
##                                                                                    32 
##                                                                          whoopie pies 
##                                                                                    25 
##                                                                           widows kiss 
##                                                                                     1 
##                          wild arugula and beet salad with orange walnuts and tarragon 
##                                                                                    10 
##                             wild arugula celery and apple salad with anchovy dressing 
##                                                                                     6 
##                                                                        wild boar ragu 
##                                                                                    21 
##                                            wild king salmon with savory whipped cream 
##                                                                                    45 
##                                                   wild mushroom and butter bean pasta 
##                                                                                    29 
##                                                       wild mushroom and potato gratin 
##                                                                                    19 
##                                                                    wild mushroom soup 
##                                                                                     4 
##                                                                   wild mushroom stock 
##                                                                                     2 
##                                                                    wild mushroom tart 
##                                                                                    61 
##                                                   wild mushrooms and brussels sprouts 
##                                                                                    30 
##                                                wild rice almond and mushroom stuffing 
##                                                                                    18 
##                                wild rice and arborio risotto with corn and red pepper 
##                                                                                     2 
##                                                wild rice and berries with popped rice 
##                                                                                    13 
##                                                      wild rice and mushroom casserole 
##                                                                                   234 
##                                                           wild rice and mushroom soup 
##                                                                                     8 
##                                               wild rice and quinoa breakfast stuffing 
##                                                                                     1 
##                                                         wild rice and quinoa stuffing 
##                                                                                    20 
##                             wild rice and roasted squash salad with cider vinaigrette 
##                                                                                    25 
##                                     wild rice dressing with mushrooms and chile crisp 
##                                                                                    11 
##                                               wild rice salad with celery and walnuts 
##                                                                                    18 
##                                 wild rice stuffing with apples pecans and cranberries 
##                                                                                    22 
##                                                              wild rice with mushrooms 
##                                                                                    56 
##                                     wild salmon with chive oil and lime creme fraiche 
##                                                                                    37 
##                                                wild salmon with fennel and pistachios 
##                                                                                    24 
##                                                          wild salmon with green sauce 
##                                                                                    46 
##                                                         will horowitzs watermelon ham 
##                                                                                     2 
##                                                                   wine and herb jelly 
##                                                                                     1 
##                                                 wine braised calamari with vegetables 
##                                                                                    25 
##                                            wine braised chicken with artichoke hearts 
##                                                                                   232 
##                                  wine braised duck with lentils and winter vegetables 
##                                                                                    15 
##                                                                   wine braised oxtail 
##                                                                                    43 
##                                                                        winter borscht 
##                                                                                     4 
##                                                 winter citrus and red chicories salad 
##                                                                                     8 
##                                               winter citrus salad with belgian endive 
##                                                                                    13 
##                                               winter citrus salad with honey dressing 
##                                                                                    29 
##                                                    winter squash and molasses muffins 
##                                                                                    16 
##                                                       winter squash and potato gratin 
##                                                                                    11 
##                                                          winter squash and sage blini 
##                                                                                     6 
##                                                       winter squash and walnut spread 
##                                                                                     3 
##                                                 winter squash and wild mushroom curry 
##                                                                                   303 
##                                                 winter squash casserole with rosemary 
##                                                                                    70 
##                                                                  winter squash gratin 
##                                                                                     7 
##                                winter squash leek and farro gratin with feta and mint 
##                                                                                    14 
##                                                winter squash onion and pine nut pizza 
##                                                                                     5 
##                                                                     winter squash pie 
##                                                                                     5 
##                                                       winter squash puree with tahini 
##                                                                                     5 
##                         winter squash with anchovies capers olives and ricotta salata 
##                                                                                     2 
##                                                              winter strawberry gelato 
##                                                                                     3 
##                                                                  winter tomato quiche 
##                                                                                    19 
##                                                        winter tomato soup with bulgur 
##                                                                                    55 
##                                                                winter vegetable curry 
##                                                                                    42 
##                         winter vegetable soup with turnips carrots potatoes and leeks 
##                                                                                   206 
##                                                      winter vegetable soupe au pistou 
##                                                                                    12 
##                                                                   with sage and beans 
##                                                                                     2 
##                                                                             with wine 
##                                                                                     1 
##                                                      wok fried asparagus with walnuts 
##                                                                                    76 
##                                                wok seared cod with mushrooms and peas 
##                                                                                    16 
##                                                                 worcestershire butter 
##                                                                                     7 
##                                                            worlds best chocolate cake 
##                                                                                   263 
##                                                                          wright flyer 
##                                                                                     4 
##                                                                                     x 
##                                                                                     3 
##                                                                              xo sauce 
##                                                                                    35 
##                       yaki onigiri grilled japanese rice balls with pickled shiitakes 
##                                                                                    15 
##                                                        yakisoba with pork and cabbage 
##                                                                                    39 
##                                     yakitori chicken with ginger garlic and soy sauce 
##                                                                                    52 
##                                     yakitori style salmon with scallions and zucchini 
##                                                                                    67 
##                                           yam and plantain curry with crispy shallots 
##                                                                                   111 
##                                          yellow beet salad with mustard seed dressing 
##                                                                                    18 
##                                             yellow sheet cake with chocolate frosting 
##                                                                                    74 
##                                      yellow tomato gazpacho with goat cheese croutons 
##                                                                                     2 
##                                                                      yerushalmi kugel 
##                                                                                    62 
##                                       yogurt and bean dressing with cilantro and lime 
##                                                                                     2 
##                                            yogurt and bean dressing with thai flavors 
##                                                                                     2 
##                                                                   yogurt and jam pops 
##                                                                                    20 
##                                              yogurt berry parfait with steel cut oats 
##                                                                                     3 
##                                                                  yogurt feta dressing 
##                                                                                     3 
##                                 yogurt marinated leg of lamb with cardamom and orange 
##                                                                                    14 
##                                         yogurt or buttermilk soup with toasted barley 
##                                                                                     2 
##                                          yogurt or buttermilk soup with wheat berries 
##                                                                                     1 
##                                          yogurt parfaits with cherries and pistachios 
##                                                                                     5 
##                                                      yogurt raita with chile and mint 
##                                                                                     1 
##                                       yogurt soup with spelt cucumbers and watercress 
##                                                                                     3 
##                              yogurt with mixed seeds toasted oatmeal and ginger syrup 
##                                                                                     1 
##                                                                     yorkshire pudding 
##                                                                                   130 
##                                          yotam ottolenghis baba ghanouj deconstructed 
##                                                                                    22 
##                           yotam ottolenghis chermoula eggplant with bulgur and yogurt 
##                                                                                    73 
##                                             yotam ottolenghis jerusalem lamb shawarma 
##                                                                                    60 
##                                            yotam ottolenghis pasta and zucchini salad 
##                                                                                   111 
##                                        yotam ottolenghis tomato and pomegranate salad 
##                                                                                    78 
##                                                                         yuca con mojo 
##                                                                                     7 
##                                                                          yucatan fish 
##                                                                                     8 
##                                                                        yucatan shrimp 
##                                                                                   163 
##                                                                     yuzu chiffon cake 
##                                                                                     3 
##                                yvonne maffeis dates with cream and chopped pistachios 
##                                                                                    17 
##                 yvonne maffeis roast chicken with couscous dates and buttered almonds 
##                                                                                   110 
##                                                                                zaatar 
##                                                                                    11 
##                                                                zaatar spiced zucchini 
##                                                                                    18 
##                                                                  zahavs hummus tehina 
##                                                                                   254 
##                                                                                  zhug 
##                                                                                    63 
##                                         zibdiyit gambari spicy shrimp and tomato stew 
##                                                                                    62 
##                                                          zucchini and apricot muffins 
##                                                                                    18 
##                                     zucchini and carrot fritters with yogurt mint dip 
##                                                                                    54 
##                                 zucchini and cherry tomatoes with red pepper dressing 
##                                                                                    15 
##                                                zucchini and egg tart with fresh herbs 
##                                                                                    63 
##                                                  zucchini and squash blossom souffles 
##                                                                                     4 
##                                     zucchini and tomato tartlets with a cheddar crust 
##                                                                                    35 
##                                           zucchini blossoms with burrata and tapenade 
##                                                                                     4 
##                                                                        zucchini cakes 
##                                                                                    24 
##                                                                    zucchini carpaccio 
##                                                                                    14 
##                                                                       zucchini confit 
##                                                                                     9 
##                                               zucchini crostini with ricotta and mint 
##                                                                                    11 
##                                                                         zucchini flan 
##                                                                                    68 
##                                                                        zucchini frico 
##                                                                                    13 
##                                                                     zucchini frittata 
##                                                                                     1 
##                                         zucchini muffins with cinnamon crunch topping 
##                                                                                    32 
##                                                                     zucchini pancakes 
##                                                                                   292 
##                                                                     zucchini parmesan 
##                                                                                   237 
##                                                                        zucchini pasta 
##                                                                                    79 
##                         zucchini pasta with sungold tomatoes corn and sunflower seeds 
##                                                                                     2 
##                                                           zucchini pilaf with almonds 
##                                                                                     1 
##                                        zucchini salad with pecorino basil and almonds 
##                                                                                    52 
##                                                                      zucchini souffle 
##                                                                                    21 
##                                               zucchini tian with curried bread crumbs 
##                                                                                    29 
##                                                zucchini watercress and squid stir fry 
##                                                                                     1 
##                                           zucchini with fresh tomatoes and mozzarella 
##                                                                                    12 
##                                                    zucchini with ricotta basil mousse 
##                                                                                    14 
##                                                                     zuni cafe chicken 
##                                                                                    88 
##                                                                   zuni cafes focaccia 
##                                                                                    15 
##                                                                  zuni cafes hamburger 
##                                                                                     8 
##                                                          zuni cafes red onion pickles 
##                                                                                    37 
##                                                          zuni cafes small batch aioli 
##                                                                                    19 
##                                                           zuni cafes zucchini pickles 
##                                                                                    14 
##                                                                     zuppa arcidossana 
##                                                                                     4

. . . and we can clean this table up a little bit by converting it into a dataframe

data.frame(table(nyt$recipe_name))

Next, we can get descriptive statistics for individual numeric variables.

mean(nyt$replyCount)
## [1] 0.1932876
sd(nyt$replyCount)
## [1] 0.9504739

We can also use visualizations to understand our variables of interest.

hist(nyt$replyCount)

plot(nyt$replyCount)

Checking our data for quality assurance could clearly become a lengthy process depending on the number of variables you’re looking at! Here are a few commands to make data exploration more concise:

NOTE: The datasummary_skim function output may appear empty in Markdown, but text is just white and can be seen if highlighted.

#skim the entire dataframe using the skimr package
skim(nyt)
Data summary
Name nyt
Number of rows 389963
Number of columns 29
Key NULL
_______________________
Column type frequency:
character 10
logical 5
numeric 14
________________________
Group variables None

Variable type: character

skim_variable n_missing complete_rate min max empty n_unique whitespace
status 0 1.00 8 8 0 1 0
userDisplayName 25 1.00 1 254 0 75693 0
userLocation 241963 0.38 2 25 0 214 0
userTitle 389954 0.00 6 46 0 7 0
picURL 383228 0.02 140 142 0 1734 0
commentTitle 0 1.00 7 7 0 1 0
commentBody 0 1.00 1 1566 0 387952 0
replies 0 1.00 2 3514 0 43390 0
commentType 0 1.00 7 13 0 2 0
recipe_name 0 1.00 1 85 0 8451 0

Variable type: logical

skim_variable n_missing complete_rate mean count
userURL 389963 0 NaN :
editorsSelection 0 1 0 FAL: 389962, TRU: 1
parentID 389963 0 NaN :
parentUserDisplayName 389963 0 NaN :
isAnonymous 0 1 0 FAL: 389956, TRU: 7

Variable type: numeric

skim_variable n_missing complete_rate mean sd p0 p25 p50 p75 p100 hist
V1 0 1 9.857000e+01 152.56 0 15 46 116 1705 ▇▁▁▁▁
commentID 0 1 7.341614e+07 41466234.79 13918475 25791077 103490997 109167340 113390475 ▆▁▁▁▇
commentSequence 0 1 7.341614e+07 41466234.79 13918475 25791077 103490997 109167340 113390475 ▆▁▁▁▇
userID 0 1 6.157924e+07 27249884.48 0 48022158 65716760 77622272 168185963 ▃▇▇▁▁
createDate 0 1 1.563805e+09 39753352.22 1506535652 1517507827 1572921711 1600379839 1624644283 ▇▃▃▆▆
updateDate 0 1 1.583112e+09 29467403.04 1534873477 1553461799 1590170384 1609358704 1624647142 ▆▂▃▆▇
approveDate 0 1 1.556066e+09 52665810.20 1422032767 1517503355 1572952389 1600383580 1624644311 ▂▂▃▅▇
recommendations 0 1 5.040000e+00 30.33 0 0 0 1 3515 ▇▁▁▁▁
replyCount 0 1 1.900000e-01 0.95 0 0 0 0 114 ▇▁▁▁▁
depth 0 1 1.000000e+00 0.00 1 1 1 1 1 ▁▁▇▁▁
trusted 0 1 0.000000e+00 0.00 0 0 0 0 0 ▁▁▇▁▁
recommendedFlag 0 1 0.000000e+00 0.00 0 0 0 0 0 ▁▁▇▁▁
permID 0 1 7.341614e+07 41466234.79 13918475 25791077 103490997 109167340 113390475 ▆▁▁▁▇
recipe_id 0 1 9.641468e+05 227262.72 852 1016103 1018730 1020415 1022354 ▁▁▁▁▇
datasummary_skim(nyt,) #this makes a nice table for R-markdown
## Warning in breaks[-1L] + breaks[-nB]: NAs produced by integer overflow

## Warning in breaks[-1L] + breaks[-nB]: NAs produced by integer overflow

## Warning in breaks[-1L] + breaks[-nB]: NAs produced by integer overflow
Unique (#) Missing (%) Mean SD Min Median Max
V1 1706 0 98.6 152.6 0.0 46.0 1705.0
commentID 389738 0 73416138.1 41466234.8 13918475.0 103490997.0 113390475.0
commentSequence 389738 0 73416138.1 41466234.8 13918475.0 103490997.0 113390475.0
userID 154253 0 61579242.6 27249884.5 0.0 65716760.0 168185963.0
createDate 346960 0 1563804724.6 39753352.2 1506535652.0 1572921711.0 1624644283.0
updateDate 193817 0 1583112469.5 29467403.0 1534873477.0 1590170384.0 1624647142.0
approveDate 122759 0 1556065791.6 52665810.2 1422032767.0 1572952389.0 1624644311.0
recommendations 642 0 5.0 30.3 0.0 0.0 3515.0
replyCount 55 0 0.2 1.0 0.0 0.0 114.0
depth 1 0 1.0 0.0 1.0 1.0 1.0
trusted 1 0 0.0 0.0 0.0 0.0 0.0
recommendedFlag 1 0 0.0 0.0 0.0 0.0 0.0
permID 389738 0 73416138.1 41466234.8 13918475.0 103490997.0 113390475.0
recipe_id 8436 0 964146.8 227262.7 852.0 1018730.0 1022354.0

1.6 Troubleshooting

From here on out, if you have any questions on how a specific function works or is formatted, the R Studio help window will help you out. To search a function, simply write a question mark (?) followed by the function in your console.

#?[FUNCTION] #use this to learn more about how a function works in the "help" panel to the right
?hist()
## starting httpd help server ... done

1.7 Check your work

I will also be using the head() function from the utils package to periodically check work at each step in the process.

head(nyt, n = 10) #specify number of rows desired using "n =" (default is 6 rows)

1.8 Renaming columns

It’s clear that the raw data we downloaded is pretty messy, and is going to require some wrangling on our end. First off, some of our columns are not named very descriptively nor consistently. There are generally two naming conventions used in R (and data science more generally): “columnName” or “column_name”. We have a few columns that are each named using different conventions, which adds to the messiness. We’re going to give our columns more consistent and descriptive names using the rename() function from the dplyr package.

names(nyt)
##  [1] "V1"                    "commentID"             "status"               
##  [4] "commentSequence"       "userID"                "userDisplayName"      
##  [7] "userLocation"          "userTitle"             "userURL"              
## [10] "picURL"                "commentTitle"          "commentBody"          
## [13] "createDate"            "updateDate"            "approveDate"          
## [16] "recommendations"       "replyCount"            "replies"              
## [19] "editorsSelection"      "parentID"              "parentUserDisplayName"
## [22] "depth"                 "commentType"           "trusted"              
## [25] "recommendedFlag"       "permID"                "isAnonymous"          
## [28] "recipe_id"             "recipe_name"
# Rename individual columns using consistent naming conventions with rest of df
nyt <- dplyr::rename(nyt, 
                     c('recipeName' = 'recipe_name',
                       'recipeID' = 'recipe_id'))

# Or rename columns in a batch!
nyt <- rename_with(nyt, ~ (gsub("user", 
                                "author", 
                                .x, 
                                fixed = TRUE)))

#check work
head(nyt, n = 10)

1.9 Selecting columns and filtering rows

It looks like there are a lot of extra columns we aren’t interested in in this data. We can access the column names directly using the names function (above), and then use dplyr’s select() function to choose the columns we would like to keep. I usually specify that I want to use dplyr’s select() function instead of any select function from another package (for example, there’s also one in the psych package that sometimes conflicts with dplyr) by writing the package name and 2 colons before the function (dplyr::select()).

We can also clean data up to use only rows that we are interested in using filter() or subset() functions. I’m first going to select all rows with “approved” comments by using the filter() function. It’s worth noting that one can filter for rows containing values in a column that are equal to (==) or unequal to (!=) a specific reference value. You can do the same for numeric variables (as we’ll see later on in the “arrange and sort” section), or could also select reference values that are greater than (>)/greater than or equal to (>=), or less than (<)/less than or equal to (<=) a specific reference value.

#select by row: this will allow us to keep only comments that have been "approved"
nyt <- filter(nyt, status == "approved") #find status = approved
nrow(nyt) #looks like we didn't lose any rows, so they all were "approved"!
## [1] 389963
#select by column: this will allow us to choose only columns we'll need for the rest of our analyses
names(nyt)
##  [1] "V1"                    "commentID"             "status"               
##  [4] "commentSequence"       "authorID"              "authorDisplayName"    
##  [7] "authorLocation"        "authorTitle"           "authorURL"            
## [10] "picURL"                "commentTitle"          "commentBody"          
## [13] "createDate"            "updateDate"            "approveDate"          
## [16] "recommendations"       "replyCount"            "replies"              
## [19] "editorsSelection"      "parentID"              "parentUserDisplayName"
## [22] "depth"                 "commentType"           "trusted"              
## [25] "recommendedFlag"       "permID"                "isAnonymous"          
## [28] "recipeID"              "recipeName"
nyt <- dplyr::select(nyt, c('commentID', 'commentBody', 'createDate', 
                            'recommendations', 'recipeName', 'recipeID', 
                            'replyCount', 'authorID', 'status'))

#remove an additional column
nyt <- dplyr::select(nyt, -c('status'))

#just for instructional purposes-- select columns with with certain titles using "matches" and "starts_with"
nyt_recipes <- dplyr::select(nyt, matches('recipe') | matches('comment'))
nyt_recipes <- dplyr::select(nyt, starts_with('recipe'))
nyt_IDs <- dplyr::select(nyt, ends_with('ID'))

#you can also use "select" to rearrange columns into a desired order:
nyt <- dplyr::select(nyt, c("recipeName", "recipeID"), everything())

head(nyt, n = 10)

1.10 Using piping to make data wrangling more concise

Piping is a coding technique that’s not necessarily unique to R, but which the R community has whole-heartedly adopted and thus has kind of become strongly associated with R. Piping in R is possible through the magittr package, which itself is included in the tidyverse packages. What actually is it though?

Let’s say we had a calculation that we had to perform in multiple steps. We could do something like this:

# Setting a 'seed value' to make sure that we get the same random sample every time this script is ran
set.seed(0)
# Asking R to randomly pick 20 unique values between 1 and 1000
x <- sample(1:1000, size = 20, replace = F)
# Asking R to calculate the mean value of those 20 random numbers
y <- mean(x)
# Asking R to calculate the log of the mean value
z <- log(y)
# Asking R to round that logged mean value to a whole number.
(final <- round(z))
## [1] 6

where we very methodologically, very slowly build up to the final value of 6. However, we sort of clog our environment with values and objects we don’t actually care about. X,Y and Z are really just a means to get to final, right? A way around that might be something like this:

set.seed(0)
(final <- round(log(mean(sample(1:1000, size = 20, replace = F)))))
## [1] 6

Where we nest functions within other functions. Obviously we come to the same conclusion, but we’ve avoided creating these unnecessary fly-over values that we don’t really care about. However, it could be a little messy and hard to follow. Piping fixes that:

set.seed(0)
(final <- sample(1:1000, size = 20, replace = F) %>%
          mean() %>%
          log() %>%
          round())
## [1] 6

What we’re doing is taking the product of the first argument and entering it into the one that follows, then taking the product of that function and piping it as the input into the next one, and so one. Thus, piping! It’s simpler (we don’t need to even enter anything for the subsequent commands, but you could if you wanted to change the default values the functions use), it’s cleaner to read (partially because it’s simpler), and it’ll keep your environment clean as well.

Pipes as tools have really exploded in popularity in R. The most common means of noting a pipe is %>% but there are all sorts of deviations which have special functions (e.g., %in%). We won’t really get to those, but you should just know pipes can get as wacky and crazy as you want to.

So, though piping it’s possible to execute all of what we worked though above in one code chunk! We will first save the raw data to a new dataframe called “nyt_concise”, and execute a more concise version of the steps taken above to reach the same result we have in our current “nyt” dataframe. Keep in mind that there are multiple ways to do this– for example, you could select the columns directly or using the matches argument as I do here.

nyt_concise <- nyt_raw

nyt_concise <- nyt_concise %>% 
               filter(status == "approved") %>%
               dplyr::select(matches('recipe') | 
                            matches('commentID') | 
                            matches('commentBody') | 
                            matches('recommendations') | 
                            matches('createDate') | 
                            matches('replyCount')) %>%
               dplyr::rename(c('recipeName' = 'recipe_name',
                               'recipeID' = 'recipe_id'))

head(nyt_concise)

1.11 Arrange

Let’s say we wanted to have sort our data by date of the original comment. The comments come in unix date-time format, and we can use the as_datetime() function from the lubridate package to put the date into a readable format To arrange by date, we’ll use the arrange() function from dplyr, which arranges values in ascending order by default and can be reversed by adding the `desc() argument.

#replace UNIX timestamps with interpretable date/time
nyt$createDate <- as_datetime(nyt$createDate)

#arrange by date (in ascending order by default: earliest dates first)
nyt <- arrange(nyt, createDate)

#arrange by date in descending order: latest dates first
nyt <- arrange(nyt, desc(createDate))

#select only reviews from 2021
nyt <- filter(nyt, createDate >= '2021-01-01 00:00:00') #greater than or equal to operator
nrow(nyt) #down from 389,963 to 53,355 reviews after cutting out all before 2021
## [1] 53355
head(nyt, n = 10)

1.12 Small Group Exercise 1: Making data wrangling more concise

How would we add the arrange(), and filter() functions above into our “nyt_concise” dataframe?

#changing the creation date to timedate format must be done separately
nyt_concise$createDate <-lubridate::as_datetime(nyt_concise$createDate)

nyt_concise <- nyt_concise %>%  #ADD HERE

head(nyt_concise)

Click for solution

2 Section 2: Mutating data, merging dataframes, exporting data

2.1 Mutate and Transmute: create columns based on existing columns

To create new columns based on the content of other columns in a dataframe, we can use the mutate() function from the dplyr package. Using the transmute() function will achieve the same results as mutate() and is written the same way, but while mutate() will retain both the original and newly-created columns, transmute() keeps only the newly-created column. Here, we’ll create a new column containing the number of words in each comment called “textLength” and will keep the reference column (“commentBody”) by using mutate().

### Create New Columns ###
#create a new column based on other columns
nyt <- mutate(nyt, textLength = qdap::word_count(nyt$commentBody)) #text length column

head(nyt, n = 10)

2.2 Miscellaneous text cleaning

Since we have text data, I’m going to introduce a couple of functions for cleaning text data without getting too much into the details of Natural Language Processing (that workshop is in a few weeks, but feel free to check out this awesome online book called “Supervised Machine Learning for Text Analysis in R” by Emil Hvitfeldt & Julia Silge if you’re interested: https://smltar.com). I’ll first use the the str_trim() function from the stringr package to take out any extra characters encoded in the comment body, and will next create a dataframe called “nyt_text” containing only the comment body data. I will first tokenize the comments, next calculate sentiment scores using the “AFINN” dictionary, and lastly standardize these such that scores closer to +1 indicate stronger positive sentiment, while scores closer to -1 indicate stronger negative sentiment.

#remove unwanted characters
nyt$commentBody <- str_trim(gsub("\n\n", "", nyt$commentBody)) 
nyt$commentBody <- str_trim(gsub("\n", "", nyt$commentBody)) 

#tokenize
nyt_text <- dplyr::select(nyt, c('commentBody', 'commentID'))
nyt_text <- nyt_text %>% unnest_tokens(word, commentBody) %>% #create tokens for each word
  anti_join(stop_words) #remove stop words using SMART lexicon
## Joining, by = "word"
nyt_text <- nyt_text %>% group_by(commentID) %>% summarise(commentBody = paste0(word, collapse = ' ')) #collapse back into original reviews

#get sentiment scores for each comment
nyt_text$sentiment <- get_sentiment(nyt_text$commentBody, method = "afinn")
head(nyt_text)
#standardize sentiment scores
nyt_text$sentiment <- scale(nyt_text$sentiment, center=T, scale=T)

#rename tokenized comment body
nyt_text <- rename(nyt_text, c('commentToken' = 'commentBody'))

head(nyt_text)

2.3 Join dataframes

Lastly, we will walk through dplyr’s functions for merging two dataframes together. We’ll use left_join() so that all of the columns from our newly-cleaned nyt_text dataframe can be matched with columns in our cleaned nyt dataframe. There are several different ways this could be achieved using dplyr’s join functions: left_join() (appends all rows in df y that match those in df x to df x), right_join() (appends all rows in df x that match df y to df y), inner_join() (appends all rows that match in df x and df y), and full_join() (appends all rows in df x and df y regardless of row match). These can each be helpful depending on the data structure you’re hoping to achieve.

#left_join to merge nyt and nyt_text dataframes
nyt <- left_join(nyt, nyt_text, by=c('commentID'))

head(nyt, n = 20)

2.4 Saving your cleaned data

Especially for large datasets like this one, it can be costly for your computer’s memory (and your time!) to rerun all of the cleaning steps above. By writing the cleaned data into a new csv file, you can load in your successfully wrangled data the next time you want to use it for analyses or visualizations.

#if you don't want to rerun data cleaning steps, you can save and read in cleaned data directly
write.csv(nyt, "nyt_clean.csv") #this will save the cleaned file from above into a csv called "nyt_clean" in your working directory fodler

Congratulations, you now have the skills to wrangle any large and messy dataset you might encounter into a beautiful, usable format! It is important to note that this is not an exhaustive walkthrough of all wrangling techniques available to you both in terms of other packages or formats (e.g., Base R) nor in terms of ```dplyrv’s wrangling functionality itself, but I hope it’s been helpful for introducing a few new data wrangling techniques into your repertoire. For the end of thr workshop, I’m going to give a few exercises and practical examples to show where some of the techniques we walked through might come in handy and to encourage you to look into others.

3 Section 3: Application

3.1 Small Group Exercise 2: Review

For the second exercise, I’m going to ask you to use the functions above to answer a few specific questions about our final cleaned “nyt” dataset that might be similar to some exploratory steps you’d take on your own data.

## How many rows and columns are in the dataset?

## What classes are the "commentBody" and "textLength" columns?

## Turn textLength into a numeric variable (suggestion: use as.numeric()).

## Use the skim() function to find the mean, SD, min and max for textLength, sentiment (Hint: we standardized sentiment earlier on, so M should be 0 and SD should be 1), and replyCount.

## Remove rows containing outliers for textLength, sentiment, and replyCount (greater or less than 3SD from the mean)

## Remove any rows with missing data. (Hint: use drop_na())

## Plot histograms of the sentiment, textLength, and replyCount columns.

## Using the select() function and datasummary_correlation() function from the modelsummary package, create an intercorrelation table of all numeric variables aside from date and ID variables.

Click for solution

3.2 Small Group Exercise 3 & 4: Wrangling Data for Specific Analyses

The last exercise is going to be a bit of advanced application of what we’ve walked through so far, and which might require a bit more exploration of possible solutions online. Remember, there can be more than one way to achieve the same result, so it’s fine if your solution looks different than mine as long as the steps all make sense! If you’re interested, I encourage you to look into different ways to achieve some of these same results using the cheatsheets included in this workshop folder on Github, or search alternatives on Google or Stack Overflow. As a bonus, try to wrangle data as concisely as possible using the pipe functions!

  1. Using a t-test via the t.test() function, compare comment sentiment for 2 different recipes. First, wrangle data into a usable format, and then perform the t-test. Feel free to use the help command in R (“?FUNCTION()) or the cheatsheets for any help. I’ve included suggested steps, but feel free to do whatever makes most sense to you.
## Save nyt as new dataframe

## Call the recipeName function using the $ operator to choose recipe names

## Select needed columns

## Use subset() or filter() to select rows for 2 recipe names

## Use pivot_wider() (new function!) to transform data from long to wide format with recipe names as column names and data as sentiment

## Use t.test to compare sentiment for recipe 1 with recipe 2

Click for solution

  1. Using two simple linear regressions via the lm() function, examine a) whether replyCount is predicted by sentiment, and b) whether textLength predicts sentiment. First, wrangle data into a usable format, and then perform the regressions. Feel free to use the help command in R (“?FUNCTION()) or the cheatsheets for any help. I’ve included suggested steps, but feel free to do whatever makes most sense to you.
## Save nyt as new dataframe

## Select needed columns 

## Standardize replyCount and textLength

## Use lm() and plot(effect()) to estimate linear regression models and visualize results

Click for solution