website/frontend/src/Interviews/Episodes/SigmaNutritionRadio.elm
2024-11-27 15:11:21 -06:00

32 lines
1.2 KiB
Elm
Executable file

module Interviews.Episodes.SigmaNutritionRadio exposing (..)
import Interviews.Types exposing (..)
sigmaNutritionRadio : Interview
sigmaNutritionRadio =
let
name : String
name =
"Sigma Nutrition Radio"
in
{ interviewName = name
, interviewImage = formatInterviewName name
, interviewSocial = "https://x.com/NutritionDanny"
, interviewAppearances =
[ { appearanceTitle = "Micronutrients, Anti-nutrients, and Non-essential Nutrients"
, appearanceEpisode = "360"
, appearanceLink = "https://sigmanutrition.com/episode360/"
, appearanceExperience = 1
, appearanceSubjects =
[ { subject = "How best to measure nutrient density." }
, { subject = "The downsides of maximizing nutrient density." }
, { subject = "Anti-nutrients: how relevant are they?" }
, { subject = "Understanding the effect of phytate, oxalate, etc." }
, { subject = "Hard to get nutrients in typical diets." }
, { subject = "Synergistic and moderating effects of nutrients." }
, { subject = "Non-essential nutrients & importance for health." }
]
}
]
}