Changes to breckyunits.com

Breck Yunits
Breck Yunits
11 hours ago
updated .scroll.css
.scroll.css
Changed around line 1
+ :root {
+ /* Derived Colors */
+ --scrollColorPrimary: rgba(var(--scrollPrimaryRgb), 0.8);
+ --scrollColorPrimaryHover: rgba(var(--scrollPrimaryRgb), 0.9);
+ --scrollColorPrimaryActive: rgb(var(--scrollPrimaryRgb));
+
+ --scrollColorSurface: rgba(var(--scrollSurfaceRgb), 0.4);
+ --scrollColorSurfaceAlt: rgba(var(--scrollSurfaceRgb), 0.6);
+ --scrollColorBorder: rgba(var(--scrollSurfaceRgb), 0.8);
+ }
+
+ html,
+ body,
+ div,
+ span,
+ p,
+ ol,
+ ul,
+ li,
+ table,
+ figure {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ vertical-align: baseline;
+ border-spacing: 0;
+ }
+
+ html {
+ background-color: var(--scrollColorBackground);
+ font-family: var(--scrollFontPrimary);
+ color: var(--scrollColorText);
+ font-size: var(--scrollBaseFontSize);
+ hyphens: auto;
+ height: 100%;
+ }
+
+ .dropcap:first-letter {
+ font-size: 3rem;
+ line-height: 0.9em;
+ margin-right: 0.125rem;
+ display: block;
+ float: left;
+ }
+
+ .abstractDinkusParser {
+ text-align: center;
+ padding: 1rem;
+ }
+
+ .abstractDinkusParser span {
+ vertical-align: sub;
+ }
+
+ details {
+ margin-top: 10px;
+ }
+
+ summary {
+ font-family: var(--scrollFontUi);
+ cursor: pointer;
+ }
+
+ .scrollCaptionedFigure {
+ display: block;
+ break-inside: avoid;
+ max-width: 100%;
+ text-align: center;
+ }
+
+ .scrollCaptionedFigure img {
+ max-width: 100%;
+ height: auto;
+ margin-top: 0.1875rem;
+ }
+
+ .scrollCaptionedFigure figcaption {
+ font-family: var(--scrollFontUi);
+ font-size: 0.8rem;
+ }
+
+ .scrollCaptionedFigure figcaption .scrollParagraph {
+ margin-top: 0;
+ }
+
+ .scrollCodeBlock {
+ overflow: auto;
+ font-size: 0.8rem;
+ hyphens: none;
+ white-space: pre;
+ break-inside: avoid;
+ display: block;
+ margin: 0.5rem 0;
+ padding: 0.5rem;
+ border-radius: 0;
+ position: relative;
+ border-left: 0.5rem solid var(--scrollColorBorder);
+ }
+
+ .codeWithHeader {
+ break-inside: avoid-column;
+ margin: 10px 0;
+ }
+
+ .codeHeader {
+ font-size: 80%;
+ text-align: center;
+ background: var(--scrollColorSurfaceAlt);
+ border: 1px solid var(--scrollColorBorder);
+ border-bottom: 0;
+ margin-bottom: -7px;
+ padding: 4px 2px;
+ border-top-left-radius: 3px;
+ border-top-right-radius: 3px;
+ }
+
+ .scrollCodeBlock:hover .scrollCopyButton {
+ opacity: 0.5;
+ }
+
+ .scrollCodeBlock:hover .scrollCopyButton:hover {
+ opacity: 0.8;
+ }
+
+ .scrollCodeBlock:hover .scrollCopyButton:active {
+ opacity: 1;
+ }
+
+ .scrollCopyButton {
+ position: absolute;
+ top: 0.125rem;
+ right: 0.125rem;
+ font-size: 0.875rem;
+ cursor: pointer;
+ opacity: 0;
+ }
+
+ .scrollCopyButton::after {
+ content: "[ ]";
+ }
+
+ .scrollCopiedButton::after {
+ content: "[✓]";
+ }
+
+ ol,
+ ul {
+ padding-left: 1rem;
+ }
+
+ li {
+ margin-top: 0.4rem;
+ line-height: 1.4;
+ }
+
+ a {
+ text-decoration-color: transparent;
+ color: var(--scrollColorLink);
+ }
+
+ a:hover {
+ text-decoration-color: initial;
+ }
+
+ .scrollButton {
+ background: linear-gradient(
+ 180deg,
+ var(--scrollColorPrimary) 0%,
+ color-mix(in srgb, var(--scrollColorPrimary), black 15%) 100%
+ );
+ border-radius: 6px;
+ color: white;
+ padding: 10px 20px;
+ display: inline-block;
+ border: 0;
+ cursor: pointer;
+ transition: all 0.2s ease;
+ transform: translateY(0);
+ /* Halved shadow distances */
+ box-shadow:
+ 0 1px 2px rgba(0, 0, 0, 0.1),
+ /* Ambient shadow (halved) */ 0 1px 0 rgba(255, 255, 255, 0.2) inset,
+ /* Top highlight */ 0 -1px 0 rgba(0, 0, 0, 0.2) inset,
+ /* Bottom shadow (halved) */ 0 1.5px 0
+ color-mix(in srgb, var(--scrollColorPrimary), black 30%); /* 3D base (halved) */
+ }
+
+ .scrollButton a {
+ color: white;
+ text-decoration: none;
+ text-shadow: 0 0.5px 0.5px rgba(0, 0, 0, 0.2); /* Text depth (halved) */
+ }
+
+ .scrollButton:hover {
+ background: linear-gradient(
+ 180deg,
+ color-mix(in srgb, var(--scrollColorPrimary), white 10%) 0%,
+ var(--scrollColorPrimary) 100%
+ );
+ transform: translateY(-1px); /* Halved */
+ box-shadow:
+ 0 2px 4px rgba(0, 0, 0, 0.15),
+ /* Halved */ 0 1px 0 rgba(255, 255, 255, 0.2) inset,
+ 0 -1px 0 rgba(0, 0, 0, 0.2) inset,
+ 0 2.5px 0 color-mix(in srgb, var(--scrollColorPrimary), black 30%); /* Halved */
+ }
+
+ .scrollButton:active {
+ background: linear-gradient(
+ 180deg,
+ color-mix(in srgb, var(--scrollColorPrimary), black 10%) 0%,
+ var(--scrollColorPrimary) 100%
+ );
+ transform: translateY(1px); /* Halved */
+ box-shadow:
+ 0 0.5px 1px rgba(0, 0, 0, 0.1),
+ /* Halved */ 0 1px 0 rgba(255, 255, 255, 0.15) inset,
+ 0 -0.5px 0 rgba(0, 0, 0, 0.2) inset,
+ 0 0.5px 0 color-mix(in srgb, var(--scrollColorPrimary), black 30%); /* Halved */
+ }
+ sup,
+ sub {
+ vertical-align: baseline;
+ position: relative;
+ top: -0.375rem;
+ }
+
+ sub {
+ top: 0.375rem;
+ }
+
+ p {
+ margin-top: 0.4rem;
+ line-height: 1.4rem;
+ }
+
+ .scrollQuote {
+ break-inside: avoid;
+ display: block;
+ margin: 0.5rem 0;
+ padding: 0.5rem;
+ background: var(--scrollColorSurface);
+ white-space: pre-line;
+ border-left: 0.5rem solid var(--scrollColorBorder);
+ }
+
+ .scrollInlineCode {
+ font-family: var(--scrollFontMono);
+ font-size: 0.9rem;
+ background-color: var(--scrollColorSurface);
+ padding: 0.125rem 0.25rem;
+ border-radius: 0.25rem;
+ }
+
+ .scrollParagraph {
+ text-align: justify;
+ }
+
+ center .scrollParagraph {
+ text-align: center;
+ }
+
+ .subdued {
+ color: var(--scrollColorSubdued);
+ }
+
+ .scrollColumns {
+ column-count: 3;
+ column-fill: balance;
+ column-width: 35ch;
+ column-gap: 1.5rem;
+ padding-left: 1.25rem;
+ padding-right: 1.25rem;
+ margin: auto;
+ }
+
+ .scrollSnippetContainer {
+ padding: 1ch 0;
+ break-inside: avoid;
+ text-align: justify;
+ }
+
+ h1,
+ h2,
+ h3,
+ h4 {
+ margin: 0.625rem 0;
+ }
+
+ h1 {
+ font-size: 1.25rem;
+ }
+
+ h2 {
+ font-size: 1.125rem;
+ }
+
+ h3,
+ h4 {
+ font-size: 1rem;
+ }
+
+ h1.printTitleParser {
+ text-align: center;
+ margin: auto;
+ margin-bottom: 0.15625rem;
+ margin-top: 0;
+ font-size: 1.75rem;
+ max-width: calc(100vw - 2 * (1.5625rem + 1.875rem));
+ }
+
+ h1.printTitleParser a {
+ color: var(--scrollColorText);
+ }
+
+ .printDateParser {
+ text-align: center;
+ }
+ .scrollDateline,
+ .printDateParser {
+ font-style: italic;
+ line-height: 1.4rem;
+ font-size: 0.75rem;
+ }
+
+ .scrollSection {
+ break-inside: avoid;
+ }
+
+ .scrollSection h1,
+ .scrollSection h2,
+ .scrollSection h3,
+ .scrollSection h4 {
+ text-align: center;
+ }
+
+ h4.scrollQuestion {
+ text-align: left;
+ margin: 1.4rem 0 0 0;
+ }
+
+ .scrollSection:first-child h1,
+ .scrollSection:first-child h2,
+ .scrollSection:first-child h3,
+ .scrollSection:first-child h4 {
+ margin-top: 0;
+ }
+
+ .scrollSection:first-child h4.scrollQuestion {
+ margin-top: 0;
+ }
+
+ .scrollNoteLink {
+ opacity: 0.4;
+ text-decoration: none;
+ }
+
+ .scrollNoteLink:hover {
+ opacity: 1;
+ }
+
+ .scrollFootNoteUsageLink {
+ opacity: 0.7;
+ text-decoration: none;
+ }
+
+ .scrollFootNoteUsageLink:hover {
+ opacity: 1;
+ }
+
+ .scrollHoverNote {
+ text-decoration: underline dashed 1px rgba(0, 0, 0, 0.1);
+ cursor: default;
+ }
+
+ .scrollTable {
+ table-layout: fixed;
+ font-family: var(--scrollFontUi);
+ margin: 0.5rem 0;
+ overflow: hidden;
+ font-size: 0.8rem;
+ width: 100%;
+ hyphens: none;
+ border: 1px solid var(--scrollColorBorder);
+ }
+
+ .scrollTable td,
+ .scrollTable th {
+ padding: 0.1875rem;
+ overflow: hidden;
+ white-space: nowrap;
+ }
+
+ .scrollTable th {
+ text-transform: capitalize;
+ border-bottom: 2px solid rgba(0, 0, 0, 0.6);
+ text-align: left;
+ }
+
+ .scrollTable tr:nth-child(even) {
+ background: var(--scrollColorSurface);
+ }
+
+ .scrollTable pre {
+ white-space: nowrap;
+ overflow: hidden;
+ margin: 0;
+ }
+
+ .scrollTable.expandedTable {
+ table-layout: unset;
+ background: white;
+ position: relative;
+ z-index: 10;
+ overflow: unset;
+ }
+
+ .scrollTable.expandedTable pre {
+ white-space: unset;
+ overflow: unset;
+ }
+
+ .scrollTable.expandedTable td,
+ .scrollTable.expandedTable th {
+ overflow: unset;
+ white-space: unset;
+ }
+
+ .printAuthorsParser {
+ font-size: 0.875rem;
+ font-style: italic;
+ margin: 0.25rem 0;
+ text-align: center;
+ }
+
+ .abstractTextLinkParser {
+ text-align: center;
+ margin: 0.5em auto;
+ font-family: Verdana;
+ font-weight: 100;
+ }
+
+ .abstractTextLinkParser a {
+ color: var(--scrollColorBorder);
+ }
+
+ .abstractTextLinkParser a:hover {
+ color: #333;
+ }
+
+ .scrollContinueReadingLink {
+ display: block;
+ text-align: center;
+ }
+
+ .scrollDashboard {
+ width: 100%;
+ font-size: 1.875rem;
+ text-align: center;
+ font-weight: bold;
+ break-inside: avoid;
+ margin-top: 0.5rem;
+ margin-bottom: 0.5rem;
+ }
+
+ .scrollDashboard td {
+ width: 33.3%;
+ border: 1px solid #e8e8e8;
+ }
+
+ .scrollDashboard span {
+ font-size: 1.25rem;
+ display: block;
+ }
+
+ .scrollChat span {
+ font-family: Verdana;
+ margin-top: 0.3125rem;
+ padding: 0.3125rem 1.25rem;
+ border-radius: 0.9375rem;
+ display: inline-block;
+ }
+
+ .scrollChatLeft span {
+ background: var(--scrollColorSurface);
+ }
+
+ .scrollChatRight span {
+ color: white;
+ background: rgb(0, 132, 255);
+ }
+
+ .scrollYouTubeHolder {
+ position: relative;
+ width: 100%;
+ height: 0;
+ padding-bottom: 56.25%;
+ }
+
+ .scrollYouTubeEmbed {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ }
+ nav ul {
+ list-style: none;
+ margin: 0;
+ padding: 0;
+ display: flex;
+ justify-content: center;
+ }
+ nav li {
+ padding: 0 10px;
+ }
Breck Yunits
Breck Yunits
12 hours ago
updated microverses.scroll
microverses.scroll
Changed around line 14: We rely on scopes, and experiments, and symbols to map the territory.
+ I gave these microverses names: Hairfield, Bloodland, Mitotown, Viralworld, Proteinplace, Moleculeville, Atomboro.
+
Breck Yunits
Breck Yunits
12 hours ago
updated microverses.scroll
microverses.scroll
Changed around line 14: We rely on scopes, and experiments, and symbols to map the territory.
- And that just gets us to the atomic level. But there are more lands we still cannot see.
+ And that just gets us to the atomic level. But there are many more lands beyond that we cannot see. It may be closer to the beginning than the end.
Breck Yunits
Breck Yunits
13 hours ago
updated bipolarKeto.scroll
bipolarKeto.scroll
Changed around line 45: I still have a ton to learn but I wanted to share this simple book scan in case
- printRelated Bipolar
+ printRelated BipolarEnergy
Breck Yunits
Breck Yunits
13 hours ago
updated bipolarKeto.scroll
bipolarKeto.scroll
Changed around line 45: I still have a ton to learn but I wanted to share this simple book scan in case
- printRelated bipolar
+ printRelated Bipolar
Breck Yunits
Breck Yunits
13 hours ago
updated bipolarKeto.scroll
bipolarKeto.scroll
Changed around line 44: I still have a ton to learn but I wanted to share this simple book scan in case
+ # Related reading
+ printRelated bipolar
+
Breck Yunits
Breck Yunits
13 hours ago
updated censorship.scroll
censorship.scroll
Changed around line 1
- title Censorship on Reddit is probably deadly
+ title Censorship on Reddit is likely deadly
Breck Yunits
Breck Yunits
13 hours ago
updated censorship.scroll
censorship.scroll
Changed around line 1
- title Censorship on Reddit is Killing People
+ title Censorship on Reddit is probably deadly
Breck Yunits
Breck Yunits
13 hours ago
bipolarKeto.scroll
Changed around line 44: I still have a ton to learn but I wanted to share this simple book scan in case
+ ### Update 3/13/2025
+
+ I did a second scan through these books for the word "mitochondria", and only 2 books had hits: "Manic-Depressive Illness" (2007) by Goodwin and Jamison and Biomarkers In Bipolar Disorder (2022). Brain Energy, by Chris Palmer in 2022, really was wildly novel with its clear finger pointing at mitochondria.
+
+ ***
+
+ # The Data
+
bpBooks.tsv
Changed around line 1
- SearchGroup KetoMentions Title Edition Year Author Category Focus Amazon
- 1 0 Mastering Bipolar Disorder: An Insider's Guide to Managing Mood Swings and Finding Balance 1 2008 Kerrie Eyers and Gordon Parker Self-help Bipolar https://www.amazon.com/Mastering-Bipolar-Disorder-Insiders-Managing/dp/1741755468
- 1 0 The Bipolar Disorder Survival Guide 2 2010 David J. Miklowitz Self-help Bipolar https://www.amazon.com/Bipolar-Disorder-Survival-Guide-Second/dp/1606235427/
- 1 0 Bipolar Disorder For Dummies 4 2023 Candida Fink and Joseph Kraynak Self-help Bipolar https://www.amazon.com/Bipolar-Disorder-Dummies-Candida-Fink-ebook/dp/B0BYQS91ZG/
- 1 0 Take Charge of Bipolar Disorder 1 2006 Julie A. Fast Self-help Bipolar https://www.amazon.com/Take-Charge-Bipolar-Disorder-Stability/dp/0446697613/
- 1 3 Take Charge of Bipolar Disorder 2 2023 Julie A. Fast and John Preston Self-help Bipolar https://www.amazon.com/Take-Charge-Bipolar-Disorder-Stability/dp/1538725029/
- 1 0 The Bipolar Workbook 2 2015 Monica Ramirez Basco Self-help Bipolar https://www.amazon.com/Bipolar-Workbook-Second-Controlling-Swings/dp/1462520235/
- 2 0 Madness: A Bipolar Life 1 2009 Marya Hornbacher Biography Bipolar https://www.amazon.com/Madness-Bipolar-Life-Marya-Hornbacher/dp/0547237804
- 2 0 An Unquiet Mind 1 1995 Kay Redfield Jamison Biography Bipolar https://www.amazon.com/Unquiet-Mind-Memoir-Moods-Madness/dp/0679763309/
- 2 0 Touched with Fire: Manic-Depressive Illness and the Artistic Temperament 1 1996 Kay Redfield Jamison Biography Bipolar https://www.amazon.com/Touched-Fire-Manic-Depressive-Artistic-Temperament/dp/068483183X
- 1 0 Bipolar II: Enhance Your Highs, Boost Your Creativity, and Escape the Cycles of Recurrent Depression 1 2006 Ronald Fieve Self-help Bipolar https://www.amazon.com/Bipolar-Creativity-Recurrent-Depression-Essential/dp/1594862249
- 1 0 Loving Someone with Bipolar Disorder 2 2012 Julie A. Fast Self-help Bipolar https://www.amazon.com/Loving-Someone-Bipolar-Disorder-Understanding/dp/1608822192
- 1 0 The Bipolar II Disorder Workbook: Managing Recurring Depression, Hypomania, and Anxiety 1 2013 Stephanie McMurrich Roberts and Louisa Grandin Sylvia and Noreen A. Reilly-Harrington Self-help Bipolar https://www.amazon.com/Bipolar-Disorder-Workbook-Recurring-Depression/dp/1608827666
- 1 0 Raising a Moody Child: How to Cope with Depression and Bipolar Disorder 1 2004 Mary A. Fristad and Jill S. Goldberg Arnold Self-help Bipolar https://www.amazon.com/Raising-Moody-Child-Depression-Disorder/dp/1572308710
- 1 0 The Bipolar Teen: What You Can Do to Help Your Child and Your Family 1 2007 David J. Miklowitz and Elizabeth L. George Self-help Bipolar https://www.amazon.com/Bipolar-Teen-What-Child-Family/dp/1593853181/
- 1 0 Your Child Does Not Have Bipolar Disorder: How Bad Science and Good Public Relations Created the Diagnosis 1 2011 Stuart L Kaplan Self-help Bipolar https://www.amazon.com/Your-Child-Does-Bipolar-Disorder/dp/0313381348/
- 1 0 The Bipolar Child: The Definitive and Reassuring Guide to Childhood's Most Misunderstood Disorder 3 2007 Demitri Papolos and Janice Papolos Self-help Bipolar https://www.amazon.com/Bipolar-Child-Third-Definitive-Misunderstood-ebook/dp/B000W969AY
- 1 0 Bipolar Kids: Helping Your Child Find Calm in the Mood Storm 1 2008 Rosalie Greenberg Self-help Bipolar https://www.amazon.com/Bipolar-Kids-Helping-Child-Storm/dp/0738211133/
- 1 0 Bipolar 101: A Practical Guide to Identifying Triggers, Managing Medications, Coping with Symptoms, and More 1 2009 Ruth C. White and John D. Preston Self-help Bipolar https://www.amazon.com/Bipolar-101-Practical-Identifying-Medications/dp/1572245603
- 2 0 Sure, I'll Join Your Cult: A Memoir of Mental Illness and the Quest to Belong Anywhere 1 2023 Maria Bamford Biography Bipolar https://www.amazon.com/Sure-Ill-Join-Your-Cult/dp/1982168560
- 1 0 The Dialectical Behavior Therapy Skills Workbook for Bipolar Disorder 1 2009 Sheri Van Dijk and Zindel V. Segal Self-help Bipolar https://www.amazon.com/Dialectical-Behavior-Therapy-Workbook-Disorder/dp/1572246286
- 1 0 The Depression and Bipolar Workbook 1 2020 Chris Aiken Self-help Bipolar https://www.amazon.com/Depression-Bipolar-Workbook-Strengthen-Brain/dp/1683732359
- 1 0 Rock Steady: Brilliant Advice From My Bipolar Life 1 2018 Ellen Forney Self-help Bipolar https://www.amazon.com/Rock-Steady-Brilliant-Advice-Bipolar/dp/1683961013
- 1 0 Preventing Bipolar Relapse: A Lifestyle Program to Help You Maintain a Balanced Mood and Live Well 1 2014 Ruth C. White Self-help Bipolar https://www.amazon.com/Preventing-Bipolar-Relapse-Lifestyle-Maintain/dp/1608828816/
- 2 0 Marbles: Mania, Depression, Michelangelo, and Me: A Graphic Memoir 1 2012 Ellen Forney Biography Bipolar https://www.amazon.com/Marbles-Depression-Michelangelo-Graphic-Memoir/dp/1592407323
- 1 0 The Mood Cure: The 4-Step Program to Take Charge of Your Emotions--Today 1 2003 Julia Ross Self-help Moods https://www.amazon.com/Mood-Cure-4-Step-Program-Emotions-Today/dp/0142003646/
- 1 0 Practical Management of Bipolar Disorder 1 2010 Allan H. Young and I. Nicol Ferrier and Erin E. Michalak Self-help Bipolar https://www.amazon.com/Practical-Management-Bipolar-Disorder-Allan/dp/0521734894
- 2 0 Depression, the Mood Disease 1 2006 Francis Mark Mondimore Self-help Depression https://www.amazon.com/Depression-Disease-Johns-Hopkins-Health/dp/0801884519
- 2 0 Practical Psychopharmacology 1 2021 Joseph F. Goldberg and Stephen M. Stahl Reference Psychopharmacology https://www.amazon.com/Practical-Psychopharmacology-Translating-Evidence-Based-Real-World/dp/1108450741
- 1 0 Clinical Handbook for the Management of Mood Disorders 1 2013 J. John Mann and Patrick J. McGrath and Steven P. Roose Reference Moods https://www.amazon.com/Clinical-Handbook-Management-Mood-Disorders/dp/1107024633
- 1 0 Bipolar Disorder: An Information Guide 2 2013 CAMH Bipolar Clinic Staff Self-help Bipolar https://www.amazon.com/Bipolar-Disorder-CAMH-Clinic-Staff/dp/1770525793
- 1 0 Break the Bipolar Cycle: A Day-by-Day Guide to Living with Bipolar Disorder 1 2008 Elizabeth Brondolo Self-help Bipolar https://www.amazon.com/Break-Bipolar-Cycle-Day-Day/dp/0071481532
- 1 0 Bipolar Disorder: A Guide for the Newly Diagnosed 1 2012 Janelle M. Caponigro and Erica H. Lee and Sheri L Johnson and Ann M. Kring Self-help Bipolar https://www.amazon.com/Bipolar-Disorder-Diagnosed-Harbinger-Guides/dp/1608821811
- 1 0 The Concise Guide to Bipolar Disorder 1 2022 Francis Mark Mondimore Self-help Bipolar https://www.amazon.com/Concise-Bipolar-Disorder-Hopkins-Health/dp/1421444038
- 1 0 The Everything Health Guide to Adult Bipolar Disorder: A Reassuring Guide for Patients and Families 1 2014 Dean A Haycock Self-help Bipolar https://www.amazon.com/Everything-Health-Guide-Bipolar-Disorder/dp/1440570132
- 1 0 Bipolar Disorder: Insights for Recovery 2 2003 Jane Mountain Self-help Bipolar https://www.amazon.com/Bipolar-Disorder-Insights-Jane-Mountain/dp/0971927057/
- 1 0 Two Bipolar Chicks Guide to Survival: Tips for Living with Bipolar Disorder 1 2014 Wendy Williamson and Honora Rose Self-help Bipolar https://www.amazon.com/Two-Bipolar-Chicks-Guide-Survival/dp/B08ZBJDYWV
- 1 0 A Brilliant Madness: Living with Manic Depressive Illness 1 1993 Patty Duke and Gloria Hochman Self-help Manic Depression https://www.amazon.com/Brilliant-Madness-Living-Depressive-Illness/dp/0553560727
- 1 0 Manic-Depressive Illness 2 2007 Frederick Goodwin and Kay Redfield Jamison Textbook Manic Depression https://www.amazon.com/Manic-Depressive-Illness-Disorders-Recurrent-Depression/dp/0195331524
- 2 0 Mood Genes: Hunting for Origins of Mania and Depression 1 1999 Samuel H. Barondes Reference Manic Depression https://www.amazon.com/Mood-Genes-Hunting-Depression-Paperbacks/dp/0195131061
- 1 0 Managing Manic Depressive Disorders 1 1997 Ved Varma Self-help Manic Depression https://www.amazon.com/Managing-Manic-Depressive-Disorders-Varma/dp/1853023477/
- 4 Yes Nutrition and Diet Therapy Reference Dictionary 4 1996 Rosalinda T. Lagua and Virginia S. Claudio Reference Diet https://www.amazon.com/Nutrition-Diet-Therapy-Reference-Dictionary/dp/9401168806
- 3 Yes The Epilepsy Diet Treatment: An Introduction to the Ketogenic Diet 2 1996 John Mark Freeman and Millicent T. Kelly and Jennifer B. Freeman Self-help Epilepsy https://www.amazon.com/Epilepsy-Diet-Treatment-Introduction-Ketogenic/dp/0939957868/
- 3 Yes Epilepsy: Problem Solving in Clinical Practice 1 2000 Steven C Schachter and Dieter Schmidt Self-help Epilepsy https://www.amazon.com/Epilepsy-Problem-Solving-Clinical-Practice/dp/1853175048
- 3 Yes Treating Epilepsy Naturally: A Guide to Alternative and Adjunct Therapies 1 2001 Patricia Murphy Self-help Epilepsy https://www.amazon.com/Treating-Epilepsy-Naturally-Alternative-Therapies/dp/0658013793/
- 3 Yes Ketogenic Diet Therapies for Epilepsy and Other Conditions 7 2020 Eric Kossoff and Zahava Turner and Mackenzie C. Cervenka and Bobbie J. Barron Self-help Epilepsy https://www.amazon.com/Ketogenic-Therapies-Epilepsy-Conditions-Seventh/dp/0826149588/
- 3 Yes Epilepsy Across the Spectrum: Promoting Health and Understanding 1 2012 Institute of Medicine Reference Epilepsy https://www.amazon.com/Epilepsy-Across-Spectrum-Promoting-Understanding/dp/0309259533
- 1 0 Healing Depression & Bipolar Disorder Without Drugs: Inspiring Stories of Restoring Mental Health Through Natural Therapies 1 2006 Gracelyn Guyol Self-help Bipolar https://www.amazon.com/Healing-Depression-Bipolar-Disorder-Without/dp/080271496X/
- 1 0 The Natural Medicine Guide to Bipolar Disorder: New Revised Edition 2 2011 Stephanie Marohn Self-help Bipolar https://www.amazon.com/Natural-Medicine-Guide-Bipolar-Disorder/dp/1571746560/
- 1 0 The Bipolar Disorder Answer Book: Professional Answers to More than 275 Top Questions 1 2007 Charles Atkins Self-help Bipolar https://www.amazon.com/Bipolar-Disorder-Answer-Book-Professional/dp/1402210574/
- 1 0 Bipolar 2: Creating The Right Bipolar Diet & Nutritional Plan to Deal with Bipolar Type II Today 1 2015 Samantha Rose Self-help Bipolar https://www.amazon.com/Bipolar-Creating-Right-Nutritional-Today/dp/1628841370/
- 1 0 The Tao of Bipolar: Using Meditation and Mindfulness to Find Balance and Peace 1 2013 C. Alexander Simpkins and Annellen M. Simpkins Self-help Bipolar https://www.amazon.com/Tao-Bipolar-Meditation-Mindfulness-Balance/dp/1608822923/
- 1 0 The Bipolar Advantage 1 2006 Tom Wootton Self-help Bipolar https://www.amazon.com/Bipolar-Advantage-Tom-Wootton/dp/0977442306/
- 1 0 The Homeopathic Treatment of Depression, Anxiety, Bipolar and Other Mental and Emotional Problems: Homeopathic Alternatives to Conventional Drug Therapy 1 2012 Judyth Reichenberg-Ullman and Robert William Ullman Self-help Bipolar https://www.amazon.com/Homeopathic-Treatment-Depression-Emotional-Problems/dp/0964065401/
- 2 0 When Screams Become Whispers: One Man’s Inspiring Victory Over Bipolar Disorder 1 2021 Bob Krulish and Alee Anderson Biography Bipolar https://www.amazon.com/When-Screams-Become-Whispers-Inspiring/dp/1631953133/
- 1 0 Surviving Manic Depression: A Manual on Bipolar Disorder for Patients, Families, and Providers 1 2005 E Fuller Torrey and Michael B Knable Self-help Manic Depression https://www.amazon.com/Surviving-Manic-Depression-Disorder-Providers/dp/0465086640
- 1 0 Bipolar Disorder: A Guide for You and Your Loved Ones 4 2020 Francis Mark Mondimore Self-help Bipolar https://www.amazon.com/Bipolar-Disorder-Guide-Hopkins-Health/dp/1421439069
- 1 0 Owning Bipolar: How Patients and Families Can Take Control of Bipolar Disorder 1 2018 Michael G. Pipich Self-help Bipolar https://www.amazon.com/Owning-Bipolar-Patients-Families-Disorder/dp/0806538791
- 1 0 Understanding and Loving a Person with Bipolar Disorder: Biblical and Practical Wisdom to Build Empathy, Preserve Boundaries, and Show Compassion 1 2018 Stephen Arterburn and Becky Lyke Brown Self-help Bipolar https://www.amazon.com/Understanding-Loving-Person-Bipolar-Disorder/dp/078141492X
- 1 0 Survival Strategies for Parenting Children with Bipolar Disorder 1 2000 George T. Lynn Self-help Bipolar https://www.amazon.com/Survival-Strategies-Parenting-Children-Disorder/dp/1853029211
- 1 0.3 Understanding Bipolar Disorder: The Essential Family Guide 1 2020 Aimee Daramus Self-help Bipolar https://www.amazon.com/Understanding-Bipolar-Disorder-Essential-Family/dp/1647390001/
- 1 0 Bipolar, Not So Much: Understanding Your Mood Swings and Depression 1 2017 James R. Phelps and Chris Aiken Self-help Bipolar https://www.amazon.com/Bipolar-Not-Much-Understanding-Depression-ebook/dp/B01CKZM3A2/
- 2 0 Burn Rate: Launching a Startup and Losing My Mind 1 2022 Andy Dunn Biography Bipolar https://www.amazon.com/Burn-Rate-Launching-Startup-Losing/dp/0593238265
+ SearchGroup KetoMentions MitoMentions Title Edition Year Author Category Focus Amazon
+ 1 0 0 Mastering Bipolar Disorder: An Insider's Guide to Managing Mood Swings and Finding Balance 1 2008 Kerrie Eyers and Gordon Parker Self-help Bipolar https://www.amazon.com/Mastering-Bipolar-Disorder-Insiders-Managing/dp/1741755468
+ 1 0 0 The Bipolar Disorder Survival Guide 2 2010 David J. Miklowitz Self-help Bipolar https://www.amazon.com/Bipolar-Disorder-Survival-Guide-Second/dp/1606235427/
+ 1 0 0 Bipolar Disorder For Dummies 4 2023 Candida Fink and Joseph Kraynak Self-help Bipolar https://www.amazon.com/Bipolar-Disorder-Dummies-Candida-Fink-ebook/dp/B0BYQS91ZG/
+ 1 0 0 Take Charge of Bipolar Disorder 1 2006 Julie A. Fast Self-help Bipolar https://www.amazon.com/Take-Charge-Bipolar-Disorder-Stability/dp/0446697613/
+ 1 3 0 Take Charge of Bipolar Disorder 2 2023 Julie A. Fast and John Preston Self-help Bipolar https://www.amazon.com/Take-Charge-Bipolar-Disorder-Stability/dp/1538725029/
+ 1 0 0 The Bipolar Workbook 2 2015 Monica Ramirez Basco Self-help Bipolar https://www.amazon.com/Bipolar-Workbook-Second-Controlling-Swings/dp/1462520235/
+ 2 0 0 Madness: A Bipolar Life 1 2009 Marya Hornbacher Biography Bipolar https://www.amazon.com/Madness-Bipolar-Life-Marya-Hornbacher/dp/0547237804
+ 2 0 0 An Unquiet Mind 1 1995 Kay Redfield Jamison Biography Bipolar https://www.amazon.com/Unquiet-Mind-Memoir-Moods-Madness/dp/0679763309/
+ 2 0 0 Touched with Fire: Manic-Depressive Illness and the Artistic Temperament 1 1996 Kay Redfield Jamison Biography Bipolar https://www.amazon.com/Touched-Fire-Manic-Depressive-Artistic-Temperament/dp/068483183X
+ 1 0 0 Bipolar II: Enhance Your Highs, Boost Your Creativity, and Escape the Cycles of Recurrent Depression 1 2006 Ronald Fieve Self-help Bipolar https://www.amazon.com/Bipolar-Creativity-Recurrent-Depression-Essential/dp/1594862249
+ 1 0 0 Loving Someone with Bipolar Disorder 2 2012 Julie A. Fast Self-help Bipolar https://www.amazon.com/Loving-Someone-Bipolar-Disorder-Understanding/dp/1608822192
+ 1 0 0 The Bipolar II Disorder Workbook: Managing Recurring Depression, Hypomania, and Anxiety 1 2013 Stephanie McMurrich Roberts and Louisa Grandin Sylvia and Noreen A. Reilly-Harrington Self-help Bipolar https://www.amazon.com/Bipolar-Disorder-Workbook-Recurring-Depression/dp/1608827666
+ 1 0 0 Raising a Moody Child: How to Cope with Depression and Bipolar Disorder 1 2004 Mary A. Fristad and Jill S. Goldberg Arnold Self-help Bipolar https://www.amazon.com/Raising-Moody-Child-Depression-Disorder/dp/1572308710
+ 1 0 0 The Bipolar Teen: What You Can Do to Help Your Child and Your Family 1 2007 David J. Miklowitz and Elizabeth L. George Self-help Bipolar https://www.amazon.com/Bipolar-Teen-What-Child-Family/dp/1593853181/
+ 1 0 0 Your Child Does Not Have Bipolar Disorder: How Bad Science and Good Public Relations Created the Diagnosis 1 2011 Stuart L Kaplan Self-help Bipolar https://www.amazon.com/Your-Child-Does-Bipolar-Disorder/dp/0313381348/
+ 1 0 0 The Bipolar Child: The Definitive and Reassuring Guide to Childhood's Most Misunderstood Disorder 3 2007 Demitri Papolos and Janice Papolos Self-help Bipolar https://www.amazon.com/Bipolar-Child-Third-Definitive-Misunderstood-ebook/dp/B000W969AY
+ 1 0 0 Bipolar Kids: Helping Your Child Find Calm in the Mood Storm 1 2008 Rosalie Greenberg Self-help Bipolar https://www.amazon.com/Bipolar-Kids-Helping-Child-Storm/dp/0738211133/
+ 1 0 0 Bipolar 101: A Practical Guide to Identifying Triggers, Managing Medications, Coping with Symptoms, and More 1 2009 Ruth C. White and John D. Preston Self-help Bipolar https://www.amazon.com/Bipolar-101-Practical-Identifying-Medications/dp/1572245603
+ 2 0 0 Sure, I'll Join Your Cult: A Memoir of Mental Illness and the Quest to Belong Anywhere 1 2023 Maria Bamford Biography Bipolar https://www.amazon.com/Sure-Ill-Join-Your-Cult/dp/1982168560
+ 1 0 0 The Dialectical Behavior Therapy Skills Workbook for Bipolar Disorder 1 2009 Sheri Van Dijk and Zindel V. Segal Self-help Bipolar https://www.amazon.com/Dialectical-Behavior-Therapy-Workbook-Disorder/dp/1572246286
+ 1 0 0 The Depression and Bipolar Workbook 1 2020 Chris Aiken Self-help Bipolar https://www.amazon.com/Depression-Bipolar-Workbook-Strengthen-Brain/dp/1683732359
+ 1 0 0 Rock Steady: Brilliant Advice From My Bipolar Life 1 2018 Ellen Forney Self-help Bipolar https://www.amazon.com/Rock-Steady-Brilliant-Advice-Bipolar/dp/1683961013
+ 1 0 0 Preventing Bipolar Relapse: A Lifestyle Program to Help You Maintain a Balanced Mood and Live Well 1 2014 Ruth C. White Self-help Bipolar https://www.amazon.com/Preventing-Bipolar-Relapse-Lifestyle-Maintain/dp/1608828816/
+ 2 0 0 Marbles: Mania, Depression, Michelangelo, and Me: A Graphic Memoir 1 2012 Ellen Forney Biography Bipolar https://www.amazon.com/Marbles-Depression-Michelangelo-Graphic-Memoir/dp/1592407323
+ 1 0 0 The Mood Cure: The 4-Step Program to Take Charge of Your Emotions--Today 1 2003 Julia Ross Self-help Moods https://www.amazon.com/Mood-Cure-4-Step-Program-Emotions-Today/dp/0142003646/
+ 1 0 0 Practical Management of Bipolar Disorder 1 2010 Allan H. Young and I. Nicol Ferrier and Erin E. Michalak Self-help Bipolar https://www.amazon.com/Practical-Management-Bipolar-Disorder-Allan/dp/0521734894
+ 2 0 0 Depression, the Mood Disease 1 2006 Francis Mark Mondimore Self-help Depression https://www.amazon.com/Depression-Disease-Johns-Hopkins-Health/dp/0801884519
+ 2 0 0 Practical Psychopharmacology 1 2021 Joseph F. Goldberg and Stephen M. Stahl Reference Psychopharmacology https://www.amazon.com/Practical-Psychopharmacology-Translating-Evidence-Based-Real-World/dp/1108450741
+ 1 0 0 Clinical Handbook for the Management of Mood Disorders 1 2013 J. John Mann and Patrick J. McGrath and Steven P. Roose Reference Moods https://www.amazon.com/Clinical-Handbook-Management-Mood-Disorders/dp/1107024633
+ 1 0 0 Bipolar Disorder: An Information Guide 2 2013 CAMH Bipolar Clinic Staff Self-help Bipolar https://www.amazon.com/Bipolar-Disorder-CAMH-Clinic-Staff/dp/1770525793
+ 1 0 0 Break the Bipolar Cycle: A Day-by-Day Guide to Living with Bipolar Disorder 1 2008 Elizabeth Brondolo Self-help Bipolar https://www.amazon.com/Break-Bipolar-Cycle-Day-Day/dp/0071481532
+ 1 0 0 Bipolar Disorder: A Guide for the Newly Diagnosed 1 2012 Janelle M. Caponigro and Erica H. Lee and Sheri L Johnson and Ann M. Kring Self-help Bipolar https://www.amazon.com/Bipolar-Disorder-Diagnosed-Harbinger-Guides/dp/1608821811
+ 1 0 0 The Concise Guide to Bipolar Disorder 1 2022 Francis Mark Mondimore Self-help Bipolar https://www.amazon.com/Concise-Bipolar-Disorder-Hopkins-Health/dp/1421444038
+ 1 0 0 The Everything Health Guide to Adult Bipolar Disorder: A Reassuring Guide for Patients and Families 1 2014 Dean A Haycock Self-help Bipolar https://www.amazon.com/Everything-Health-Guide-Bipolar-Disorder/dp/1440570132
+ 1 0 0 Bipolar Disorder: Insights for Recovery 2 2003 Jane Mountain Self-help Bipolar https://www.amazon.com/Bipolar-Disorder-Insights-Jane-Mountain/dp/0971927057/
+ 1 0 0 Two Bipolar Chicks Guide to Survival: Tips for Living with Bipolar Disorder 1 2014 Wendy Williamson and Honora Rose Self-help Bipolar https://www.amazon.com/Two-Bipolar-Chicks-Guide-Survival/dp/B08ZBJDYWV
+ 1 0 0 A Brilliant Madness: Living with Manic Depressive Illness 1 1993 Patty Duke and Gloria Hochman Self-help Manic Depression https://www.amazon.com/Brilliant-Madness-Living-Depressive-Illness/dp/0553560727
+ 1 0 29 Manic-Depressive Illness 2 2007 Frederick Goodwin and Kay Redfield Jamison Textbook Manic Depression https://www.amazon.com/Manic-Depressive-Illness-Disorders-Recurrent-Depression/dp/0195331524
+ 2 0 0 Mood Genes: Hunting for Origins of Mania and Depression 1 1999 Samuel H. Barondes Reference Manic Depression https://www.amazon.com/Mood-Genes-Hunting-Depression-Paperbacks/dp/0195131061
+ 1 0 0 Managing Manic Depressive Disorders 1 1997 Ved Varma Self-help Manic Depression https://www.amazon.com/Managing-Manic-Depressive-Disorders-Varma/dp/1853023477/
+ 4 Yes 0 Nutrition and Diet Therapy Reference Dictionary 4 1996 Rosalinda T. Lagua and Virginia S. Claudio Reference Diet https://www.amazon.com/Nutrition-Diet-Therapy-Reference-Dictionary/dp/9401168806
+ 3 Yes 0 The Epilepsy Diet Treatment: An Introduction to the Ketogenic Diet 2 1996 John Mark Freeman and Millicent T. Kelly and Jennifer B. Freeman Self-help Epilepsy https://www.amazon.com/Epilepsy-Diet-Treatment-Introduction-Ketogenic/dp/0939957868/
+ 3 Yes 0 Epilepsy: Problem Solving in Clinical Practice 1 2000 Steven C Schachter and Dieter Schmidt Self-help Epilepsy https://www.amazon.com/Epilepsy-Problem-Solving-Clinical-Practice/dp/1853175048
+ 3 Yes 0 Treating Epilepsy Naturally: A Guide to Alternative and Adjunct Therapies 1 2001 Patricia Murphy Self-help Epilepsy https://www.amazon.com/Treating-Epilepsy-Naturally-Alternative-Therapies/dp/0658013793/
+ 3 Yes 0 Ketogenic Diet Therapies for Epilepsy and Other Conditions 7 2020 Eric Kossoff and Zahava Turner and Mackenzie C. Cervenka and Bobbie J. Barron Self-help Epilepsy https://www.amazon.com/Ketogenic-Therapies-Epilepsy-Conditions-Seventh/dp/0826149588/
+ 3 Yes 0 Epilepsy Across the Spectrum: Promoting Health and Understanding 1 2012 Institute of Medicine Reference Epilepsy https://www.amazon.com/Epilepsy-Across-Spectrum-Promoting-Understanding/dp/0309259533
+ 1 0 0 Healing Depression & Bipolar Disorder Without Drugs: Inspiring Stories of Restoring Mental Health Through Natural Therapies 1 2006 Gracelyn Guyol Self-help Bipolar https://www.amazon.com/Healing-Depression-Bipolar-Disorder-Without/dp/080271496X/
+ 1 0 0 The Natural Medicine Guide to Bipolar Disorder: New Revised Edition 2 2011 Stephanie Marohn Self-help Bipolar https://www.amazon.com/Natural-Medicine-Guide-Bipolar-Disorder/dp/1571746560/
+ 1 0 0 The Bipolar Disorder Answer Book: Professional Answers to More than 275 Top Questions 1 2007 Charles Atkins Self-help Bipolar https://www.amazon.com/Bipolar-Disorder-Answer-Book-Professional/dp/1402210574/
+ 1 0 0 Bipolar 2: Creating The Right Bipolar Diet & Nutritional Plan to Deal with Bipolar Type II Today 1 2015 Samantha Rose Self-help Bipolar https://www.amazon.com/Bipolar-Creating-Right-Nutritional-Today/dp/1628841370/
+ 1 0 0 The Tao of Bipolar: Using Meditation and Mindfulness to Find Balance and Peace 1 2013 C. Alexander Simpkins and Annellen M. Simpkins Self-help Bipolar https://www.amazon.com/Tao-Bipolar-Meditation-Mindfulness-Balance/dp/1608822923/
+ 1 0 0 The Bipolar Advantage 1 2006 Tom Wootton Self-help Bipolar https://www.amazon.com/Bipolar-Advantage-Tom-Wootton/dp/0977442306/
+ 1 0 0 The Homeopathic Treatment of Depression, Anxiety, Bipolar and Other Mental and Emotional Problems: Homeopathic Alternatives to Conventional Drug Therapy 1 2012 Judyth Reichenberg-Ullman and Robert William Ullman Self-help Bipolar https://www.amazon.com/Homeopathic-Treatment-Depression-Emotional-Problems/dp/0964065401/
+ 2 0 0 When Screams Become Whispers: One Man’s Inspiring Victory Over Bipolar Disorder 1 2021 Bob Krulish and Alee Anderson Biography Bipolar https://www.amazon.com/When-Screams-Become-Whispers-Inspiring/dp/1631953133/
+ 1 0 0 Surviving Manic Depression: A Manual on Bipolar Disorder for Patients, Families, and Providers 1 2005 E Fuller Torrey and Michael B Knable Self-help Manic Depression https://www.amazon.com/Surviving-Manic-Depression-Disorder-Providers/dp/0465086640
+ 1 0 0 Bipolar Disorder: A Guide for You and Your Loved Ones 4 2020 Francis Mark Mondimore Self-help Bipolar https://www.amazon.com/Bipolar-Disorder-Guide-Hopkins-Health/dp/1421439069
+ 1 0 0 Owning Bipolar: How Patients and Families Can Take Control of Bipolar Disorder 1 2018 Michael G. Pipich Self-help Bipolar https://www.amazon.com/Owning-Bipolar-Patients-Families-Disorder/dp/0806538791
+ 1 0 0 Understanding and Loving a Person with Bipolar Disorder: Biblical and Practical Wisdom to Build Empathy, Preserve Boundaries, and Show Compassion 1 2018 Stephen Arterburn and Becky Lyke Brown Self-help Bipolar https://www.amazon.com/Understanding-Loving-Person-Bipolar-Disorder/dp/078141492X
+ 1 0 0 Survival Strategies for Parenting Children with Bipolar Disorder 1 2000 George T. Lynn Self-help Bipolar https://www.amazon.com/Survival-Strategies-Parenting-Children-Disorder/dp/1853029211
+ 1 0.3 0 Understanding Bipolar Disorder: The Essential Family Guide 1 2020 Aimee Daramus Self-help Bipolar https://www.amazon.com/Understanding-Bipolar-Disorder-Essential-Family/dp/1647390001/
+ 1 0 0 Bipolar, Not So Much: Understanding Your Mood Swings and Depression 1 2017 James R. Phelps and Chris Aiken Self-help Bipolar https://www.amazon.com/Bipolar-Not-Much-Understanding-Depression-ebook/dp/B01CKZM3A2/
+ 2 0 0 Burn Rate: Launching a Startup and Losing My Mind 1 2022 Andy Dunn Biography Bipolar https://www.amazon.com/Burn-Rate-Launching-Startup-Losing/dp/0593238265
Breck Yunits
Breck Yunits
15 hours ago
bipolarKeto.scroll
Changed around line 6: header.scroll
- mediumColumns 1
+ container 600px
Changed around line 44: I still have a ton to learn but I wanted to share this simple book scan in case
+ clearStack
+
+ container 1000px
+ bpBooks.tsv
+ printTable
+ tableSearch
+
bpBooks.tsv
Changed around line 1
+ SearchGroup KetoMentions Title Edition Year Author Category Focus Amazon
+ 1 0 Mastering Bipolar Disorder: An Insider's Guide to Managing Mood Swings and Finding Balance 1 2008 Kerrie Eyers and Gordon Parker Self-help Bipolar https://www.amazon.com/Mastering-Bipolar-Disorder-Insiders-Managing/dp/1741755468
+ 1 0 The Bipolar Disorder Survival Guide 2 2010 David J. Miklowitz Self-help Bipolar https://www.amazon.com/Bipolar-Disorder-Survival-Guide-Second/dp/1606235427/
+ 1 0 Bipolar Disorder For Dummies 4 2023 Candida Fink and Joseph Kraynak Self-help Bipolar https://www.amazon.com/Bipolar-Disorder-Dummies-Candida-Fink-ebook/dp/B0BYQS91ZG/
+ 1 0 Take Charge of Bipolar Disorder 1 2006 Julie A. Fast Self-help Bipolar https://www.amazon.com/Take-Charge-Bipolar-Disorder-Stability/dp/0446697613/
+ 1 3 Take Charge of Bipolar Disorder 2 2023 Julie A. Fast and John Preston Self-help Bipolar https://www.amazon.com/Take-Charge-Bipolar-Disorder-Stability/dp/1538725029/
+ 1 0 The Bipolar Workbook 2 2015 Monica Ramirez Basco Self-help Bipolar https://www.amazon.com/Bipolar-Workbook-Second-Controlling-Swings/dp/1462520235/
+ 2 0 Madness: A Bipolar Life 1 2009 Marya Hornbacher Biography Bipolar https://www.amazon.com/Madness-Bipolar-Life-Marya-Hornbacher/dp/0547237804
+ 2 0 An Unquiet Mind 1 1995 Kay Redfield Jamison Biography Bipolar https://www.amazon.com/Unquiet-Mind-Memoir-Moods-Madness/dp/0679763309/
+ 2 0 Touched with Fire: Manic-Depressive Illness and the Artistic Temperament 1 1996 Kay Redfield Jamison Biography Bipolar https://www.amazon.com/Touched-Fire-Manic-Depressive-Artistic-Temperament/dp/068483183X
+ 1 0 Bipolar II: Enhance Your Highs, Boost Your Creativity, and Escape the Cycles of Recurrent Depression 1 2006 Ronald Fieve Self-help Bipolar https://www.amazon.com/Bipolar-Creativity-Recurrent-Depression-Essential/dp/1594862249
+ 1 0 Loving Someone with Bipolar Disorder 2 2012 Julie A. Fast Self-help Bipolar https://www.amazon.com/Loving-Someone-Bipolar-Disorder-Understanding/dp/1608822192
+ 1 0 The Bipolar II Disorder Workbook: Managing Recurring Depression, Hypomania, and Anxiety 1 2013 Stephanie McMurrich Roberts and Louisa Grandin Sylvia and Noreen A. Reilly-Harrington Self-help Bipolar https://www.amazon.com/Bipolar-Disorder-Workbook-Recurring-Depression/dp/1608827666
+ 1 0 Raising a Moody Child: How to Cope with Depression and Bipolar Disorder 1 2004 Mary A. Fristad and Jill S. Goldberg Arnold Self-help Bipolar https://www.amazon.com/Raising-Moody-Child-Depression-Disorder/dp/1572308710
+ 1 0 The Bipolar Teen: What You Can Do to Help Your Child and Your Family 1 2007 David J. Miklowitz and Elizabeth L. George Self-help Bipolar https://www.amazon.com/Bipolar-Teen-What-Child-Family/dp/1593853181/
+ 1 0 Your Child Does Not Have Bipolar Disorder: How Bad Science and Good Public Relations Created the Diagnosis 1 2011 Stuart L Kaplan Self-help Bipolar https://www.amazon.com/Your-Child-Does-Bipolar-Disorder/dp/0313381348/
+ 1 0 The Bipolar Child: The Definitive and Reassuring Guide to Childhood's Most Misunderstood Disorder 3 2007 Demitri Papolos and Janice Papolos Self-help Bipolar https://www.amazon.com/Bipolar-Child-Third-Definitive-Misunderstood-ebook/dp/B000W969AY
+ 1 0 Bipolar Kids: Helping Your Child Find Calm in the Mood Storm 1 2008 Rosalie Greenberg Self-help Bipolar https://www.amazon.com/Bipolar-Kids-Helping-Child-Storm/dp/0738211133/
+ 1 0 Bipolar 101: A Practical Guide to Identifying Triggers, Managing Medications, Coping with Symptoms, and More 1 2009 Ruth C. White and John D. Preston Self-help Bipolar https://www.amazon.com/Bipolar-101-Practical-Identifying-Medications/dp/1572245603
+ 2 0 Sure, I'll Join Your Cult: A Memoir of Mental Illness and the Quest to Belong Anywhere 1 2023 Maria Bamford Biography Bipolar https://www.amazon.com/Sure-Ill-Join-Your-Cult/dp/1982168560
+ 1 0 The Dialectical Behavior Therapy Skills Workbook for Bipolar Disorder 1 2009 Sheri Van Dijk and Zindel V. Segal Self-help Bipolar https://www.amazon.com/Dialectical-Behavior-Therapy-Workbook-Disorder/dp/1572246286
+ 1 0 The Depression and Bipolar Workbook 1 2020 Chris Aiken Self-help Bipolar https://www.amazon.com/Depression-Bipolar-Workbook-Strengthen-Brain/dp/1683732359
+ 1 0 Rock Steady: Brilliant Advice From My Bipolar Life 1 2018 Ellen Forney Self-help Bipolar https://www.amazon.com/Rock-Steady-Brilliant-Advice-Bipolar/dp/1683961013
+ 1 0 Preventing Bipolar Relapse: A Lifestyle Program to Help You Maintain a Balanced Mood and Live Well 1 2014 Ruth C. White Self-help Bipolar https://www.amazon.com/Preventing-Bipolar-Relapse-Lifestyle-Maintain/dp/1608828816/
+ 2 0 Marbles: Mania, Depression, Michelangelo, and Me: A Graphic Memoir 1 2012 Ellen Forney Biography Bipolar https://www.amazon.com/Marbles-Depression-Michelangelo-Graphic-Memoir/dp/1592407323
+ 1 0 The Mood Cure: The 4-Step Program to Take Charge of Your Emotions--Today 1 2003 Julia Ross Self-help Moods https://www.amazon.com/Mood-Cure-4-Step-Program-Emotions-Today/dp/0142003646/
+ 1 0 Practical Management of Bipolar Disorder 1 2010 Allan H. Young and I. Nicol Ferrier and Erin E. Michalak Self-help Bipolar https://www.amazon.com/Practical-Management-Bipolar-Disorder-Allan/dp/0521734894
+ 2 0 Depression, the Mood Disease 1 2006 Francis Mark Mondimore Self-help Depression https://www.amazon.com/Depression-Disease-Johns-Hopkins-Health/dp/0801884519
+ 2 0 Practical Psychopharmacology 1 2021 Joseph F. Goldberg and Stephen M. Stahl Reference Psychopharmacology https://www.amazon.com/Practical-Psychopharmacology-Translating-Evidence-Based-Real-World/dp/1108450741
+ 1 0 Clinical Handbook for the Management of Mood Disorders 1 2013 J. John Mann and Patrick J. McGrath and Steven P. Roose Reference Moods https://www.amazon.com/Clinical-Handbook-Management-Mood-Disorders/dp/1107024633
+ 1 0 Bipolar Disorder: An Information Guide 2 2013 CAMH Bipolar Clinic Staff Self-help Bipolar https://www.amazon.com/Bipolar-Disorder-CAMH-Clinic-Staff/dp/1770525793
+ 1 0 Break the Bipolar Cycle: A Day-by-Day Guide to Living with Bipolar Disorder 1 2008 Elizabeth Brondolo Self-help Bipolar https://www.amazon.com/Break-Bipolar-Cycle-Day-Day/dp/0071481532
+ 1 0 Bipolar Disorder: A Guide for the Newly Diagnosed 1 2012 Janelle M. Caponigro and Erica H. Lee and Sheri L Johnson and Ann M. Kring Self-help Bipolar https://www.amazon.com/Bipolar-Disorder-Diagnosed-Harbinger-Guides/dp/1608821811
+ 1 0 The Concise Guide to Bipolar Disorder 1 2022 Francis Mark Mondimore Self-help Bipolar https://www.amazon.com/Concise-Bipolar-Disorder-Hopkins-Health/dp/1421444038
+ 1 0 The Everything Health Guide to Adult Bipolar Disorder: A Reassuring Guide for Patients and Families 1 2014 Dean A Haycock Self-help Bipolar https://www.amazon.com/Everything-Health-Guide-Bipolar-Disorder/dp/1440570132
+ 1 0 Bipolar Disorder: Insights for Recovery 2 2003 Jane Mountain Self-help Bipolar https://www.amazon.com/Bipolar-Disorder-Insights-Jane-Mountain/dp/0971927057/
+ 1 0 Two Bipolar Chicks Guide to Survival: Tips for Living with Bipolar Disorder 1 2014 Wendy Williamson and Honora Rose Self-help Bipolar https://www.amazon.com/Two-Bipolar-Chicks-Guide-Survival/dp/B08ZBJDYWV
+ 1 0 A Brilliant Madness: Living with Manic Depressive Illness 1 1993 Patty Duke and Gloria Hochman Self-help Manic Depression https://www.amazon.com/Brilliant-Madness-Living-Depressive-Illness/dp/0553560727
+ 1 0 Manic-Depressive Illness 2 2007 Frederick Goodwin and Kay Redfield Jamison Textbook Manic Depression https://www.amazon.com/Manic-Depressive-Illness-Disorders-Recurrent-Depression/dp/0195331524
+ 2 0 Mood Genes: Hunting for Origins of Mania and Depression 1 1999 Samuel H. Barondes Reference Manic Depression https://www.amazon.com/Mood-Genes-Hunting-Depression-Paperbacks/dp/0195131061
+ 1 0 Managing Manic Depressive Disorders 1 1997 Ved Varma Self-help Manic Depression https://www.amazon.com/Managing-Manic-Depressive-Disorders-Varma/dp/1853023477/
+ 4 Yes Nutrition and Diet Therapy Reference Dictionary 4 1996 Rosalinda T. Lagua and Virginia S. Claudio Reference Diet https://www.amazon.com/Nutrition-Diet-Therapy-Reference-Dictionary/dp/9401168806
+ 3 Yes The Epilepsy Diet Treatment: An Introduction to the Ketogenic Diet 2 1996 John Mark Freeman and Millicent T. Kelly and Jennifer B. Freeman Self-help Epilepsy https://www.amazon.com/Epilepsy-Diet-Treatment-Introduction-Ketogenic/dp/0939957868/
+ 3 Yes Epilepsy: Problem Solving in Clinical Practice 1 2000 Steven C Schachter and Dieter Schmidt Self-help Epilepsy https://www.amazon.com/Epilepsy-Problem-Solving-Clinical-Practice/dp/1853175048
+ 3 Yes Treating Epilepsy Naturally: A Guide to Alternative and Adjunct Therapies 1 2001 Patricia Murphy Self-help Epilepsy https://www.amazon.com/Treating-Epilepsy-Naturally-Alternative-Therapies/dp/0658013793/
+ 3 Yes Ketogenic Diet Therapies for Epilepsy and Other Conditions 7 2020 Eric Kossoff and Zahava Turner and Mackenzie C. Cervenka and Bobbie J. Barron Self-help Epilepsy https://www.amazon.com/Ketogenic-Therapies-Epilepsy-Conditions-Seventh/dp/0826149588/
+ 3 Yes Epilepsy Across the Spectrum: Promoting Health and Understanding 1 2012 Institute of Medicine Reference Epilepsy https://www.amazon.com/Epilepsy-Across-Spectrum-Promoting-Understanding/dp/0309259533
+ 1 0 Healing Depression & Bipolar Disorder Without Drugs: Inspiring Stories of Restoring Mental Health Through Natural Therapies 1 2006 Gracelyn Guyol Self-help Bipolar https://www.amazon.com/Healing-Depression-Bipolar-Disorder-Without/dp/080271496X/
+ 1 0 The Natural Medicine Guide to Bipolar Disorder: New Revised Edition 2 2011 Stephanie Marohn Self-help Bipolar https://www.amazon.com/Natural-Medicine-Guide-Bipolar-Disorder/dp/1571746560/
+ 1 0 The Bipolar Disorder Answer Book: Professional Answers to More than 275 Top Questions 1 2007 Charles Atkins Self-help Bipolar https://www.amazon.com/Bipolar-Disorder-Answer-Book-Professional/dp/1402210574/
+ 1 0 Bipolar 2: Creating The Right Bipolar Diet & Nutritional Plan to Deal with Bipolar Type II Today 1 2015 Samantha Rose Self-help Bipolar https://www.amazon.com/Bipolar-Creating-Right-Nutritional-Today/dp/1628841370/
+ 1 0 The Tao of Bipolar: Using Meditation and Mindfulness to Find Balance and Peace 1 2013 C. Alexander Simpkins and Annellen M. Simpkins Self-help Bipolar https://www.amazon.com/Tao-Bipolar-Meditation-Mindfulness-Balance/dp/1608822923/
+ 1 0 The Bipolar Advantage 1 2006 Tom Wootton Self-help Bipolar https://www.amazon.com/Bipolar-Advantage-Tom-Wootton/dp/0977442306/
+ 1 0 The Homeopathic Treatment of Depression, Anxiety, Bipolar and Other Mental and Emotional Problems: Homeopathic Alternatives to Conventional Drug Therapy 1 2012 Judyth Reichenberg-Ullman and Robert William Ullman Self-help Bipolar https://www.amazon.com/Homeopathic-Treatment-Depression-Emotional-Problems/dp/0964065401/
+ 2 0 When Screams Become Whispers: One Man’s Inspiring Victory Over Bipolar Disorder 1 2021 Bob Krulish and Alee Anderson Biography Bipolar https://www.amazon.com/When-Screams-Become-Whispers-Inspiring/dp/1631953133/
+ 1 0 Surviving Manic Depression: A Manual on Bipolar Disorder for Patients, Families, and Providers 1 2005 E Fuller Torrey and Michael B Knable Self-help Manic Depression https://www.amazon.com/Surviving-Manic-Depression-Disorder-Providers/dp/0465086640
+ 1 0 Bipolar Disorder: A Guide for You and Your Loved Ones 4 2020 Francis Mark Mondimore Self-help Bipolar https://www.amazon.com/Bipolar-Disorder-Guide-Hopkins-Health/dp/1421439069
+ 1 0 Owning Bipolar: How Patients and Families Can Take Control of Bipolar Disorder 1 2018 Michael G. Pipich Self-help Bipolar https://www.amazon.com/Owning-Bipolar-Patients-Families-Disorder/dp/0806538791
+ 1 0 Understanding and Loving a Person with Bipolar Disorder: Biblical and Practical Wisdom to Build Empathy, Preserve Boundaries, and Show Compassion 1 2018 Stephen Arterburn and Becky Lyke Brown Self-help Bipolar https://www.amazon.com/Understanding-Loving-Person-Bipolar-Disorder/dp/078141492X
+ 1 0 Survival Strategies for Parenting Children with Bipolar Disorder 1 2000 George T. Lynn Self-help Bipolar https://www.amazon.com/Survival-Strategies-Parenting-Children-Disorder/dp/1853029211
+ 1 0.3 Understanding Bipolar Disorder: The Essential Family Guide 1 2020 Aimee Daramus Self-help Bipolar https://www.amazon.com/Understanding-Bipolar-Disorder-Essential-Family/dp/1647390001/
+ 1 0 Bipolar, Not So Much: Understanding Your Mood Swings and Depression 1 2017 James R. Phelps and Chris Aiken Self-help Bipolar https://www.amazon.com/Bipolar-Not-Much-Understanding-Depression-ebook/dp/B01CKZM3A2/
+ 2 0 Burn Rate: Launching a Startup and Losing My Mind 1 2022 Andy Dunn Biography Bipolar https://www.amazon.com/Burn-Rate-Launching-Startup-Losing/dp/0593238265
package.json
Changed around line 18
- "scroll-cli": "^174.1.0"
+ "scroll-cli": "^174.1.1"