Skip to content

Instantly share code, notes, and snippets.

@artlung
Last active August 29, 2015 14:03
Show Gist options
  • Save artlung/f4b517b95406bf008d43 to your computer and use it in GitHub Desktop.
Save artlung/f4b517b95406bf008d43 to your computer and use it in GitHub Desktop.
Increment numbers in a file using PHP or Python
<?php
header("Content-Type: text/plain"); // so I can run this on a webserver and return raw text
// file() reads a file into an array of lines http://us3.php.net/manual/en/function.file.php
$lines=file("NewIndexcopy2.txt");
$increment_by_this_many = 8;
$tmp_numeric = "";
foreach ($lines as $line):
// http://us2.php.net/strlen
for ($i=0;$i<strlen($line);$i++):
// http://us2.php.net/substr
$char = substr($line, $i, 1);
// http://us2.php.net/is_numeric
if (is_numeric($char)):
$tmp_numeric .= $char;
else:
if (strlen($tmp_numeric) > 0):
// http://us2.php.net/intval
print intval($tmp_numeric) + $increment_by_this_many;
endif;
print $char;
$tmp_numeric = "";
endif;
endfor;
endforeach;
if (strlen($tmp_numeric) > 0):
print intval($tmp_numeric) + $increment_by_this_many;
endif;
from __future__ import print_function
import sys
filename = "NewIndexcopy2.txt"
tmpchars = ""
increment_value = 8
# read each line in a file
with open(filename, 'r') as f:
data = f.readlines()
# read each line
for line in data:
for c in line:
# save the digits in a temp string
if c.isdigit():
tmpchars = tmpchars + c
else:
# if not a digit, dump the temp string, incremented
if (len(tmpchars) > 0):
incremented_val = int(tmpchars) + increment_value
# see http://stackoverflow.com/a/4499172/63094 for more on print ("", end='')
print (incremented_val, end='')
sys.stdout.write(c)
tmpchars = ""
# all done with loops, dump the last one
if (len(tmpchars) > 0):
incremented_val = int(tmpchars) + increment_value
print (incremented_val, end='')
Abundance 8, 132, 195
Acetaldehyde 143, 144
Acetylcholine 104
Acetylcysteine 143
Ache(s)(ing) 3, 5, 22, 49, 50, 60, 62, 66, 69, 75, 114, 137, 145
Achor, Shawn Achor 33, 241
Acidic 84, 85
Acidifying 149, 183, 184
Acupressure 45, 47, 122
Acupuncture 45, 47, 122, 130
Addict(ed)(ing)(tion)(s)65, 68, 105, 119, 135, 144
ADHD 87, 99
Adrenal(s) 50, 76, 78, 81, 82, 111, 139, 151, 153, 155, 177, 180, 188
Adrenaline 31, 41, 42, 78, 50, 154, 155
Affirmation(s) 18, 27, 37, 38, 39 40, 42, 51, 60, 86, 91, 96, 107, 108, 132, 149, 151, 192, 194, 195, 196
Afformmation(s) 37, 38, 39, 107, 132, 149, 192, 194, 195, 196
Agave Nectar 66, 67
Alanine 177
Alcohol(ic)(ism) 4, 25, 57, 65, 66, 71, 119, 121, 135, 143, 144, 177, 183, 188
Alkaline(izing) 82, 84, 85, 149, 182, 183, 185
Allergic 22, 77, 82, 141
Allergies(gy) 3, 5, 57, 77, 99, 141, 185, 188, 241
Aloe Vera 143
Alpha Lipoic Acid 26, 83
Alzheimer's 67, 100, 104
Amino(s) 66, 76, 81, 82, 83, 135, 140, 141, 149, 175, 177, 181, 215, 220, 223, 225, 226, 237
Aminobutryic Acid 105
Amygdala 107
Amyotrophic 176
Analgesics 130
Anatomic Response 153
Anger(y) 39, 46, 97, 99, 100, 107, 108, 113, 114, 120, 132, 180, 199
Antacid(s) 141
Anthraquinone 143
Antibacterial 47, 101
Antibiotic(s) 3, 4, 83, 90, 101, 140, 142
Antidepressant(s) 4, 99, 103, 104, 105, 125, 126, 130 109
Antioxidant(s) 25, 79, 88, 177, 185
Antipsychotics 105
Anxiety 42, 87, 99, 100, 101, 132, 144, 175, 177, 202
Apoptosis 26, 64, 177
Arginine 177
Aromatherapy 107, 108
Aromatic(ally) 47, 87, 151, 152
Arthritis 5, 23, 110, 175, 188
Asparagine 177
Aspartame 65, 176
Aspartate 83
Aspartic 65, 178
Attitude 39, 129, 154
Authentic(ally) 33, 38, 41, 198, 199
Autism 100
Autoimmune 4, 5, 8, 19, 49, 50, 78, 110, 188
Autonomic Nervous System 45, 50, 107, 111, 149, 154, 161
Ayurveda 53
Bacteria(l) 47, 66, 80, 82, 100, 101, 139, 140, 142, 143, 153, 154, 184, 185
Balance(d)(r, s)(ing)17, 21, 23, 24, 32, 45, 47, 53, 58, 62, 65, 69, 76, 77, 84, 88, 91, 103, 118, 137, 140, 151, 175, 203
Balasana 46
Behavior(al)(s) 65, 70, 76, 93, 95, 99, 101, 113, 120, 131, 175
Belief(s) 17, 37, 38, 39, 40, 54, 96, 125, 126, 129, 132, 149, 152, 194, 195, 197
Believe(d)(s) 3, 4, 7, 18, 23, 34, 37, 48, 64, 71, 80, 96, 103, 105, 109, 118, 121, 125, 135, 136, 137, 147, 193
Beneficial 10, 17, 47, 51, 85, 89, 90, 100, 135, 140, 142, 185
Benzodiazepines 99, 105
Bifidobacteria 185
Biome, Gut 100
Bipolar 3, 5, 99, 105, 110
Blackstrap Molassas 67, 142, 182, 234
Bloating 11, 57, 66, 83, 141, 142, 185, 188
Blood-Brain Barrier 65, 87, 177
Bowel 66, 99, 100
Brain 3, 4, 8, 9, 10, 11, 13, 19, 21, 31, 32, 33, 34, 35, 37, 38, 42, 45, 50, 51, 53, 62, 63, 64, 65, 68, 69, 70, 71, 77, 78, 87, 88, 91, 95, 99, 100, 101, 102, 103, 104, 105, 107, 108, 119, 120, 121, 122, 125, 126, 129, 130, 136, 144, 149, 151, 152, 154, 155, 175, 177, 180, 185, 188
Breath(e)(ing)(s) 5, 10, 26, 31, 34, 40, 42, 47, 49, 50, 51, 54, 76, 79, 96, 107, 119, 120, 122, 133, 135, 139, 141, 142, 144, 149, 151, 180, 188, 192, 196, 197, 199, 200, 202, 203
Bromelain 84
Brown, Brene 33, 241
Bupropion 105
Burping 69, 188
Caffeine 10, 25, 57, 71, 72, 73, 76, 78, 135, 144, 181
Calcium 59, 67, 78, 138, 144, 175, 181, 185, 199
Calm(ing) 76, 106, 151, 152, 199, 201
Calories(s) 51, 61, 63, 65, 136
Cancer(s) 4, 13, 19, 26, 65, 72, 77, 82, 110, 144, 188
Candida 57, 70, 142, 143, 144, 152, 185
Cane, Sugar 66, 177, 181
Canola, Oil 61
Caprylic Acid 143
Carb(s) 76, 135, 155, 188, 199
Carbohydrate(s) 66, 72, 76, 122, 153, 181
Carbon 73, 80, 153, 154
Carcinogen(s) 26, 65, 185
Carnitine 83, 175
Carotene 185
Central Nervous System 72, 99, 103, 131, 154, 177, 178, 179
Chakras 53, 149, 200, 241
Chelation 175, 177
Choline 48
Chronic 1, 5, 7, 15, 19, 21, 23, 26, 46, 49, 50, 58, 59, 60, 62, 63, 66, 77, 89, 100, 105, 129, 130, 175, 177, 188
Chronically 7, 23, 25, 26, 49, 54, 58, 59, 61, 66, 70, 72, 78, 80, 81, 82, 90, 99, 101, 103, 175, 177
Circulation 49, 50, 59, 69, 142, 177
Circulatory 79, 88, 110, 149, 151, 153, 157, 244
Cleanse 59, 62, 87, 139, 140, 151, 184
Codependence 113
Coffee 4, 62, 71, 72, 73, 78, 117, 143, 144, 155, 183, 200, 213, 233, 234
Cognitive 99, 100, 101, 177
Colitis 188
Colon 66, 153
Compassion(ate) 42, 91, 114
Constipation 100, 141, 142, 188
Contraindications 87
Coping 110, 132, 137, 144
Cortex(s) 31, 33, 125, 129
Cortisol 32, 42, 50, 72, 155, 188
Cranial 24, 101, 104, 197
Cranialsacral 45, 47, 85
Craving(s) 1, 57, 64, 68, 70, 71, 75, 76, 77, 78, 86, 122, 123,137, 144, 149, 181, 185, 188
Creatinine 175
Cruciferous 26, 76, 101, 141, 143, 181, 233
Cultures 182, 185, 239
Cysteine 26, 83, 177
Cytokine(s) 19, 25, 129, 130
Deficiencies(y) 25, 131, 141, 175, 177, 188
Dehydrated 3, 137, 184, 188
Depressant(s) 101, 103
Depressed(ing) 5, 23, 25, 39, 41, 71, 100, 117, 141, 199
Depression 3, 5, 19, 67, 85, 87, 99, 100, 103, 104, 105, 126, 132, 144, 175, 177, 188
Detox(ed)(es)(ify) 17, 25, 26, 70, 135, 137, 139, 140, 142, 154, 177, 185,
Detoxing 1, 11, 62, 63, 75, 81, 103, 137, 139, 142, 143, 144, 175, 177, 193
Diabetes 19, 41, 65, 72, 77, 83, 105, 136, 144, 188
Diarrhea 5, 22, 66, 100, 101, 142, 175, 185
Diary, Food 9, 57, 71, 101, 141, 192
Digest(ed)(ing) 9, 11, 57, 58, 59, 60, 61, 62, 63, 65, 66, 68, 69, 70, 72, 75, 76, 77, 79, 81, 82, 83, 84, 86, 89, 90, 101, 102, 110, 122, 141, 143, 155, 188, 192, 200
Digestion 20, 53, 58, 59, 75, 78, 79, 82, 83, 84, 88, 101, 105, 144, 149, 154, 155, 156, 181, 185, 188
Digestive 5, 57, 59, 69, 75, 82, 83, 84, 90, 105, 139, 140, 141, 142, 149, 153, 158, 185, 188
Disease(s) 4, 8, 17, 19, 41, 45, 46, 49, 50, 53, 64, 67, 77, 78, 80, 100, 104, 109, 110, 121, 129, 153, 175, 177, 188
Disorder(ed)(s) 3, 4, 5, 99, 100, 103, 109, 129, 175, 177
Diuretic(s) 72, 137
DNA 53, 65, 80, 81, 87, 100, 131, 151
Doctor(s) 1, 4, 8, 9, 10, 14, 15, 7, 17, 21, 22, 24, 27, 49, 81, 87, 100, 103, 105, 106, 109, 110, 125, 140, 184
Dopamine 33, 68, 99, 100, 101, 103, 105, 144, 177
Dorsal Horn 129
Drug(s) 7, 13, 14, 17, 21, 68, 99, 101, 103, 104, 105, 109, 119, 125, 154, 183, 188
Dysplasia 190
Ear(s) 104, 106, 123, 142, 173
Eden, Donna 29, 48, 241
Electrolyte(s) 76, 77, 145, 192
EMDR 47
Emotion(s) 9, 25, 41, 42, 45, 53, 70, 78, 93, 95, 99, 107, 122, 132, 152, 175, 180
Emotional(ly) 3, 7, 25, 45, 47, 57, 78, 85, 97, 107, 108, 119, 121, 122, 129, 151, 152, 155, 188, 193, 202
Endocrine(ology)15, 21, 41, 78, 82, 99, 149, 152, 153, 154, 155, 159, 200, 244, 245
Endorphin(s) 32, 47, 50, 51, 76, 99, 121, 122, 123, 125, 126, 129, 136
Energetic(ally) 10, 15, 21, 31, 47, 53, 54, 88, 151, 180, 185
Energies 53, 241
Energy 1, 5, 8, 9, 10, 11, 17, 21, 24, 25, 26, 29, 31, 32, 33, 34, 37, 38, 39, 41, 45, 46, 47, 48, 49, 51, 53, 54, 58, 60, 62, 64, 65, 73, 76, 77, 78, 85, 90, 91, 96, 97, 113, 120, 126, 130, 132, 136, 137, 149, 153, 155, 175, 177, 180, 185, 188, 192, 196, 199, 200, 201, 202, 203, 204, 241
Enkaphalin(s) 47, 99, 129
Enteric 50, 100, 101, 154
Enzyme(s) 14, 26, 59, 66, 69, 81, 82, 83, 84, 90, 100, 140, 141,144, 177, 185
Epigenetic(s) 131, 132
Esophageal Sphincter 140
Essential Oils 9, 13, 14, 15, 17, 26, 27, 42, 47, 48, 57, 70, 72, 77, 79, 87, 88, 89, 90, 103, 107, 108, 122, 123, 127, 130, 135, 137, 139, 140, 141, 142, 143, 144, 145, 151, 152, 180, 181, 188, 193, 196, 199, 200, 229, 232, 233, 234, 235, 236, 237, 241, 244, 245, 246, 247, 248, 249
Essential Oil Blossom 42, 108, 151
Estrogen(s) 82, 175, 188
Excitotoxin(s) 67, 83, 175, 241
Exercise(s)(ing) 1, 10, 21, 24, 25, 27, 33, 46, 47, 49, 50, 51, 54, 71, 103, 126, 127, 135, 139, 149, 175, 177, 188, 196, 197, 199
Fat, Body 19, 61, 62, 63, 64, 67, 77, 78, 119, 135, 136, 137, 185, 188, 191
Fat, Cooking 24, 61, 71, 72, 73, 122, 135, 181, 182, 192, 199, 200, 217, 218, 222, 232, 234, 238
Fats 61, 62, 63, 69, 71, 76, 77, 78, 120, 122, 135, 136, 153, 155, 177, 181, 183, 188
Fatty Acid 62, 63, 64, 70, 71, 77, 84, 136, 175, 188, 245
Feeling(s) 3, 4, 5, 7, 9, 21, 22, 23, 24, 25, 31, 33, 34, 35, 38, 39, 40, 41, 42, 43, 45, 46, 53, 54, 57, 59, 71, 72, 75, 79, 84, 89, 90, 91, 96, 100, 107, 109, 110, 113, 120, 121, 122, 126, 129, 132, 141, 142, 144, 177, 192, 193, 196, 197, 199, 202
Ferment(ed)(ing) 13, 20, 57, 66, 67, 75, 82, 83, 84, 90, 101, 102, 140, 141, 143, 144, 175, 177, 182, 185, 188, 192, 200, 213, 216, 220, 225, 230, 235, 239, 241
Fibromyalgia 5, 7, 110, 111
Food 1, 3, 5, 9, 10, 11, 17, 20, 21, 22, 24, 25, 26, 27, 31, 37, 39, 42, 55, 57, 58, 59, 60, 61, 63, 64, 66, 67, 68, 69, 70, 71, 72, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 88, 89, 90, 91, 99, 100, 101, 102, 103, 105, 107, 110, 117, 120, 121, 122, 123, 126, 135, 136, 137, 140, 141, 142, 144, 149, 153, 155, 175, 177, 181, 182, 183, 184, 185, 188, 192, 199, 200, 224, 226, 228, 241,
Forgive(n)(ness)(ing)21, 91, 96, 97
Formaldehyde 65
Fructose 64, 65, 66, 67, 68, 77, 249
Fungal(s) 67, 80, 142, 143
GABA 105
Galactose 65
Galactosides 82
Gallbladder 62
Gallstones 188
Gas 11, 59, 60, 66, 82, 101, 141
Gastrointestinal 99, 101
Gene(s) 27, 80, 126, 131, 132, 135
Generational(ly) 1, 25, 131, 132, 152
Generations 105, 131
Genetic(s)(ally) 61, 64, 66, 80, 100, 131
GERD 140
Gland(s) 45, 75, 78, 107, 111, 121, 153, 154, 177, 188
Glucose 63, 64, 65, 67, 72, 177, 199
Glutamate 67, 83, 99
Glutamine 66, 177, 181
Glutathione 25, 26, 90, 143
Gluten 9, 58, 70, 100
Glycine 175, 177
Glycogen 64
Glycoside 67
GMO(S) 58, 59, 60, 61, 63, 67, 70, 80, 82, 83, 84, 185, 246
Grain(s) 9, 24, 57, 58, 59, 60, 66, 68, 70, 76, 79, 81, 82, 85, 135, 141, 175, 177, 183, 185, 188, 226
Granulocytes 19
Gratitude 91
Grief 41, 121, 132, 151, 180
Guar Gum 70, 77
Gut(s) 1, 9, 11, 20, 22, 34, 35, 40, 50, 57, 70, 71, 79, 82, 84, 90, 99, 100, 101, 102, 113, 120, 121, 126, 135, 136, 140, 141, 142
Habit(s) 11, 24, 35, 39, 71, 84, 85, 95, 96, 113, 114, 120, 137
Happier 69, 75, 118, 120
Happiness 32, 33, 34, 91, 99, 110, 118, 241, 246
Happy 25, 26, 31, 32, 33, 39, 53, 54, 61, 70, 75, 104, 114, 118, 126, 136, 137, 140, 198
Headache(s) 4, 5, 50, 64, 65, 66, 67, 69, 70, 71, 72, 75, 142, 154, 155, 185, 192
Heal(s) 3, 5, 7, 10, 13, 17, 23, 25, 27, 31, 38, 41, 45, 49, 53, 57, 61, 62, 63, 69, 72, 78, 79, 81, 83, 84, 87, 88, 89, 90, 99, 101, 102, 107, 108, 110, 113, 121, 127, 141, 155, 175, 177, 188, 192, 197
Healed 84, 122, 129
Healer(s) 21, 45, 46, 47, 48, 54, 130, 200
Healing 1, 3, 5, 7, 9, 10, 14, 15, 17, 18, 23, 24, 25, 26, 27, 31, 37, 38, 42, 45, 46, 47, 49, 50, 57, 58, 60, 62, 69, 70, 78, 79, 81, 82, 83, 85, 87, 88, 89, 90, 99, 101, 102, 105, 107, 108, 110, 111, 120, 121, 123, 125, 126, 127, 131, 132, 135, 136, 142, 144, 145, 151, 152, 155, 193, 194, 196, 197, 202, 203, 241
Health 1, 3, 5, 8, 11, 18, 23, 25, 45, 53, 61, 70, 72, 78, 80, 91, 95, 99, 101, 106, 107, 109, 111, 113, 132, 143, 185, 188, 193, 196, 199, 241
Healthier 27, 42, 50, 77, 80, 85, 118, 120, 132
Healthiest 241
Healthy 4, 5, 10, 20, 25, 26, 34, 39, 49, 51, 58, 61, 62, 63, 64, 70, 72, 75, 77, 83, 95, 97, 101, 102, 111, 114, 118, 135, 137, 144, 149, 175, 177, 185, 199, 202
Heartburn 140, 155, 188
Hemorrhoids 188
Hemp 60, 175, 183
Herb(al)(s) 1, 14, 15, 71, 72, 79, 87, 88, 89, 90, 103, 135, 144, 182, 188, 218, 219, 233, 241, 246
Herxheimer Reaction 143
HFCS 64, 66
Holistic 5, 14, 90, 110, 125
Homeopath(ic)(y) 13, 14, 15, 21, 23, 27, 89
Homeostasis 50, 107, 135, 246, 249
Honey 13, 14, 64, 66, 68, 71, 142, 181, 184, 219, 222, 223, 232, 236, 246, 249
Hormonal(ly) 57, 70, 137, 149, 188, 199
Hormone(s) 21, 25, 46, 62, 63, 64, 70, 72, 75, 77, 82, 83, 100, 101, 102, 103, 105, 107, 131, 152, 153, 154, 155, 175, 177, 188
Hydrate(d) 27, 54, 72, 89, 96, 137, 142, 145, 181, 184, 188, 192, 199
Hydrating 135, 137, 138, 139, 140, 142, 144, 192, 200, 246
Hydrochloric Acid (HCI) 81, 140, 141
Hydroxylase 126, 246
Hyman, Mark 26, 241, 246
Hypothalamus 45, 107, 108, 110, 111, 122, 136, 137, 180
imbalance(s) 13, 17, 21, 46, 57, 64, 69, 70, 104, 121, 185
Immune 4, 5, 7, 8, 15, 19, 20, 25, 26, 32, 41, 42, 45, 46, 49, 62, 78, 79, 81, 88, 91, 95, 99, 100, 110, 117, 126, 129, 130, 149, 153, 154, 155, 160, 175, 177, 185
Indigestion 140, 151, 175
Infertility 188
Inflammation 1, 3, 11, 15, 19, 20, 21, 25, 26, 49, 50, 57, 59, 60, 61, 63, 65, 66, 70, 77, 78, 81, 82, 83, 85, 89, 100, 101, 129, 139, 141, 142, 151, 152, 185, 188
Inflammatory 79, 87, 89, 90, 153, 177, 185
Insulin 64, 65, 66, 72, 77, 81, 177, 185, 246
Intention(al)(ally)(s) 10, 14, 37, 41, 59, 72, 91, 95, 120, 121, 125, 130, 132, 145, 151, 198
Intestinal 19, 20, 70, 99, 140, 141, 143, 175, 177, 185
Intestine(s) 15, 19, 26, 57, 58, 59, 60, 66, 75, 82, 86, 90, 100, 102, 105, 135, 140, 141, 143, 153, 154, 180, 185, 188
Intuition 8, 17, 31, 32, 33, 34, 42, 53, 198
Inulin 66, 247
Joint(s) 5, 19, 21, 37, 49, 57, 64, 129, 137, 151, 177, 188, 196
Journal(ing) 4, 33, 34, 38, 91, 100, 131, 132, 196, 197
Joy(ful) 9, 10, 32, 33, 34, 39, 91, 110, 114, 117, 180, 241
Juicing 59, 60, 213, 233, 247
Kaizen, Be 18, 20, 24, 27, 35, 40, 43, 48, 51, 54, 68, 73, 86, 91, 97, 102, 106, 108, 111, 115, 118, 123, 127, 130, 133, 138, 144
Kidney(s) 15,21, 64, 65, 77, 88, 139, 142, 144, 154, 155, 175, 177, 180, 183, 200
Kresser, Chris 140, 241
Lactobacilli 185
Lecithin 77, 83
Leptin 64, 67
Leucine 47, 175
Leukocytes 153
Lewy Bodies 100
Limbic System 45, 47, 107, 122, 129
Linoleic Acid 77
Lipogenesis 64, 247
Lipoic Acid 26, 83
Liposuction 136
Liver 25, 26, 63, 64, 65, 67, 82, 100, 110, 121, 131, 136, 139, 143, 151, 152, 153, 154, 175, 177, 180, 184, 185, 188, 196, 200, 201, 213, 216, 217
Lung(s) 5, 14, 21, 45, 50, 100, 154, 180, 196
Lupus 5, 7, 8, 15, 110, 151, 241
Lymph 4, 5, 142, 153, 154, 185, 200
Lymphatic System 88, 142, 149, 153, 162
Lysine 82, 175
Macrophages 19
Magnesium 59, 66, 67, 77, 78, 90, 137, 138, 141, 144, 145, 181, 199
Malnutrition 11, 90, 132, 141
Manganese 67, 181
Manic 3, 5, 100, 105
MAOI(s) 105
Maple Syrup 67, 68, 181, 219
Maps 106, 123, 145, 149, 151
Medicate(tion)(tions)(OTC) 4, 5, 7, 8, 13, 14, 15, 17, 23, 46, 69, 87, 100, 103, 104, 105, 106, 125, 139, 141, 142, 184, 188, 244, 245, 247
Medicine(al) 1, 13, 27, 29, 45, 55, 57, 60, 66, 79, 81, 90, 100, 241
Meditate(ing)(tion)(tive) 26, 34, 42, 45, 76, 96, 103, 107, 120, 126, 130, 192, 199 200, 246, 247
Memory 65, 99, 104, 105, 107, 131, 136, 144, 175, 188
Menopause 188
Mental 1, 3, 5, 7, 8, 9, 11, 25, 45, 83, 87, 95, 96, 97, 99, 100, 101, 105, 106, 108, 110, 117, 119, 122, 129, 137, 175, 177, 185, 188
Meridian(s) 26, 45, 145, 199, 200
Metabolism 63, 72, 136, 139, 153, 175, 177, 180, 188
Metabolize(d)(ing) 65, 66, 67, 77, 175, 177
Methionine 83, 175
Methylene 73
Microflora 101
Micronutrients 137
Migraines 67
Mind 1, 3, 5, 7, 10, 11, 15, 17, 18, 20, 21, 22, 25, 26, 31, 33, 37, 38, 39, 45, 47, 57, 59, 60, 62, 63, 69, 70, 71, 76, 85, 86, 93, 95, 99, 108, 114, 119, 121, 126, 142, 147, 185, 192, 196, 241
Mineral(s)(ize) 54, 58, 59, 66, 67, 75, 78, 81, 89, 90,, 122, 141, 153, 175, 137, 182, 199, 243
Modalities, Healing 9, 24, 47, 193, 197
Molasses 67, 68, 142, 177, 181, 182, 234
Molecule(s) 17, 25, 26, 64, 65, 66, 87, 95, 241
Monoterpenes 87, 151
Monounsaturated Fat 62, 63
Monsanto 80
MPD 5
MRSA 14
Mucosa, Intestinal 99
Mucus 46, 140, 153, 185
Muscle(s) 21, 23, 32, 41, 45, 47, 48, 49, 50, 51, 54, 64, 72, 75, 78, 79, 81, 87, 99, 100, 101, 104, 129, 136, 137, 141, 145, 149, 153, 154, 163, 175, 177, 188, 192, 199, 204
Myelin Sheaths 175, 177
Nausea(ted) 65, 69, 101, 151, 175
Nerve(s) 4, 19, 50, 51, 53, 62, 99, 100, 101, 104, 129, 144, 149, 154, 169,175, 177,
Nervous System 31, 45, 50, 72, 79, 99, 100, 101, 103, 104, 107, 111, 121, 129, 130, 149, 153, 154, 161, 164, 175, 177, 185, 244, 247
Neuron(s)(al) 11, 45, 70, 78, 99, 100, 120, 122, 131, 175
Neuropeptides 95, 99
Neurotransmitter(s) 99, 103, 104, 105, 175, 177, 121, 129, 141, 149, 171, 175, 177, 185, 244, 245, 247, 248
Nitric Acid 64, 99
Nitrogen 76, 90, 175, 177, 181
Nociceptors 129
Norepinephrine 99, 103, 104, 105, 177
Nutrient(s) 19, 58, 59, 60, 62, 63, 65, 66, 69, 75, 81, 82, 86, 89, 90, 99, 101, 122, 135, 141, 153, 177, 188, 192
Nutrition(ous)(al)(ally) 1, 10, 11, 24, 55, 58, 60, 61, 67, 75, 80, 89, 131, 140, 177, 229
Obesity 5, 19, 41, 64, 67
OCD 99, 122
Oleic Acid 77
Omega(s) 63, 71, 83, 248
Opiate 65, 68, 95, 122, 144
Opioid 125
Organ(s) 8, 13, 15, 19, 21, 26, 29, 31, 45, 49, 50, 51, 59, 62, 63, 65, 69, 83, 123, 129, 135, 137, 139, 144, 145, 149, 151, 153, 154, 155, 168, 170, 175, 177, 180, 183, 185, 188, 196, 244
Organic(ally) 10, 50, 57, 61, 63, 66, 77, 80, 81, 82, 83, 88, 90, 122, 151, 185, 199, 215, 216, 218, 219, 233, 234, 236, 239
Osteoporosis 66, 141, 188
Overall Body Support 1, 18, 71, 103, 149, 192
Overeat(ing) 41, 75, 181
Oxygen(ate)(ated)(ating)(ation) 19, 21, 26, 46, 49, 50, 51, 81, 122, 135, 136, 139, 142, 144, 153, 154, 155, 188, 192, 197, 199
Pain(ful)(s) 1, 5, 7, 8, 13, 17, 19, 21, 22, 41, 45, 47, 53, 57, 64, 65, 75, 79, 85, 88, 101, 105, 107, 109, 114, 122, 125, 126, 127, 129, 130, 132, 140, 145, 151, 152, 175, 188, 202
Palmitoleic Acid 77
Panic 49, 99
Papain 84
Paranoia(oid) 175, 180
Parasite(s)(itic) 5, 19, 59, 142, 241
Parasympathetic 31, 45, 50, 154
Parathyroids 153
Passion(ate)(s) 1, 33, 117, 118, 193, 198
Pathogen(s) 80, 154
Pee(ing) 139, 142
Pepsin 81, 140
Peptides 95
Pert, Dr. Candace 93, 95, 241
PH Level 154, 155, 185
Pharmacology 14, 100, 101, 104
Phenylalanine 65, 175
Phenylpropanoids 87, 151
Phosphorus 67, 77, 90, 181
Phytic Acid 59, 60, 141
Pituitary 107, 111, 153, 177, 180, 188
PKU 175
Placebo 1, 17, 125, 126, 127, 130, 192
PMS 144, 188
Polarity 1, 53, 54, 97, 192, 199, 200, 201, 204
Poo(p, ed)(ing) 19, 58, 78, 80, 81, 96, 120, 121, 139, 140, 141, 142, 143, 245, 248
Positive(ly)(ity) 1, 5, 8, 10, 31, 32, 33, 34, 37, 38, 39, 40, 41, 43, 49, 51, 53, 91, 95, 96, 103, 109, 120, 126, 132, 133, 135, 137, 147, 192, 195, 199, 200, 241
Potassium 66, 67, 77, 90, 122, 138, 181, 199
Pregnancy 4, 106, 136, 188
Probiotic(s) 13, 14, 20, 82, 90, 101, 102, 140, 141, 142, 149, 182, 185, 188, 192, 229, 232, 234, 237, 241, 246, 248
Progesterone 188
Prostate 77
Protein(s) 14, 19, 47, 57, 58, 59, 60, 62, 63, 64, 67, 69, 70, 71, 76, 78, 79, 81, 82, 83, 84, 86, 89, 99, 100, 107, 120, 122, 129, 131, 135, 140, 141, 143, 144, 149, 153, 154, 155, 177, 181, 182, 183, 185, 192, 199, 233
Psychosis, Psychotic 105, 175
PTSD 107, 129
Puberty 136
PUFA(S) 63
Pulling, Oil 141, 142
Purines 64
Radiation 13, 177, 188
Radicals, Free 26, 50, 63
Receptor(s) 17, 25, 87, 95, 100, 102, 103, 104, 105, 122, 125, 129, 151
Reflexology 106, 123, 145, 149, 151
Reflux 140
Reiki 24, 45, 47, 197, 241
Respiratory 46, 149, 153, 154, 165
Saccharine 65
Saponins 66, 248
Saturated Fat 62, 63, 77
Schizophrenia 105, 175
Science-y 5, 19, 25, 49, 50, 63, 64, 65, 70, 72, 87, 89, 99, 107, 119, 121, 131, 136, 151
Seizures 104
Selenium 26, 67, 122, 137, 181, 188
Serotonin 68, 76, 99, 100, 101, 103, 104, 105, 121, 126, 144, 155, 175, 177
Sesquiterpenes 87, 151
Shame(ing) 17, 33, 41, 62, 76, 85, 103, 105, 109, 110, 119, 120, 121
Silymarin 143
Skin 21, 23, 40, 45, 47, 62, 77, 81, 82, 84, 87, 88, 107, 129, 139, 142, 145, 149, 151, 153, 154, 171, 175, 177, 188, 213, 218, 219, 220, 238
Sleep(iness)(ing)(y) 17, 23, 25, 26, 27, 42, 60, 69, 72, 78, 79, 87, 90, 91, 99, 104, 105, 135, 143, 152, 180, 188, 192, 199, 200
Smell(ed)(ing)(s) 48, 61, 72, 82, 86, 87, 88, 89, 90, 104, 107, 108, 122, 144, 154
Smile(ing) 31, 32, 38, 40, 51, 122, 133, 137, 192
Snack(ing)(s) 48, 63, 75, 199, 200
SNRI(S) 104
Sodium 76, 77, 81, 138, 181, 199
Somatic Nervous System 104
Somatosensory 129
Soothe(d)(ing) 41, 49, 62, 85, 88, 89, 114, 142, 145, 156, 200
Sorbitol 65
Spasms 141
spice(s) 71, 79, 86, 89, 182, 188, 217, 218, 219, 223, 226, 227, 228, 235, 241
Spinal 99, 101, 104, 121, 129, 130
Spine 88, 149, 151, 167
Spleen 153, 177, 180, 200
SSRI(S) 104, 105
St John, Noah 37, 241
Stevia 67
Stomach(ache)(aches)(s) 3, 5, 13, 21, 22, 37, 50, 57, 58, 59, 60, 66, 69, 71, 72, 75, 81, 82, 83, 84, 86, 90, 100, 101, 102, 105, 107, 108, 110, 122, 140, 141, 142, 143, 154, 155, 177, 180, 185, 188, 233
Stress(ed)(es)(ful) 26, 33, 41, 45, 46, 47, 51, 72, 83, 85, 99, 103, 107, 121, 131, 132, 135, 136, 137, 141, 154, 155, 177, 188, 199
Sucralose 65
Sucrose 64, 65, 66, 67
Sugar(s)(y) 13, 26, 57, 59, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 76, 77, 81, 82, 88, 101, 103, 120, 121, 122, 125, 135, 136, 137, 142, 143, 144, 149, 155, 175, 177, 181, 183, 185, 188, 199, 220, 237, 241
Sulfate 90, 145
Sulfur 25, 26, 76, 175
Sulfuric Acid 26
Supplement(s) 1, 17, 21, 23, 24, 26, 47, 63, 82, 87, 89, 90, 102, 122, 135, 137, 140, 141, 143, 155, 177, 188, 192, 193
Support 1, 10, 11, 15, 17, 18, 23, 26, 37, 43, 45, 54, 78, 79, 89, 105, 106, 109, 110, 111, 114, 119, 120, 121, 137, 139, 141, 143, 149, 151, 152, 153, 154, 155, 156, 175, 188, 192, 193, 196, 197, 198, 199, 200, 201
Sweetener(s) 65, 66, 67, 72, 183
Sympathetic Nervous System 45, 50, 154
Synapse(s) 95, 96, 97, 104, 149, 171
Synthetic(s) 17, 32, 34, 58, 65, 69, 75, 77, 83, 87, 100, 101, 103, 105, 130, 135
Tardive Dyskinesia 105, 175
Taurine 83
Thalamus 129
Therapeutic 89
Therapies 13, 14, 15, 45, 46, 47, 105
Therapist 15, 21, 23, 46
Therapy 4, 21, 46, 47, 53, 100, 188, 197, 200
Thiamin 67, 181
Threonine 175
Thymus 40, 78, 79, 144, 151, 153, 177, 200
Thyroid 5, 63, 78, 81, 82, 152, 153, 177, 180, 188, 200, 241
Topical(ly) 47, 87, 143, 151, 152, 245, 249
Toxic(ity)(s) 13, 25, 26, 62, 64, 65, 75, 80, 82, 83, 90, 101, 107, 137, 139, 141, 142, 151, 153, 175, 177, 188
Toxin(s) 26, 45, 46, 59, 62, 76, 82, 83, 101, 107, 137, 139, 141, 142, 143, 145, 188, 193
Trauma(s)(tic) 9, 13, 19, 21, 41, 46, 47, 108, 130, 131, 132
Tricyclic (TCAs) 104, 105
Trigger(ed)(ing)(s) 4, 26, 45, 50, 62, 63, 66, 75, 76, 77, 78, 95, 100, 107, 129, 132, 188
Triglycerides 62, 64, 67, 136
Trypsin 81
Tryptophan 126, 175, 177
Tummies(y) 58, 60, 69, 82, 155, 188
Tumors 19, 46
Turmeric 79, 89, 188
Tyrosine 177
Ulcer(s) 41, 155
Undigested 57, 83, 141, 188
Uplifting 32, 88, 151, 152
Uric Acid 64, 83
Urine(ary)(ate)(ing) 3, 5, 27, 77, 89, 90, 137, 139, 140, 149, 153, 154, 168, 184, 192, 244, 245, 249
USDA 65
Vagus Nerve 50, 51, 99, 100, 101, 144, 149, 169
Validate(ing)(tion) 7, 8, 9, 17, 23, 109, 110
Valine 175
Valium 99, 105
Veins 32, 88, 131, 137, 153, 188
Vibrate(ing)(tional)(tions) 25, 26, 38, 39
Virus(es) 14, 25, 46, 100, 154, 154
Visualize(ation)(ing) 8, 17, 26, 42, 108, 192, 196, 202
Vitamin(s) 47, 58, 59, 62, 66, 75, 78, 82, 83, 88, 89, 90, 122, 137, 143, 144, 153, 155, 175, 181, 185, 188, 199
Vulnerable(ility) 33, 34, 180
Water 13, 20, 27, 53, 57, 61, 66, 69, 72, 73, 77, 81, 86, 87, 96, 121, 137, 138, 139, 145, 151, 153, 154, 181, 182, 184, 188, 192, 193, 199, 204, 213, 217, 221, 224, 225, 227, 229, 230, 231, 232, 233, 234, 235, 236
Weight 1, 4, 5, 11, 33, 38, 42, 49, 50, 51, 61, 62, 67, 77, 82, 117, 122, 126, 135, 136, 137, 152, 185, 188, 202, 218
Wellness 9, 10, 13, 18, 25, 32, 34, 59, 60, 86, 102, 111, 147, 188, 196, 197, 241
Wheat 9, 58, 59, 70, 80, 182, 183
Whey 60, 175, 177, 182
Withdrawals 64, 75
Xanax 99, 105
Xanthum Gum 70, 77
Xylitol 65, 66
Xylose 64, 249
Yang/Yin 53, 200
Yeast 67, 76, 101, 143, 175, 177, 181
Yoga 21, 24, 45, 46, 50, 51, 54, 90, 91, 122, 142, 197
Zinc 59, 66, 67, 81, 83, 144, 181
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment