From ad29dc4c9fa47f331ca5a4b1445b1092ee9e8ac4 Mon Sep 17 00:00:00 2001 From: Shane Jaroch Date: Mon, 24 Jun 2024 09:59:05 -0400 Subject: [PATCH] init blog post history of noots --- .../posts/2024/06/history-of-nootropics.rst | 51 +++++++++++++++++++ content/posts/Makefile | 6 +-- 2 files changed, 53 insertions(+), 4 deletions(-) create mode 100644 content/posts/2024/06/history-of-nootropics.rst diff --git a/content/posts/2024/06/history-of-nootropics.rst b/content/posts/2024/06/history-of-nootropics.rst new file mode 100644 index 0000000..2bfc9e0 --- /dev/null +++ b/content/posts/2024/06/history-of-nootropics.rst @@ -0,0 +1,51 @@ +************************************************************ + History and Overview of Nootropics +************************************************************ + +:date: 2024-06-22 +:modified: 2024-06-22 +:status: published +:tags: supplements +:category: supplements +:slug: history-of-nootropics +:authors: Shane Jaroch +:summary: Basic ideas and schools of thought to emerge in various bio-hacking camps. + + +**NOTE:** Draft, work in progress! + +Nootropics, or "brain enhancers," have a long history of use over the millennia, and many "stacks" or recommendations have emerged systematically from a body of modern evidence. + +In India, Bacopa's use (aka Brahmi) dates back nearly as far as writing. Vedic scholars of ancient India have been known to consume "Medhya Rasayana" (a mixture containing gotu kola and Bacopa) that helped them memorize lengthy scriptures 3,000 years ago. + +In China, the use of Lion's Mane started about 3000 BCE. Although Lion's Mane was prescribed for immune or gastrointestinal health, there is some evidence it was used as a neural tonic, memory aid, longevity agent, and to promote general mental health or vigor. + +By the 1st millennium BCE, the use of Lion's Mane had spread as far as the Yamabushi monks of Japan, who lived in the mountains and are widely regarded as having popularized its use in meditation (as a focus aid and to heighten awareness). + +For comparison, the first recorded instance of a tea ceremony comes 1900 years later, around the 9th century CE. Although tea is today regarded as an effective nootropic (owing to its caffeine, theanine, and catechin content), it was not always associated with mental clarity. This development highlights the divergence of modern medicine — or a theory-based approach — from Ayurveda — which depends exclusively on experience and experimentation. + + + +Monoaminergic Nootropics +######################## + +These nootropics work directly — by altering or enhancing neurotransmitter function — leading to direct effects and downstream benefits and changes. + + +Cholinergics +~~~~~~~~~~~~ + +- **Choline:** Piracetam, choline, ALCAR; Nicotine +- **Dopamine:** Selegiline, Amphetamine +- **Glutamate:** Ginkgo, NAC, Ketamine (low dose) + + + +Neurotrophic Nootropics +####################### + +These nootropics work by improving neurotrophin synthesis and cell survival and function. + +- **NGF:** Lion's mane +- **BDNF:** Many, including turmeric, astragalus, gotu kola, fish oil, antidepressants, exercise, CBD/THC +- **GDNF:** Naringin; Selegiline diff --git a/content/posts/Makefile b/content/posts/Makefile index 3e99836..cf838cf 100644 --- a/content/posts/Makefile +++ b/content/posts/Makefile @@ -6,9 +6,7 @@ .PHONY: list list: @echo "Listing out existing tags..." - grep -rh --exclude=Makefile ":tags:" | awk -F":tags:" '{print $$2}' \ - | xargs | tr -s ', ' '\n' | sort | uniq + grep -rh --exclude=Makefile ":tags:" | awk -F":tags:" '{print $$2}' | xargs | tr -s ', ' '\n' | sort | uniq -c @echo @echo "Listing out existing categories..." - grep -rh --exclude=Makefile ":category:" | awk -F":category:" '{print $$2}' \ - | xargs | tr -s ', ' '\n' | sort | uniq + grep -rh --exclude=Makefile ":category:" | awk -F":category:" '{print $$2}' | xargs | tr -s ', ' '\n' | sort | uniq -c