The Small Church Music website was founded in the year 2006 by Clyde McLennan (1941-2022) an ordained Baptist Pastor. For 35 years, he served in smaller churches across New South Wales, Victoria and Tasmania. On some occasions he was also the church musician.
As a church organist, Clyde recognized it was often hard to find suitable musicians to accompany congregational singing, particularly in small churches, home groups, aged care facilities. etc. So he used his talents as a computer programmer and musician to create the Small Church Music website.
During retirement, Clyde recorded almost 15,000 hymns and songs that could be downloaded free to accompany congregational singing. He received requests to record hymns from across the globe and emails of support for this ministry from tiny churches to soldiers in war zones, and people isolating during COVID lockdowns.
TMJ Software worked with Clyde and hosted this website for him for several years prior to his passing. Clyde asked me to continue it in his absence. Clyde’s focus was to provide these recordings at no cost and that will continue as it always has. However, there will be two changes over the near to midterm.
To better manage access to the site, a requirement to create an account on the site will be implemented. Once this is done, you’ll be able to log-in on the site and download freely as you always have.
The second change will be a redesign and restructure of the site. Since the site has many pages this won’t happen all at once but will be implement over time.
def calculate_car_affordability(monthly_take_home, monthly_debts, down_payment, trade_in_value=0, interest_rate=0.07, term_months=60): # Rule of thumb: 10% to 15% of take-home pay for car payment max_monthly_payment = monthly_take_home * 0.15 # Simple loan formula: P = (PMT * (1 - (1 + r)^-n)) / r monthly_rate = interest_rate / 12 loan_amount = (max_monthly_payment * (1 - (1 + monthly_rate)**-term_months)) / monthly_rate total_car_price = loan_amount + down_payment + trade_in_value return round(total_car_price, 2), round(max_monthly_payment, 2) # Example for a typical user price, payment = calculate_car_affordability(5000, 500, 3000) print(f"Price: {price}, Payment: {payment}") Use code with caution. Copied to clipboard
: ~$30,000–$35,000 (assuming a $6,000 down payment and a 5-7% interest rate). Critical Affordability Factors how much car can i afford to buy
: Put down at least 20% of the purchase price to avoid "gap" issues where you owe more than the car is worth. To determine how much car you can afford,
To determine how much car you can afford, financial experts generally recommend the as a baseline for a healthy budget. The 20/4/10 Rule payment = calculate_car_affordability(5000
For a precise estimate based on current interest rates, you can use the Car Affordability Calculator from or check your credit score's impact on rates at Experian .
def calculate_car_affordability(monthly_take_home, monthly_debts, down_payment, trade_in_value=0, interest_rate=0.07, term_months=60): # Rule of thumb: 10% to 15% of take-home pay for car payment max_monthly_payment = monthly_take_home * 0.15 # Simple loan formula: P = (PMT * (1 - (1 + r)^-n)) / r monthly_rate = interest_rate / 12 loan_amount = (max_monthly_payment * (1 - (1 + monthly_rate)**-term_months)) / monthly_rate total_car_price = loan_amount + down_payment + trade_in_value return round(total_car_price, 2), round(max_monthly_payment, 2) # Example for a typical user price, payment = calculate_car_affordability(5000, 500, 3000) print(f"Price: {price}, Payment: {payment}") Use code with caution. Copied to clipboard
: ~$30,000–$35,000 (assuming a $6,000 down payment and a 5-7% interest rate). Critical Affordability Factors
: Put down at least 20% of the purchase price to avoid "gap" issues where you owe more than the car is worth.
To determine how much car you can afford, financial experts generally recommend the as a baseline for a healthy budget. The 20/4/10 Rule
For a precise estimate based on current interest rates, you can use the Car Affordability Calculator from or check your credit score's impact on rates at Experian .