source code for html website at https://zachdecook.com
| -rw-r--r-- | devo/Makefile | 8 | ||||
| -rw-r--r-- | devo/devo.md | 54 | ||||
| -rwxr-xr-x | devo/script.sh | 9 |
3 files changed, 58 insertions, 13 deletions
diff --git a/devo/Makefile b/devo/Makefile new file mode 100644 index 0000000..841ecff --- /dev/null +++ b/devo/Makefile @@ -0,0 +1,8 @@ +*.html: *.md + # Split file by header lines + awk '($$1 == "#"){of = $$2 ".md"}{print > of}' devo.md + ls 2*.md | xargs -I{} sh -c 'cat common.md {} |python3 -m markdown -f {}.html' + # perl-rename + rename -f 's/.md.html/.html/' *.md.html + # util-linux rename + # rename .md.html .html *.md.html diff --git a/devo/devo.md b/devo/devo.md index 721e20a..ccafb05 100644 --- a/devo/devo.md +++ b/devo/devo.md @@ -17,7 +17,7 @@ How should we steward that which God has given us charge? learn from God! he wants you to kill the sin in your life. don't live with it! don't say "this is fine." It leads to destruction! -# 2021-04-13 +# 2021-04-13 Faithful honesty Read Luke 16:1-17 > The master commended the dishonest manager because he acted shrewdly. For the people of this world are more shrewd in dealing with their contemporaries than the people of light. And I tell you, make friends for yourselves by how you use worldly wealth, so that when it runs out you will be welcomed into the eternal homes. “The one who is faithful in a very little is also faithful in much, and the one who is dishonest in a very little is also dishonest in much. If then you haven’t been trustworthy in handling worldly wealth, who will entrust you with the true riches? @@ -73,7 +73,7 @@ with assurance that you will answer me. ``` Psalm 86 -# 2021-04-19 +# 2021-04-19 Right affections >Hope deferred makes the heart sick, but a longing fulfilled is like a tree of life. Proverbs 12:14 @@ -88,9 +88,9 @@ Have faith in God! He will be faithful to complete your sanctification, you sain Orthopathy: right affections. God, help me to love you with my whole heart. -# 2021-04-20 +# 2021-04-20 Prophets and false teachers -Read Luke 20 +Read Luke 20:1-26 > [the people] are convinced that John was a prophet. @@ -109,3 +109,49 @@ The *Samaritan* woman in John 4 knew *Jesus* was a prophet, because he told her Jesus said to them "This vineyard is not yours!" You will be destroyed, and it given to others. How much do we put our faith in ourselves? How often do your hear prophecy and think "that message isn't for me, it's for someone else." Hear God's voice of warning, and be God's voice of warning! Even the offspring of vipers needs to be warned about the coming wrath. + +# 2021-04-21 Watch out for wolves + +> As all the people were listening, Jesus said to his disciples, “Beware of the experts in the law. They like walking around in long robes, and they love elaborate greetings in the marketplaces and the best seats in the synagogues and the places of honor at banquets. They devour widows’ property, and as a show make long prayers. They will receive a more severe punishment.” +Luke 20:45-47 + +```poetry +“If his children forsake my law, + and walk not as I have ordained; + if they profane my statutes, + and do not keep my commandments; + + “I will punish their sin with the rod, + their iniquity with scourges. +``` + +Psalm 89 + +> The one who neglects discipline ends up in poverty and shame,but the one who accepts reproof is honored. +Proverbs 13:18 + +Watch out for wolves. They may dress nice, say fancy words, but really do not keep God's commandments. They are neglecting God's discipline. + +Devouring widow's property... what better modern example than the 'health and wealth', 'word of faith', or 'prosperity' "gospels". It's really no "gospel" at all if it requires you to pay for miracles. It's just another Tetzel, selling inulgences. Money cannot grant remission of sins, not even the blood of animals can! + +Only the blood of Jesus can pay for our sins, and only through The Spirit can we be cleansed of unrighteousness. + +There *is* a 'special place in Hell' for those false teachers, in that they *will* have a more severe punishment, but note that for all, "The wages of sin is death". Turn from sin and serve God! Lean on Christ, the author and perfector of our salvation. + +# 2021-04-22 + +> “Now therefore put away the foreign gods which are among you, and incline your heart to Yahweh, the God of Israel.” +> The people said to Joshua, “We will serve Yahweh our God, and we will listen to his voice.” +Joshua 24 + + +# 2021-04-22 + +```poetry +You whose home is the shelter of God Most High, + whose abode is the shadow of God Almighty, +can say to the Lᴏʀᴅ, “My refuge, my fortress, + my God, in whom I trust.” +``` +Psalm 91 + diff --git a/devo/script.sh b/devo/script.sh deleted file mode 100755 index 2511d24..0000000 --- a/devo/script.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh -# Split file by header lines -awk '($1 == "#"){of = $2 ".md"}{print > of}' devo.md - -ls 2*.md | xargs -I{} sh -c 'cat common.md {} |python3 -m markdown -f {}.html' -# perl-rename -rename -f 's/.md.html/.html/' *.md.html -# util-linux rename -# rename .md.html .html *.md.html |