Living paycheck to paycheck today is normal, and that is NOT “OK”!
What could you do with all your money if you could actually keep most of your paycheck? With Dave Ramsey’s Financial Peace University, you CAN take control of your money.
If you’re interested in taking control of your finances instead of giving away most of your hard earned money right now we have a free public workshop at Adult Life Training, Inc. on the beautiful ALC campus, 3301 E Coliseum Blvd, Fort Wayne, IN 46805.
There is a different money topic each week and groups start Monday, Thursday, or Friday October 7, 10, or 11, 2019 at 7:00PM. Register and if you do not already have them buy your class materials here. Bring your workbook to class as we will watch the video then do the examples in class. We dismiss by 9:00PM. There will be coffee. You may bring church-appropriate snacks to share.
in the Community Room at Adult Life Training, Inc.
“The rich rules over the poor, and the borrower is Slave to the lender. ” (Prov 22:7) You work too hard to give everything you earn to other people and get to the end of your life and have nothing. You need to get off the lender plantation. Financial Peace University will show you how.
Join me in the Community Room at Adult Life Training, Inc. 3301 E Coliseum Blvd, Fort Wayne, IN on the beautiful ALC campus starting October 7, 2019 at 7:00PM: we’ll learn how to beat debt and make a plan for the future . . . with common sense, practical steps you can do! No fees, no tricks!
“Hope deferred makes the heart sick, But when the desire comes, it is a tree of life.” (Prov 13:12)
With Dave Ramsey’s Financial Peace University, you CAN take control of your money. If you are interested in taking control of your finances instead of giving away most of your hard earned money join us at our free public workshop at Adult Life Training, Inc. on the beautiful campus of Abundant Life Church, 3301 E Coliseum Blvd, Fort Wayne, IN 46805.
There is a different money topic each week and the group starts Monday October 7, 2019 at 7:00PM. Register and if you wish you can buy class materials from Ramsey Solutions at https://www.fpu.com/1095639. Bring your work book to class as we will watch the video then do the examples in class. We dismiss by 9:00PM. There will be coffee. You may bring family-appropriate snacks to share. There are computers and marker boards to keep your youth and little ones happily occupied.
Lesson Schedule
Baby Step 1 & Budgeting
10/07/2019
7:00 PM
Baby Step 2
10/14/2019
7:00 PM
Baby Step 3
10/21/2019
7:00 PM
Baby Steps 4, 5, 6, & 7
10/28/2019
7:00 PM
Buyer Beware
11/04/2019
7:00 PM
The Role of Insurance
11/11/2019
7:00 PM
Retirement Planning
11/18/2019
7:00 PM
Real Estate & Mortgages
11/25/2019
7:00 PM
Outrageous Generosity
12/02/2019
7:00 PM
There is no question that this process called Financial Peace University works: the only question is whether you are going to be involved.
Register on-line at https://www.fpu.com/1095639. If you already have a book you don’t need to buy another, and families should all use the one book together.
P.S. Know someone who could benefit from Financial Peace University? Bring a friend! This video will help them learn more about it. Classes are FREE. Ramsey Solutions has very good materials and web access that will help, but if you cannot afford those COME ANYWAY and we’ll sort it out later! The free registration link is https://www.fpu.com/1095639. If you can’t afford their materials just send me an email with the Email a Question button and come.
DIRECTIONS: from your map app find 3301 E Coliseum Blvd, Fort Wayne, IN 46805. Come in at door #4, which is right by the Community Room. Just turn a bit to the right after you enter and you’ll see us!
This free public workshop has been underwritten by a generous grant from the 3Rivers Federal Credit Union Foundation. 3Rivers is Here for you: here for good. If you’re ready to start a lifelong banking relationship with a local organization you can trust, then 3Rivers is for you. https://www.3riversfcu.org/
DISCLAIMER: Ramsey Solutions does sell a membership kit, which does give you on-line access to class videos, forums, and many useful monetary resources. We recommend each family have one Ramsey Membership Kit, HOWEVER they are not required and you may attend class for free. You may still come to class and learn even if you do not have a membership kit: Adult Life Training is a public charity that helps the community without charge, and receives no financial benefit from your buying anything from Ramsey.
The following script is intended to run on your file server that collects data to distribute to your network. Safety is built in to prevent contacting NOAA weather.gov more than one time per hour. The data comes in .xml format and contains the recommended time to collect the data, per each region. Information on what files to request can be found by much digging and a visit to XML Feeds of Current Weather Conditionshttps://w1.weather.gov/xml/current_obs/ and NWS Public Alerts in XML/CAP and ATOM Formatshttps://alerts.weather.gov/ combined with close attention to the browser URL when you look at your weather on weather.gov.
#!/bin/bash
# pull weather from weather.gov
# But ONLY IF it has not been pulled recently
# weather is updated once per hour & recommended time to pull is hour+15
# program cron accordingly
# last_update: 20170826 JDN
#
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
# define minimum time lapse before new pull is permitted
declare -i MINAGE=22
echo 'Min age' $MINAGE
# calculate time lapsed since last pull
if [ -f wwraw.xml ];
then
declare -i LAPSE=$(( ( $(date +%s) - $(stat wwraw.xml -c %Y)) / 60 ))
echo 'Lapse' $LAPSE
else
declare -i LAPSE=999
fi
# allow override of command line parameter #1 is --force
if [ -n "$1" ]; then declare -i FORCE=1; else declare -i FORCE=0; fi
echo force is $FORCE
#log outside IP
echo "OpenDNS/Google" $(dig +short myip.opendns.com @resolver1.opendns.com) / $(dig TXT +short o-o.myaddr.l.google.com @ns1.google.com) >wwraw.xme
# calculate if pull is permitted (boolean)
DOPULL=$(( $LAPSE >= $MINAGE ))
echo dopull is $DOPULL
# test time lapse vs. minimum time lapse to allow pull or override
# Check if file older
if [[ $(($DOPULL + $FORCE)) -gt 0 ]]; then
# debugging message output if pull was performed
echo "File was pulled $LAPSE minutes ago. Pulling new weather data"
# get surface observations
# file will have date / time from weather.gov
wget -q --output-document="wwraw.xml" http://w1.weather.gov/xml/current_obs/KFWA.xml
# mark file with current time to prevent hammering weather.gov
touch wwraw.xml
# get weather alerts
wget -q --output-document="walerts.xml" http://alerts.weather.gov/cap/wwaatmget.php?x=INC003&y=0
else
# debugging message output if pull was not performed
echo "File was pulled $LAPSE minutes ago. Ignoring request to pull again."
fi
#cleanup
unset FORCE
unset DOPULL
unset MINAGE
unset LAPSE
exit 0
You must be logged in to post a comment.