#!/bin/bash

# Title......: seed
# Description: creates a new day for news
# Author.....: Mitchell Johnston - uid 0
# Contact....: mitch@crn.hopto.org
# Updated....: Wed 29 Jan 2025 10:05:17 AM CST
#----------------------------------

# Sections: Changes variables functions setup main data
# use '#' in vi/vim to jump to word under cursor

: ' Changes
Sun Dec 22 2024 Embedded quotes for Ruckman and health
Thu Jan 25 2024 Code clean up and new debug settings
Thu Nov 09 2023 added safeguard based on time window
'

# variables
#----------------------------------
[ "$1" == "-D" ] && DEBUG=1 && shift 1     # -D to turn on debug mode
[ "$DEBUG" == 1 ] && echo "---Variables---" && set -x 
PS4='$SECONDS $LINENO: '                   # debug prompt
DOW=$(date +%a)                            # day of week: Thu
TODAY=$(date +%m/%d)                       # month/day: 03/25
DOM=$(date +%d)                            # day of month: 25
OS=$(uname -s)                             # OS type: SunOS Linux
NAME=${0##*/}                              # name of the script
PIC=$(cd /var/www/include/pics/desktops;ls de*|shuf -n 1) # pic of the day

# Colors - uncomment if needed
R=$(tput setaf 1)                          # red
BR=$(tput setaf 1; tput bold)              # bold red
G=$(tput setaf 2)                          # green
BG=$(tput setaf 2; tput bold)              # bold green
Y=$(tput setaf 3)                          # yellow
BY=$(tput setaf 3; tput bold)              # bold yellow
B=$(tput setaf 4)                          # blue
BM=$(tput setaf 5; tput bold)              # bold magenta
BC=$(tput setaf 6; tput bold)              # bold cyan
C=$(tput setaf 6)                          # cyan
BL=$(tput setaf 7; tput bold)              # bold light grey
BLD=$(tput bold)                           # bold
N=$(tput sgr0)                             # normal
SIT=$(tput sitm)                           # italics
RIT=$(tput ritm)                           # remove italics
UL=$(tput smul)                            # turn underline on
NL=$(tput rmul)                            # turn underline off
RV=$(tput rev)                             # turn on reverse mode
ROWS=$(tput lines)
COLS=$(tput cols)

# functions
#----------------------------------

bl(){ ## write a blank line
    # Use: bl
    [ "$DEBUG" == "1" ] && set -x
    echo ""
}

html(){ ## mark up code
    vim -f +"syn on" +"set nonu" +"set foldenable!" +"set nospell" +"run! syntax/2html.vim" +"wq" +"q" $1
}

log(){ ## creates a basic log entry $LOG must be defined
    # Use: log {entry}  
    [ "$DEBUG" == "1" ] && set -x
    logger -i -t "$NAME" "$*"
}

pause(){ ## simple pause routine
    # Use: pause  {optional number of seconds} or "-nt" for no time out 
    [ "$DEBUG" == "1" ] && set -x
    [ "$1" == "-nt" ] && TMOUT="" && shift
    echo "$BY";
    if [ $# -gt 0 ]
    then
        read -t $1 -r -p "${C}Hit any key (${BY}$1${C} second timeout)${N}" -n 1 FOO;
    else
        read -r -p "${C}Hit any key${N}" -n 1 FOO;
    fi;
    bl
}

strip-tags(){ ## remove HTML tags
  # Use: curl https://linuxhint.com/bash_cut_command/ --silent | strip-tags
  sed -e 's/<[^>]*.//g' -
}

xtitle(){ ## set window title
    # Use: xtitle "Text to display"
    printf "\033]0;%s\007" "$*"
}

version(){ ## display version and change history
    grep -E '^# Updated' $0
    echo " "
    sed -n "/' Changes/,/^ *$/p" <$0 |grep  -E -v 'sed -n|exit 0|}'
    exit 0
}

# setup
#----------------------------------

# this provides a quick way to edit all my scripts on the fly
if [ "$1" == "-E" ]
then
    vim $0
    sed -i -e "7s/.*/# Updated....: $(date)/" $0
    log "Updated $0"
    html $0
    cp $0 /var/www/unix
    mv $0.html /var/www/unix
    exit
fi

# display help if needed
if [ "$1" == "-h" ] || [ "$1" == "--help" ]
then
fmt -s -w $(tput cols) <<END
$NAME

No options

END
exit
fi
# display version and change history
if [ "$1" == "-v" ] || [ "$1" == "--version" ]
then
    version
fi

# listing of required apps
command -v bash >/dev/null || sudo apt install bash -qyy

# Validate it has not been run today
if [ index.md -nt /var/www/include/vids/clips/$(date -d "1 day ago" +%a|  tr "[:upper:]" "[:lower:]")/index.md ]
then
    read -p "Are you sure?" -n 1 ASK
    [ "$ASK" != "Y" ] && exit 1
fi

# main
#--------------------------- 
[ "$DEBUG" == 1 ] && echo "---Functions---" && typeset -F && read -p "${N}-Continue-" -n 1 x
[ "$DEBUG" == 1 ] && echo "---Main---" && set -x

## cartoon's
echo "$(cd /var/www/include/pics/.xkcd;ls *jpg|shuf -n 1)" >/tmp/xkcd.txt
echo "$(grep '^d:' $0 | cut -d':' -f2|shuf -n 1)" >/var/tmp/ctoon.txt
## go to days news, clean old
cd /var/www/include/vids/clips/$(date +%a|  tr "[:upper:]" "[:lower:]")/
\rm $(ls |grep -v header.md|tr "\n" " ")


## create the head.md file with random pic

cat <<EOL >head.md
### Daily desktop:

$(pi $PIC)
EOL

## create tail.md with one random from each category

# The selection is based on day of month, so the first 31 in the list will be used. I left the rest to rotate as needed. I will change this system later.
FAITH=$(grep '^f:' $0 | cut -d':' -f2|sed -n $(date +%e)p)
HEALTH=$(grep '^h:' $0 | cut -d':' -f2|sed -n $(date +%e)p)
PREP=$(grep '^p:' $0 | cut -d':' -f2|sed -n $(date +%e)p)

cat <<EOL >tail.md

### ✒️ $(grep '^rq:' $0 | cut -d':' -f2|shuf -n 1)

<hr class="one"> 

$(pi $FAITH)

- [🎬 More from Peter Ruckman](/archives/ruckman/) 

[🔝](#)
<HR>
 
### ✒️ $(grep '^hq:' $0 | cut -d':' -f2|shuf -n 1)

<hr class="one"> 

$(pi $HEALTH)

- [🎬 More Health](/health/) 

[🔝](#)
<HR>
 
$(pi $PREP)

- [🎬 More Prepping](/prepping)

EOL

### call file when complete
mkindex

log "Seeds planted"
cd -
exit

# vim: nospell ft=sh

## data    (f:Faith,h:health,p:prep,rq:ruckman-quotes,hq:health-quotes)
f:the-prodigal-son-video-unedited.mp4
f:why-christians-suffer-video-unedited.mp4
f:israel-video-unedited.mp4
f:past-present-future.mp4
f:parting-of-the-ways.mp4
f:four-essentials.mp4
f:legendary-kjb-champion-dr.-peter-ruckman-ufos-are-satanic-deviltry.mp4
f:dr-peter-ruckman-study-to-show-thyself-approved-audio-sermon.mp4
f:calvinism-predestination-debate-ruckman.mp4
f:do-we-have-the-scriptures.mp4
f:dr-ruckman-we-must-always-be-on-the-march-to-excellence-fellowsh.mp4
f:ashamed-of-jesus-mark-838.mp4
f:to-do-less-than-best-kjv-conf-1993.mp4
f:spiritual-pretenders.mp4
f:the-jewish-nation-2001.mp4
f:38-things-instantly-happen-when-you-are-saved.mp4
f:dispensational-salvation.mp4
f:he-careth-for-you.mp4
f:the-video-commentary-on-the-book-of-revelation.mp4
f:manuscript-evidence-by-dr.-peter-s.-ruckman.mp4
f:five-surprises-in-hell.mp4
f:can-the-kjb-be-trusted.mp4
f:trust-the-kjv.mp4
f:what-to-do-with-the-bible-1980s.mp4
f:where-do-the-dead-go.mp4
f:assurance-peace-forever-safe.mp4
f:audio-only-mark-of-the-beast.mp4
f:they-believe-not-on-me.mp4
f:the-four-hundred.mp4
f:hypocrites-in-the-church-video-unedited.mp4
f:the-origins-of-the-king-james-bible.mp4
f:the-origins-of-the-kjb-p.2.mp4
f:the-christians-favorite-verse.mp4
f:the-gospel-according-to-daniel.mp4
f:the-rapture-of-the-church-and-the-mark-of-the-b.mp4
f:jesus-christ-hated-without-a-cause.mp4
f:avoid-the-lake-of-fire-the-salvation-of-jesus.mp4
f:gods-program-for-this-age.mp4
f:three-reasons-why-men-reject-christ.mp4
f:rapture-charity-baptist.mp4
f:priesthood-of-the-believer.mp4
f:why-go-on-living.mp4
f:wounded-in-the-house-of-my-friends.mp4
f:why-i-believe-the-kjv.mp4
f:what-to-do-if-you-miss-the-rapture-sermon-by-dr.-peter-s.-ruckman.mp4
f:some-birds-i-have-known-1986.mp4
f:people-like-to-watch-suffering.mp4
f:the-mysteries-of-god-video-edited.mp4
f:peter-s.-ruckman-the-man-in-a-mess.mp4
f:steps-that-lead-to-hell-video-unedited.mp4
f:serpent-of-sin-prayer-baptist-church.mp4
f:the-only-man-who-ever-understood-the-crucifixion.mp4
f:kingdom-of-god-vs.-kingdom-of-heaven.mp4
f:the-three-givers.mp4
f:powerful-peter-ruckmans-testimony-to-jesus-christ.mp4
f:tv-for-christ-inc-presents.mp4
f:god-s-2nd-best.mp4
f:the-heresy-of-hyper-dispensationalism.mp4
f:old-very-rare-lunar-lunatics-by-dr-ruckman-pre-moon-landing.mp4
f:nebuchannezzar-s-dream-charity-baptist-1993.mp4
f:body-soul-spirit.mp4
f:the-bottle.mp4
f:the-heresy-of-calvinism.mp4

h:vitamin-a-and-your-immune.mp4
h:jsom-orthomolecular-medicine-and-coronavirus-disease-historical-basis-for-nutritional-treatment.mp4
h:vitamin-e-the-4-dementias-dr.-joel-wallach.mp4
h:the-ultimate-vitamin-c-crash-course-collagen-hormones-chemistry-more.mp4
h:this-is-what-happens-when-you-gargle-saltwater-for-1-week.mp4
h:a-timeline-of-vitamin-medicine.mp4
h:vitamin-c-cures-disease-but-doctors-and-pharmaceutical-companies-do-not-want-you-to-know-this.mp4
h:dr.-sam-bailey-germ-theory-vs-terrain-theory.mp4
h:unscientific-human-experiments.mp4
h:feed-your-head-orthomolecular-treatment-prevention-for-mental-illness-all-health-problems.mp4
h:false-gods-experts-and-the-death-of-science.mp4
h:niacin-and-vitamin-c.mp4
h:dr.-ken-berry-lies-my-doctor-told-me.mp4
h:how-to-spot-covid-19-misinformation.mp4
h:vitamin-c-basics-full-lecture-dr-suzanne-humphries-md.mp4
h:low-cholesterol-is-dangerous-dr.-natasha-campbell-mcbrid.mp4
h:dr.-mercola-interviews-dr.-andrew-saul.mp4
h:viruses-do-not-cause-disease-dr-sam-bailey.mp4
h:instant-smile-temporary-tooth-kit-how-to-fit.mp4
h:7-signs-of-low-vitamin-a-you-need-to-know-2020.mp4
h:can-we-do-without-pharmaceutical-drugs.mp4
h:if-covid-19-doesnt-exist-what-is-making-people-sick-by-dr.-sam-bailey.mp4
h:the-shocking-truth-about-aspirin.mp4
h:5-spectacular-fails-from-germ-theory.mp4
h:dr.-hoffer-we-re-being-kept-sick-by-mds-not-trained-in-medical-cellular-nutrition-.mp4
h:the-ignored-pandemic-vitamin-d-deficiency.mp4
h:returning-to-ancient-remedies-to-promote-health.mp4
h:tobacco-mosaic-virus-the-beginning-end-of-virology.mp4
h:the-truth-about-antibiotics.mp4
h:gain-of-function-gaslighting.mp4
h:vitamin-therapy-for-mitochondrial-function-prof.-andrew-saul.mp4
h:dr-abram-hoffer.mp4
h:kochs-postulates-germ-school-dropout.mp4
h:andrew-saul-phd-the-miracle-of-vitamin-c.mp4
h:a-doctor-yourself-1995-tv-special.mp4
h:secrets-of-virology-control-experiments.mp4
h:niacinamide-vitamin-b3-benefits.mp4
h:a-lecture-by-andrew-saul-phd.mp4
h:psychiatry-is-fake-they-have-pulled-all-of-these-mental-disorders-right-out-of-there-asses.mp4
h:pcr-the-good-the-bad-and-the-bustin.mp4
h:rhonda-patrick-at-orthomolecular-medicine-congress-in-bussum-netherlands-keynote-oct.-3rd-2015.mp4
h:that-vitamin-movie-2016-andrew-w.-saul-orthomolecular-medicine.mp4
h:niacin-vitamin-b3-brain-benefits.mp4
h:pharmakeia-the-sorcerer-s-wand-occult-origins-nefarious-nature-of-drugs-our-modern-medical-system.mp4
h:how-to-brush-your-teeth-for-healthy-gums-grandmas-toothpaste.mp4
h:ifm-interview-dr.-abram-hoffer-and-dr.-jeffrey-bland.mp4
h:mms-tooth-gum-infection.mp4
h:pfizer-owns-and-distributes-questionnaires-used-to-diagnose-anxiety-and-depression.-910-qualify.mp4
h:our-daily-dose-a-film-by-jeremy-seifert.mp4
h:emergency-tooth-filling-kit-diy-at-home-easy-fix-solution.mp4

p:10-items-to-stockpile-before-hyperinflation-hits.mp4
p:5c-s-of-survivability-quick-run-down.mp4
p:25-edible-plants-fruits-and-trees-for-wilderness-survival.mp4
p:maybe-the-most-important-fire-starting-skill-always-have-flame-.mp4
p:survival-guide-how-to-preserve-meat-in-wilderness.mp4
p:fish-in-a-completely-new-way-with-plastic-bottles-new-trap.mp4
p:wild-food-foraging-pine-spruce-cedar-fir-evergreen-teas.mp4
p:15-survival-uses-for-baking-soda.mp4
p:how-to-survive-hyperinflation-8-essentials-that-could-change-your-life-tips-for-inflation.mp4
p:100-days-worth-of-food-for-100-lasts-25-years.mp4
p:best-home-remedy-for-mosquitoes-coffee-must-watch.mp4
p:why-everyone-should-forage-and-what-to-keep-in-mind.mp4
p:backwoods-mosquito-repellent-and-wound-care-medicinal-plant-yarrow.mp4
p:in-and-out-navigation-the-easiest-way-to-use-a-compass.mp4
p:27-brilliant-uses-health-benefits-of-borax-for-around-the-house.mp4
p:13-things-not-to-do-during-shtf.mp4
p:back-to-basics-episode-sanitation.mp4
p:how-to-pack-a-72-hour-bug-out-bag-for-your-dog.mp4
p:i-hate-grocery-shopping-these-days-so-this-is-what-im-doing.mp4
p:how-to-survive-the-first-90-days-after-the-collapse.mp4
p:urban-survival-concepts.mp4
p:survival-instructor-explains-how-to-find-your-way-out-of-the-woods-if-you-are-lost-new-technique.mp4
p:our-simple-inexpensive-root-cellar-build.mp4
p:budget-prepping-in-a-small-apartment.mp4
p:make-an-emergency-kit-with-a-5-gallon-bucket-diy-prepping-kit.mp4
p:confession-im-a-spice-hoarder.mp4
p:great-depression-lessons-for-the-coming-hard-times.mp4
p:10-amazing-uses-of-baking-soda-in-the-garden.mp4
p:30-food-items-to-make-at-home-to-save-money-and-theyre-healthier-too.mp4
p:10-things-to-never-ever-stockpile-long-term-foods-for-survival-survivle-food-storage.mp4
p:ticks-how-to-deal-with-them.mp4
p:to-drink-or-not-to-drink.mp4
p:how-to-build-a-stealth-fire-and-jet-boil-at-the-same-time-.mp4
p:edible-and-medicinal-plants.mp4
p:how-to-turn-baking-soda-into-washing-soda-simple-stovetop-process.mp4
p:best-survival-food-for-bug-out-bag-7-days-16920-calories.mp4
p:black-scout-tutorials-bugout-clothing-what-to-wear-when-bugging-out.mp4
p:ultra-lightweight-bug-out-bag-and-survival-kit-bugoutbag-survivalkit.mp4
p:what-to-do-when-the-toilet-paper-is-gone.mp4
p:my-urban-bugout-bag-2020.mp4
p:10-tips-for-apartment-preppers.mp4
p:16-lbs-of-food-to-keep-you-alive-crucial-prepper-pantry-food-items.mp4
p:8-things-you-must-know-to-survive-the-coming-crisis.mp4
p:when-the-s.h.t.f.-and-its-time-to-g.t.f.o.-live-from-the-lair.mp4
p:20-wilderness-survival-tips-and-bushcraft-skills.mp4
p:15-survival-foods.mp4
p:top-10-grid-down-apartment-preps-survival-camping-prepping-gear.mp4
p:quick-run-down-of-the-final-5-c-s-of-the-10-pc-kit.mp4
p:survival-instructor-discusses-how-to-teach-knife-handling-skills.mp4
p:make-your-own-water-filter-and-never-buy-drinking-water-again.mp4
p:urban-survival-prepping-tips-you-need-to-learn-now.mp4
p:how-a-special-forces-medic-sets-up-his-ifak-individual-first-aid-kit-tactical-rifleman.mp4
p:fieldcraft-resistance-operations-as-a-small-group-or-individual.mp4
p:this-is-the-most-inexpensive-way-to-store-food-for-a-long-time.mp4
p:black-scout-tutorials-shelter-considerations-during-ee.mp4
p:survival-trees-chestnut-pine-willow.mp4
p:the-survival-skill-of-making-fire-in-the-rain.mp4
p:preparing-for-a-food-shortage-the-old-fashioned-way.mp4
p:10-military-wilderness-bushcraft-survival-skills-in-10-minutes.mp4
p:how-to-cook-dried-beans-and-lentils-on-the-stove-top.mp4

d:/pics/abell/abell-001.jpg
d:/pics/abell/abell-002.jpg
d:/pics/abell/abell-003.jpg
d:/pics/abell/abell-004.jpg
d:/pics/abell/abell-005.jpg
d:/pics/abell/abell-006.jpg
d:/pics/abell/abell-007.jpg
d:/pics/abell/abell-009.jpg
d:/pics/abell/abell-010.jpg
d:/pics/abell/abell-011.jpg
d:/pics/abell/abell-012.jpg
d:/pics/abell/abell-013.jpg
d:/pics/abell/abell-014.jpg
d:/pics/abell/abell-015.jpg
d:/pics/abell/abell-016.jpg
d:/pics/abell/abell-017.jpg
d:/pics/abell/abell-018.jpg
d:/pics/abell/abell-019.jpg
d:/pics/abell/abell-020.jpg
d:/pics/abell/abell-021.jpg
d:/pics/abell/abell-022.jpg
d:/pics/abell/abell-023.jpg
d:/pics/abell/abell-024.jpg
d:/pics/abell/abell-025.jpg
d:/pics/abell/abell-026.jpg
d:/pics/abell/abell-027.jpg
d:/pics/abell/abell-028.jpg
d:/pics/abell/abell-029.jpg
d:/pics/abell/abell-030.jpg
d:/pics/abell/abell-031.jpg
d:/pics/abell/abell-032.jpg
d:/pics/abell/abell-033.jpg
d:/pics/abell/abell-034.jpg
d:/pics/abell/abell-035.jpg
d:/pics/abell/abell-036.jpg
d:/pics/abell/abell-037.jpg
d:/pics/abell/abell-038.jpg
d:/pics/abell/abell-039.jpg
d:/pics/abell/abell-040.jpg
d:/pics/abell/abell-041.jpg
d:/pics/abell/abell-042.jpg
d:/pics/abell/abell-043.jpg
d:/pics/abell/abell-044.jpg
d:/pics/abell/abell-045.jpg
d:/pics/abell/abell-046.jpg
d:/pics/abell/abell-047.jpg
d:/pics/abell/abell-048.jpg
d:/pics/abell/abell-049.jpg
d:/pics/abell/abell-050.jpg
d:/pics/abell/abell-051.jpg
d:/pics/abell/abell-052.jpg
d:/pics/abell/abell-053.jpg
d:/pics/abell/abell-054.jpg
d:/pics/abell/abell-055.jpg
d:/pics/abell/abell-056.jpg
d:/pics/abell/abell-057.jpg
d:/pics/abell/abell-058.jpg
d:/pics/abell/abell-059.jpg
d:/pics/abell/abell-060.jpg
d:/pics/abell/abell-061.jpg
d:/pics/abell/abell-062.jpg
d:/pics/abell/abell-063.jpg
d:/pics/abell/abell-064.jpg
d:/pics/abell/abell-065.jpg
d:/pics/abell/abell-066.jpg
d:/pics/abell/abell-067.jpg
d:/pics/pace/10.2307-community.30769212-1.jpg
d:/pics/pace/10.2307-community.30769227-1.jpg
d:/pics/pace/10.2307-community.30769230-1.jpg
d:/pics/pace/10.2307-community.30769231-1.jpg
d:/pics/pace/10.2307-community.30769242-1.jpg
d:/pics/pace/10.2307-community.30769245-1.jpg
d:/pics/pace/10.2307-community.30769259-1.jpg
d:/pics/pace/10.2307-community.30769262-1.jpg
d:/pics/pace/10.2307-community.30769283-1.jpg
d:/pics/pace/10.2307-community.30769284-1.jpg
d:/pics/pace/10.2307-community.30769286-1.jpg
d:/pics/pace/10.2307-community.30769287-1.jpg
d:/pics/pace/10.2307-community.30769293-1.jpg
d:/pics/pace/10.2307-community.30769299-1.jpg
d:/pics/pace/10.2307-community.30769301-1.jpg
d:/pics/pace/10.2307-community.30769302-1.jpg
d:/pics/pace/10.2307-community.30769306-1.jpg
d:/pics/pace/10.2307-community.30769309-1.jpg
d:/pics/pace/10.2307-community.30769313-1.jpg
d:/pics/pace/10.2307-community.30769314-1.jpg
d:/pics/pace/10.2307-community.30769317-1.jpg
d:/pics/pace/10.2307-community.30769318-1.jpg
d:/pics/pace/10.2307-community.30769320-1.jpg
d:/pics/pace/10.2307-community.30769339-1.jpg
d:/pics/pace/10.2307-community.30769340-1.jpg
d:/pics/pace/10.2307-community.30769350-1.jpg
d:/pics/pace/10.2307-community.30769351-1.jpg
d:/pics/pace/10.2307-community.30769353-1.jpg
d:/pics/pace/10.2307-community.30769354-1.jpg
d:/pics/pace/10.2307-community.30769358-1.jpg
d:/pics/pace/10.2307-community.30769359-1.jpg
d:/pics/pace/10.2307-community.30769363-1.jpg
d:/pics/pace/10.2307-community.30769370-1.jpg
d:/pics/pace/10.2307-community.30769374-1.jpg
d:/pics/pace/10.2307-community.30769376-1.jpg
d:/pics/pace/10.2307-community.30769378-1.jpg
d:/pics/pace/10.2307-community.30769380-1.jpg
d:/pics/pace/10.2307-community.30769382-1.jpg
d:/pics/pace/10.2307-community.30769385-1.jpg
d:/pics/pace/10.2307-community.30769394-1.jpg
d:/pics/pace/10.2307-community.30769404-1.jpg
d:/pics/pace/10.2307-community.30769406-1.jpg
d:/pics/pace/10.2307-community.30769407-1.jpg
d:/pics/pace/10.2307-community.30769408-1.jpg
d:/pics/pace/10.2307-community.30769409-1.jpg
d:/pics/pace/10.2307-community.30769418-1.jpg
d:/pics/pace/10.2307-community.30769420-1.jpg
d:/pics/pace/10.2307-community.30769432-1.jpg
d:/pics/pace/10.2307-community.30769440-1.jpg
d:/pics/pace/10.2307-community.30769441-1.jpg
d:/pics/pace/10.2307-community.30769448-1.jpg
d:/pics/pace/10.2307-community.30769450-1.jpg
d:/pics/pace/10.2307-community.30769456-1.jpg
d:/pics/pace/10.2307-community.30769457-1.jpg
d:/pics/pace/10.2307-community.30769458-1.jpg
d:/pics/pace/10.2307-community.30769462-1.jpg
d:/pics/pace/10.2307-community.30769463-1.jpg
d:/pics/pace/10.2307-community.30769465-1.jpg
d:/pics/pace/10.2307-community.30769466-1.jpg
d:/pics/pace/10.2307-community.30769467-1.jpg
d:/pics/pace/10.2307-community.30769468-1.jpg
d:/pics/pace/10.2307-community.30769471-1.jpg
d:/pics/pace/10.2307-community.30769473-1.jpg
d:/pics/pace/10.2307-community.30769481-1.jpg
d:/pics/pace/10.2307-community.30769487-1.jpg
d:/pics/pace/10.2307-community.30769503-1.jpg
d:/pics/pace/10.2307-community.30769518-1.jpg


rq:“The Bible does not need to be rewritten…it needs to be reread!” -Peter S. Ruckman
rq:“Simplicity is truth’s most becoming garb.” -Peter S. Ruckman
rq:“Over-simplification,” however, is the big cliché used by immoral, educated people who spend their lives searing their consciences and trying to invent alibis for sin. -Peter S. Ruckman
rq:Ruckman’s law: “If hit don’t make sense, they’s a buck in it.” -Peter S. Ruckman
rq:A thorough knowledge of the Bible is worth more than a college education.” -Peter S. Ruckman
rq:The purpose of all higher education (Christian or pagan) is to produce the maximum amount of uncertainty in absolute and final authority. -Peter S. Ruckman
rq:Do you know who America’s greatest enemy is? It is God. -Peter S. Ruckman
rq:Higher education and the press destroyed the country. It isn’t “going,” it is gone. -Peter S. Ruckman
rq:A man is the sum of what he loves and fears. -Peter S. Ruckman
rq:If it does not make sense, theirs a buck in it. -Peter S. Ruckman
rq:Evil communication corrupts good manners -Peter S. Ruckman
rq:AIDS Alexandrian Idiots Degrading Scripture -Peter S. Ruckman
rq:Any text without a context, is a pretext. -Peter S. Ruckman
rq:A wolf professing to be a sheep cannot absolve himself from the charge of hypocrisy. -Peter S. Ruckman
rq:courage is fear that has said its prayers. -Peter S. Ruckman
rq:E2(less)S=D Education without salvation is damnation. -Peter S. Ruckman
rq:Egotism is the hypodermic that God allows unbelievers to kill the pain. -Peter S. Ruckman
rq:“Every BAD thing on earth is a GOOD thing—twisted.” -Peter S. Ruckman
rq:“From Puddle to Paradise: the Modern “Pilgrim’s Progress.” -Peter S. Ruckman
rq:God is God without man, but man with out God is NOTHING! -Peter S. Ruckman
rq:Hear about the thinker who got lost in thought because it turned out to be UNFAMILIAR territory? -Peter S. Ruckman
rq:History, as such, turns out to be man groping forward, killing his fellow man in an effort to attain a form of government where he will not have to kill his fellow man. -Peter S. Ruckman
rq:If you don’t have an education, you must use your brain. -Peter S. Ruckman
rq:If your Bible teacher doesn’t accept the Authorized Version as the Holy Bible, he is in agreement with Satan on that point; I don’t know on what other points they disagree. -Peter S. Ruckman
rq:If you’re going to insist on having an open mind, then someone is certain to throw some garbage into it. -Peter S. Ruckman
rq:I’m not looking for a sign. I’m listening for a sound. -Peter S. Ruckman
rq:In a day of Illusions and utter confusions, we base our conclusions on our delusions. -Peter S. Ruckman
rq:It might be well to review a basic rule of intelligence. It is this: “Things different are not equal.” -Peter S. Ruckman
rq:My problem is not homophobia (fear of homosexuals); it is homonausea: Queers make me sick. -Peter S. Ruckman
rq:Never tie God and the Bible to your theology. You had better tie your theology to God and the Bible. Relative to absolute authority. -Peter S. Ruckman
rq:Secular education leads to the maximum uncertainty -Peter S. Ruckman
rq:Six thousand years of war, dictators, and genocides haven’t made the slightest dent on the collective conscience of mankind. -Peter S. Ruckman
rq:The depravity of man, in full bloom. -Peter S. Ruckman
rq:“The only thing that men learn from history is that men never learn from history.” -Peter S. Ruckman
rq:“The place where OPTIMISM most flourishes is the LUNATIC ASYLUM.” -Peter S. Ruckman
rq:Three in one, one in three, the one in the middle died for me. -Peter S. Ruckman
rq:Wanna go to Heaven when you die? Trust the Lord Jesus Christ. Wanna go to Hell when you die? Trust something else: anything else. -Peter S. Ruckman
rq:“When nations smoke peace pipe, no one inhales.” -Peter S. Ruckman
rq:“Yea hath God said Society?” Is as old as mankind. It is as old as sin, death, and Hell. -Peter S. Ruckman
rq:You don’t get back to the Bible; you catch up with it, if you can. -Peter S. Ruckman

hq:Health Food: Beef, Butter, Bacon, and Eggs!
hq:As much as we have tried to fuse science with medicine, much of the practice of medicine is not scientifically based. Much of what the physician does in practice is dictated by authority. –F.H.K. Green et al, Lancet, 1954
hq:One man’s meat is another man’s poison -Hippocrates
hq:Let thy food be thy medicine -Hippocrates
hq:Keep every patient’s secrets confidential -Hippocrates
hq:Give patients no deadly poisons -Hippocrates
hq:You can trace every sickness, every disease, and every aliment, ultimately to a mineral deficiency -Linus Pauling
hq:First do no harm -Hippocrates
hq:I want to make it clear here that chlorine dioxide can’t cure every disease, especially one of the most wide-spread illnesses among humans: stupidity. -Andreas Kalcker
hq:I tested positive for critical thinking
hq:The hardest part of “two weeks to flatten he curve”, is the first two years.
hq:The only thing mutating is the lies.
hq:Question: How do they test drugs on animals for cancer, obesity, etc…? They induce the conditions into the lab animals. They know the causes, they do not want to cure anything, they want to profit from your misery. Vaccines are designed to increase revenue, causing more conditions, just like pharmaceuticals. You will never be well going to the people who make money off of you being sick.
hq:I would not vaccinate my dog, I love my dog.
hq:If you can pretend your mask works, you can also pretend I’m wearing one
hq:I almost caught Covid yesterday, but I quickly stood on a social distancing sticker and put an end to the stuff!
hq:I never thought I would see a time when so many people were so afraid of dying that they were willing to stop living.
hq:You Wear A Mask For So Long, You Forget Who You Were Beneath It. -V for Vendetta
hq:Covid-19(84) Nothing’s More Unattractive than a “muzzled-up” Obedient Man Mask
hq:He who wears mask alone in a car… Also wears condom alone in bed.
hq:Live in a big city? I would get out before it looks like a scene from Invasion of the Body snatchers, and they open their mouths, say something intelligible, and point you out.
hq:White House staff, Centers for Disease Control and Prevention (CDC) and Food and Drug Administration (FDA) employees, Moderna and Pfizer employees, congressional staff and illegal immigrants are exempt from President Joe Biden’s COVID-19 vaccine mandate.
hq:“Physicians who are free with their drugging keep themselves busy treating the effects of the drugs.” Herbert Shelton ND DC
hq:“Doctors are men who prescribe medicines of which they know little, to cure diseases of which they know less, in human beings of whom they know nothing.” -Voltaire
hq:Are you a member of DAM? (Mothers Against Dyslexia)
hq:We have assisted suicide in this country, it’s called “Health Care”.
hq:“Diseases are crises of purification, of toxic elimination.” -Hypocrites, 500 BC
hq:“disease”, the word simply means a lack of ease.
hq:Do you suffer from FLC (fell like crap)? Maybe you are doing it wrong, fire your doctor!
hq:Dr. Roger J. Williams said, “When in doubt, use nutrition first”.
hq:“Eat nothing unless it will spoil or rot - but eat it before it does.”
hq:“If people let government decide what foods they eat and what medicines they take, their bodies will soon be in as sorry a state as are the souls of those who live under tyranny.” -Thomas Jefferson
hq:If the mask work… ⇾ Why the six feet? ⇾ If the six feet works… ⇾ Why the masks? ⇾ If they BOTH work… ⇾ Why the lockdowns? ⇾ If all three work… ⇾ Why the rushed vaccines? ⇾ if the Vaccines are safe, why the “No Liability” Clause?
hq:“Imagine a vaccine so safe, you must be FORCED by the government to take it. So that you can be protected from a disease, that you must be tested for to even know if you have it!”
hq:Imagine a virus, so deadly that is doesn’t affect those who don’t care.
hq:In America, we are sick until proven healthy for a virus with a 99.9% survival rate. Think about that for 15 minutes and how twisted that premise is.
hq:“Most people are aging because they are walking cesspools. They are literally rotting and decaying from the inside out.” –Victor Earl Irons
hq:RDA for vitamin C is 10% of USDA standard for guinea pigs.
hq:Take enough C to be symptom free, whatever the amount might be.
hq:Thank you, Government, for protecting me from a flu by completely destroying my livelihood, my job, my income, my marriage, my family, my health, my freedoms and liberties! Thanks a lot!
hq:“The best doctors in the world are Dr. Diet, Dr. Quiet, and Dr. Merryman.” -JONATHAN SWIFT
hq:The MEDIA is the Virus, PEOPLES BEHAVIOR is the Pandemic, COMMON SENSE is the Cure.
hq:The real pandemic is how stupid everyone is.
hq:Top nutrients people are deficient in: D3, Zinc, Iodine, C, Magnesium, and boron (all relate to the immune system)
hq:“We are all afraid of germs because we are all ignorant of them. Germs are outside. What we should be afraid of is lowered resistance, which comes from within. The folly of our topsy-turvy notion leads too much preventable confusion and despair. Instead of developing a proper respect for our own extraordinary powers, conferred upon us by God, we endow germs with unnatural powers which they should not possess.” -Dr. Charles H. Mayo, M.D.
hq:When you don’t know the reason why, always take the K and I.
hq:Fauci is an asymptomatic, good person.