diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0b0f04b7..691e3cad 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,27 +1,30 @@ name: "Test Today's Scripture!" on: - # so we can manually run a test also + # Allow manual execution workflow_dispatch: jobs: - build: - runs-on: [ubuntu-20.04] + test-daily-scripture: + runs-on: ubuntu-22.04 + steps: - name: Setup gitHub User Details - env: - GIT_USER: ${{ secrets.GIT_USER }} - GIT_EMAIL: ${{ secrets.GIT_EMAIL }} - GPG_USER: ${{ secrets.GPG_USER }} - GPG_KEY: ${{ secrets.GPG_KEY }} - SSH_KEY: ${{ secrets.SSH_KEY }} - SSH_PUB: ${{ secrets.SSH_PUB }} - run: | - /bin/bash <(/bin/curl -s https://raw.githubusercontent.com/vdm-io/github-user/master/src/setup.sh) --gpg-key "$GPG_KEY" --gpg-user "$GPG_USER" --ssh-key "$SSH_KEY" --ssh-pub "$SSH_PUB" --git-user "$GIT_USER" --git-email "$GIT_EMAIL" - - name: Clone Master Repositry + uses: octoleo/git-user@v2 + with: + gpg-key: ${{ secrets.GPG_KEY }} + gpg-user: ${{ secrets.GPG_USER }} + ssh-key: ${{ secrets.SSH_KEY }} + ssh-pub: ${{ secrets.SSH_PUB }} + git-user: ${{ secrets.GIT_USER }} + git-email: ${{ secrets.GIT_EMAIL }} + + - name: Clone Master Repository run: | /bin/git clone git@github.com:trueChristian/daily-scripture.git daily_scripture - - name: Build the Daily Scripture + + - name: Build the Daily Scripture (Dry Run) run: | cd daily_scripture /bin/bash ./src/today.sh --dry + diff --git a/.github/workflows/today.yml b/.github/workflows/today.yml index 1c7a5fb3..c904866c 100644 --- a/.github/workflows/today.yml +++ b/.github/workflows/today.yml @@ -1,31 +1,34 @@ name: "Load Today's Scripture!" on: - # run once per/day + # Run once per day at 22:07 UTC schedule: - cron: '7 22 * * *' - # so we can manually run a test also + # Allow manual execution workflow_dispatch: jobs: - build: - runs-on: [ubuntu-20.04] + load-daily-scripture: + runs-on: ubuntu-22.04 + steps: - name: Setup gitHub User Details - env: - GIT_USER: ${{ secrets.GIT_USER }} - GIT_EMAIL: ${{ secrets.GIT_EMAIL }} - GPG_USER: ${{ secrets.GPG_USER }} - GPG_KEY: ${{ secrets.GPG_KEY }} - SSH_KEY: ${{ secrets.SSH_KEY }} - SSH_PUB: ${{ secrets.SSH_PUB }} - run: | - /bin/bash <(/bin/curl -s https://raw.githubusercontent.com/vdm-io/github-user/master/src/setup.sh) --gpg-key "$GPG_KEY" --gpg-user "$GPG_USER" --ssh-key "$SSH_KEY" --ssh-pub "$SSH_PUB" --git-user "$GIT_USER" --git-email "$GIT_EMAIL" - - name: Clone Master Repositry + uses: octoleo/git-user@v2 + with: + gpg-key: ${{ secrets.GPG_KEY }} + gpg-user: ${{ secrets.GPG_USER }} + ssh-key: ${{ secrets.SSH_KEY }} + ssh-pub: ${{ secrets.SSH_PUB }} + git-user: ${{ secrets.GIT_USER }} + git-email: ${{ secrets.GIT_EMAIL }} + + - name: Clone Master Repository run: | /bin/git clone git@github.com:trueChristian/daily-scripture.git daily_scripture + - name: Build the Daily Scripture run: | cd daily_scripture /bin/bash ./src/today.sh + diff --git a/.github/workflows/today_id.yml b/.github/workflows/today_id.yml new file mode 100644 index 00000000..4e510308 --- /dev/null +++ b/.github/workflows/today_id.yml @@ -0,0 +1,36 @@ +name: "Load Today's Scripture Telegram ID!" + +on: + # Run once per day at 23:45 UTC + schedule: + - cron: '45 23 * * *' + # Allow manual trigger + workflow_dispatch: + +jobs: + load-scripture-telegram-id: + runs-on: ubuntu-22.04 + + steps: + - name: Setup gitHub User Details + uses: octoleo/git-user@v2 + with: + gpg-key: ${{ secrets.GPG_KEY }} + gpg-user: ${{ secrets.GPG_USER }} + ssh-key: ${{ secrets.SSH_KEY }} + ssh-pub: ${{ secrets.SSH_PUB }} + git-user: ${{ secrets.GIT_USER }} + git-email: ${{ secrets.GIT_EMAIL }} + + - name: Clone Daily Scripture Repository + run: | + /bin/git clone git@github.com:trueChristian/daily-scripture.git daily_scripture + + - name: Build the Daily Scripture Telegram ID + env: + BOT_TOKEN: ${{ secrets.GETBIBLE_BOT_TOKEN }} + CHANNEL_ID: ${{ secrets.TG_DAILY_SCRIPTURE_GROUP_ID }} + run: | + cd daily_scripture + /bin/bash ./src/telegram.sh + diff --git a/README.html b/README.html index 40b4a04b..83a52f51 100644 --- a/README.html +++ b/README.html @@ -1,3 +1,3 @@ -Romans 8:36-37
-36 As it is written, For thy sake we are killed all the day long; we are accounted as sheep for the slaughter. 37 Nay, in all these things we are more than conquerors through him that loved us.

-Sunday 11-December, 2022 +1 Corinthians 2:7
+7 But we speak the wisdom of God in a mystery, even the hidden wisdom, which God ordained before the world unto our glory:

+Tuesday 16-June, 2026 diff --git a/README.json b/README.json index c7a677b2..3e6f74fa 100644 --- a/README.json +++ b/README.json @@ -1,17 +1,17 @@ { - "date": "Sunday 11-December, 2022", - "name": "Romans 8:36-37", + "book": "1 Corinthians", + "chapter": "2", + "date": "Tuesday 16-June, 2026", + "getbible": "https://getbible.life/kjv/1 Corinthians/2/7", + "name": "1 Corinthians 2:7", "scripture": [ { - "nr": "36", - "text": "As it is written, For thy sake we are killed all the day long; we are accounted as sheep for the slaughter." - }, - { - "nr": "37", - "text": "Nay, in all these things we are more than conquerors through him that loved us." + "nr": "7", + "text": "But we speak the wisdom of God in a mystery, even the hidden wisdom, which God ordained before the world unto our glory:" } ], - "source": "https://github.com/trueChristian/daily-scripture", + "source": "https://git.vdm.dev/christian/daily-scripture", "telegram": "daily_scripture", + "verse": "7", "version": "kjv" } diff --git a/README.md b/README.md index e1f21c2b..9f17282d 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -**Romans 8:36-37** +**1 Corinthians 2:7** -36 As it is written, For thy sake we are killed all the day long; we are accounted as sheep for the slaughter. 37 Nay, in all these things we are more than conquerors through him that loved us. +7 But we speak the wisdom of God in a mystery, even the hidden wisdom, which God ordained before the world unto our glory: -[Sunday 11-December, 2022](https://t.me/s/daily_scripture) +[Tuesday 16-June, 2026](https://getbible.life/kjv/1 Corinthians/2/7) diff --git a/README.tg b/README.tg index e0f7b32b..2ba9e667 100644 --- a/README.tg +++ b/README.tg @@ -1,4 +1,4 @@ -Romans 8:36-37 -36 As it is written, For thy sake we are killed all the day long; we are accounted as sheep for the slaughter. 37 Nay, in all these things we are more than conquerors through him that loved us. +1 Corinthians 2:7 +7 But we speak the wisdom of God in a mystery, even the hidden wisdom, which God ordained before the world unto our glory: -Sunday 11-December, 2022 +Tuesday 16-June, 2026 diff --git a/README.tg.id b/README.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/README.tg.id @@ -0,0 +1 @@ +null diff --git a/README.today b/README.today index 0f3fca1a..d7465e9e 100644 --- a/README.today +++ b/README.today @@ -1 +1 @@ -45 8:36-37 +46 2:7 diff --git a/scripture/kjv/01/01/23/scripture.html b/scripture/kjv/01/01/23/scripture.html new file mode 100644 index 00000000..26603359 --- /dev/null +++ b/scripture/kjv/01/01/23/scripture.html @@ -0,0 +1,3 @@ +Amos 6:4-6
+4 That lie upon beds of ivory, and stretch themselves upon their couches, and eat the lambs out of the flock, and the calves out of the midst of the stall; 5 That chant to the sound of the viol, and invent to themselves instruments of musick, like David; 6 That drink wine in bowls, and anoint themselves with the chief ointments: but they are not grieved for the affliction of Joseph.

+Sunday 01-January, 2023 diff --git a/scripture/kjv/01/01/23/scripture.json b/scripture/kjv/01/01/23/scripture.json new file mode 100644 index 00000000..d236c32e --- /dev/null +++ b/scripture/kjv/01/01/23/scripture.json @@ -0,0 +1,21 @@ +{ + "date": "Sunday 01-January, 2023", + "name": "Amos 6:4-6", + "scripture": [ + { + "nr": "4", + "text": "That lie upon beds of ivory, and stretch themselves upon their couches, and eat the lambs out of the flock, and the calves out of the midst of the stall;" + }, + { + "nr": "5", + "text": "That chant to the sound of the viol, and invent to themselves instruments of musick, like David;" + }, + { + "nr": "6", + "text": "That drink wine in bowls, and anoint themselves with the chief ointments: but they are not grieved for the affliction of Joseph." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/01/23/scripture.md b/scripture/kjv/01/01/23/scripture.md new file mode 100644 index 00000000..4cf22146 --- /dev/null +++ b/scripture/kjv/01/01/23/scripture.md @@ -0,0 +1,5 @@ +**Amos 6:4-6** + +4 That lie upon beds of ivory, and stretch themselves upon their couches, and eat the lambs out of the flock, and the calves out of the midst of the stall; 5 That chant to the sound of the viol, and invent to themselves instruments of musick, like David; 6 That drink wine in bowls, and anoint themselves with the chief ointments: but they are not grieved for the affliction of Joseph. + +[Sunday 01-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/01/23/scripture.tg b/scripture/kjv/01/01/23/scripture.tg new file mode 100644 index 00000000..37d6a158 --- /dev/null +++ b/scripture/kjv/01/01/23/scripture.tg @@ -0,0 +1,4 @@ +Amos 6:4-6 +4 That lie upon beds of ivory, and stretch themselves upon their couches, and eat the lambs out of the flock, and the calves out of the midst of the stall; 5 That chant to the sound of the viol, and invent to themselves instruments of musick, like David; 6 That drink wine in bowls, and anoint themselves with the chief ointments: but they are not grieved for the affliction of Joseph. + +Sunday 01-January, 2023 diff --git a/scripture/kjv/01/01/23/scripture.today b/scripture/kjv/01/01/23/scripture.today new file mode 100644 index 00000000..29c52bbe --- /dev/null +++ b/scripture/kjv/01/01/23/scripture.today @@ -0,0 +1 @@ +30 6:4-6 diff --git a/scripture/kjv/01/01/24/scripture.html b/scripture/kjv/01/01/24/scripture.html new file mode 100644 index 00000000..6962f5d5 --- /dev/null +++ b/scripture/kjv/01/01/24/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 13:6
+6 Rejoiceth not in iniquity, but rejoiceth in the truth;

+Monday 01-January, 2024 diff --git a/scripture/kjv/01/01/24/scripture.json b/scripture/kjv/01/01/24/scripture.json new file mode 100644 index 00000000..26276b3c --- /dev/null +++ b/scripture/kjv/01/01/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "13", + "date": "Monday 01-January, 2024", + "getbible": "https://getbible.life/kjv/1 Corinthians/13/6", + "name": "1 Corinthians 13:6", + "scripture": [ + { + "nr": "6", + "text": "Rejoiceth not in iniquity, but rejoiceth in the truth;" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6", + "version": "kjv" +} diff --git a/scripture/kjv/01/01/24/scripture.md b/scripture/kjv/01/01/24/scripture.md new file mode 100644 index 00000000..b71527b0 --- /dev/null +++ b/scripture/kjv/01/01/24/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 13:6** + +6 Rejoiceth not in iniquity, but rejoiceth in the truth; + +[Monday 01-January, 2024](https://getbible.life/kjv/1 Corinthians/13/6) diff --git a/scripture/kjv/01/01/24/scripture.tg b/scripture/kjv/01/01/24/scripture.tg new file mode 100644 index 00000000..79d5d22b --- /dev/null +++ b/scripture/kjv/01/01/24/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 13:6 +6 Rejoiceth not in iniquity, but rejoiceth in the truth; + +Monday 01-January, 2024 diff --git a/scripture/kjv/01/01/24/scripture.tg.id b/scripture/kjv/01/01/24/scripture.tg.id new file mode 100644 index 00000000..3fe2180a --- /dev/null +++ b/scripture/kjv/01/01/24/scripture.tg.id @@ -0,0 +1 @@ +1186 diff --git a/scripture/kjv/01/01/24/scripture.today b/scripture/kjv/01/01/24/scripture.today new file mode 100644 index 00000000..89ff42a1 --- /dev/null +++ b/scripture/kjv/01/01/24/scripture.today @@ -0,0 +1 @@ +46 13:6 diff --git a/scripture/kjv/01/01/25/scripture.html b/scripture/kjv/01/01/25/scripture.html new file mode 100644 index 00000000..af5ea995 --- /dev/null +++ b/scripture/kjv/01/01/25/scripture.html @@ -0,0 +1,3 @@ +Job 31:1-9
+1 I made a covenant with mine eyes; why then should I think upon a maid? 2 For what portion of God is there from above? and what inheritance of the Almighty from on high? 3 Is not destruction to the wicked? and a strange punishment to the workers of iniquity? 4 Doth not he see my ways, and count all my steps? 5 If I have walked with vanity, or if my foot hath hasted to deceit; 6 Let me be weighed in an even balance, that God may know mine integrity. 7 If my step hath turned out of the way, and mine heart walked after mine eyes, and if any blot hath cleaved to mine hands; 8 Then let me sow, and let another eat; yea, let my offspring be rooted out. 9 If mine heart have been deceived by a woman, or if I have laid wait at my neighbour’s door;

+Wednesday 01-January, 2025 diff --git a/scripture/kjv/01/01/25/scripture.json b/scripture/kjv/01/01/25/scripture.json new file mode 100644 index 00000000..acdb9d46 --- /dev/null +++ b/scripture/kjv/01/01/25/scripture.json @@ -0,0 +1,49 @@ +{ + "book": "Job", + "chapter": "31", + "date": "Wednesday 01-January, 2025", + "getbible": "https://getbible.life/kjv/Job/31/1-9", + "name": "Job 31:1-9", + "scripture": [ + { + "nr": "1", + "text": "I made a covenant with mine eyes; why then should I think upon a maid?" + }, + { + "nr": "2", + "text": "For what portion of God is there from above? and what inheritance of the Almighty from on high?" + }, + { + "nr": "3", + "text": "Is not destruction to the wicked? and a strange punishment to the workers of iniquity?" + }, + { + "nr": "4", + "text": "Doth not he see my ways, and count all my steps?" + }, + { + "nr": "5", + "text": "If I have walked with vanity, or if my foot hath hasted to deceit;" + }, + { + "nr": "6", + "text": "Let me be weighed in an even balance, that God may know mine integrity." + }, + { + "nr": "7", + "text": "If my step hath turned out of the way, and mine heart walked after mine eyes, and if any blot hath cleaved to mine hands;" + }, + { + "nr": "8", + "text": "Then let me sow, and let another eat; yea, let my offspring be rooted out." + }, + { + "nr": "9", + "text": "If mine heart have been deceived by a woman, or if I have laid wait at my neighbour’s door;" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-9", + "version": "kjv" +} diff --git a/scripture/kjv/01/01/25/scripture.md b/scripture/kjv/01/01/25/scripture.md new file mode 100644 index 00000000..49fe1b72 --- /dev/null +++ b/scripture/kjv/01/01/25/scripture.md @@ -0,0 +1,5 @@ +**Job 31:1-9** + +1 I made a covenant with mine eyes; why then should I think upon a maid? 2 For what portion of God is there from above? and what inheritance of the Almighty from on high? 3 Is not destruction to the wicked? and a strange punishment to the workers of iniquity? 4 Doth not he see my ways, and count all my steps? 5 If I have walked with vanity, or if my foot hath hasted to deceit; 6 Let me be weighed in an even balance, that God may know mine integrity. 7 If my step hath turned out of the way, and mine heart walked after mine eyes, and if any blot hath cleaved to mine hands; 8 Then let me sow, and let another eat; yea, let my offspring be rooted out. 9 If mine heart have been deceived by a woman, or if I have laid wait at my neighbour’s door; + +[Wednesday 01-January, 2025](https://getbible.life/kjv/Job/31/1-9) diff --git a/scripture/kjv/01/01/25/scripture.tg b/scripture/kjv/01/01/25/scripture.tg new file mode 100644 index 00000000..aabfd997 --- /dev/null +++ b/scripture/kjv/01/01/25/scripture.tg @@ -0,0 +1,4 @@ +Job 31:1-9 +1 I made a covenant with mine eyes; why then should I think upon a maid? 2 For what portion of God is there from above? and what inheritance of the Almighty from on high? 3 Is not destruction to the wicked? and a strange punishment to the workers of iniquity? 4 Doth not he see my ways, and count all my steps? 5 If I have walked with vanity, or if my foot hath hasted to deceit; 6 Let me be weighed in an even balance, that God may know mine integrity. 7 If my step hath turned out of the way, and mine heart walked after mine eyes, and if any blot hath cleaved to mine hands; 8 Then let me sow, and let another eat; yea, let my offspring be rooted out. 9 If mine heart have been deceived by a woman, or if I have laid wait at my neighbour’s door; + +Wednesday 01-January, 2025 diff --git a/scripture/kjv/01/01/25/scripture.tg.id b/scripture/kjv/01/01/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/01/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/01/25/scripture.today b/scripture/kjv/01/01/25/scripture.today new file mode 100644 index 00000000..355554de --- /dev/null +++ b/scripture/kjv/01/01/25/scripture.today @@ -0,0 +1 @@ +18 31:1-9 diff --git a/scripture/kjv/01/01/26/scripture.html b/scripture/kjv/01/01/26/scripture.html new file mode 100644 index 00000000..eec149dc --- /dev/null +++ b/scripture/kjv/01/01/26/scripture.html @@ -0,0 +1,3 @@ +Matthew 6:10
+10 Thy kingdom come. Thy will be done in earth, as it is in heaven.

+Thursday 01-January, 2026 diff --git a/scripture/kjv/01/01/26/scripture.json b/scripture/kjv/01/01/26/scripture.json new file mode 100644 index 00000000..64e5f315 --- /dev/null +++ b/scripture/kjv/01/01/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Matthew", + "chapter": "6", + "date": "Thursday 01-January, 2026", + "getbible": "https://getbible.life/kjv/Matthew/6/10", + "name": "Matthew 6:10", + "scripture": [ + { + "nr": "10", + "text": "Thy kingdom come. Thy will be done in earth, as it is in heaven." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/01/01/26/scripture.md b/scripture/kjv/01/01/26/scripture.md new file mode 100644 index 00000000..ae25d5c8 --- /dev/null +++ b/scripture/kjv/01/01/26/scripture.md @@ -0,0 +1,5 @@ +**Matthew 6:10** + +10 Thy kingdom come. Thy will be done in earth, as it is in heaven. + +[Thursday 01-January, 2026](https://getbible.life/kjv/Matthew/6/10) diff --git a/scripture/kjv/01/01/26/scripture.tg b/scripture/kjv/01/01/26/scripture.tg new file mode 100644 index 00000000..7c167adb --- /dev/null +++ b/scripture/kjv/01/01/26/scripture.tg @@ -0,0 +1,4 @@ +Matthew 6:10 +10 Thy kingdom come. Thy will be done in earth, as it is in heaven. + +Thursday 01-January, 2026 diff --git a/scripture/kjv/01/01/26/scripture.tg.id b/scripture/kjv/01/01/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/01/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/01/26/scripture.today b/scripture/kjv/01/01/26/scripture.today new file mode 100644 index 00000000..462f72c5 --- /dev/null +++ b/scripture/kjv/01/01/26/scripture.today @@ -0,0 +1 @@ +40 6:10 diff --git a/scripture/kjv/01/02/23/scripture.html b/scripture/kjv/01/02/23/scripture.html new file mode 100644 index 00000000..70ca596a --- /dev/null +++ b/scripture/kjv/01/02/23/scripture.html @@ -0,0 +1,3 @@ +Romans 13:1
+1 Let every soul be subject unto the higher powers. For there is no power but of God: the powers that be are ordained of God.

+Monday 02-January, 2023 diff --git a/scripture/kjv/01/02/23/scripture.json b/scripture/kjv/01/02/23/scripture.json new file mode 100644 index 00000000..df316769 --- /dev/null +++ b/scripture/kjv/01/02/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Monday 02-January, 2023", + "name": "Romans 13:1", + "scripture": [ + { + "nr": "1", + "text": "Let every soul be subject unto the higher powers. For there is no power but of God: the powers that be are ordained of God." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/02/23/scripture.md b/scripture/kjv/01/02/23/scripture.md new file mode 100644 index 00000000..68acc1e8 --- /dev/null +++ b/scripture/kjv/01/02/23/scripture.md @@ -0,0 +1,5 @@ +**Romans 13:1** + +1 Let every soul be subject unto the higher powers. For there is no power but of God: the powers that be are ordained of God. + +[Monday 02-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/02/23/scripture.tg b/scripture/kjv/01/02/23/scripture.tg new file mode 100644 index 00000000..1dd2da91 --- /dev/null +++ b/scripture/kjv/01/02/23/scripture.tg @@ -0,0 +1,4 @@ +Romans 13:1 +1 Let every soul be subject unto the higher powers. For there is no power but of God: the powers that be are ordained of God. + +Monday 02-January, 2023 diff --git a/scripture/kjv/01/02/23/scripture.today b/scripture/kjv/01/02/23/scripture.today new file mode 100644 index 00000000..f865dd2e --- /dev/null +++ b/scripture/kjv/01/02/23/scripture.today @@ -0,0 +1 @@ +45 13:1 diff --git a/scripture/kjv/01/02/24/scripture.html b/scripture/kjv/01/02/24/scripture.html new file mode 100644 index 00000000..0c8f154d --- /dev/null +++ b/scripture/kjv/01/02/24/scripture.html @@ -0,0 +1,3 @@ +James 1:22-24
+22 But be ye doers of the word, and not hearers only, deceiving your own selves. 23 For if any be a hearer of the word, and not a doer, he is like unto a man beholding his natural face in a glass: 24 For he beholdeth himself, and goeth his way, and straightway forgetteth what manner of man he was.

+Tuesday 02-January, 2024 diff --git a/scripture/kjv/01/02/24/scripture.json b/scripture/kjv/01/02/24/scripture.json new file mode 100644 index 00000000..474238a7 --- /dev/null +++ b/scripture/kjv/01/02/24/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "James", + "chapter": "1", + "date": "Tuesday 02-January, 2024", + "getbible": "https://getbible.life/kjv/James/1/22-24", + "name": "James 1:22-24", + "scripture": [ + { + "nr": "22", + "text": "But be ye doers of the word, and not hearers only, deceiving your own selves." + }, + { + "nr": "23", + "text": "For if any be a hearer of the word, and not a doer, he is like unto a man beholding his natural face in a glass:" + }, + { + "nr": "24", + "text": "For he beholdeth himself, and goeth his way, and straightway forgetteth what manner of man he was." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "22-24", + "version": "kjv" +} diff --git a/scripture/kjv/01/02/24/scripture.md b/scripture/kjv/01/02/24/scripture.md new file mode 100644 index 00000000..c376576d --- /dev/null +++ b/scripture/kjv/01/02/24/scripture.md @@ -0,0 +1,5 @@ +**James 1:22-24** + +22 But be ye doers of the word, and not hearers only, deceiving your own selves. 23 For if any be a hearer of the word, and not a doer, he is like unto a man beholding his natural face in a glass: 24 For he beholdeth himself, and goeth his way, and straightway forgetteth what manner of man he was. + +[Tuesday 02-January, 2024](https://getbible.life/kjv/James/1/22-24) diff --git a/scripture/kjv/01/02/24/scripture.tg b/scripture/kjv/01/02/24/scripture.tg new file mode 100644 index 00000000..befc4a9c --- /dev/null +++ b/scripture/kjv/01/02/24/scripture.tg @@ -0,0 +1,4 @@ +James 1:22-24 +22 But be ye doers of the word, and not hearers only, deceiving your own selves. 23 For if any be a hearer of the word, and not a doer, he is like unto a man beholding his natural face in a glass: 24 For he beholdeth himself, and goeth his way, and straightway forgetteth what manner of man he was. + +Tuesday 02-January, 2024 diff --git a/scripture/kjv/01/02/24/scripture.tg.id b/scripture/kjv/01/02/24/scripture.tg.id new file mode 100644 index 00000000..03183b0a --- /dev/null +++ b/scripture/kjv/01/02/24/scripture.tg.id @@ -0,0 +1 @@ +1187 diff --git a/scripture/kjv/01/02/24/scripture.today b/scripture/kjv/01/02/24/scripture.today new file mode 100644 index 00000000..b2b53801 --- /dev/null +++ b/scripture/kjv/01/02/24/scripture.today @@ -0,0 +1 @@ +59 1:22-24 diff --git a/scripture/kjv/01/02/25/scripture.html b/scripture/kjv/01/02/25/scripture.html new file mode 100644 index 00000000..76416b86 --- /dev/null +++ b/scripture/kjv/01/02/25/scripture.html @@ -0,0 +1,3 @@ +Colossians 1:3-4
+3 We give thanks to God and the Father of our Lord Jesus Christ, praying always for you, 4 Since we heard of your faith in Christ Jesus, and of the love which ye have to all the saints,

+Thursday 02-January, 2025 diff --git a/scripture/kjv/01/02/25/scripture.json b/scripture/kjv/01/02/25/scripture.json new file mode 100644 index 00000000..c129aaae --- /dev/null +++ b/scripture/kjv/01/02/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Colossians", + "chapter": "1", + "date": "Thursday 02-January, 2025", + "getbible": "https://getbible.life/kjv/Colossians/1/3-4", + "name": "Colossians 1:3-4", + "scripture": [ + { + "nr": "3", + "text": "We give thanks to God and the Father of our Lord Jesus Christ, praying always for you," + }, + { + "nr": "4", + "text": "Since we heard of your faith in Christ Jesus, and of the love which ye have to all the saints," + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3-4", + "version": "kjv" +} diff --git a/scripture/kjv/01/02/25/scripture.md b/scripture/kjv/01/02/25/scripture.md new file mode 100644 index 00000000..d3c2f13a --- /dev/null +++ b/scripture/kjv/01/02/25/scripture.md @@ -0,0 +1,5 @@ +**Colossians 1:3-4** + +3 We give thanks to God and the Father of our Lord Jesus Christ, praying always for you, 4 Since we heard of your faith in Christ Jesus, and of the love which ye have to all the saints, + +[Thursday 02-January, 2025](https://getbible.life/kjv/Colossians/1/3-4) diff --git a/scripture/kjv/01/02/25/scripture.tg b/scripture/kjv/01/02/25/scripture.tg new file mode 100644 index 00000000..4b52d7b3 --- /dev/null +++ b/scripture/kjv/01/02/25/scripture.tg @@ -0,0 +1,4 @@ +Colossians 1:3-4 +3 We give thanks to God and the Father of our Lord Jesus Christ, praying always for you, 4 Since we heard of your faith in Christ Jesus, and of the love which ye have to all the saints, + +Thursday 02-January, 2025 diff --git a/scripture/kjv/01/02/25/scripture.tg.id b/scripture/kjv/01/02/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/02/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/02/25/scripture.today b/scripture/kjv/01/02/25/scripture.today new file mode 100644 index 00000000..06cc4642 --- /dev/null +++ b/scripture/kjv/01/02/25/scripture.today @@ -0,0 +1 @@ +51 1:3-4 diff --git a/scripture/kjv/01/02/26/scripture.html b/scripture/kjv/01/02/26/scripture.html new file mode 100644 index 00000000..af69bb8f --- /dev/null +++ b/scripture/kjv/01/02/26/scripture.html @@ -0,0 +1,3 @@ +2 John 1:12
+12 Having many things to write unto you, I would not write with paper and ink: but I trust to come unto you, and speak face to face, that our joy may be full.

+Friday 02-January, 2026 diff --git a/scripture/kjv/01/02/26/scripture.json b/scripture/kjv/01/02/26/scripture.json new file mode 100644 index 00000000..56393028 --- /dev/null +++ b/scripture/kjv/01/02/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 John", + "chapter": "1", + "date": "Friday 02-January, 2026", + "getbible": "https://getbible.life/kjv/2 John/1/12", + "name": "2 John 1:12", + "scripture": [ + { + "nr": "12", + "text": "Having many things to write unto you, I would not write with paper and ink: but I trust to come unto you, and speak face to face, that our joy may be full." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/01/02/26/scripture.md b/scripture/kjv/01/02/26/scripture.md new file mode 100644 index 00000000..7bc23a59 --- /dev/null +++ b/scripture/kjv/01/02/26/scripture.md @@ -0,0 +1,5 @@ +**2 John 1:12** + +12 Having many things to write unto you, I would not write with paper and ink: but I trust to come unto you, and speak face to face, that our joy may be full. + +[Friday 02-January, 2026](https://getbible.life/kjv/2 John/1/12) diff --git a/scripture/kjv/01/02/26/scripture.tg b/scripture/kjv/01/02/26/scripture.tg new file mode 100644 index 00000000..6c6dc525 --- /dev/null +++ b/scripture/kjv/01/02/26/scripture.tg @@ -0,0 +1,4 @@ +2 John 1:12 +12 Having many things to write unto you, I would not write with paper and ink: but I trust to come unto you, and speak face to face, that our joy may be full. + +Friday 02-January, 2026 diff --git a/scripture/kjv/01/02/26/scripture.tg.id b/scripture/kjv/01/02/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/02/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/02/26/scripture.today b/scripture/kjv/01/02/26/scripture.today new file mode 100644 index 00000000..dcdcbaba --- /dev/null +++ b/scripture/kjv/01/02/26/scripture.today @@ -0,0 +1 @@ +63 1:12 diff --git a/scripture/kjv/01/03/23/scripture.html b/scripture/kjv/01/03/23/scripture.html new file mode 100644 index 00000000..48380ad0 --- /dev/null +++ b/scripture/kjv/01/03/23/scripture.html @@ -0,0 +1,3 @@ +Daniel 5:20
+20 But when his heart was lifted up, and his mind hardened in pride, he was deposed from his kingly throne, and they took his glory from him:

+Tuesday 03-January, 2023 diff --git a/scripture/kjv/01/03/23/scripture.json b/scripture/kjv/01/03/23/scripture.json new file mode 100644 index 00000000..52602bc7 --- /dev/null +++ b/scripture/kjv/01/03/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Tuesday 03-January, 2023", + "name": "Daniel 5:20", + "scripture": [ + { + "nr": "20", + "text": "But when his heart was lifted up, and his mind hardened in pride, he was deposed from his kingly throne, and they took his glory from him:" + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/03/23/scripture.md b/scripture/kjv/01/03/23/scripture.md new file mode 100644 index 00000000..700273bb --- /dev/null +++ b/scripture/kjv/01/03/23/scripture.md @@ -0,0 +1,5 @@ +**Daniel 5:20** + +20 But when his heart was lifted up, and his mind hardened in pride, he was deposed from his kingly throne, and they took his glory from him: + +[Tuesday 03-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/03/23/scripture.tg b/scripture/kjv/01/03/23/scripture.tg new file mode 100644 index 00000000..ed14b67b --- /dev/null +++ b/scripture/kjv/01/03/23/scripture.tg @@ -0,0 +1,4 @@ +Daniel 5:20 +20 But when his heart was lifted up, and his mind hardened in pride, he was deposed from his kingly throne, and they took his glory from him: + +Tuesday 03-January, 2023 diff --git a/scripture/kjv/01/03/23/scripture.today b/scripture/kjv/01/03/23/scripture.today new file mode 100644 index 00000000..dc152fb4 --- /dev/null +++ b/scripture/kjv/01/03/23/scripture.today @@ -0,0 +1 @@ +27 5:20 diff --git a/scripture/kjv/01/03/24/scripture.html b/scripture/kjv/01/03/24/scripture.html new file mode 100644 index 00000000..ea0a6a1c --- /dev/null +++ b/scripture/kjv/01/03/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 119:63
+63 I am a companion of all them that fear thee, and of them that keep thy precepts.

+Wednesday 03-January, 2024 diff --git a/scripture/kjv/01/03/24/scripture.json b/scripture/kjv/01/03/24/scripture.json new file mode 100644 index 00000000..bab70ac2 --- /dev/null +++ b/scripture/kjv/01/03/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "119", + "date": "Wednesday 03-January, 2024", + "getbible": "https://getbible.life/kjv/Psalms/119/63", + "name": "Psalms 119:63", + "scripture": [ + { + "nr": "63", + "text": "I am a companion of all them that fear thee, and of them that keep thy precepts." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "63", + "version": "kjv" +} diff --git a/scripture/kjv/01/03/24/scripture.md b/scripture/kjv/01/03/24/scripture.md new file mode 100644 index 00000000..5e601417 --- /dev/null +++ b/scripture/kjv/01/03/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 119:63** + +63 I am a companion of all them that fear thee, and of them that keep thy precepts. + +[Wednesday 03-January, 2024](https://getbible.life/kjv/Psalms/119/63) diff --git a/scripture/kjv/01/03/24/scripture.tg b/scripture/kjv/01/03/24/scripture.tg new file mode 100644 index 00000000..173e3fb2 --- /dev/null +++ b/scripture/kjv/01/03/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 119:63 +63 I am a companion of all them that fear thee, and of them that keep thy precepts. + +Wednesday 03-January, 2024 diff --git a/scripture/kjv/01/03/24/scripture.tg.id b/scripture/kjv/01/03/24/scripture.tg.id new file mode 100644 index 00000000..c3e05c83 --- /dev/null +++ b/scripture/kjv/01/03/24/scripture.tg.id @@ -0,0 +1 @@ +1188 diff --git a/scripture/kjv/01/03/24/scripture.today b/scripture/kjv/01/03/24/scripture.today new file mode 100644 index 00000000..5a313f04 --- /dev/null +++ b/scripture/kjv/01/03/24/scripture.today @@ -0,0 +1 @@ +19 119:63 diff --git a/scripture/kjv/01/03/25/scripture.html b/scripture/kjv/01/03/25/scripture.html new file mode 100644 index 00000000..9fb1ea29 --- /dev/null +++ b/scripture/kjv/01/03/25/scripture.html @@ -0,0 +1,3 @@ +1 Peter 4:14-16
+14 If ye be reproached for the name of Christ, happy are ye; for the spirit of glory and of God resteth upon you: on their part he is evil spoken of, but on your part he is glorified. 15 But let none of you suffer as a murderer, or as a thief, or as an evildoer, or as a busybody in other men’s matters. 16 Yet if any man suffer as a Christian, let him not be ashamed; but let him glorify God on this behalf.

+Friday 03-January, 2025 diff --git a/scripture/kjv/01/03/25/scripture.json b/scripture/kjv/01/03/25/scripture.json new file mode 100644 index 00000000..06d0a591 --- /dev/null +++ b/scripture/kjv/01/03/25/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "1 Peter", + "chapter": "4", + "date": "Friday 03-January, 2025", + "getbible": "https://getbible.life/kjv/1 Peter/4/14-16", + "name": "1 Peter 4:14-16", + "scripture": [ + { + "nr": "14", + "text": "If ye be reproached for the name of Christ, happy are ye; for the spirit of glory and of God resteth upon you: on their part he is evil spoken of, but on your part he is glorified." + }, + { + "nr": "15", + "text": "But let none of you suffer as a murderer, or as a thief, or as an evildoer, or as a busybody in other men’s matters." + }, + { + "nr": "16", + "text": "Yet if any man suffer as a Christian, let him not be ashamed; but let him glorify God on this behalf." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14-16", + "version": "kjv" +} diff --git a/scripture/kjv/01/03/25/scripture.md b/scripture/kjv/01/03/25/scripture.md new file mode 100644 index 00000000..051da631 --- /dev/null +++ b/scripture/kjv/01/03/25/scripture.md @@ -0,0 +1,5 @@ +**1 Peter 4:14-16** + +14 If ye be reproached for the name of Christ, happy are ye; for the spirit of glory and of God resteth upon you: on their part he is evil spoken of, but on your part he is glorified. 15 But let none of you suffer as a murderer, or as a thief, or as an evildoer, or as a busybody in other men’s matters. 16 Yet if any man suffer as a Christian, let him not be ashamed; but let him glorify God on this behalf. + +[Friday 03-January, 2025](https://getbible.life/kjv/1 Peter/4/14-16) diff --git a/scripture/kjv/01/03/25/scripture.tg b/scripture/kjv/01/03/25/scripture.tg new file mode 100644 index 00000000..f4c29f84 --- /dev/null +++ b/scripture/kjv/01/03/25/scripture.tg @@ -0,0 +1,4 @@ +1 Peter 4:14-16 +14 If ye be reproached for the name of Christ, happy are ye; for the spirit of glory and of God resteth upon you: on their part he is evil spoken of, but on your part he is glorified. 15 But let none of you suffer as a murderer, or as a thief, or as an evildoer, or as a busybody in other men’s matters. 16 Yet if any man suffer as a Christian, let him not be ashamed; but let him glorify God on this behalf. + +Friday 03-January, 2025 diff --git a/scripture/kjv/01/03/25/scripture.tg.id b/scripture/kjv/01/03/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/03/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/03/25/scripture.today b/scripture/kjv/01/03/25/scripture.today new file mode 100644 index 00000000..eebe7da1 --- /dev/null +++ b/scripture/kjv/01/03/25/scripture.today @@ -0,0 +1 @@ +60 4:14-16 diff --git a/scripture/kjv/01/03/26/scripture.html b/scripture/kjv/01/03/26/scripture.html new file mode 100644 index 00000000..5650a385 --- /dev/null +++ b/scripture/kjv/01/03/26/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 9:15
+15 Thanks be unto God for his unspeakable gift.

+Saturday 03-January, 2026 diff --git a/scripture/kjv/01/03/26/scripture.json b/scripture/kjv/01/03/26/scripture.json new file mode 100644 index 00000000..f68390e3 --- /dev/null +++ b/scripture/kjv/01/03/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "9", + "date": "Saturday 03-January, 2026", + "getbible": "https://getbible.life/kjv/2 Corinthians/9/15", + "name": "2 Corinthians 9:15", + "scripture": [ + { + "nr": "15", + "text": "Thanks be unto God for his unspeakable gift. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15", + "version": "kjv" +} diff --git a/scripture/kjv/01/03/26/scripture.md b/scripture/kjv/01/03/26/scripture.md new file mode 100644 index 00000000..774bbba4 --- /dev/null +++ b/scripture/kjv/01/03/26/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 9:15** + +15 Thanks be unto God for his unspeakable gift. + +[Saturday 03-January, 2026](https://getbible.life/kjv/2 Corinthians/9/15) diff --git a/scripture/kjv/01/03/26/scripture.tg b/scripture/kjv/01/03/26/scripture.tg new file mode 100644 index 00000000..5f2f92ca --- /dev/null +++ b/scripture/kjv/01/03/26/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 9:15 +15 Thanks be unto God for his unspeakable gift. + +Saturday 03-January, 2026 diff --git a/scripture/kjv/01/03/26/scripture.tg.id b/scripture/kjv/01/03/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/03/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/03/26/scripture.today b/scripture/kjv/01/03/26/scripture.today new file mode 100644 index 00000000..931d5b11 --- /dev/null +++ b/scripture/kjv/01/03/26/scripture.today @@ -0,0 +1 @@ +47 9:15 diff --git a/scripture/kjv/01/04/23/scripture.html b/scripture/kjv/01/04/23/scripture.html new file mode 100644 index 00000000..49fe0b60 --- /dev/null +++ b/scripture/kjv/01/04/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 119:9
+9 Wherewithal shall a young man cleanse his way? by taking heed thereto according to thy word.

+Wednesday 04-January, 2023 diff --git a/scripture/kjv/01/04/23/scripture.json b/scripture/kjv/01/04/23/scripture.json new file mode 100644 index 00000000..12ad1e0b --- /dev/null +++ b/scripture/kjv/01/04/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Wednesday 04-January, 2023", + "name": "Psalms 119:9", + "scripture": [ + { + "nr": "9", + "text": " Wherewithal shall a young man cleanse his way? by taking heed thereto according to thy word." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/04/23/scripture.md b/scripture/kjv/01/04/23/scripture.md new file mode 100644 index 00000000..228ba087 --- /dev/null +++ b/scripture/kjv/01/04/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 119:9** + +9 Wherewithal shall a young man cleanse his way? by taking heed thereto according to thy word. + +[Wednesday 04-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/04/23/scripture.tg b/scripture/kjv/01/04/23/scripture.tg new file mode 100644 index 00000000..b6196c5a --- /dev/null +++ b/scripture/kjv/01/04/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 119:9 +9 Wherewithal shall a young man cleanse his way? by taking heed thereto according to thy word. + +Wednesday 04-January, 2023 diff --git a/scripture/kjv/01/04/23/scripture.today b/scripture/kjv/01/04/23/scripture.today new file mode 100644 index 00000000..d411b596 --- /dev/null +++ b/scripture/kjv/01/04/23/scripture.today @@ -0,0 +1 @@ +19 119:9 diff --git a/scripture/kjv/01/04/24/scripture.html b/scripture/kjv/01/04/24/scripture.html new file mode 100644 index 00000000..39b9adf4 --- /dev/null +++ b/scripture/kjv/01/04/24/scripture.html @@ -0,0 +1,3 @@ +John 6:40
+40 And this is the will of him that sent me, that every one which seeth the Son, and believeth on him, may have everlasting life: and I will raise him up at the last day.

+Thursday 04-January, 2024 diff --git a/scripture/kjv/01/04/24/scripture.json b/scripture/kjv/01/04/24/scripture.json new file mode 100644 index 00000000..0cdbf60e --- /dev/null +++ b/scripture/kjv/01/04/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "6", + "date": "Thursday 04-January, 2024", + "getbible": "https://getbible.life/kjv/John/6/40", + "name": "John 6:40", + "scripture": [ + { + "nr": "40", + "text": "And this is the will of him that sent me, that every one which seeth the Son, and believeth on him, may have everlasting life: and I will raise him up at the last day." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "40", + "version": "kjv" +} diff --git a/scripture/kjv/01/04/24/scripture.md b/scripture/kjv/01/04/24/scripture.md new file mode 100644 index 00000000..e60cefc5 --- /dev/null +++ b/scripture/kjv/01/04/24/scripture.md @@ -0,0 +1,5 @@ +**John 6:40** + +40 And this is the will of him that sent me, that every one which seeth the Son, and believeth on him, may have everlasting life: and I will raise him up at the last day. + +[Thursday 04-January, 2024](https://getbible.life/kjv/John/6/40) diff --git a/scripture/kjv/01/04/24/scripture.tg b/scripture/kjv/01/04/24/scripture.tg new file mode 100644 index 00000000..2e1dd045 --- /dev/null +++ b/scripture/kjv/01/04/24/scripture.tg @@ -0,0 +1,4 @@ +John 6:40 +40 And this is the will of him that sent me, that every one which seeth the Son, and believeth on him, may have everlasting life: and I will raise him up at the last day. + +Thursday 04-January, 2024 diff --git a/scripture/kjv/01/04/24/scripture.tg.id b/scripture/kjv/01/04/24/scripture.tg.id new file mode 100644 index 00000000..ccdf6eb3 --- /dev/null +++ b/scripture/kjv/01/04/24/scripture.tg.id @@ -0,0 +1 @@ +1189 diff --git a/scripture/kjv/01/04/24/scripture.today b/scripture/kjv/01/04/24/scripture.today new file mode 100644 index 00000000..bbe7f72f --- /dev/null +++ b/scripture/kjv/01/04/24/scripture.today @@ -0,0 +1 @@ +43 6:40 diff --git a/scripture/kjv/01/04/25/scripture.html b/scripture/kjv/01/04/25/scripture.html new file mode 100644 index 00000000..03f1f7f1 --- /dev/null +++ b/scripture/kjv/01/04/25/scripture.html @@ -0,0 +1,3 @@ +Philippians 4:7
+7 And the peace of God, which passeth all understanding, shall keep your hearts and minds through Christ Jesus.

+Saturday 04-January, 2025 diff --git a/scripture/kjv/01/04/25/scripture.json b/scripture/kjv/01/04/25/scripture.json new file mode 100644 index 00000000..e94559f5 --- /dev/null +++ b/scripture/kjv/01/04/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Philippians", + "chapter": "4", + "date": "Saturday 04-January, 2025", + "getbible": "https://getbible.life/kjv/Philippians/4/7", + "name": "Philippians 4:7", + "scripture": [ + { + "nr": "7", + "text": "And the peace of God, which passeth all understanding, shall keep your hearts and minds through Christ Jesus." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7", + "version": "kjv" +} diff --git a/scripture/kjv/01/04/25/scripture.md b/scripture/kjv/01/04/25/scripture.md new file mode 100644 index 00000000..e51f923e --- /dev/null +++ b/scripture/kjv/01/04/25/scripture.md @@ -0,0 +1,5 @@ +**Philippians 4:7** + +7 And the peace of God, which passeth all understanding, shall keep your hearts and minds through Christ Jesus. + +[Saturday 04-January, 2025](https://getbible.life/kjv/Philippians/4/7) diff --git a/scripture/kjv/01/04/25/scripture.tg b/scripture/kjv/01/04/25/scripture.tg new file mode 100644 index 00000000..dea87a03 --- /dev/null +++ b/scripture/kjv/01/04/25/scripture.tg @@ -0,0 +1,4 @@ +Philippians 4:7 +7 And the peace of God, which passeth all understanding, shall keep your hearts and minds through Christ Jesus. + +Saturday 04-January, 2025 diff --git a/scripture/kjv/01/04/25/scripture.tg.id b/scripture/kjv/01/04/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/04/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/04/25/scripture.today b/scripture/kjv/01/04/25/scripture.today new file mode 100644 index 00000000..c4cd1fb1 --- /dev/null +++ b/scripture/kjv/01/04/25/scripture.today @@ -0,0 +1 @@ +50 4:7 diff --git a/scripture/kjv/01/04/26/scripture.html b/scripture/kjv/01/04/26/scripture.html new file mode 100644 index 00000000..85876417 --- /dev/null +++ b/scripture/kjv/01/04/26/scripture.html @@ -0,0 +1,3 @@ +Proverbs 10:12
+12 Hatred stirreth up strifes: but love covereth all sins.

+Sunday 04-January, 2026 diff --git a/scripture/kjv/01/04/26/scripture.json b/scripture/kjv/01/04/26/scripture.json new file mode 100644 index 00000000..365abc90 --- /dev/null +++ b/scripture/kjv/01/04/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "10", + "date": "Sunday 04-January, 2026", + "getbible": "https://getbible.life/kjv/Proverbs/10/12", + "name": "Proverbs 10:12", + "scripture": [ + { + "nr": "12", + "text": "Hatred stirreth up strifes: but love covereth all sins." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/01/04/26/scripture.md b/scripture/kjv/01/04/26/scripture.md new file mode 100644 index 00000000..5e417279 --- /dev/null +++ b/scripture/kjv/01/04/26/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 10:12** + +12 Hatred stirreth up strifes: but love covereth all sins. + +[Sunday 04-January, 2026](https://getbible.life/kjv/Proverbs/10/12) diff --git a/scripture/kjv/01/04/26/scripture.tg b/scripture/kjv/01/04/26/scripture.tg new file mode 100644 index 00000000..92d9d6ea --- /dev/null +++ b/scripture/kjv/01/04/26/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 10:12 +12 Hatred stirreth up strifes: but love covereth all sins. + +Sunday 04-January, 2026 diff --git a/scripture/kjv/01/04/26/scripture.tg.id b/scripture/kjv/01/04/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/04/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/04/26/scripture.today b/scripture/kjv/01/04/26/scripture.today new file mode 100644 index 00000000..ffa7ac8e --- /dev/null +++ b/scripture/kjv/01/04/26/scripture.today @@ -0,0 +1 @@ +20 10:12 diff --git a/scripture/kjv/01/05/23/scripture.html b/scripture/kjv/01/05/23/scripture.html new file mode 100644 index 00000000..0081bd53 --- /dev/null +++ b/scripture/kjv/01/05/23/scripture.html @@ -0,0 +1,3 @@ +Haggai 1:4-11
+4 Is it time for you, O ye, to dwell in your cieled houses, and this house lie waste? 5 Now therefore thus saith the Lord of hosts; Consider your ways. 6 Ye have sown much, and bring in little; ye eat, but ye have not enough; ye drink, but ye are not filled with drink; ye clothe you, but there is none warm; and he that earneth wages earneth wages to put it into a bag with holes. 7 Thus saith the Lord of hosts; Consider your ways. 8 Go up to the mountain, and bring wood, and build the house; and I will take pleasure in it, and I will be glorified, saith the Lord. 9 Ye looked for much, and, lo, it came to little; and when ye brought it home, I did blow upon it. Why? saith the Lord of hosts. Because of mine house that is waste, and ye run every man unto his own house. 10 Therefore the heaven over you is stayed from dew, and the earth is stayed from her fruit. 11 And I called for a drought upon the land, and upon the mountains, and upon the corn, and upon the new wine, and upon the oil, and upon that which the ground bringeth forth, and upon men, and upon cattle, and upon all the labour of the hands.

+Thursday 05-January, 2023 diff --git a/scripture/kjv/01/05/23/scripture.json b/scripture/kjv/01/05/23/scripture.json new file mode 100644 index 00000000..efcd819c --- /dev/null +++ b/scripture/kjv/01/05/23/scripture.json @@ -0,0 +1,41 @@ +{ + "date": "Thursday 05-January, 2023", + "name": "Haggai 1:4-11", + "scripture": [ + { + "nr": "4", + "text": "Is it time for you, O ye, to dwell in your cieled houses, and this house lie waste?" + }, + { + "nr": "5", + "text": "Now therefore thus saith the Lord of hosts; Consider your ways." + }, + { + "nr": "6", + "text": "Ye have sown much, and bring in little; ye eat, but ye have not enough; ye drink, but ye are not filled with drink; ye clothe you, but there is none warm; and he that earneth wages earneth wages to put it into a bag with holes." + }, + { + "nr": "7", + "text": "Thus saith the Lord of hosts; Consider your ways." + }, + { + "nr": "8", + "text": "Go up to the mountain, and bring wood, and build the house; and I will take pleasure in it, and I will be glorified, saith the Lord." + }, + { + "nr": "9", + "text": "Ye looked for much, and, lo, it came to little; and when ye brought it home, I did blow upon it. Why? saith the Lord of hosts. Because of mine house that is waste, and ye run every man unto his own house." + }, + { + "nr": "10", + "text": "Therefore the heaven over you is stayed from dew, and the earth is stayed from her fruit." + }, + { + "nr": "11", + "text": "And I called for a drought upon the land, and upon the mountains, and upon the corn, and upon the new wine, and upon the oil, and upon that which the ground bringeth forth, and upon men, and upon cattle, and upon all the labour of the hands." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/05/23/scripture.md b/scripture/kjv/01/05/23/scripture.md new file mode 100644 index 00000000..458026b7 --- /dev/null +++ b/scripture/kjv/01/05/23/scripture.md @@ -0,0 +1,5 @@ +**Haggai 1:4-11** + +4 Is it time for you, O ye, to dwell in your cieled houses, and this house lie waste? 5 Now therefore thus saith the Lord of hosts; Consider your ways. 6 Ye have sown much, and bring in little; ye eat, but ye have not enough; ye drink, but ye are not filled with drink; ye clothe you, but there is none warm; and he that earneth wages earneth wages to put it into a bag with holes. 7 Thus saith the Lord of hosts; Consider your ways. 8 Go up to the mountain, and bring wood, and build the house; and I will take pleasure in it, and I will be glorified, saith the Lord. 9 Ye looked for much, and, lo, it came to little; and when ye brought it home, I did blow upon it. Why? saith the Lord of hosts. Because of mine house that is waste, and ye run every man unto his own house. 10 Therefore the heaven over you is stayed from dew, and the earth is stayed from her fruit. 11 And I called for a drought upon the land, and upon the mountains, and upon the corn, and upon the new wine, and upon the oil, and upon that which the ground bringeth forth, and upon men, and upon cattle, and upon all the labour of the hands. + +[Thursday 05-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/05/23/scripture.tg b/scripture/kjv/01/05/23/scripture.tg new file mode 100644 index 00000000..1530a032 --- /dev/null +++ b/scripture/kjv/01/05/23/scripture.tg @@ -0,0 +1,4 @@ +Haggai 1:4-11 +4 Is it time for you, O ye, to dwell in your cieled houses, and this house lie waste? 5 Now therefore thus saith the Lord of hosts; Consider your ways. 6 Ye have sown much, and bring in little; ye eat, but ye have not enough; ye drink, but ye are not filled with drink; ye clothe you, but there is none warm; and he that earneth wages earneth wages to put it into a bag with holes. 7 Thus saith the Lord of hosts; Consider your ways. 8 Go up to the mountain, and bring wood, and build the house; and I will take pleasure in it, and I will be glorified, saith the Lord. 9 Ye looked for much, and, lo, it came to little; and when ye brought it home, I did blow upon it. Why? saith the Lord of hosts. Because of mine house that is waste, and ye run every man unto his own house. 10 Therefore the heaven over you is stayed from dew, and the earth is stayed from her fruit. 11 And I called for a drought upon the land, and upon the mountains, and upon the corn, and upon the new wine, and upon the oil, and upon that which the ground bringeth forth, and upon men, and upon cattle, and upon all the labour of the hands. + +Thursday 05-January, 2023 diff --git a/scripture/kjv/01/05/23/scripture.today b/scripture/kjv/01/05/23/scripture.today new file mode 100644 index 00000000..835ae0ca --- /dev/null +++ b/scripture/kjv/01/05/23/scripture.today @@ -0,0 +1 @@ +37 1:4-11 diff --git a/scripture/kjv/01/05/24/scripture.html b/scripture/kjv/01/05/24/scripture.html new file mode 100644 index 00000000..d95e3867 --- /dev/null +++ b/scripture/kjv/01/05/24/scripture.html @@ -0,0 +1,3 @@ +1 Samuel 1:14-17
+14 And Eli said unto her, How long wilt thou be drunken? put away thy wine from thee. 15 And Hannah answered and said, No, my lord, I am a woman of a sorrowful spirit: I have drunk neither wine nor strong drink, but have poured out my soul before the Lord. 16 Count not thine handmaid for a daughter of Belial: for out of the abundance of my complaint and grief have I spoken hitherto. 17 Then Eli answered and said, Go in peace: and the God of Israel grant thee thy petition that thou hast asked of him.

+Friday 05-January, 2024 diff --git a/scripture/kjv/01/05/24/scripture.json b/scripture/kjv/01/05/24/scripture.json new file mode 100644 index 00000000..a06d9f61 --- /dev/null +++ b/scripture/kjv/01/05/24/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "1 Samuel", + "chapter": "1", + "date": "Friday 05-January, 2024", + "getbible": "https://getbible.life/kjv/1 Samuel/1/14-17", + "name": "1 Samuel 1:14-17", + "scripture": [ + { + "nr": "14", + "text": "And Eli said unto her, How long wilt thou be drunken? put away thy wine from thee." + }, + { + "nr": "15", + "text": "And Hannah answered and said, No, my lord, I am a woman of a sorrowful spirit: I have drunk neither wine nor strong drink, but have poured out my soul before the Lord." + }, + { + "nr": "16", + "text": "Count not thine handmaid for a daughter of Belial: for out of the abundance of my complaint and grief have I spoken hitherto." + }, + { + "nr": "17", + "text": "Then Eli answered and said, Go in peace: and the God of Israel grant thee thy petition that thou hast asked of him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14-17", + "version": "kjv" +} diff --git a/scripture/kjv/01/05/24/scripture.md b/scripture/kjv/01/05/24/scripture.md new file mode 100644 index 00000000..1b3e77ca --- /dev/null +++ b/scripture/kjv/01/05/24/scripture.md @@ -0,0 +1,5 @@ +**1 Samuel 1:14-17** + +14 And Eli said unto her, How long wilt thou be drunken? put away thy wine from thee. 15 And Hannah answered and said, No, my lord, I am a woman of a sorrowful spirit: I have drunk neither wine nor strong drink, but have poured out my soul before the Lord. 16 Count not thine handmaid for a daughter of Belial: for out of the abundance of my complaint and grief have I spoken hitherto. 17 Then Eli answered and said, Go in peace: and the God of Israel grant thee thy petition that thou hast asked of him. + +[Friday 05-January, 2024](https://getbible.life/kjv/1 Samuel/1/14-17) diff --git a/scripture/kjv/01/05/24/scripture.tg b/scripture/kjv/01/05/24/scripture.tg new file mode 100644 index 00000000..2ee89720 --- /dev/null +++ b/scripture/kjv/01/05/24/scripture.tg @@ -0,0 +1,4 @@ +1 Samuel 1:14-17 +14 And Eli said unto her, How long wilt thou be drunken? put away thy wine from thee. 15 And Hannah answered and said, No, my lord, I am a woman of a sorrowful spirit: I have drunk neither wine nor strong drink, but have poured out my soul before the Lord. 16 Count not thine handmaid for a daughter of Belial: for out of the abundance of my complaint and grief have I spoken hitherto. 17 Then Eli answered and said, Go in peace: and the God of Israel grant thee thy petition that thou hast asked of him. + +Friday 05-January, 2024 diff --git a/scripture/kjv/01/05/24/scripture.tg.id b/scripture/kjv/01/05/24/scripture.tg.id new file mode 100644 index 00000000..0b2a2c0c --- /dev/null +++ b/scripture/kjv/01/05/24/scripture.tg.id @@ -0,0 +1 @@ +1190 diff --git a/scripture/kjv/01/05/24/scripture.today b/scripture/kjv/01/05/24/scripture.today new file mode 100644 index 00000000..a6ec12a1 --- /dev/null +++ b/scripture/kjv/01/05/24/scripture.today @@ -0,0 +1 @@ +9 1:14-17 diff --git a/scripture/kjv/01/05/25/scripture.html b/scripture/kjv/01/05/25/scripture.html new file mode 100644 index 00000000..6635e66a --- /dev/null +++ b/scripture/kjv/01/05/25/scripture.html @@ -0,0 +1,3 @@ +Romans 13:14
+14 But put ye on the Lord Jesus Christ, and make not provision for the flesh, to fulfil the lusts thereof.

+Sunday 05-January, 2025 diff --git a/scripture/kjv/01/05/25/scripture.json b/scripture/kjv/01/05/25/scripture.json new file mode 100644 index 00000000..14bb6f4d --- /dev/null +++ b/scripture/kjv/01/05/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Romans", + "chapter": "13", + "date": "Sunday 05-January, 2025", + "getbible": "https://getbible.life/kjv/Romans/13/14", + "name": "Romans 13:14", + "scripture": [ + { + "nr": "14", + "text": "But put ye on the Lord Jesus Christ, and make not provision for the flesh, to fulfil the lusts thereof. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/01/05/25/scripture.md b/scripture/kjv/01/05/25/scripture.md new file mode 100644 index 00000000..8a9d656e --- /dev/null +++ b/scripture/kjv/01/05/25/scripture.md @@ -0,0 +1,5 @@ +**Romans 13:14** + +14 But put ye on the Lord Jesus Christ, and make not provision for the flesh, to fulfil the lusts thereof. + +[Sunday 05-January, 2025](https://getbible.life/kjv/Romans/13/14) diff --git a/scripture/kjv/01/05/25/scripture.tg b/scripture/kjv/01/05/25/scripture.tg new file mode 100644 index 00000000..b1737982 --- /dev/null +++ b/scripture/kjv/01/05/25/scripture.tg @@ -0,0 +1,4 @@ +Romans 13:14 +14 But put ye on the Lord Jesus Christ, and make not provision for the flesh, to fulfil the lusts thereof. + +Sunday 05-January, 2025 diff --git a/scripture/kjv/01/05/25/scripture.tg.id b/scripture/kjv/01/05/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/05/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/05/25/scripture.today b/scripture/kjv/01/05/25/scripture.today new file mode 100644 index 00000000..536cb98b --- /dev/null +++ b/scripture/kjv/01/05/25/scripture.today @@ -0,0 +1 @@ +45 13:14 diff --git a/scripture/kjv/01/05/26/scripture.html b/scripture/kjv/01/05/26/scripture.html new file mode 100644 index 00000000..4eb426e8 --- /dev/null +++ b/scripture/kjv/01/05/26/scripture.html @@ -0,0 +1,3 @@ +James 2:12-13
+12 So speak ye, and so do, as they that shall be judged by the law of liberty. 13 For he shall have judgment without mercy, that hath shewed no mercy; and mercy rejoiceth against judgment.

+Monday 05-January, 2026 diff --git a/scripture/kjv/01/05/26/scripture.json b/scripture/kjv/01/05/26/scripture.json new file mode 100644 index 00000000..04c96e23 --- /dev/null +++ b/scripture/kjv/01/05/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "James", + "chapter": "2", + "date": "Monday 05-January, 2026", + "getbible": "https://getbible.life/kjv/James/2/12-13", + "name": "James 2:12-13", + "scripture": [ + { + "nr": "12", + "text": "So speak ye, and so do, as they that shall be judged by the law of liberty." + }, + { + "nr": "13", + "text": "For he shall have judgment without mercy, that hath shewed no mercy; and mercy rejoiceth against judgment." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12-13", + "version": "kjv" +} diff --git a/scripture/kjv/01/05/26/scripture.md b/scripture/kjv/01/05/26/scripture.md new file mode 100644 index 00000000..04695e67 --- /dev/null +++ b/scripture/kjv/01/05/26/scripture.md @@ -0,0 +1,5 @@ +**James 2:12-13** + +12 So speak ye, and so do, as they that shall be judged by the law of liberty. 13 For he shall have judgment without mercy, that hath shewed no mercy; and mercy rejoiceth against judgment. + +[Monday 05-January, 2026](https://getbible.life/kjv/James/2/12-13) diff --git a/scripture/kjv/01/05/26/scripture.tg b/scripture/kjv/01/05/26/scripture.tg new file mode 100644 index 00000000..2f9bb079 --- /dev/null +++ b/scripture/kjv/01/05/26/scripture.tg @@ -0,0 +1,4 @@ +James 2:12-13 +12 So speak ye, and so do, as they that shall be judged by the law of liberty. 13 For he shall have judgment without mercy, that hath shewed no mercy; and mercy rejoiceth against judgment. + +Monday 05-January, 2026 diff --git a/scripture/kjv/01/05/26/scripture.tg.id b/scripture/kjv/01/05/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/05/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/05/26/scripture.today b/scripture/kjv/01/05/26/scripture.today new file mode 100644 index 00000000..7cb9fe27 --- /dev/null +++ b/scripture/kjv/01/05/26/scripture.today @@ -0,0 +1 @@ +59 2:12-13 diff --git a/scripture/kjv/01/06/23/scripture.html b/scripture/kjv/01/06/23/scripture.html new file mode 100644 index 00000000..c21ce172 --- /dev/null +++ b/scripture/kjv/01/06/23/scripture.html @@ -0,0 +1,3 @@ +2 John 1:12
+12 Having many things to write unto you, I would not write with paper and ink: but I trust to come unto you, and speak face to face, that our joy may be full.

+Friday 06-January, 2023 diff --git a/scripture/kjv/01/06/23/scripture.json b/scripture/kjv/01/06/23/scripture.json new file mode 100644 index 00000000..e7781480 --- /dev/null +++ b/scripture/kjv/01/06/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Friday 06-January, 2023", + "name": "2 John 1:12", + "scripture": [ + { + "nr": "12", + "text": "Having many things to write unto you, I would not write with paper and ink: but I trust to come unto you, and speak face to face, that our joy may be full." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/06/23/scripture.md b/scripture/kjv/01/06/23/scripture.md new file mode 100644 index 00000000..325fbbaa --- /dev/null +++ b/scripture/kjv/01/06/23/scripture.md @@ -0,0 +1,5 @@ +**2 John 1:12** + +12 Having many things to write unto you, I would not write with paper and ink: but I trust to come unto you, and speak face to face, that our joy may be full. + +[Friday 06-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/06/23/scripture.tg b/scripture/kjv/01/06/23/scripture.tg new file mode 100644 index 00000000..4d5e2db9 --- /dev/null +++ b/scripture/kjv/01/06/23/scripture.tg @@ -0,0 +1,4 @@ +2 John 1:12 +12 Having many things to write unto you, I would not write with paper and ink: but I trust to come unto you, and speak face to face, that our joy may be full. + +Friday 06-January, 2023 diff --git a/scripture/kjv/01/06/23/scripture.today b/scripture/kjv/01/06/23/scripture.today new file mode 100644 index 00000000..dcdcbaba --- /dev/null +++ b/scripture/kjv/01/06/23/scripture.today @@ -0,0 +1 @@ +63 1:12 diff --git a/scripture/kjv/01/06/24/scripture.html b/scripture/kjv/01/06/24/scripture.html new file mode 100644 index 00000000..dd520184 --- /dev/null +++ b/scripture/kjv/01/06/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 15:31
+31 The ear that heareth the reproof of life abideth among the wise.

+Saturday 06-January, 2024 diff --git a/scripture/kjv/01/06/24/scripture.json b/scripture/kjv/01/06/24/scripture.json new file mode 100644 index 00000000..4946947c --- /dev/null +++ b/scripture/kjv/01/06/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "15", + "date": "Saturday 06-January, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/15/31", + "name": "Proverbs 15:31", + "scripture": [ + { + "nr": "31", + "text": "The ear that heareth the reproof of life abideth among the wise." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "31", + "version": "kjv" +} diff --git a/scripture/kjv/01/06/24/scripture.md b/scripture/kjv/01/06/24/scripture.md new file mode 100644 index 00000000..18bba9c2 --- /dev/null +++ b/scripture/kjv/01/06/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 15:31** + +31 The ear that heareth the reproof of life abideth among the wise. + +[Saturday 06-January, 2024](https://getbible.life/kjv/Proverbs/15/31) diff --git a/scripture/kjv/01/06/24/scripture.tg b/scripture/kjv/01/06/24/scripture.tg new file mode 100644 index 00000000..64b53466 --- /dev/null +++ b/scripture/kjv/01/06/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 15:31 +31 The ear that heareth the reproof of life abideth among the wise. + +Saturday 06-January, 2024 diff --git a/scripture/kjv/01/06/24/scripture.tg.id b/scripture/kjv/01/06/24/scripture.tg.id new file mode 100644 index 00000000..f37c021d --- /dev/null +++ b/scripture/kjv/01/06/24/scripture.tg.id @@ -0,0 +1 @@ +1191 diff --git a/scripture/kjv/01/06/24/scripture.today b/scripture/kjv/01/06/24/scripture.today new file mode 100644 index 00000000..5e55fefb --- /dev/null +++ b/scripture/kjv/01/06/24/scripture.today @@ -0,0 +1 @@ +20 15:31 diff --git a/scripture/kjv/01/06/25/scripture.html b/scripture/kjv/01/06/25/scripture.html new file mode 100644 index 00000000..b31a2c26 --- /dev/null +++ b/scripture/kjv/01/06/25/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 12:20
+20 For I fear, lest, when I come, I shall not find you such as I would, and that I shall be found unto you such as ye would not: lest there be debates, envyings, wraths, strifes, backbitings, whisperings, swellings, tumults:

+Monday 06-January, 2025 diff --git a/scripture/kjv/01/06/25/scripture.json b/scripture/kjv/01/06/25/scripture.json new file mode 100644 index 00000000..3a60fcc6 --- /dev/null +++ b/scripture/kjv/01/06/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "12", + "date": "Monday 06-January, 2025", + "getbible": "https://getbible.life/kjv/2 Corinthians/12/20", + "name": "2 Corinthians 12:20", + "scripture": [ + { + "nr": "20", + "text": "For I fear, lest, when I come, I shall not find you such as I would, and that I shall be found unto you such as ye would not: lest there be debates, envyings, wraths, strifes, backbitings, whisperings, swellings, tumults:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20", + "version": "kjv" +} diff --git a/scripture/kjv/01/06/25/scripture.md b/scripture/kjv/01/06/25/scripture.md new file mode 100644 index 00000000..dcdb6dbf --- /dev/null +++ b/scripture/kjv/01/06/25/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 12:20** + +20 For I fear, lest, when I come, I shall not find you such as I would, and that I shall be found unto you such as ye would not: lest there be debates, envyings, wraths, strifes, backbitings, whisperings, swellings, tumults: + +[Monday 06-January, 2025](https://getbible.life/kjv/2 Corinthians/12/20) diff --git a/scripture/kjv/01/06/25/scripture.tg b/scripture/kjv/01/06/25/scripture.tg new file mode 100644 index 00000000..8140eb85 --- /dev/null +++ b/scripture/kjv/01/06/25/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 12:20 +20 For I fear, lest, when I come, I shall not find you such as I would, and that I shall be found unto you such as ye would not: lest there be debates, envyings, wraths, strifes, backbitings, whisperings, swellings, tumults: + +Monday 06-January, 2025 diff --git a/scripture/kjv/01/06/25/scripture.tg.id b/scripture/kjv/01/06/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/06/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/06/25/scripture.today b/scripture/kjv/01/06/25/scripture.today new file mode 100644 index 00000000..ad9c1523 --- /dev/null +++ b/scripture/kjv/01/06/25/scripture.today @@ -0,0 +1 @@ +47 12:20 diff --git a/scripture/kjv/01/06/26/scripture.html b/scripture/kjv/01/06/26/scripture.html new file mode 100644 index 00000000..b1d670b8 --- /dev/null +++ b/scripture/kjv/01/06/26/scripture.html @@ -0,0 +1,3 @@ +Luke 21:17-19
+17 And ye shall be hated of all men for my name’s sake. 18 But there shall not an hair of your head perish. 19 In your patience possess ye your souls.

+Tuesday 06-January, 2026 diff --git a/scripture/kjv/01/06/26/scripture.json b/scripture/kjv/01/06/26/scripture.json new file mode 100644 index 00000000..eea2925a --- /dev/null +++ b/scripture/kjv/01/06/26/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Luke", + "chapter": "21", + "date": "Tuesday 06-January, 2026", + "getbible": "https://getbible.life/kjv/Luke/21/17-19", + "name": "Luke 21:17-19", + "scripture": [ + { + "nr": "17", + "text": "And ye shall be hated of all men for my name’s sake." + }, + { + "nr": "18", + "text": "But there shall not an hair of your head perish." + }, + { + "nr": "19", + "text": "In your patience possess ye your souls." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17-19", + "version": "kjv" +} diff --git a/scripture/kjv/01/06/26/scripture.md b/scripture/kjv/01/06/26/scripture.md new file mode 100644 index 00000000..801d50bc --- /dev/null +++ b/scripture/kjv/01/06/26/scripture.md @@ -0,0 +1,5 @@ +**Luke 21:17-19** + +17 And ye shall be hated of all men for my name’s sake. 18 But there shall not an hair of your head perish. 19 In your patience possess ye your souls. + +[Tuesday 06-January, 2026](https://getbible.life/kjv/Luke/21/17-19) diff --git a/scripture/kjv/01/06/26/scripture.tg b/scripture/kjv/01/06/26/scripture.tg new file mode 100644 index 00000000..9d72fa08 --- /dev/null +++ b/scripture/kjv/01/06/26/scripture.tg @@ -0,0 +1,4 @@ +Luke 21:17-19 +17 And ye shall be hated of all men for my name’s sake. 18 But there shall not an hair of your head perish. 19 In your patience possess ye your souls. + +Tuesday 06-January, 2026 diff --git a/scripture/kjv/01/06/26/scripture.tg.id b/scripture/kjv/01/06/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/06/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/06/26/scripture.today b/scripture/kjv/01/06/26/scripture.today new file mode 100644 index 00000000..eda2503e --- /dev/null +++ b/scripture/kjv/01/06/26/scripture.today @@ -0,0 +1 @@ +42 21:17-19 diff --git a/scripture/kjv/01/07/23/scripture.html b/scripture/kjv/01/07/23/scripture.html new file mode 100644 index 00000000..4861d84a --- /dev/null +++ b/scripture/kjv/01/07/23/scripture.html @@ -0,0 +1,3 @@ +Mark 12:41-44
+41 And Jesus sat over against the treasury, and beheld how the people cast money into the treasury: and many that were rich cast in much. 42 And there came a certain poor widow, and she threw in two mites, which make a farthing. 43 And he called unto him his disciples, and saith unto them, Verily I say unto you, That this poor widow hath cast more in, than all they which have cast into the treasury: 44 For all they did cast in of their abundance; but she of her want did cast in all that she had, even all her living.

+Saturday 07-January, 2023 diff --git a/scripture/kjv/01/07/23/scripture.json b/scripture/kjv/01/07/23/scripture.json new file mode 100644 index 00000000..91d1d8f1 --- /dev/null +++ b/scripture/kjv/01/07/23/scripture.json @@ -0,0 +1,25 @@ +{ + "date": "Saturday 07-January, 2023", + "name": "Mark 12:41-44", + "scripture": [ + { + "nr": "41", + "text": "And Jesus sat over against the treasury, and beheld how the people cast money into the treasury: and many that were rich cast in much." + }, + { + "nr": "42", + "text": "And there came a certain poor widow, and she threw in two mites, which make a farthing." + }, + { + "nr": "43", + "text": "And he called unto him his disciples, and saith unto them, Verily I say unto you, That this poor widow hath cast more in, than all they which have cast into the treasury:" + }, + { + "nr": "44", + "text": "For all they did cast in of their abundance; but she of her want did cast in all that she had, even all her living. " + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/07/23/scripture.md b/scripture/kjv/01/07/23/scripture.md new file mode 100644 index 00000000..df969f2a --- /dev/null +++ b/scripture/kjv/01/07/23/scripture.md @@ -0,0 +1,5 @@ +**Mark 12:41-44** + +41 And Jesus sat over against the treasury, and beheld how the people cast money into the treasury: and many that were rich cast in much. 42 And there came a certain poor widow, and she threw in two mites, which make a farthing. 43 And he called unto him his disciples, and saith unto them, Verily I say unto you, That this poor widow hath cast more in, than all they which have cast into the treasury: 44 For all they did cast in of their abundance; but she of her want did cast in all that she had, even all her living. + +[Saturday 07-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/07/23/scripture.tg b/scripture/kjv/01/07/23/scripture.tg new file mode 100644 index 00000000..3f5e5db3 --- /dev/null +++ b/scripture/kjv/01/07/23/scripture.tg @@ -0,0 +1,4 @@ +Mark 12:41-44 +41 And Jesus sat over against the treasury, and beheld how the people cast money into the treasury: and many that were rich cast in much. 42 And there came a certain poor widow, and she threw in two mites, which make a farthing. 43 And he called unto him his disciples, and saith unto them, Verily I say unto you, That this poor widow hath cast more in, than all they which have cast into the treasury: 44 For all they did cast in of their abundance; but she of her want did cast in all that she had, even all her living. + +Saturday 07-January, 2023 diff --git a/scripture/kjv/01/07/23/scripture.today b/scripture/kjv/01/07/23/scripture.today new file mode 100644 index 00000000..cb8cef38 --- /dev/null +++ b/scripture/kjv/01/07/23/scripture.today @@ -0,0 +1 @@ +41 12:41-44 diff --git a/scripture/kjv/01/07/24/scripture.html b/scripture/kjv/01/07/24/scripture.html new file mode 100644 index 00000000..505662bf --- /dev/null +++ b/scripture/kjv/01/07/24/scripture.html @@ -0,0 +1,3 @@ +Esther 1:17-22
+17 For this deed of the queen shall come abroad unto all women, so that they shall despise their husbands in their eyes, when it shall be reported, The king Ahasuerus commanded Vashti the queen to be brought in before him, but she came not. 18 Likewise shall the ladies of Persia and Media say this day unto all the king’s princes, which have heard of the deed of the queen. Thus shall there arise too much contempt and wrath. 19 If it please the king, let there go a royal commandment from him, and let it be written among the laws of the Persians and the Medes, that it be not altered, That Vashti come no more before king Ahasuerus; and let the king give her royal estate unto another that is better than she. 20 And when the king’s decree which he shall make shall be published throughout all his empire, (for it is great,) all the wives shall give to their husbands honour, both to great and small. 21 And the saying pleased the king and the princes; and the king did according to the word of Memucan: 22 For he sent letters into all the king’s provinces, into every province according to the writing thereof, and to every people after their language, that every man should bear rule in his own house, and that it should be published according to the language of every people.

+Sunday 07-January, 2024 diff --git a/scripture/kjv/01/07/24/scripture.json b/scripture/kjv/01/07/24/scripture.json new file mode 100644 index 00000000..b6c675dd --- /dev/null +++ b/scripture/kjv/01/07/24/scripture.json @@ -0,0 +1,37 @@ +{ + "book": "Esther", + "chapter": "1", + "date": "Sunday 07-January, 2024", + "getbible": "https://getbible.life/kjv/Esther/1/17-22", + "name": "Esther 1:17-22", + "scripture": [ + { + "nr": "17", + "text": "For this deed of the queen shall come abroad unto all women, so that they shall despise their husbands in their eyes, when it shall be reported, The king Ahasuerus commanded Vashti the queen to be brought in before him, but she came not." + }, + { + "nr": "18", + "text": "Likewise shall the ladies of Persia and Media say this day unto all the king’s princes, which have heard of the deed of the queen. Thus shall there arise too much contempt and wrath." + }, + { + "nr": "19", + "text": "If it please the king, let there go a royal commandment from him, and let it be written among the laws of the Persians and the Medes, that it be not altered, That Vashti come no more before king Ahasuerus; and let the king give her royal estate unto another that is better than she." + }, + { + "nr": "20", + "text": "And when the king’s decree which he shall make shall be published throughout all his empire, (for it is great,) all the wives shall give to their husbands honour, both to great and small." + }, + { + "nr": "21", + "text": "And the saying pleased the king and the princes; and the king did according to the word of Memucan:" + }, + { + "nr": "22", + "text": "For he sent letters into all the king’s provinces, into every province according to the writing thereof, and to every people after their language, that every man should bear rule in his own house, and that it should be published according to the language of every people. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17-22", + "version": "kjv" +} diff --git a/scripture/kjv/01/07/24/scripture.md b/scripture/kjv/01/07/24/scripture.md new file mode 100644 index 00000000..a8129796 --- /dev/null +++ b/scripture/kjv/01/07/24/scripture.md @@ -0,0 +1,5 @@ +**Esther 1:17-22** + +17 For this deed of the queen shall come abroad unto all women, so that they shall despise their husbands in their eyes, when it shall be reported, The king Ahasuerus commanded Vashti the queen to be brought in before him, but she came not. 18 Likewise shall the ladies of Persia and Media say this day unto all the king’s princes, which have heard of the deed of the queen. Thus shall there arise too much contempt and wrath. 19 If it please the king, let there go a royal commandment from him, and let it be written among the laws of the Persians and the Medes, that it be not altered, That Vashti come no more before king Ahasuerus; and let the king give her royal estate unto another that is better than she. 20 And when the king’s decree which he shall make shall be published throughout all his empire, (for it is great,) all the wives shall give to their husbands honour, both to great and small. 21 And the saying pleased the king and the princes; and the king did according to the word of Memucan: 22 For he sent letters into all the king’s provinces, into every province according to the writing thereof, and to every people after their language, that every man should bear rule in his own house, and that it should be published according to the language of every people. + +[Sunday 07-January, 2024](https://getbible.life/kjv/Esther/1/17-22) diff --git a/scripture/kjv/01/07/24/scripture.tg b/scripture/kjv/01/07/24/scripture.tg new file mode 100644 index 00000000..4b0028a5 --- /dev/null +++ b/scripture/kjv/01/07/24/scripture.tg @@ -0,0 +1,4 @@ +Esther 1:17-22 +17 For this deed of the queen shall come abroad unto all women, so that they shall despise their husbands in their eyes, when it shall be reported, The king Ahasuerus commanded Vashti the queen to be brought in before him, but she came not. 18 Likewise shall the ladies of Persia and Media say this day unto all the king’s princes, which have heard of the deed of the queen. Thus shall there arise too much contempt and wrath. 19 If it please the king, let there go a royal commandment from him, and let it be written among the laws of the Persians and the Medes, that it be not altered, That Vashti come no more before king Ahasuerus; and let the king give her royal estate unto another that is better than she. 20 And when the king’s decree which he shall make shall be published throughout all his empire, (for it is great,) all the wives shall give to their husbands honour, both to great and small. 21 And the saying pleased the king and the princes; and the king did according to the word of Memucan: 22 For he sent letters into all the king’s provinces, into every province according to the writing thereof, and to every people after their language, that every man should bear rule in his own house, and that it should be published according to the language of every people. + +Sunday 07-January, 2024 diff --git a/scripture/kjv/01/07/24/scripture.tg.id b/scripture/kjv/01/07/24/scripture.tg.id new file mode 100644 index 00000000..8cdd21db --- /dev/null +++ b/scripture/kjv/01/07/24/scripture.tg.id @@ -0,0 +1 @@ +1192 diff --git a/scripture/kjv/01/07/24/scripture.today b/scripture/kjv/01/07/24/scripture.today new file mode 100644 index 00000000..a0abae20 --- /dev/null +++ b/scripture/kjv/01/07/24/scripture.today @@ -0,0 +1 @@ +17 1:17-22 diff --git a/scripture/kjv/01/07/25/scripture.html b/scripture/kjv/01/07/25/scripture.html new file mode 100644 index 00000000..0d902e3c --- /dev/null +++ b/scripture/kjv/01/07/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 12:5
+5 For the oppression of the poor, for the sighing of the needy, now will I arise, saith the Lord; I will set him in safety from him that puffeth at him.

+Tuesday 07-January, 2025 diff --git a/scripture/kjv/01/07/25/scripture.json b/scripture/kjv/01/07/25/scripture.json new file mode 100644 index 00000000..0196106e --- /dev/null +++ b/scripture/kjv/01/07/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "12", + "date": "Tuesday 07-January, 2025", + "getbible": "https://getbible.life/kjv/Psalms/12/5", + "name": "Psalms 12:5", + "scripture": [ + { + "nr": "5", + "text": "For the oppression of the poor, for the sighing of the needy, now will I arise, saith the Lord; I will set him in safety from him that puffeth at him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5", + "version": "kjv" +} diff --git a/scripture/kjv/01/07/25/scripture.md b/scripture/kjv/01/07/25/scripture.md new file mode 100644 index 00000000..18f38869 --- /dev/null +++ b/scripture/kjv/01/07/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 12:5** + +5 For the oppression of the poor, for the sighing of the needy, now will I arise, saith the Lord; I will set him in safety from him that puffeth at him. + +[Tuesday 07-January, 2025](https://getbible.life/kjv/Psalms/12/5) diff --git a/scripture/kjv/01/07/25/scripture.tg b/scripture/kjv/01/07/25/scripture.tg new file mode 100644 index 00000000..39c46277 --- /dev/null +++ b/scripture/kjv/01/07/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 12:5 +5 For the oppression of the poor, for the sighing of the needy, now will I arise, saith the Lord; I will set him in safety from him that puffeth at him. + +Tuesday 07-January, 2025 diff --git a/scripture/kjv/01/07/25/scripture.tg.id b/scripture/kjv/01/07/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/07/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/07/25/scripture.today b/scripture/kjv/01/07/25/scripture.today new file mode 100644 index 00000000..3acda78a --- /dev/null +++ b/scripture/kjv/01/07/25/scripture.today @@ -0,0 +1 @@ +19 12:5 diff --git a/scripture/kjv/01/07/26/scripture.html b/scripture/kjv/01/07/26/scripture.html new file mode 100644 index 00000000..17e44e5a --- /dev/null +++ b/scripture/kjv/01/07/26/scripture.html @@ -0,0 +1,3 @@ +Luke 3:10-14
+10 And the people asked him, saying, What shall we do then? 11 He answereth and saith unto them, He that hath two coats, let him impart to him that hath none; and he that hath meat, let him do likewise. 12 Then came also publicans to be baptized, and said unto him, Master, what shall we do? 13 And he said unto them, Exact no more than that which is appointed you. 14 And the soldiers likewise demanded of him, saying, And what shall we do? And he said unto them, Do violence to no man, neither accuse any falsely; and be content with your wages.

+Wednesday 07-January, 2026 diff --git a/scripture/kjv/01/07/26/scripture.json b/scripture/kjv/01/07/26/scripture.json new file mode 100644 index 00000000..a0d4c552 --- /dev/null +++ b/scripture/kjv/01/07/26/scripture.json @@ -0,0 +1,33 @@ +{ + "book": "Luke", + "chapter": "3", + "date": "Wednesday 07-January, 2026", + "getbible": "https://getbible.life/kjv/Luke/3/10-14", + "name": "Luke 3:10-14", + "scripture": [ + { + "nr": "10", + "text": "And the people asked him, saying, What shall we do then?" + }, + { + "nr": "11", + "text": "He answereth and saith unto them, He that hath two coats, let him impart to him that hath none; and he that hath meat, let him do likewise." + }, + { + "nr": "12", + "text": "Then came also publicans to be baptized, and said unto him, Master, what shall we do?" + }, + { + "nr": "13", + "text": "And he said unto them, Exact no more than that which is appointed you." + }, + { + "nr": "14", + "text": "And the soldiers likewise demanded of him, saying, And what shall we do? And he said unto them, Do violence to no man, neither accuse any falsely; and be content with your wages." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10-14", + "version": "kjv" +} diff --git a/scripture/kjv/01/07/26/scripture.md b/scripture/kjv/01/07/26/scripture.md new file mode 100644 index 00000000..d57205f6 --- /dev/null +++ b/scripture/kjv/01/07/26/scripture.md @@ -0,0 +1,5 @@ +**Luke 3:10-14** + +10 And the people asked him, saying, What shall we do then? 11 He answereth and saith unto them, He that hath two coats, let him impart to him that hath none; and he that hath meat, let him do likewise. 12 Then came also publicans to be baptized, and said unto him, Master, what shall we do? 13 And he said unto them, Exact no more than that which is appointed you. 14 And the soldiers likewise demanded of him, saying, And what shall we do? And he said unto them, Do violence to no man, neither accuse any falsely; and be content with your wages. + +[Wednesday 07-January, 2026](https://getbible.life/kjv/Luke/3/10-14) diff --git a/scripture/kjv/01/07/26/scripture.tg b/scripture/kjv/01/07/26/scripture.tg new file mode 100644 index 00000000..712811da --- /dev/null +++ b/scripture/kjv/01/07/26/scripture.tg @@ -0,0 +1,4 @@ +Luke 3:10-14 +10 And the people asked him, saying, What shall we do then? 11 He answereth and saith unto them, He that hath two coats, let him impart to him that hath none; and he that hath meat, let him do likewise. 12 Then came also publicans to be baptized, and said unto him, Master, what shall we do? 13 And he said unto them, Exact no more than that which is appointed you. 14 And the soldiers likewise demanded of him, saying, And what shall we do? And he said unto them, Do violence to no man, neither accuse any falsely; and be content with your wages. + +Wednesday 07-January, 2026 diff --git a/scripture/kjv/01/07/26/scripture.tg.id b/scripture/kjv/01/07/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/07/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/07/26/scripture.today b/scripture/kjv/01/07/26/scripture.today new file mode 100644 index 00000000..69c1d94e --- /dev/null +++ b/scripture/kjv/01/07/26/scripture.today @@ -0,0 +1 @@ +42 3:10-14 diff --git a/scripture/kjv/01/08/23/scripture.html b/scripture/kjv/01/08/23/scripture.html new file mode 100644 index 00000000..d31277ea --- /dev/null +++ b/scripture/kjv/01/08/23/scripture.html @@ -0,0 +1,3 @@ +Micah 6:8
+8 He hath shewed thee, O man, what is good; and what doth the Lord require of thee, but to do justly, and to love mercy, and to walk humbly with thy God?

+Sunday 08-January, 2023 diff --git a/scripture/kjv/01/08/23/scripture.json b/scripture/kjv/01/08/23/scripture.json new file mode 100644 index 00000000..7256fd13 --- /dev/null +++ b/scripture/kjv/01/08/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Sunday 08-January, 2023", + "name": "Micah 6:8", + "scripture": [ + { + "nr": "8", + "text": "He hath shewed thee, O man, what is good; and what doth the Lord require of thee, but to do justly, and to love mercy, and to walk humbly with thy God?" + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/08/23/scripture.md b/scripture/kjv/01/08/23/scripture.md new file mode 100644 index 00000000..ea6e2c5d --- /dev/null +++ b/scripture/kjv/01/08/23/scripture.md @@ -0,0 +1,5 @@ +**Micah 6:8** + +8 He hath shewed thee, O man, what is good; and what doth the Lord require of thee, but to do justly, and to love mercy, and to walk humbly with thy God? + +[Sunday 08-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/08/23/scripture.tg b/scripture/kjv/01/08/23/scripture.tg new file mode 100644 index 00000000..91fb801f --- /dev/null +++ b/scripture/kjv/01/08/23/scripture.tg @@ -0,0 +1,4 @@ +Micah 6:8 +8 He hath shewed thee, O man, what is good; and what doth the Lord require of thee, but to do justly, and to love mercy, and to walk humbly with thy God? + +Sunday 08-January, 2023 diff --git a/scripture/kjv/01/08/23/scripture.today b/scripture/kjv/01/08/23/scripture.today new file mode 100644 index 00000000..5ec5f9c6 --- /dev/null +++ b/scripture/kjv/01/08/23/scripture.today @@ -0,0 +1 @@ +33 6:8 diff --git a/scripture/kjv/01/08/24/scripture.html b/scripture/kjv/01/08/24/scripture.html new file mode 100644 index 00000000..d76d3d4f --- /dev/null +++ b/scripture/kjv/01/08/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 27:11
+11 My son, be wise, and make my heart glad, that I may answer him that reproacheth me.

+Monday 08-January, 2024 diff --git a/scripture/kjv/01/08/24/scripture.json b/scripture/kjv/01/08/24/scripture.json new file mode 100644 index 00000000..f95d7d75 --- /dev/null +++ b/scripture/kjv/01/08/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "27", + "date": "Monday 08-January, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/27/11", + "name": "Proverbs 27:11", + "scripture": [ + { + "nr": "11", + "text": "My son, be wise, and make my heart glad, that I may answer him that reproacheth me." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/01/08/24/scripture.md b/scripture/kjv/01/08/24/scripture.md new file mode 100644 index 00000000..99f0cdb5 --- /dev/null +++ b/scripture/kjv/01/08/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 27:11** + +11 My son, be wise, and make my heart glad, that I may answer him that reproacheth me. + +[Monday 08-January, 2024](https://getbible.life/kjv/Proverbs/27/11) diff --git a/scripture/kjv/01/08/24/scripture.tg b/scripture/kjv/01/08/24/scripture.tg new file mode 100644 index 00000000..8e0ae64b --- /dev/null +++ b/scripture/kjv/01/08/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 27:11 +11 My son, be wise, and make my heart glad, that I may answer him that reproacheth me. + +Monday 08-January, 2024 diff --git a/scripture/kjv/01/08/24/scripture.tg.id b/scripture/kjv/01/08/24/scripture.tg.id new file mode 100644 index 00000000..9f7893cf --- /dev/null +++ b/scripture/kjv/01/08/24/scripture.tg.id @@ -0,0 +1 @@ +1193 diff --git a/scripture/kjv/01/08/24/scripture.today b/scripture/kjv/01/08/24/scripture.today new file mode 100644 index 00000000..04e4d5ef --- /dev/null +++ b/scripture/kjv/01/08/24/scripture.today @@ -0,0 +1 @@ +20 27:11 diff --git a/scripture/kjv/01/08/25/scripture.html b/scripture/kjv/01/08/25/scripture.html new file mode 100644 index 00000000..1d7166f7 --- /dev/null +++ b/scripture/kjv/01/08/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 51:12
+12 Restore unto me the joy of thy salvation; and uphold me with thy free spirit.

+Wednesday 08-January, 2025 diff --git a/scripture/kjv/01/08/25/scripture.json b/scripture/kjv/01/08/25/scripture.json new file mode 100644 index 00000000..3fe1c910 --- /dev/null +++ b/scripture/kjv/01/08/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "51", + "date": "Wednesday 08-January, 2025", + "getbible": "https://getbible.life/kjv/Psalms/51/12", + "name": "Psalms 51:12", + "scripture": [ + { + "nr": "12", + "text": "Restore unto me the joy of thy salvation; and uphold me with thy free spirit." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/01/08/25/scripture.md b/scripture/kjv/01/08/25/scripture.md new file mode 100644 index 00000000..fd8a1467 --- /dev/null +++ b/scripture/kjv/01/08/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 51:12** + +12 Restore unto me the joy of thy salvation; and uphold me with thy free spirit. + +[Wednesday 08-January, 2025](https://getbible.life/kjv/Psalms/51/12) diff --git a/scripture/kjv/01/08/25/scripture.tg b/scripture/kjv/01/08/25/scripture.tg new file mode 100644 index 00000000..b0dd5c43 --- /dev/null +++ b/scripture/kjv/01/08/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 51:12 +12 Restore unto me the joy of thy salvation; and uphold me with thy free spirit. + +Wednesday 08-January, 2025 diff --git a/scripture/kjv/01/08/25/scripture.tg.id b/scripture/kjv/01/08/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/08/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/08/25/scripture.today b/scripture/kjv/01/08/25/scripture.today new file mode 100644 index 00000000..f397fd8a --- /dev/null +++ b/scripture/kjv/01/08/25/scripture.today @@ -0,0 +1 @@ +19 51:12 diff --git a/scripture/kjv/01/08/26/scripture.html b/scripture/kjv/01/08/26/scripture.html new file mode 100644 index 00000000..649d2c7d --- /dev/null +++ b/scripture/kjv/01/08/26/scripture.html @@ -0,0 +1,3 @@ +Romans 3:3-4
+3 For what if some did not believe? shall their unbelief make the faith of God without effect? 4 God forbid: yea, let God be true, but every man a liar; as it is written, That thou mightest be justified in thy sayings, and mightest overcome when thou art judged.

+Thursday 08-January, 2026 diff --git a/scripture/kjv/01/08/26/scripture.json b/scripture/kjv/01/08/26/scripture.json new file mode 100644 index 00000000..f614a01a --- /dev/null +++ b/scripture/kjv/01/08/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Romans", + "chapter": "3", + "date": "Thursday 08-January, 2026", + "getbible": "https://getbible.life/kjv/Romans/3/3-4", + "name": "Romans 3:3-4", + "scripture": [ + { + "nr": "3", + "text": "For what if some did not believe? shall their unbelief make the faith of God without effect?" + }, + { + "nr": "4", + "text": "God forbid: yea, let God be true, but every man a liar; as it is written, That thou mightest be justified in thy sayings, and mightest overcome when thou art judged." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3-4", + "version": "kjv" +} diff --git a/scripture/kjv/01/08/26/scripture.md b/scripture/kjv/01/08/26/scripture.md new file mode 100644 index 00000000..084749e0 --- /dev/null +++ b/scripture/kjv/01/08/26/scripture.md @@ -0,0 +1,5 @@ +**Romans 3:3-4** + +3 For what if some did not believe? shall their unbelief make the faith of God without effect? 4 God forbid: yea, let God be true, but every man a liar; as it is written, That thou mightest be justified in thy sayings, and mightest overcome when thou art judged. + +[Thursday 08-January, 2026](https://getbible.life/kjv/Romans/3/3-4) diff --git a/scripture/kjv/01/08/26/scripture.tg b/scripture/kjv/01/08/26/scripture.tg new file mode 100644 index 00000000..28dcb980 --- /dev/null +++ b/scripture/kjv/01/08/26/scripture.tg @@ -0,0 +1,4 @@ +Romans 3:3-4 +3 For what if some did not believe? shall their unbelief make the faith of God without effect? 4 God forbid: yea, let God be true, but every man a liar; as it is written, That thou mightest be justified in thy sayings, and mightest overcome when thou art judged. + +Thursday 08-January, 2026 diff --git a/scripture/kjv/01/08/26/scripture.tg.id b/scripture/kjv/01/08/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/08/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/08/26/scripture.today b/scripture/kjv/01/08/26/scripture.today new file mode 100644 index 00000000..ddd2c176 --- /dev/null +++ b/scripture/kjv/01/08/26/scripture.today @@ -0,0 +1 @@ +45 3:3-4 diff --git a/scripture/kjv/01/09/23/scripture.html b/scripture/kjv/01/09/23/scripture.html new file mode 100644 index 00000000..580c90d8 --- /dev/null +++ b/scripture/kjv/01/09/23/scripture.html @@ -0,0 +1,3 @@ +Romans 1:16
+16 For I am not ashamed of the gospel of Christ: for it is the power of God unto salvation to every one that believeth; to the Jew first, and also to the Greek.

+Monday 09-January, 2023 diff --git a/scripture/kjv/01/09/23/scripture.json b/scripture/kjv/01/09/23/scripture.json new file mode 100644 index 00000000..0011b9fc --- /dev/null +++ b/scripture/kjv/01/09/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Monday 09-January, 2023", + "name": "Romans 1:16", + "scripture": [ + { + "nr": "16", + "text": "For I am not ashamed of the gospel of Christ: for it is the power of God unto salvation to every one that believeth; to the Jew first, and also to the Greek." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/09/23/scripture.md b/scripture/kjv/01/09/23/scripture.md new file mode 100644 index 00000000..5c4c9278 --- /dev/null +++ b/scripture/kjv/01/09/23/scripture.md @@ -0,0 +1,5 @@ +**Romans 1:16** + +16 For I am not ashamed of the gospel of Christ: for it is the power of God unto salvation to every one that believeth; to the Jew first, and also to the Greek. + +[Monday 09-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/09/23/scripture.tg b/scripture/kjv/01/09/23/scripture.tg new file mode 100644 index 00000000..158b9c73 --- /dev/null +++ b/scripture/kjv/01/09/23/scripture.tg @@ -0,0 +1,4 @@ +Romans 1:16 +16 For I am not ashamed of the gospel of Christ: for it is the power of God unto salvation to every one that believeth; to the Jew first, and also to the Greek. + +Monday 09-January, 2023 diff --git a/scripture/kjv/01/09/23/scripture.today b/scripture/kjv/01/09/23/scripture.today new file mode 100644 index 00000000..a1af5cfd --- /dev/null +++ b/scripture/kjv/01/09/23/scripture.today @@ -0,0 +1 @@ +45 1:16 diff --git a/scripture/kjv/01/09/24/scripture.html b/scripture/kjv/01/09/24/scripture.html new file mode 100644 index 00000000..821d1a63 --- /dev/null +++ b/scripture/kjv/01/09/24/scripture.html @@ -0,0 +1,3 @@ +Matthew 4:8-11
+8 Again, the devil taketh him up into an exceeding high mountain, and sheweth him all the kingdoms of the world, and the glory of them; 9 And saith unto him, All these things will I give thee, if thou wilt fall down and worship me. 10 Then saith Jesus unto him, Get thee hence, Satan: for it is written, Thou shalt worship the Lord thy God, and him only shalt thou serve. 11 Then the devil leaveth him, and, behold, angels came and ministered unto him.

+Tuesday 09-January, 2024 diff --git a/scripture/kjv/01/09/24/scripture.json b/scripture/kjv/01/09/24/scripture.json new file mode 100644 index 00000000..021dcefb --- /dev/null +++ b/scripture/kjv/01/09/24/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "Matthew", + "chapter": "4", + "date": "Tuesday 09-January, 2024", + "getbible": "https://getbible.life/kjv/Matthew/4/8-11", + "name": "Matthew 4:8-11", + "scripture": [ + { + "nr": "8", + "text": "Again, the devil taketh him up into an exceeding high mountain, and sheweth him all the kingdoms of the world, and the glory of them;" + }, + { + "nr": "9", + "text": "And saith unto him, All these things will I give thee, if thou wilt fall down and worship me." + }, + { + "nr": "10", + "text": "Then saith Jesus unto him, Get thee hence, Satan: for it is written, Thou shalt worship the Lord thy God, and him only shalt thou serve." + }, + { + "nr": "11", + "text": "Then the devil leaveth him, and, behold, angels came and ministered unto him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8-11", + "version": "kjv" +} diff --git a/scripture/kjv/01/09/24/scripture.md b/scripture/kjv/01/09/24/scripture.md new file mode 100644 index 00000000..fbd4bb4f --- /dev/null +++ b/scripture/kjv/01/09/24/scripture.md @@ -0,0 +1,5 @@ +**Matthew 4:8-11** + +8 Again, the devil taketh him up into an exceeding high mountain, and sheweth him all the kingdoms of the world, and the glory of them; 9 And saith unto him, All these things will I give thee, if thou wilt fall down and worship me. 10 Then saith Jesus unto him, Get thee hence, Satan: for it is written, Thou shalt worship the Lord thy God, and him only shalt thou serve. 11 Then the devil leaveth him, and, behold, angels came and ministered unto him. + +[Tuesday 09-January, 2024](https://getbible.life/kjv/Matthew/4/8-11) diff --git a/scripture/kjv/01/09/24/scripture.tg b/scripture/kjv/01/09/24/scripture.tg new file mode 100644 index 00000000..aa673293 --- /dev/null +++ b/scripture/kjv/01/09/24/scripture.tg @@ -0,0 +1,4 @@ +Matthew 4:8-11 +8 Again, the devil taketh him up into an exceeding high mountain, and sheweth him all the kingdoms of the world, and the glory of them; 9 And saith unto him, All these things will I give thee, if thou wilt fall down and worship me. 10 Then saith Jesus unto him, Get thee hence, Satan: for it is written, Thou shalt worship the Lord thy God, and him only shalt thou serve. 11 Then the devil leaveth him, and, behold, angels came and ministered unto him. + +Tuesday 09-January, 2024 diff --git a/scripture/kjv/01/09/24/scripture.tg.id b/scripture/kjv/01/09/24/scripture.tg.id new file mode 100644 index 00000000..9f6bb628 --- /dev/null +++ b/scripture/kjv/01/09/24/scripture.tg.id @@ -0,0 +1 @@ +1194 diff --git a/scripture/kjv/01/09/24/scripture.today b/scripture/kjv/01/09/24/scripture.today new file mode 100644 index 00000000..a6b52b5d --- /dev/null +++ b/scripture/kjv/01/09/24/scripture.today @@ -0,0 +1 @@ +40 4:8-11 diff --git a/scripture/kjv/01/09/25/scripture.html b/scripture/kjv/01/09/25/scripture.html new file mode 100644 index 00000000..6eb6705d --- /dev/null +++ b/scripture/kjv/01/09/25/scripture.html @@ -0,0 +1,3 @@ +Luke 20:46-47
+46 Beware of the scribes, which desire to walk in long robes, and love greetings in the markets, and the highest seats in the synagogues, and the chief rooms at feasts; 47 Which devour widows’ houses, and for a shew make long prayers: the same shall receive greater damnation.

+Thursday 09-January, 2025 diff --git a/scripture/kjv/01/09/25/scripture.json b/scripture/kjv/01/09/25/scripture.json new file mode 100644 index 00000000..e051e39f --- /dev/null +++ b/scripture/kjv/01/09/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Luke", + "chapter": "20", + "date": "Thursday 09-January, 2025", + "getbible": "https://getbible.life/kjv/Luke/20/46-47", + "name": "Luke 20:46-47", + "scripture": [ + { + "nr": "46", + "text": "Beware of the scribes, which desire to walk in long robes, and love greetings in the markets, and the highest seats in the synagogues, and the chief rooms at feasts;" + }, + { + "nr": "47", + "text": "Which devour widows’ houses, and for a shew make long prayers: the same shall receive greater damnation. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "46-47", + "version": "kjv" +} diff --git a/scripture/kjv/01/09/25/scripture.md b/scripture/kjv/01/09/25/scripture.md new file mode 100644 index 00000000..6a04b126 --- /dev/null +++ b/scripture/kjv/01/09/25/scripture.md @@ -0,0 +1,5 @@ +**Luke 20:46-47** + +46 Beware of the scribes, which desire to walk in long robes, and love greetings in the markets, and the highest seats in the synagogues, and the chief rooms at feasts; 47 Which devour widows’ houses, and for a shew make long prayers: the same shall receive greater damnation. + +[Thursday 09-January, 2025](https://getbible.life/kjv/Luke/20/46-47) diff --git a/scripture/kjv/01/09/25/scripture.tg b/scripture/kjv/01/09/25/scripture.tg new file mode 100644 index 00000000..204755bf --- /dev/null +++ b/scripture/kjv/01/09/25/scripture.tg @@ -0,0 +1,4 @@ +Luke 20:46-47 +46 Beware of the scribes, which desire to walk in long robes, and love greetings in the markets, and the highest seats in the synagogues, and the chief rooms at feasts; 47 Which devour widows’ houses, and for a shew make long prayers: the same shall receive greater damnation. + +Thursday 09-January, 2025 diff --git a/scripture/kjv/01/09/25/scripture.tg.id b/scripture/kjv/01/09/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/09/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/09/25/scripture.today b/scripture/kjv/01/09/25/scripture.today new file mode 100644 index 00000000..65a9e4be --- /dev/null +++ b/scripture/kjv/01/09/25/scripture.today @@ -0,0 +1 @@ +42 20:46-47 diff --git a/scripture/kjv/01/09/26/scripture.html b/scripture/kjv/01/09/26/scripture.html new file mode 100644 index 00000000..2c7db541 --- /dev/null +++ b/scripture/kjv/01/09/26/scripture.html @@ -0,0 +1,3 @@ +Exodus 23:20-25
+20 Behold, I send an Angel before thee, to keep thee in the way, and to bring thee into the place which I have prepared. 21 Beware of him, and obey his voice, provoke him not; for he will not pardon your transgressions: for my name is in him. 22 But if thou shalt indeed obey his voice, and do all that I speak; then I will be an enemy unto thine enemies, and an adversary unto thine adversaries. 23 For mine Angel shall go before thee, and bring thee in unto the Amorites, and the Hittites, and the Perizzites, and the Canaanites, the Hivites, and the Jebusites: and I will cut them off. 24 Thou shalt not bow down to their gods, nor serve them, nor do after their works: but thou shalt utterly overthrow them, and quite break down their images. 25 And ye shall serve the Lord your God, and he shall bless thy bread, and thy water; and I will take sickness away from the midst of thee.

+Friday 09-January, 2026 diff --git a/scripture/kjv/01/09/26/scripture.json b/scripture/kjv/01/09/26/scripture.json new file mode 100644 index 00000000..ca56c754 --- /dev/null +++ b/scripture/kjv/01/09/26/scripture.json @@ -0,0 +1,37 @@ +{ + "book": "Exodus", + "chapter": "23", + "date": "Friday 09-January, 2026", + "getbible": "https://getbible.life/kjv/Exodus/23/20-25", + "name": "Exodus 23:20-25", + "scripture": [ + { + "nr": "20", + "text": "Behold, I send an Angel before thee, to keep thee in the way, and to bring thee into the place which I have prepared." + }, + { + "nr": "21", + "text": "Beware of him, and obey his voice, provoke him not; for he will not pardon your transgressions: for my name is in him." + }, + { + "nr": "22", + "text": "But if thou shalt indeed obey his voice, and do all that I speak; then I will be an enemy unto thine enemies, and an adversary unto thine adversaries." + }, + { + "nr": "23", + "text": "For mine Angel shall go before thee, and bring thee in unto the Amorites, and the Hittites, and the Perizzites, and the Canaanites, the Hivites, and the Jebusites: and I will cut them off." + }, + { + "nr": "24", + "text": "Thou shalt not bow down to their gods, nor serve them, nor do after their works: but thou shalt utterly overthrow them, and quite break down their images." + }, + { + "nr": "25", + "text": "And ye shall serve the Lord your God, and he shall bless thy bread, and thy water; and I will take sickness away from the midst of thee." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20-25", + "version": "kjv" +} diff --git a/scripture/kjv/01/09/26/scripture.md b/scripture/kjv/01/09/26/scripture.md new file mode 100644 index 00000000..857bc726 --- /dev/null +++ b/scripture/kjv/01/09/26/scripture.md @@ -0,0 +1,5 @@ +**Exodus 23:20-25** + +20 Behold, I send an Angel before thee, to keep thee in the way, and to bring thee into the place which I have prepared. 21 Beware of him, and obey his voice, provoke him not; for he will not pardon your transgressions: for my name is in him. 22 But if thou shalt indeed obey his voice, and do all that I speak; then I will be an enemy unto thine enemies, and an adversary unto thine adversaries. 23 For mine Angel shall go before thee, and bring thee in unto the Amorites, and the Hittites, and the Perizzites, and the Canaanites, the Hivites, and the Jebusites: and I will cut them off. 24 Thou shalt not bow down to their gods, nor serve them, nor do after their works: but thou shalt utterly overthrow them, and quite break down their images. 25 And ye shall serve the Lord your God, and he shall bless thy bread, and thy water; and I will take sickness away from the midst of thee. + +[Friday 09-January, 2026](https://getbible.life/kjv/Exodus/23/20-25) diff --git a/scripture/kjv/01/09/26/scripture.tg b/scripture/kjv/01/09/26/scripture.tg new file mode 100644 index 00000000..1c467ab9 --- /dev/null +++ b/scripture/kjv/01/09/26/scripture.tg @@ -0,0 +1,4 @@ +Exodus 23:20-25 +20 Behold, I send an Angel before thee, to keep thee in the way, and to bring thee into the place which I have prepared. 21 Beware of him, and obey his voice, provoke him not; for he will not pardon your transgressions: for my name is in him. 22 But if thou shalt indeed obey his voice, and do all that I speak; then I will be an enemy unto thine enemies, and an adversary unto thine adversaries. 23 For mine Angel shall go before thee, and bring thee in unto the Amorites, and the Hittites, and the Perizzites, and the Canaanites, the Hivites, and the Jebusites: and I will cut them off. 24 Thou shalt not bow down to their gods, nor serve them, nor do after their works: but thou shalt utterly overthrow them, and quite break down their images. 25 And ye shall serve the Lord your God, and he shall bless thy bread, and thy water; and I will take sickness away from the midst of thee. + +Friday 09-January, 2026 diff --git a/scripture/kjv/01/09/26/scripture.tg.id b/scripture/kjv/01/09/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/09/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/09/26/scripture.today b/scripture/kjv/01/09/26/scripture.today new file mode 100644 index 00000000..7752d27b --- /dev/null +++ b/scripture/kjv/01/09/26/scripture.today @@ -0,0 +1 @@ +2 23:20-25 diff --git a/scripture/kjv/01/10/23/scripture.html b/scripture/kjv/01/10/23/scripture.html new file mode 100644 index 00000000..a07e088e --- /dev/null +++ b/scripture/kjv/01/10/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 25:26
+26 A righteous man falling down before the wicked is as a troubled fountain, and a corrupt spring.

+Tuesday 10-January, 2023 diff --git a/scripture/kjv/01/10/23/scripture.json b/scripture/kjv/01/10/23/scripture.json new file mode 100644 index 00000000..77a82941 --- /dev/null +++ b/scripture/kjv/01/10/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Tuesday 10-January, 2023", + "name": "Proverbs 25:26", + "scripture": [ + { + "nr": "26", + "text": "A righteous man falling down before the wicked is as a troubled fountain, and a corrupt spring." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/10/23/scripture.md b/scripture/kjv/01/10/23/scripture.md new file mode 100644 index 00000000..0b4a6e9a --- /dev/null +++ b/scripture/kjv/01/10/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 25:26** + +26 A righteous man falling down before the wicked is as a troubled fountain, and a corrupt spring. + +[Tuesday 10-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/10/23/scripture.tg b/scripture/kjv/01/10/23/scripture.tg new file mode 100644 index 00000000..2c53502d --- /dev/null +++ b/scripture/kjv/01/10/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 25:26 +26 A righteous man falling down before the wicked is as a troubled fountain, and a corrupt spring. + +Tuesday 10-January, 2023 diff --git a/scripture/kjv/01/10/23/scripture.today b/scripture/kjv/01/10/23/scripture.today new file mode 100644 index 00000000..a6516e71 --- /dev/null +++ b/scripture/kjv/01/10/23/scripture.today @@ -0,0 +1 @@ +20 25:26 diff --git a/scripture/kjv/01/10/24/scripture.html b/scripture/kjv/01/10/24/scripture.html new file mode 100644 index 00000000..3e8704bb --- /dev/null +++ b/scripture/kjv/01/10/24/scripture.html @@ -0,0 +1,3 @@ +John 13:17
+17 If ye know these things, happy are ye if ye do them.

+Wednesday 10-January, 2024 diff --git a/scripture/kjv/01/10/24/scripture.json b/scripture/kjv/01/10/24/scripture.json new file mode 100644 index 00000000..74641001 --- /dev/null +++ b/scripture/kjv/01/10/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "13", + "date": "Wednesday 10-January, 2024", + "getbible": "https://getbible.life/kjv/John/13/17", + "name": "John 13:17", + "scripture": [ + { + "nr": "17", + "text": "If ye know these things, happy are ye if ye do them." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17", + "version": "kjv" +} diff --git a/scripture/kjv/01/10/24/scripture.md b/scripture/kjv/01/10/24/scripture.md new file mode 100644 index 00000000..f98d26cf --- /dev/null +++ b/scripture/kjv/01/10/24/scripture.md @@ -0,0 +1,5 @@ +**John 13:17** + +17 If ye know these things, happy are ye if ye do them. + +[Wednesday 10-January, 2024](https://getbible.life/kjv/John/13/17) diff --git a/scripture/kjv/01/10/24/scripture.tg b/scripture/kjv/01/10/24/scripture.tg new file mode 100644 index 00000000..7a94dd78 --- /dev/null +++ b/scripture/kjv/01/10/24/scripture.tg @@ -0,0 +1,4 @@ +John 13:17 +17 If ye know these things, happy are ye if ye do them. + +Wednesday 10-January, 2024 diff --git a/scripture/kjv/01/10/24/scripture.tg.id b/scripture/kjv/01/10/24/scripture.tg.id new file mode 100644 index 00000000..1e3b283b --- /dev/null +++ b/scripture/kjv/01/10/24/scripture.tg.id @@ -0,0 +1 @@ +1195 diff --git a/scripture/kjv/01/10/24/scripture.today b/scripture/kjv/01/10/24/scripture.today new file mode 100644 index 00000000..347a4c7e --- /dev/null +++ b/scripture/kjv/01/10/24/scripture.today @@ -0,0 +1 @@ +43 13:17 diff --git a/scripture/kjv/01/10/25/scripture.html b/scripture/kjv/01/10/25/scripture.html new file mode 100644 index 00000000..0eda44c4 --- /dev/null +++ b/scripture/kjv/01/10/25/scripture.html @@ -0,0 +1,3 @@ +Hosea 13:14
+14 I will ransom them from the power of the grave; I will redeem them from death: O death, I will be thy plagues; O grave, I will be thy destruction: repentance shall be hid from mine eyes.

+Friday 10-January, 2025 diff --git a/scripture/kjv/01/10/25/scripture.json b/scripture/kjv/01/10/25/scripture.json new file mode 100644 index 00000000..7b49cc14 --- /dev/null +++ b/scripture/kjv/01/10/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Hosea", + "chapter": "13", + "date": "Friday 10-January, 2025", + "getbible": "https://getbible.life/kjv/Hosea/13/14", + "name": "Hosea 13:14", + "scripture": [ + { + "nr": "14", + "text": "I will ransom them from the power of the grave; I will redeem them from death: O death, I will be thy plagues; O grave, I will be thy destruction: repentance shall be hid from mine eyes." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/01/10/25/scripture.md b/scripture/kjv/01/10/25/scripture.md new file mode 100644 index 00000000..75b412b4 --- /dev/null +++ b/scripture/kjv/01/10/25/scripture.md @@ -0,0 +1,5 @@ +**Hosea 13:14** + +14 I will ransom them from the power of the grave; I will redeem them from death: O death, I will be thy plagues; O grave, I will be thy destruction: repentance shall be hid from mine eyes. + +[Friday 10-January, 2025](https://getbible.life/kjv/Hosea/13/14) diff --git a/scripture/kjv/01/10/25/scripture.tg b/scripture/kjv/01/10/25/scripture.tg new file mode 100644 index 00000000..2680e02d --- /dev/null +++ b/scripture/kjv/01/10/25/scripture.tg @@ -0,0 +1,4 @@ +Hosea 13:14 +14 I will ransom them from the power of the grave; I will redeem them from death: O death, I will be thy plagues; O grave, I will be thy destruction: repentance shall be hid from mine eyes. + +Friday 10-January, 2025 diff --git a/scripture/kjv/01/10/25/scripture.tg.id b/scripture/kjv/01/10/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/10/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/10/25/scripture.today b/scripture/kjv/01/10/25/scripture.today new file mode 100644 index 00000000..dbbe51e5 --- /dev/null +++ b/scripture/kjv/01/10/25/scripture.today @@ -0,0 +1 @@ +28 13:14 diff --git a/scripture/kjv/01/10/26/scripture.html b/scripture/kjv/01/10/26/scripture.html new file mode 100644 index 00000000..0733bf70 --- /dev/null +++ b/scripture/kjv/01/10/26/scripture.html @@ -0,0 +1,3 @@ +Mark 14:38
+38 Watch ye and pray, lest ye enter into temptation. The spirit truly is ready, but the flesh is weak.

+Saturday 10-January, 2026 diff --git a/scripture/kjv/01/10/26/scripture.json b/scripture/kjv/01/10/26/scripture.json new file mode 100644 index 00000000..cffded0f --- /dev/null +++ b/scripture/kjv/01/10/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Mark", + "chapter": "14", + "date": "Saturday 10-January, 2026", + "getbible": "https://getbible.life/kjv/Mark/14/38", + "name": "Mark 14:38", + "scripture": [ + { + "nr": "38", + "text": "Watch ye and pray, lest ye enter into temptation. The spirit truly is ready, but the flesh is weak." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "38", + "version": "kjv" +} diff --git a/scripture/kjv/01/10/26/scripture.md b/scripture/kjv/01/10/26/scripture.md new file mode 100644 index 00000000..987cdc3b --- /dev/null +++ b/scripture/kjv/01/10/26/scripture.md @@ -0,0 +1,5 @@ +**Mark 14:38** + +38 Watch ye and pray, lest ye enter into temptation. The spirit truly is ready, but the flesh is weak. + +[Saturday 10-January, 2026](https://getbible.life/kjv/Mark/14/38) diff --git a/scripture/kjv/01/10/26/scripture.tg b/scripture/kjv/01/10/26/scripture.tg new file mode 100644 index 00000000..8b22d947 --- /dev/null +++ b/scripture/kjv/01/10/26/scripture.tg @@ -0,0 +1,4 @@ +Mark 14:38 +38 Watch ye and pray, lest ye enter into temptation. The spirit truly is ready, but the flesh is weak. + +Saturday 10-January, 2026 diff --git a/scripture/kjv/01/10/26/scripture.tg.id b/scripture/kjv/01/10/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/10/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/10/26/scripture.today b/scripture/kjv/01/10/26/scripture.today new file mode 100644 index 00000000..060dcc0a --- /dev/null +++ b/scripture/kjv/01/10/26/scripture.today @@ -0,0 +1 @@ +41 14:38 diff --git a/scripture/kjv/01/11/23/scripture.html b/scripture/kjv/01/11/23/scripture.html new file mode 100644 index 00000000..60d542cf --- /dev/null +++ b/scripture/kjv/01/11/23/scripture.html @@ -0,0 +1,3 @@ +2 Kings 14:3-4
+3 And he did that which was right in the sight of the Lord, yet not like David his father: he did according to all things as Joash his father did. 4 Howbeit the high places were not taken away: as yet the people did sacrifice and burnt incense on the high places.

+Wednesday 11-January, 2023 diff --git a/scripture/kjv/01/11/23/scripture.json b/scripture/kjv/01/11/23/scripture.json new file mode 100644 index 00000000..ebddb151 --- /dev/null +++ b/scripture/kjv/01/11/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Wednesday 11-January, 2023", + "name": "2 Kings 14:3-4", + "scripture": [ + { + "nr": "3", + "text": "And he did that which was right in the sight of the Lord, yet not like David his father: he did according to all things as Joash his father did." + }, + { + "nr": "4", + "text": "Howbeit the high places were not taken away: as yet the people did sacrifice and burnt incense on the high places." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/11/23/scripture.md b/scripture/kjv/01/11/23/scripture.md new file mode 100644 index 00000000..db8041a5 --- /dev/null +++ b/scripture/kjv/01/11/23/scripture.md @@ -0,0 +1,5 @@ +**2 Kings 14:3-4** + +3 And he did that which was right in the sight of the Lord, yet not like David his father: he did according to all things as Joash his father did. 4 Howbeit the high places were not taken away: as yet the people did sacrifice and burnt incense on the high places. + +[Wednesday 11-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/11/23/scripture.tg b/scripture/kjv/01/11/23/scripture.tg new file mode 100644 index 00000000..ddce8609 --- /dev/null +++ b/scripture/kjv/01/11/23/scripture.tg @@ -0,0 +1,4 @@ +2 Kings 14:3-4 +3 And he did that which was right in the sight of the Lord, yet not like David his father: he did according to all things as Joash his father did. 4 Howbeit the high places were not taken away: as yet the people did sacrifice and burnt incense on the high places. + +Wednesday 11-January, 2023 diff --git a/scripture/kjv/01/11/23/scripture.today b/scripture/kjv/01/11/23/scripture.today new file mode 100644 index 00000000..a0c5aa49 --- /dev/null +++ b/scripture/kjv/01/11/23/scripture.today @@ -0,0 +1 @@ +12 14:3-4 diff --git a/scripture/kjv/01/11/24/scripture.html b/scripture/kjv/01/11/24/scripture.html new file mode 100644 index 00000000..8ac69df0 --- /dev/null +++ b/scripture/kjv/01/11/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 37:1-2
+1 Fret not thyself because of evildoers, neither be thou envious against the workers of iniquity. 2 For they shall soon be cut down like the grass, and wither as the green herb.

+Thursday 11-January, 2024 diff --git a/scripture/kjv/01/11/24/scripture.json b/scripture/kjv/01/11/24/scripture.json new file mode 100644 index 00000000..dc223b88 --- /dev/null +++ b/scripture/kjv/01/11/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Psalms", + "chapter": "37", + "date": "Thursday 11-January, 2024", + "getbible": "https://getbible.life/kjv/Psalms/37/1-2", + "name": "Psalms 37:1-2", + "scripture": [ + { + "nr": "1", + "text": "Fret not thyself because of evildoers, neither be thou envious against the workers of iniquity." + }, + { + "nr": "2", + "text": "For they shall soon be cut down like the grass, and wither as the green herb." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-2", + "version": "kjv" +} diff --git a/scripture/kjv/01/11/24/scripture.md b/scripture/kjv/01/11/24/scripture.md new file mode 100644 index 00000000..f2453d07 --- /dev/null +++ b/scripture/kjv/01/11/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 37:1-2** + +1 Fret not thyself because of evildoers, neither be thou envious against the workers of iniquity. 2 For they shall soon be cut down like the grass, and wither as the green herb. + +[Thursday 11-January, 2024](https://getbible.life/kjv/Psalms/37/1-2) diff --git a/scripture/kjv/01/11/24/scripture.tg b/scripture/kjv/01/11/24/scripture.tg new file mode 100644 index 00000000..a54453f6 --- /dev/null +++ b/scripture/kjv/01/11/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 37:1-2 +1 Fret not thyself because of evildoers, neither be thou envious against the workers of iniquity. 2 For they shall soon be cut down like the grass, and wither as the green herb. + +Thursday 11-January, 2024 diff --git a/scripture/kjv/01/11/24/scripture.tg.id b/scripture/kjv/01/11/24/scripture.tg.id new file mode 100644 index 00000000..40bd097c --- /dev/null +++ b/scripture/kjv/01/11/24/scripture.tg.id @@ -0,0 +1 @@ +1196 diff --git a/scripture/kjv/01/11/24/scripture.today b/scripture/kjv/01/11/24/scripture.today new file mode 100644 index 00000000..feeda4b3 --- /dev/null +++ b/scripture/kjv/01/11/24/scripture.today @@ -0,0 +1 @@ +19 37:1-2 diff --git a/scripture/kjv/01/11/25/scripture.html b/scripture/kjv/01/11/25/scripture.html new file mode 100644 index 00000000..41f2f66a --- /dev/null +++ b/scripture/kjv/01/11/25/scripture.html @@ -0,0 +1,3 @@ +Galatians 5:6
+6 For in Jesus Christ neither circumcision availeth any thing, nor uncircumcision; but faith which worketh by love.

+Saturday 11-January, 2025 diff --git a/scripture/kjv/01/11/25/scripture.json b/scripture/kjv/01/11/25/scripture.json new file mode 100644 index 00000000..d8cabc3c --- /dev/null +++ b/scripture/kjv/01/11/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Galatians", + "chapter": "5", + "date": "Saturday 11-January, 2025", + "getbible": "https://getbible.life/kjv/Galatians/5/6", + "name": "Galatians 5:6", + "scripture": [ + { + "nr": "6", + "text": "For in Jesus Christ neither circumcision availeth any thing, nor uncircumcision; but faith which worketh by love." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6", + "version": "kjv" +} diff --git a/scripture/kjv/01/11/25/scripture.md b/scripture/kjv/01/11/25/scripture.md new file mode 100644 index 00000000..1965fc66 --- /dev/null +++ b/scripture/kjv/01/11/25/scripture.md @@ -0,0 +1,5 @@ +**Galatians 5:6** + +6 For in Jesus Christ neither circumcision availeth any thing, nor uncircumcision; but faith which worketh by love. + +[Saturday 11-January, 2025](https://getbible.life/kjv/Galatians/5/6) diff --git a/scripture/kjv/01/11/25/scripture.tg b/scripture/kjv/01/11/25/scripture.tg new file mode 100644 index 00000000..57617e53 --- /dev/null +++ b/scripture/kjv/01/11/25/scripture.tg @@ -0,0 +1,4 @@ +Galatians 5:6 +6 For in Jesus Christ neither circumcision availeth any thing, nor uncircumcision; but faith which worketh by love. + +Saturday 11-January, 2025 diff --git a/scripture/kjv/01/11/25/scripture.tg.id b/scripture/kjv/01/11/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/11/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/11/25/scripture.today b/scripture/kjv/01/11/25/scripture.today new file mode 100644 index 00000000..bc3cbf85 --- /dev/null +++ b/scripture/kjv/01/11/25/scripture.today @@ -0,0 +1 @@ +48 5:6 diff --git a/scripture/kjv/01/11/26/scripture.html b/scripture/kjv/01/11/26/scripture.html new file mode 100644 index 00000000..545b6edb --- /dev/null +++ b/scripture/kjv/01/11/26/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 11:16
+16 But if any man seem to be contentious, we have no such custom, neither the churches of God.

+Sunday 11-January, 2026 diff --git a/scripture/kjv/01/11/26/scripture.json b/scripture/kjv/01/11/26/scripture.json new file mode 100644 index 00000000..7ffcdcd2 --- /dev/null +++ b/scripture/kjv/01/11/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "11", + "date": "Sunday 11-January, 2026", + "getbible": "https://getbible.life/kjv/1 Corinthians/11/16", + "name": "1 Corinthians 11:16", + "scripture": [ + { + "nr": "16", + "text": "But if any man seem to be contentious, we have no such custom, neither the churches of God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16", + "version": "kjv" +} diff --git a/scripture/kjv/01/11/26/scripture.md b/scripture/kjv/01/11/26/scripture.md new file mode 100644 index 00000000..42d5a08e --- /dev/null +++ b/scripture/kjv/01/11/26/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 11:16** + +16 But if any man seem to be contentious, we have no such custom, neither the churches of God. + +[Sunday 11-January, 2026](https://getbible.life/kjv/1 Corinthians/11/16) diff --git a/scripture/kjv/01/11/26/scripture.tg b/scripture/kjv/01/11/26/scripture.tg new file mode 100644 index 00000000..fe8de56f --- /dev/null +++ b/scripture/kjv/01/11/26/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 11:16 +16 But if any man seem to be contentious, we have no such custom, neither the churches of God. + +Sunday 11-January, 2026 diff --git a/scripture/kjv/01/11/26/scripture.tg.id b/scripture/kjv/01/11/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/11/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/11/26/scripture.today b/scripture/kjv/01/11/26/scripture.today new file mode 100644 index 00000000..1394dadd --- /dev/null +++ b/scripture/kjv/01/11/26/scripture.today @@ -0,0 +1 @@ +46 11:16 diff --git a/scripture/kjv/01/12/23/scripture.html b/scripture/kjv/01/12/23/scripture.html new file mode 100644 index 00000000..7f3eb9ac --- /dev/null +++ b/scripture/kjv/01/12/23/scripture.html @@ -0,0 +1,3 @@ +Luke 16:7-9
+7 Then said he to another, And how much owest thou? And he said, An hundred measures of wheat. And he said unto him, Take thy bill, and write fourscore. 8 And the lord commended the unjust steward, because he had done wisely: for the children of this world are in their generation wiser than the children of light. 9 And I say unto you, Make to yourselves friends of the mammon of unrighteousness; that, when ye fail, they may receive you into everlasting habitations.

+Thursday 12-January, 2023 diff --git a/scripture/kjv/01/12/23/scripture.json b/scripture/kjv/01/12/23/scripture.json new file mode 100644 index 00000000..d5a8a9e7 --- /dev/null +++ b/scripture/kjv/01/12/23/scripture.json @@ -0,0 +1,21 @@ +{ + "date": "Thursday 12-January, 2023", + "name": "Luke 16:7-9", + "scripture": [ + { + "nr": "7", + "text": "Then said he to another, And how much owest thou? And he said, An hundred measures of wheat. And he said unto him, Take thy bill, and write fourscore." + }, + { + "nr": "8", + "text": "And the lord commended the unjust steward, because he had done wisely: for the children of this world are in their generation wiser than the children of light." + }, + { + "nr": "9", + "text": "And I say unto you, Make to yourselves friends of the mammon of unrighteousness; that, when ye fail, they may receive you into everlasting habitations." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/12/23/scripture.md b/scripture/kjv/01/12/23/scripture.md new file mode 100644 index 00000000..a0e96a32 --- /dev/null +++ b/scripture/kjv/01/12/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 16:7-9** + +7 Then said he to another, And how much owest thou? And he said, An hundred measures of wheat. And he said unto him, Take thy bill, and write fourscore. 8 And the lord commended the unjust steward, because he had done wisely: for the children of this world are in their generation wiser than the children of light. 9 And I say unto you, Make to yourselves friends of the mammon of unrighteousness; that, when ye fail, they may receive you into everlasting habitations. + +[Thursday 12-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/12/23/scripture.tg b/scripture/kjv/01/12/23/scripture.tg new file mode 100644 index 00000000..0042e8aa --- /dev/null +++ b/scripture/kjv/01/12/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 16:7-9 +7 Then said he to another, And how much owest thou? And he said, An hundred measures of wheat. And he said unto him, Take thy bill, and write fourscore. 8 And the lord commended the unjust steward, because he had done wisely: for the children of this world are in their generation wiser than the children of light. 9 And I say unto you, Make to yourselves friends of the mammon of unrighteousness; that, when ye fail, they may receive you into everlasting habitations. + +Thursday 12-January, 2023 diff --git a/scripture/kjv/01/12/23/scripture.today b/scripture/kjv/01/12/23/scripture.today new file mode 100644 index 00000000..46b4840e --- /dev/null +++ b/scripture/kjv/01/12/23/scripture.today @@ -0,0 +1 @@ +42 16:7-9 diff --git a/scripture/kjv/01/12/24/scripture.html b/scripture/kjv/01/12/24/scripture.html new file mode 100644 index 00000000..2e0d06a8 --- /dev/null +++ b/scripture/kjv/01/12/24/scripture.html @@ -0,0 +1,3 @@ +2 Timothy 4:2
+2 Preach the word; be instant in season, out of season; reprove, rebuke, exhort with all longsuffering and doctrine.

+Friday 12-January, 2024 diff --git a/scripture/kjv/01/12/24/scripture.json b/scripture/kjv/01/12/24/scripture.json new file mode 100644 index 00000000..f212ee79 --- /dev/null +++ b/scripture/kjv/01/12/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Timothy", + "chapter": "4", + "date": "Friday 12-January, 2024", + "getbible": "https://getbible.life/kjv/2 Timothy/4/2", + "name": "2 Timothy 4:2", + "scripture": [ + { + "nr": "2", + "text": "Preach the word; be instant in season, out of season; reprove, rebuke, exhort with all longsuffering and doctrine." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "2", + "version": "kjv" +} diff --git a/scripture/kjv/01/12/24/scripture.md b/scripture/kjv/01/12/24/scripture.md new file mode 100644 index 00000000..61993f22 --- /dev/null +++ b/scripture/kjv/01/12/24/scripture.md @@ -0,0 +1,5 @@ +**2 Timothy 4:2** + +2 Preach the word; be instant in season, out of season; reprove, rebuke, exhort with all longsuffering and doctrine. + +[Friday 12-January, 2024](https://getbible.life/kjv/2 Timothy/4/2) diff --git a/scripture/kjv/01/12/24/scripture.tg b/scripture/kjv/01/12/24/scripture.tg new file mode 100644 index 00000000..b3558beb --- /dev/null +++ b/scripture/kjv/01/12/24/scripture.tg @@ -0,0 +1,4 @@ +2 Timothy 4:2 +2 Preach the word; be instant in season, out of season; reprove, rebuke, exhort with all longsuffering and doctrine. + +Friday 12-January, 2024 diff --git a/scripture/kjv/01/12/24/scripture.tg.id b/scripture/kjv/01/12/24/scripture.tg.id new file mode 100644 index 00000000..34a5f9bc --- /dev/null +++ b/scripture/kjv/01/12/24/scripture.tg.id @@ -0,0 +1 @@ +1197 diff --git a/scripture/kjv/01/12/24/scripture.today b/scripture/kjv/01/12/24/scripture.today new file mode 100644 index 00000000..4ea1e13c --- /dev/null +++ b/scripture/kjv/01/12/24/scripture.today @@ -0,0 +1 @@ +55 4:2 diff --git a/scripture/kjv/01/12/25/scripture.html b/scripture/kjv/01/12/25/scripture.html new file mode 100644 index 00000000..d0306510 --- /dev/null +++ b/scripture/kjv/01/12/25/scripture.html @@ -0,0 +1,3 @@ +Proverbs 19:15
+15 Slothfulness casteth into a deep sleep; and an idle soul shall suffer hunger.

+Sunday 12-January, 2025 diff --git a/scripture/kjv/01/12/25/scripture.json b/scripture/kjv/01/12/25/scripture.json new file mode 100644 index 00000000..a2ca36c6 --- /dev/null +++ b/scripture/kjv/01/12/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "19", + "date": "Sunday 12-January, 2025", + "getbible": "https://getbible.life/kjv/Proverbs/19/15", + "name": "Proverbs 19:15", + "scripture": [ + { + "nr": "15", + "text": "Slothfulness casteth into a deep sleep; and an idle soul shall suffer hunger." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15", + "version": "kjv" +} diff --git a/scripture/kjv/01/12/25/scripture.md b/scripture/kjv/01/12/25/scripture.md new file mode 100644 index 00000000..b43e4289 --- /dev/null +++ b/scripture/kjv/01/12/25/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 19:15** + +15 Slothfulness casteth into a deep sleep; and an idle soul shall suffer hunger. + +[Sunday 12-January, 2025](https://getbible.life/kjv/Proverbs/19/15) diff --git a/scripture/kjv/01/12/25/scripture.tg b/scripture/kjv/01/12/25/scripture.tg new file mode 100644 index 00000000..80390598 --- /dev/null +++ b/scripture/kjv/01/12/25/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 19:15 +15 Slothfulness casteth into a deep sleep; and an idle soul shall suffer hunger. + +Sunday 12-January, 2025 diff --git a/scripture/kjv/01/12/25/scripture.tg.id b/scripture/kjv/01/12/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/12/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/12/25/scripture.today b/scripture/kjv/01/12/25/scripture.today new file mode 100644 index 00000000..2e1f3586 --- /dev/null +++ b/scripture/kjv/01/12/25/scripture.today @@ -0,0 +1 @@ +20 19:15 diff --git a/scripture/kjv/01/12/26/scripture.html b/scripture/kjv/01/12/26/scripture.html new file mode 100644 index 00000000..728d3850 --- /dev/null +++ b/scripture/kjv/01/12/26/scripture.html @@ -0,0 +1,3 @@ +John 3:34
+34 For he whom God hath sent speaketh the words of God: for God giveth not the Spirit by measure unto him.

+Monday 12-January, 2026 diff --git a/scripture/kjv/01/12/26/scripture.json b/scripture/kjv/01/12/26/scripture.json new file mode 100644 index 00000000..e097f498 --- /dev/null +++ b/scripture/kjv/01/12/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "3", + "date": "Monday 12-January, 2026", + "getbible": "https://getbible.life/kjv/John/3/34", + "name": "John 3:34", + "scripture": [ + { + "nr": "34", + "text": "For he whom God hath sent speaketh the words of God: for God giveth not the Spirit by measure unto him. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "34", + "version": "kjv" +} diff --git a/scripture/kjv/01/12/26/scripture.md b/scripture/kjv/01/12/26/scripture.md new file mode 100644 index 00000000..7b8669f8 --- /dev/null +++ b/scripture/kjv/01/12/26/scripture.md @@ -0,0 +1,5 @@ +**John 3:34** + +34 For he whom God hath sent speaketh the words of God: for God giveth not the Spirit by measure unto him. + +[Monday 12-January, 2026](https://getbible.life/kjv/John/3/34) diff --git a/scripture/kjv/01/12/26/scripture.tg b/scripture/kjv/01/12/26/scripture.tg new file mode 100644 index 00000000..ad88d2ee --- /dev/null +++ b/scripture/kjv/01/12/26/scripture.tg @@ -0,0 +1,4 @@ +John 3:34 +34 For he whom God hath sent speaketh the words of God: for God giveth not the Spirit by measure unto him. + +Monday 12-January, 2026 diff --git a/scripture/kjv/01/12/26/scripture.tg.id b/scripture/kjv/01/12/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/12/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/12/26/scripture.today b/scripture/kjv/01/12/26/scripture.today new file mode 100644 index 00000000..68565514 --- /dev/null +++ b/scripture/kjv/01/12/26/scripture.today @@ -0,0 +1 @@ +43 3:34 diff --git a/scripture/kjv/01/13/23/scripture.html b/scripture/kjv/01/13/23/scripture.html new file mode 100644 index 00000000..08fc369d --- /dev/null +++ b/scripture/kjv/01/13/23/scripture.html @@ -0,0 +1,3 @@ +Isaiah 64:1-2
+1 Oh that thou wouldest rend the heavens, that thou wouldest come down, that the mountains might flow down at thy presence, 2 As when the melting fire burneth, the fire causeth the waters to boil, to make thy name known to thine adversaries, that the nations may tremble at thy presence!

+Friday 13-January, 2023 diff --git a/scripture/kjv/01/13/23/scripture.json b/scripture/kjv/01/13/23/scripture.json new file mode 100644 index 00000000..5498366c --- /dev/null +++ b/scripture/kjv/01/13/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Friday 13-January, 2023", + "name": "Isaiah 64:1-2", + "scripture": [ + { + "nr": "1", + "text": "Oh that thou wouldest rend the heavens, that thou wouldest come down, that the mountains might flow down at thy presence," + }, + { + "nr": "2", + "text": "As when the melting fire burneth, the fire causeth the waters to boil, to make thy name known to thine adversaries, that the nations may tremble at thy presence!" + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/13/23/scripture.md b/scripture/kjv/01/13/23/scripture.md new file mode 100644 index 00000000..920f2eda --- /dev/null +++ b/scripture/kjv/01/13/23/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 64:1-2** + +1 Oh that thou wouldest rend the heavens, that thou wouldest come down, that the mountains might flow down at thy presence, 2 As when the melting fire burneth, the fire causeth the waters to boil, to make thy name known to thine adversaries, that the nations may tremble at thy presence! + +[Friday 13-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/13/23/scripture.tg b/scripture/kjv/01/13/23/scripture.tg new file mode 100644 index 00000000..85c08e4b --- /dev/null +++ b/scripture/kjv/01/13/23/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 64:1-2 +1 Oh that thou wouldest rend the heavens, that thou wouldest come down, that the mountains might flow down at thy presence, 2 As when the melting fire burneth, the fire causeth the waters to boil, to make thy name known to thine adversaries, that the nations may tremble at thy presence! + +Friday 13-January, 2023 diff --git a/scripture/kjv/01/13/23/scripture.today b/scripture/kjv/01/13/23/scripture.today new file mode 100644 index 00000000..05a2e16c --- /dev/null +++ b/scripture/kjv/01/13/23/scripture.today @@ -0,0 +1 @@ +23 64:1-2 diff --git a/scripture/kjv/01/13/24/scripture.html b/scripture/kjv/01/13/24/scripture.html new file mode 100644 index 00000000..0a7edbcf --- /dev/null +++ b/scripture/kjv/01/13/24/scripture.html @@ -0,0 +1,3 @@ +Romans 9:20
+20 Nay but, O man, who art thou that repliest against God? Shall the thing formed say to him that formed it, Why hast thou made me thus?

+Saturday 13-January, 2024 diff --git a/scripture/kjv/01/13/24/scripture.json b/scripture/kjv/01/13/24/scripture.json new file mode 100644 index 00000000..79819948 --- /dev/null +++ b/scripture/kjv/01/13/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Romans", + "chapter": "9", + "date": "Saturday 13-January, 2024", + "getbible": "https://getbible.life/kjv/Romans/9/20", + "name": "Romans 9:20", + "scripture": [ + { + "nr": "20", + "text": "Nay but, O man, who art thou that repliest against God? Shall the thing formed say to him that formed it, Why hast thou made me thus?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20", + "version": "kjv" +} diff --git a/scripture/kjv/01/13/24/scripture.md b/scripture/kjv/01/13/24/scripture.md new file mode 100644 index 00000000..c7ac2dde --- /dev/null +++ b/scripture/kjv/01/13/24/scripture.md @@ -0,0 +1,5 @@ +**Romans 9:20** + +20 Nay but, O man, who art thou that repliest against God? Shall the thing formed say to him that formed it, Why hast thou made me thus? + +[Saturday 13-January, 2024](https://getbible.life/kjv/Romans/9/20) diff --git a/scripture/kjv/01/13/24/scripture.tg b/scripture/kjv/01/13/24/scripture.tg new file mode 100644 index 00000000..5927e02a --- /dev/null +++ b/scripture/kjv/01/13/24/scripture.tg @@ -0,0 +1,4 @@ +Romans 9:20 +20 Nay but, O man, who art thou that repliest against God? Shall the thing formed say to him that formed it, Why hast thou made me thus? + +Saturday 13-January, 2024 diff --git a/scripture/kjv/01/13/24/scripture.tg.id b/scripture/kjv/01/13/24/scripture.tg.id new file mode 100644 index 00000000..5a978087 --- /dev/null +++ b/scripture/kjv/01/13/24/scripture.tg.id @@ -0,0 +1 @@ +1198 diff --git a/scripture/kjv/01/13/24/scripture.today b/scripture/kjv/01/13/24/scripture.today new file mode 100644 index 00000000..af09b463 --- /dev/null +++ b/scripture/kjv/01/13/24/scripture.today @@ -0,0 +1 @@ +45 9:20 diff --git a/scripture/kjv/01/13/25/scripture.html b/scripture/kjv/01/13/25/scripture.html new file mode 100644 index 00000000..5cc6b2ee --- /dev/null +++ b/scripture/kjv/01/13/25/scripture.html @@ -0,0 +1,3 @@ +Zechariah 1:17
+17 Cry yet, saying, Thus saith the Lord of hosts; My cities through prosperity shall yet be spread abroad; and the Lord shall yet comfort Zion, and shall yet choose Jerusalem.

+Monday 13-January, 2025 diff --git a/scripture/kjv/01/13/25/scripture.json b/scripture/kjv/01/13/25/scripture.json new file mode 100644 index 00000000..b37b05e7 --- /dev/null +++ b/scripture/kjv/01/13/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Zechariah", + "chapter": "1", + "date": "Monday 13-January, 2025", + "getbible": "https://getbible.life/kjv/Zechariah/1/17", + "name": "Zechariah 1:17", + "scripture": [ + { + "nr": "17", + "text": "Cry yet, saying, Thus saith the Lord of hosts; My cities through prosperity shall yet be spread abroad; and the Lord shall yet comfort Zion, and shall yet choose Jerusalem." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17", + "version": "kjv" +} diff --git a/scripture/kjv/01/13/25/scripture.md b/scripture/kjv/01/13/25/scripture.md new file mode 100644 index 00000000..5119de1b --- /dev/null +++ b/scripture/kjv/01/13/25/scripture.md @@ -0,0 +1,5 @@ +**Zechariah 1:17** + +17 Cry yet, saying, Thus saith the Lord of hosts; My cities through prosperity shall yet be spread abroad; and the Lord shall yet comfort Zion, and shall yet choose Jerusalem. + +[Monday 13-January, 2025](https://getbible.life/kjv/Zechariah/1/17) diff --git a/scripture/kjv/01/13/25/scripture.tg b/scripture/kjv/01/13/25/scripture.tg new file mode 100644 index 00000000..095ecb65 --- /dev/null +++ b/scripture/kjv/01/13/25/scripture.tg @@ -0,0 +1,4 @@ +Zechariah 1:17 +17 Cry yet, saying, Thus saith the Lord of hosts; My cities through prosperity shall yet be spread abroad; and the Lord shall yet comfort Zion, and shall yet choose Jerusalem. + +Monday 13-January, 2025 diff --git a/scripture/kjv/01/13/25/scripture.today b/scripture/kjv/01/13/25/scripture.today new file mode 100644 index 00000000..d761df2d --- /dev/null +++ b/scripture/kjv/01/13/25/scripture.today @@ -0,0 +1 @@ +38 1:17 diff --git a/scripture/kjv/01/13/26/scripture.html b/scripture/kjv/01/13/26/scripture.html new file mode 100644 index 00000000..19a63e0b --- /dev/null +++ b/scripture/kjv/01/13/26/scripture.html @@ -0,0 +1,3 @@ +Proverbs 16:17
+17 The highway of the upright is to depart from evil: he that keepeth his way preserveth his soul.

+Tuesday 13-January, 2026 diff --git a/scripture/kjv/01/13/26/scripture.json b/scripture/kjv/01/13/26/scripture.json new file mode 100644 index 00000000..8d0e5ace --- /dev/null +++ b/scripture/kjv/01/13/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "16", + "date": "Tuesday 13-January, 2026", + "getbible": "https://getbible.life/kjv/Proverbs/16/17", + "name": "Proverbs 16:17", + "scripture": [ + { + "nr": "17", + "text": "The highway of the upright is to depart from evil: he that keepeth his way preserveth his soul." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17", + "version": "kjv" +} diff --git a/scripture/kjv/01/13/26/scripture.md b/scripture/kjv/01/13/26/scripture.md new file mode 100644 index 00000000..8d55081e --- /dev/null +++ b/scripture/kjv/01/13/26/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 16:17** + +17 The highway of the upright is to depart from evil: he that keepeth his way preserveth his soul. + +[Tuesday 13-January, 2026](https://getbible.life/kjv/Proverbs/16/17) diff --git a/scripture/kjv/01/13/26/scripture.tg b/scripture/kjv/01/13/26/scripture.tg new file mode 100644 index 00000000..9fe59902 --- /dev/null +++ b/scripture/kjv/01/13/26/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 16:17 +17 The highway of the upright is to depart from evil: he that keepeth his way preserveth his soul. + +Tuesday 13-January, 2026 diff --git a/scripture/kjv/01/13/26/scripture.tg.id b/scripture/kjv/01/13/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/13/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/13/26/scripture.today b/scripture/kjv/01/13/26/scripture.today new file mode 100644 index 00000000..92e3ba1c --- /dev/null +++ b/scripture/kjv/01/13/26/scripture.today @@ -0,0 +1 @@ +20 16:17 diff --git a/scripture/kjv/01/14/23/scripture.html b/scripture/kjv/01/14/23/scripture.html new file mode 100644 index 00000000..b16ebab6 --- /dev/null +++ b/scripture/kjv/01/14/23/scripture.html @@ -0,0 +1,3 @@ +Galatians 4:18
+18 But it is good to be zealously affected always in a good thing, and not only when I am present with you.

+Saturday 14-January, 2023 diff --git a/scripture/kjv/01/14/23/scripture.json b/scripture/kjv/01/14/23/scripture.json new file mode 100644 index 00000000..079f3d5b --- /dev/null +++ b/scripture/kjv/01/14/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Saturday 14-January, 2023", + "name": "Galatians 4:18", + "scripture": [ + { + "nr": "18", + "text": "But it is good to be zealously affected always in a good thing, and not only when I am present with you." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/14/23/scripture.md b/scripture/kjv/01/14/23/scripture.md new file mode 100644 index 00000000..80398422 --- /dev/null +++ b/scripture/kjv/01/14/23/scripture.md @@ -0,0 +1,5 @@ +**Galatians 4:18** + +18 But it is good to be zealously affected always in a good thing, and not only when I am present with you. + +[Saturday 14-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/14/23/scripture.tg b/scripture/kjv/01/14/23/scripture.tg new file mode 100644 index 00000000..e02285e8 --- /dev/null +++ b/scripture/kjv/01/14/23/scripture.tg @@ -0,0 +1,4 @@ +Galatians 4:18 +18 But it is good to be zealously affected always in a good thing, and not only when I am present with you. + +Saturday 14-January, 2023 diff --git a/scripture/kjv/01/14/23/scripture.today b/scripture/kjv/01/14/23/scripture.today new file mode 100644 index 00000000..8c28e2c7 --- /dev/null +++ b/scripture/kjv/01/14/23/scripture.today @@ -0,0 +1 @@ +48 4:18 diff --git a/scripture/kjv/01/14/24/scripture.html b/scripture/kjv/01/14/24/scripture.html new file mode 100644 index 00000000..61eb1b06 --- /dev/null +++ b/scripture/kjv/01/14/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 119:34-35
+34 Give me understanding, and I shall keep thy law; yea, I shall observe it with my whole heart. 35 Make me to go in the path of thy commandments; for therein do I delight.

+Sunday 14-January, 2024 diff --git a/scripture/kjv/01/14/24/scripture.json b/scripture/kjv/01/14/24/scripture.json new file mode 100644 index 00000000..e9f46154 --- /dev/null +++ b/scripture/kjv/01/14/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Psalms", + "chapter": "119", + "date": "Sunday 14-January, 2024", + "getbible": "https://getbible.life/kjv/Psalms/119/34-35", + "name": "Psalms 119:34-35", + "scripture": [ + { + "nr": "34", + "text": "Give me understanding, and I shall keep thy law; yea, I shall observe it with my whole heart." + }, + { + "nr": "35", + "text": "Make me to go in the path of thy commandments; for therein do I delight." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "34-35", + "version": "kjv" +} diff --git a/scripture/kjv/01/14/24/scripture.md b/scripture/kjv/01/14/24/scripture.md new file mode 100644 index 00000000..1b651605 --- /dev/null +++ b/scripture/kjv/01/14/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 119:34-35** + +34 Give me understanding, and I shall keep thy law; yea, I shall observe it with my whole heart. 35 Make me to go in the path of thy commandments; for therein do I delight. + +[Sunday 14-January, 2024](https://getbible.life/kjv/Psalms/119/34-35) diff --git a/scripture/kjv/01/14/24/scripture.tg b/scripture/kjv/01/14/24/scripture.tg new file mode 100644 index 00000000..3a168f9d --- /dev/null +++ b/scripture/kjv/01/14/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 119:34-35 +34 Give me understanding, and I shall keep thy law; yea, I shall observe it with my whole heart. 35 Make me to go in the path of thy commandments; for therein do I delight. + +Sunday 14-January, 2024 diff --git a/scripture/kjv/01/14/24/scripture.tg.id b/scripture/kjv/01/14/24/scripture.tg.id new file mode 100644 index 00000000..ad9544af --- /dev/null +++ b/scripture/kjv/01/14/24/scripture.tg.id @@ -0,0 +1 @@ +1199 diff --git a/scripture/kjv/01/14/24/scripture.today b/scripture/kjv/01/14/24/scripture.today new file mode 100644 index 00000000..35dcd18e --- /dev/null +++ b/scripture/kjv/01/14/24/scripture.today @@ -0,0 +1 @@ +19 119:34-35 diff --git a/scripture/kjv/01/14/25/scripture.html b/scripture/kjv/01/14/25/scripture.html new file mode 100644 index 00000000..48e70f42 --- /dev/null +++ b/scripture/kjv/01/14/25/scripture.html @@ -0,0 +1,3 @@ +Matthew 22:21
+21 They say unto him, Cesar’s. Then saith he unto them, Render therefore unto Cesar the things which are Cesar’s; and unto God the things that are God’s.

+Tuesday 14-January, 2025 diff --git a/scripture/kjv/01/14/25/scripture.json b/scripture/kjv/01/14/25/scripture.json new file mode 100644 index 00000000..f7625195 --- /dev/null +++ b/scripture/kjv/01/14/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Matthew", + "chapter": "22", + "date": "Tuesday 14-January, 2025", + "getbible": "https://getbible.life/kjv/Matthew/22/21", + "name": "Matthew 22:21", + "scripture": [ + { + "nr": "21", + "text": "They say unto him, Cesar’s. Then saith he unto them, Render therefore unto Cesar the things which are Cesar’s; and unto God the things that are God’s." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "21", + "version": "kjv" +} diff --git a/scripture/kjv/01/14/25/scripture.md b/scripture/kjv/01/14/25/scripture.md new file mode 100644 index 00000000..69d4355a --- /dev/null +++ b/scripture/kjv/01/14/25/scripture.md @@ -0,0 +1,5 @@ +**Matthew 22:21** + +21 They say unto him, Cesar’s. Then saith he unto them, Render therefore unto Cesar the things which are Cesar’s; and unto God the things that are God’s. + +[Tuesday 14-January, 2025](https://getbible.life/kjv/Matthew/22/21) diff --git a/scripture/kjv/01/14/25/scripture.tg b/scripture/kjv/01/14/25/scripture.tg new file mode 100644 index 00000000..616fd8a9 --- /dev/null +++ b/scripture/kjv/01/14/25/scripture.tg @@ -0,0 +1,4 @@ +Matthew 22:21 +21 They say unto him, Cesar’s. Then saith he unto them, Render therefore unto Cesar the things which are Cesar’s; and unto God the things that are God’s. + +Tuesday 14-January, 2025 diff --git a/scripture/kjv/01/14/25/scripture.tg.id b/scripture/kjv/01/14/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/14/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/14/25/scripture.today b/scripture/kjv/01/14/25/scripture.today new file mode 100644 index 00000000..816a9e39 --- /dev/null +++ b/scripture/kjv/01/14/25/scripture.today @@ -0,0 +1 @@ +40 22:21 diff --git a/scripture/kjv/01/14/26/scripture.html b/scripture/kjv/01/14/26/scripture.html new file mode 100644 index 00000000..9a4f1f1b --- /dev/null +++ b/scripture/kjv/01/14/26/scripture.html @@ -0,0 +1,3 @@ +Proverbs 22:24
+24 Make no friendship with an angry man; and with a furious man thou shalt not go:

+Wednesday 14-January, 2026 diff --git a/scripture/kjv/01/14/26/scripture.json b/scripture/kjv/01/14/26/scripture.json new file mode 100644 index 00000000..d43a7070 --- /dev/null +++ b/scripture/kjv/01/14/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "22", + "date": "Wednesday 14-January, 2026", + "getbible": "https://getbible.life/kjv/Proverbs/22/24", + "name": "Proverbs 22:24", + "scripture": [ + { + "nr": "24", + "text": "Make no friendship with an angry man; and with a furious man thou shalt not go:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "24", + "version": "kjv" +} diff --git a/scripture/kjv/01/14/26/scripture.md b/scripture/kjv/01/14/26/scripture.md new file mode 100644 index 00000000..16702dce --- /dev/null +++ b/scripture/kjv/01/14/26/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 22:24** + +24 Make no friendship with an angry man; and with a furious man thou shalt not go: + +[Wednesday 14-January, 2026](https://getbible.life/kjv/Proverbs/22/24) diff --git a/scripture/kjv/01/14/26/scripture.tg b/scripture/kjv/01/14/26/scripture.tg new file mode 100644 index 00000000..6f73c4ca --- /dev/null +++ b/scripture/kjv/01/14/26/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 22:24 +24 Make no friendship with an angry man; and with a furious man thou shalt not go: + +Wednesday 14-January, 2026 diff --git a/scripture/kjv/01/14/26/scripture.tg.id b/scripture/kjv/01/14/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/14/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/14/26/scripture.today b/scripture/kjv/01/14/26/scripture.today new file mode 100644 index 00000000..2f68b58b --- /dev/null +++ b/scripture/kjv/01/14/26/scripture.today @@ -0,0 +1 @@ +20 22:24 diff --git a/scripture/kjv/01/15/23/scripture.html b/scripture/kjv/01/15/23/scripture.html new file mode 100644 index 00000000..879f30bc --- /dev/null +++ b/scripture/kjv/01/15/23/scripture.html @@ -0,0 +1,3 @@ +Luke 8:15
+15 But that on the good ground are they, which in an honest and good heart, having heard the word, keep it, and bring forth fruit with patience.

+Sunday 15-January, 2023 diff --git a/scripture/kjv/01/15/23/scripture.json b/scripture/kjv/01/15/23/scripture.json new file mode 100644 index 00000000..25837825 --- /dev/null +++ b/scripture/kjv/01/15/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Sunday 15-January, 2023", + "name": "Luke 8:15", + "scripture": [ + { + "nr": "15", + "text": "But that on the good ground are they, which in an honest and good heart, having heard the word, keep it, and bring forth fruit with patience." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/15/23/scripture.md b/scripture/kjv/01/15/23/scripture.md new file mode 100644 index 00000000..de81a647 --- /dev/null +++ b/scripture/kjv/01/15/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 8:15** + +15 But that on the good ground are they, which in an honest and good heart, having heard the word, keep it, and bring forth fruit with patience. + +[Sunday 15-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/15/23/scripture.tg b/scripture/kjv/01/15/23/scripture.tg new file mode 100644 index 00000000..ae55b745 --- /dev/null +++ b/scripture/kjv/01/15/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 8:15 +15 But that on the good ground are they, which in an honest and good heart, having heard the word, keep it, and bring forth fruit with patience. + +Sunday 15-January, 2023 diff --git a/scripture/kjv/01/15/23/scripture.today b/scripture/kjv/01/15/23/scripture.today new file mode 100644 index 00000000..b3803257 --- /dev/null +++ b/scripture/kjv/01/15/23/scripture.today @@ -0,0 +1 @@ +42 8:15 diff --git a/scripture/kjv/01/15/24/scripture.html b/scripture/kjv/01/15/24/scripture.html new file mode 100644 index 00000000..572b80a4 --- /dev/null +++ b/scripture/kjv/01/15/24/scripture.html @@ -0,0 +1,3 @@ +Revelation 20:4
+4 And I saw thrones, and they sat upon them, and judgment was given unto them: and I saw the souls of them that were beheaded for the witness of Jesus, and for the word of God, and which had not worshipped the beast, neither his image, neither had received his mark upon their foreheads, or in their hands; and they lived and reigned with Christ a thousand years.

+Monday 15-January, 2024 diff --git a/scripture/kjv/01/15/24/scripture.json b/scripture/kjv/01/15/24/scripture.json new file mode 100644 index 00000000..38832077 --- /dev/null +++ b/scripture/kjv/01/15/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Revelation", + "chapter": "20", + "date": "Monday 15-January, 2024", + "getbible": "https://getbible.life/kjv/Revelation/20/4", + "name": "Revelation 20:4", + "scripture": [ + { + "nr": "4", + "text": "And I saw thrones, and they sat upon them, and judgment was given unto them: and I saw the souls of them that were beheaded for the witness of Jesus, and for the word of God, and which had not worshipped the beast, neither his image, neither had received his mark upon their foreheads, or in their hands; and they lived and reigned with Christ a thousand years." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4", + "version": "kjv" +} diff --git a/scripture/kjv/01/15/24/scripture.md b/scripture/kjv/01/15/24/scripture.md new file mode 100644 index 00000000..4276d349 --- /dev/null +++ b/scripture/kjv/01/15/24/scripture.md @@ -0,0 +1,5 @@ +**Revelation 20:4** + +4 And I saw thrones, and they sat upon them, and judgment was given unto them: and I saw the souls of them that were beheaded for the witness of Jesus, and for the word of God, and which had not worshipped the beast, neither his image, neither had received his mark upon their foreheads, or in their hands; and they lived and reigned with Christ a thousand years. + +[Monday 15-January, 2024](https://getbible.life/kjv/Revelation/20/4) diff --git a/scripture/kjv/01/15/24/scripture.tg b/scripture/kjv/01/15/24/scripture.tg new file mode 100644 index 00000000..322237df --- /dev/null +++ b/scripture/kjv/01/15/24/scripture.tg @@ -0,0 +1,4 @@ +Revelation 20:4 +4 And I saw thrones, and they sat upon them, and judgment was given unto them: and I saw the souls of them that were beheaded for the witness of Jesus, and for the word of God, and which had not worshipped the beast, neither his image, neither had received his mark upon their foreheads, or in their hands; and they lived and reigned with Christ a thousand years. + +Monday 15-January, 2024 diff --git a/scripture/kjv/01/15/24/scripture.tg.id b/scripture/kjv/01/15/24/scripture.tg.id new file mode 100644 index 00000000..59a3ec59 --- /dev/null +++ b/scripture/kjv/01/15/24/scripture.tg.id @@ -0,0 +1 @@ +1200 diff --git a/scripture/kjv/01/15/24/scripture.today b/scripture/kjv/01/15/24/scripture.today new file mode 100644 index 00000000..1b5fdb77 --- /dev/null +++ b/scripture/kjv/01/15/24/scripture.today @@ -0,0 +1 @@ +66 20:4 diff --git a/scripture/kjv/01/15/25/scripture.html b/scripture/kjv/01/15/25/scripture.html new file mode 100644 index 00000000..bab1daea --- /dev/null +++ b/scripture/kjv/01/15/25/scripture.html @@ -0,0 +1,3 @@ +John 1:4
+4 In him was life; and the life was the light of men.

+Wednesday 15-January, 2025 diff --git a/scripture/kjv/01/15/25/scripture.json b/scripture/kjv/01/15/25/scripture.json new file mode 100644 index 00000000..b89b740e --- /dev/null +++ b/scripture/kjv/01/15/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "1", + "date": "Wednesday 15-January, 2025", + "getbible": "https://getbible.life/kjv/John/1/4", + "name": "John 1:4", + "scripture": [ + { + "nr": "4", + "text": "In him was life; and the life was the light of men." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4", + "version": "kjv" +} diff --git a/scripture/kjv/01/15/25/scripture.md b/scripture/kjv/01/15/25/scripture.md new file mode 100644 index 00000000..35d74bef --- /dev/null +++ b/scripture/kjv/01/15/25/scripture.md @@ -0,0 +1,5 @@ +**John 1:4** + +4 In him was life; and the life was the light of men. + +[Wednesday 15-January, 2025](https://getbible.life/kjv/John/1/4) diff --git a/scripture/kjv/01/15/25/scripture.tg b/scripture/kjv/01/15/25/scripture.tg new file mode 100644 index 00000000..8972c985 --- /dev/null +++ b/scripture/kjv/01/15/25/scripture.tg @@ -0,0 +1,4 @@ +John 1:4 +4 In him was life; and the life was the light of men. + +Wednesday 15-January, 2025 diff --git a/scripture/kjv/01/15/25/scripture.tg.id b/scripture/kjv/01/15/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/15/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/15/25/scripture.today b/scripture/kjv/01/15/25/scripture.today new file mode 100644 index 00000000..661e6bff --- /dev/null +++ b/scripture/kjv/01/15/25/scripture.today @@ -0,0 +1 @@ +43 1:4 diff --git a/scripture/kjv/01/15/26/scripture.html b/scripture/kjv/01/15/26/scripture.html new file mode 100644 index 00000000..027f2814 --- /dev/null +++ b/scripture/kjv/01/15/26/scripture.html @@ -0,0 +1,3 @@ +Hosea 6:11
+11 Also, O Judah, he hath set an harvest for thee, when I returned the captivity of my people.

+Thursday 15-January, 2026 diff --git a/scripture/kjv/01/15/26/scripture.json b/scripture/kjv/01/15/26/scripture.json new file mode 100644 index 00000000..e8c5780a --- /dev/null +++ b/scripture/kjv/01/15/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Hosea", + "chapter": "6", + "date": "Thursday 15-January, 2026", + "getbible": "https://getbible.life/kjv/Hosea/6/11", + "name": "Hosea 6:11", + "scripture": [ + { + "nr": "11", + "text": "Also, O Judah, he hath set an harvest for thee, when I returned the captivity of my people. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/01/15/26/scripture.md b/scripture/kjv/01/15/26/scripture.md new file mode 100644 index 00000000..5e92c616 --- /dev/null +++ b/scripture/kjv/01/15/26/scripture.md @@ -0,0 +1,5 @@ +**Hosea 6:11** + +11 Also, O Judah, he hath set an harvest for thee, when I returned the captivity of my people. + +[Thursday 15-January, 2026](https://getbible.life/kjv/Hosea/6/11) diff --git a/scripture/kjv/01/15/26/scripture.tg b/scripture/kjv/01/15/26/scripture.tg new file mode 100644 index 00000000..8b7890d3 --- /dev/null +++ b/scripture/kjv/01/15/26/scripture.tg @@ -0,0 +1,4 @@ +Hosea 6:11 +11 Also, O Judah, he hath set an harvest for thee, when I returned the captivity of my people. + +Thursday 15-January, 2026 diff --git a/scripture/kjv/01/15/26/scripture.tg.id b/scripture/kjv/01/15/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/15/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/15/26/scripture.today b/scripture/kjv/01/15/26/scripture.today new file mode 100644 index 00000000..a6b3e2fc --- /dev/null +++ b/scripture/kjv/01/15/26/scripture.today @@ -0,0 +1 @@ +28 6:11 diff --git a/scripture/kjv/01/16/23/scripture.html b/scripture/kjv/01/16/23/scripture.html new file mode 100644 index 00000000..4eec3ee1 --- /dev/null +++ b/scripture/kjv/01/16/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 3:30
+30 Strive not with a man without cause, if he have done thee no harm.

+Monday 16-January, 2023 diff --git a/scripture/kjv/01/16/23/scripture.json b/scripture/kjv/01/16/23/scripture.json new file mode 100644 index 00000000..98ffade4 --- /dev/null +++ b/scripture/kjv/01/16/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Monday 16-January, 2023", + "name": "Proverbs 3:30", + "scripture": [ + { + "nr": "30", + "text": "Strive not with a man without cause, if he have done thee no harm." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/16/23/scripture.md b/scripture/kjv/01/16/23/scripture.md new file mode 100644 index 00000000..e1b4b876 --- /dev/null +++ b/scripture/kjv/01/16/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 3:30** + +30 Strive not with a man without cause, if he have done thee no harm. + +[Monday 16-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/16/23/scripture.tg b/scripture/kjv/01/16/23/scripture.tg new file mode 100644 index 00000000..3df012d1 --- /dev/null +++ b/scripture/kjv/01/16/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 3:30 +30 Strive not with a man without cause, if he have done thee no harm. + +Monday 16-January, 2023 diff --git a/scripture/kjv/01/16/23/scripture.today b/scripture/kjv/01/16/23/scripture.today new file mode 100644 index 00000000..e863f7e5 --- /dev/null +++ b/scripture/kjv/01/16/23/scripture.today @@ -0,0 +1 @@ +20 3:30 diff --git a/scripture/kjv/01/16/24/scripture.html b/scripture/kjv/01/16/24/scripture.html new file mode 100644 index 00000000..fd47c79f --- /dev/null +++ b/scripture/kjv/01/16/24/scripture.html @@ -0,0 +1,3 @@ +2 Chronicles 20:20
+20 And they rose early in the morning, and went forth into the wilderness of Tekoa: and as they went forth, Jehoshaphat stood and said, Hear me, O Judah, and ye inhabitants of Jerusalem; Believe in the Lord your God, so shall ye be established; believe his prophets, so shall ye prosper.

+Tuesday 16-January, 2024 diff --git a/scripture/kjv/01/16/24/scripture.json b/scripture/kjv/01/16/24/scripture.json new file mode 100644 index 00000000..3d0c03d6 --- /dev/null +++ b/scripture/kjv/01/16/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Chronicles", + "chapter": "20", + "date": "Tuesday 16-January, 2024", + "getbible": "https://getbible.life/kjv/2 Chronicles/20/20", + "name": "2 Chronicles 20:20", + "scripture": [ + { + "nr": "20", + "text": "And they rose early in the morning, and went forth into the wilderness of Tekoa: and as they went forth, Jehoshaphat stood and said, Hear me, O Judah, and ye inhabitants of Jerusalem; Believe in the Lord your God, so shall ye be established; believe his prophets, so shall ye prosper." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20", + "version": "kjv" +} diff --git a/scripture/kjv/01/16/24/scripture.md b/scripture/kjv/01/16/24/scripture.md new file mode 100644 index 00000000..37ad471d --- /dev/null +++ b/scripture/kjv/01/16/24/scripture.md @@ -0,0 +1,5 @@ +**2 Chronicles 20:20** + +20 And they rose early in the morning, and went forth into the wilderness of Tekoa: and as they went forth, Jehoshaphat stood and said, Hear me, O Judah, and ye inhabitants of Jerusalem; Believe in the Lord your God, so shall ye be established; believe his prophets, so shall ye prosper. + +[Tuesday 16-January, 2024](https://getbible.life/kjv/2 Chronicles/20/20) diff --git a/scripture/kjv/01/16/24/scripture.tg b/scripture/kjv/01/16/24/scripture.tg new file mode 100644 index 00000000..88f37509 --- /dev/null +++ b/scripture/kjv/01/16/24/scripture.tg @@ -0,0 +1,4 @@ +2 Chronicles 20:20 +20 And they rose early in the morning, and went forth into the wilderness of Tekoa: and as they went forth, Jehoshaphat stood and said, Hear me, O Judah, and ye inhabitants of Jerusalem; Believe in the Lord your God, so shall ye be established; believe his prophets, so shall ye prosper. + +Tuesday 16-January, 2024 diff --git a/scripture/kjv/01/16/24/scripture.tg.id b/scripture/kjv/01/16/24/scripture.tg.id new file mode 100644 index 00000000..44acfebd --- /dev/null +++ b/scripture/kjv/01/16/24/scripture.tg.id @@ -0,0 +1 @@ +1201 diff --git a/scripture/kjv/01/16/24/scripture.today b/scripture/kjv/01/16/24/scripture.today new file mode 100644 index 00000000..78b02134 --- /dev/null +++ b/scripture/kjv/01/16/24/scripture.today @@ -0,0 +1 @@ +14 20:20 diff --git a/scripture/kjv/01/16/25/scripture.html b/scripture/kjv/01/16/25/scripture.html new file mode 100644 index 00000000..bd9f77f1 --- /dev/null +++ b/scripture/kjv/01/16/25/scripture.html @@ -0,0 +1,3 @@ +Song of Songs 8:7
+7 Many waters cannot quench love, neither can the floods drown it: if a man would give all the substance of his house for love, it would utterly be contemned.

+Thursday 16-January, 2025 diff --git a/scripture/kjv/01/16/25/scripture.json b/scripture/kjv/01/16/25/scripture.json new file mode 100644 index 00000000..b5cee60b --- /dev/null +++ b/scripture/kjv/01/16/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Song of Songs", + "chapter": "8", + "date": "Thursday 16-January, 2025", + "getbible": "https://getbible.life/kjv/Song of Songs/8/7", + "name": "Song of Songs 8:7", + "scripture": [ + { + "nr": "7", + "text": "Many waters cannot quench love, neither can the floods drown it: if a man would give all the substance of his house for love, it would utterly be contemned." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7", + "version": "kjv" +} diff --git a/scripture/kjv/01/16/25/scripture.md b/scripture/kjv/01/16/25/scripture.md new file mode 100644 index 00000000..34c8073d --- /dev/null +++ b/scripture/kjv/01/16/25/scripture.md @@ -0,0 +1,5 @@ +**Song of Songs 8:7** + +7 Many waters cannot quench love, neither can the floods drown it: if a man would give all the substance of his house for love, it would utterly be contemned. + +[Thursday 16-January, 2025](https://getbible.life/kjv/Song of Songs/8/7) diff --git a/scripture/kjv/01/16/25/scripture.tg b/scripture/kjv/01/16/25/scripture.tg new file mode 100644 index 00000000..0bda7d86 --- /dev/null +++ b/scripture/kjv/01/16/25/scripture.tg @@ -0,0 +1,4 @@ +Song of Songs 8:7 +7 Many waters cannot quench love, neither can the floods drown it: if a man would give all the substance of his house for love, it would utterly be contemned. + +Thursday 16-January, 2025 diff --git a/scripture/kjv/01/16/25/scripture.tg.id b/scripture/kjv/01/16/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/16/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/16/25/scripture.today b/scripture/kjv/01/16/25/scripture.today new file mode 100644 index 00000000..7fc9e66e --- /dev/null +++ b/scripture/kjv/01/16/25/scripture.today @@ -0,0 +1 @@ +22 8:7 diff --git a/scripture/kjv/01/16/26/scripture.html b/scripture/kjv/01/16/26/scripture.html new file mode 100644 index 00000000..ac8153aa --- /dev/null +++ b/scripture/kjv/01/16/26/scripture.html @@ -0,0 +1,3 @@ +Isaiah 60:1-2
+1 Arise, shine; for thy light is come, and the glory of the Lord is risen upon thee. 2 For, behold, the darkness shall cover the earth, and gross darkness the people: but the Lord shall arise upon thee, and his glory shall be seen upon thee.

+Friday 16-January, 2026 diff --git a/scripture/kjv/01/16/26/scripture.json b/scripture/kjv/01/16/26/scripture.json new file mode 100644 index 00000000..9b208989 --- /dev/null +++ b/scripture/kjv/01/16/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Isaiah", + "chapter": "60", + "date": "Friday 16-January, 2026", + "getbible": "https://getbible.life/kjv/Isaiah/60/1-2", + "name": "Isaiah 60:1-2", + "scripture": [ + { + "nr": "1", + "text": "Arise, shine; for thy light is come, and the glory of the Lord is risen upon thee." + }, + { + "nr": "2", + "text": "For, behold, the darkness shall cover the earth, and gross darkness the people: but the Lord shall arise upon thee, and his glory shall be seen upon thee." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-2", + "version": "kjv" +} diff --git a/scripture/kjv/01/16/26/scripture.md b/scripture/kjv/01/16/26/scripture.md new file mode 100644 index 00000000..db747544 --- /dev/null +++ b/scripture/kjv/01/16/26/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 60:1-2** + +1 Arise, shine; for thy light is come, and the glory of the Lord is risen upon thee. 2 For, behold, the darkness shall cover the earth, and gross darkness the people: but the Lord shall arise upon thee, and his glory shall be seen upon thee. + +[Friday 16-January, 2026](https://getbible.life/kjv/Isaiah/60/1-2) diff --git a/scripture/kjv/01/16/26/scripture.tg b/scripture/kjv/01/16/26/scripture.tg new file mode 100644 index 00000000..942fa777 --- /dev/null +++ b/scripture/kjv/01/16/26/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 60:1-2 +1 Arise, shine; for thy light is come, and the glory of the Lord is risen upon thee. 2 For, behold, the darkness shall cover the earth, and gross darkness the people: but the Lord shall arise upon thee, and his glory shall be seen upon thee. + +Friday 16-January, 2026 diff --git a/scripture/kjv/01/16/26/scripture.tg.id b/scripture/kjv/01/16/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/16/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/16/26/scripture.today b/scripture/kjv/01/16/26/scripture.today new file mode 100644 index 00000000..a42de0f2 --- /dev/null +++ b/scripture/kjv/01/16/26/scripture.today @@ -0,0 +1 @@ +23 60:1-2 diff --git a/scripture/kjv/01/17/23/scripture.html b/scripture/kjv/01/17/23/scripture.html new file mode 100644 index 00000000..503371fd --- /dev/null +++ b/scripture/kjv/01/17/23/scripture.html @@ -0,0 +1,3 @@ +1 John 4:4
+4 Ye are of God, little children, and have overcome them: because greater is he that is in you, than he that is in the world.

+Tuesday 17-January, 2023 diff --git a/scripture/kjv/01/17/23/scripture.json b/scripture/kjv/01/17/23/scripture.json new file mode 100644 index 00000000..a0fb0bac --- /dev/null +++ b/scripture/kjv/01/17/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Tuesday 17-January, 2023", + "name": "1 John 4:4", + "scripture": [ + { + "nr": "4", + "text": "Ye are of God, little children, and have overcome them: because greater is he that is in you, than he that is in the world." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/17/23/scripture.md b/scripture/kjv/01/17/23/scripture.md new file mode 100644 index 00000000..48bf0984 --- /dev/null +++ b/scripture/kjv/01/17/23/scripture.md @@ -0,0 +1,5 @@ +**1 John 4:4** + +4 Ye are of God, little children, and have overcome them: because greater is he that is in you, than he that is in the world. + +[Tuesday 17-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/17/23/scripture.tg b/scripture/kjv/01/17/23/scripture.tg new file mode 100644 index 00000000..07655dea --- /dev/null +++ b/scripture/kjv/01/17/23/scripture.tg @@ -0,0 +1,4 @@ +1 John 4:4 +4 Ye are of God, little children, and have overcome them: because greater is he that is in you, than he that is in the world. + +Tuesday 17-January, 2023 diff --git a/scripture/kjv/01/17/23/scripture.today b/scripture/kjv/01/17/23/scripture.today new file mode 100644 index 00000000..e648f6a0 --- /dev/null +++ b/scripture/kjv/01/17/23/scripture.today @@ -0,0 +1 @@ +62 4:4 diff --git a/scripture/kjv/01/17/24/scripture.html b/scripture/kjv/01/17/24/scripture.html new file mode 100644 index 00000000..570107e8 --- /dev/null +++ b/scripture/kjv/01/17/24/scripture.html @@ -0,0 +1,3 @@ +Ecclesiastes 4:13
+13 Better is a poor and a wise child than an old and foolish king, who will no more be admonished.

+Wednesday 17-January, 2024 diff --git a/scripture/kjv/01/17/24/scripture.json b/scripture/kjv/01/17/24/scripture.json new file mode 100644 index 00000000..13301c7e --- /dev/null +++ b/scripture/kjv/01/17/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ecclesiastes", + "chapter": "4", + "date": "Wednesday 17-January, 2024", + "getbible": "https://getbible.life/kjv/Ecclesiastes/4/13", + "name": "Ecclesiastes 4:13", + "scripture": [ + { + "nr": "13", + "text": "Better is a poor and a wise child than an old and foolish king, who will no more be admonished." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13", + "version": "kjv" +} diff --git a/scripture/kjv/01/17/24/scripture.md b/scripture/kjv/01/17/24/scripture.md new file mode 100644 index 00000000..0641e0a7 --- /dev/null +++ b/scripture/kjv/01/17/24/scripture.md @@ -0,0 +1,5 @@ +**Ecclesiastes 4:13** + +13 Better is a poor and a wise child than an old and foolish king, who will no more be admonished. + +[Wednesday 17-January, 2024](https://getbible.life/kjv/Ecclesiastes/4/13) diff --git a/scripture/kjv/01/17/24/scripture.tg b/scripture/kjv/01/17/24/scripture.tg new file mode 100644 index 00000000..8e460362 --- /dev/null +++ b/scripture/kjv/01/17/24/scripture.tg @@ -0,0 +1,4 @@ +Ecclesiastes 4:13 +13 Better is a poor and a wise child than an old and foolish king, who will no more be admonished. + +Wednesday 17-January, 2024 diff --git a/scripture/kjv/01/17/24/scripture.tg.id b/scripture/kjv/01/17/24/scripture.tg.id new file mode 100644 index 00000000..87577dc7 --- /dev/null +++ b/scripture/kjv/01/17/24/scripture.tg.id @@ -0,0 +1 @@ +1202 diff --git a/scripture/kjv/01/17/24/scripture.today b/scripture/kjv/01/17/24/scripture.today new file mode 100644 index 00000000..03e7a785 --- /dev/null +++ b/scripture/kjv/01/17/24/scripture.today @@ -0,0 +1 @@ +21 4:13 diff --git a/scripture/kjv/01/17/25/scripture.html b/scripture/kjv/01/17/25/scripture.html new file mode 100644 index 00000000..d5281620 --- /dev/null +++ b/scripture/kjv/01/17/25/scripture.html @@ -0,0 +1,3 @@ +John 10:42
+42 And many believed on him there.

+Friday 17-January, 2025 diff --git a/scripture/kjv/01/17/25/scripture.json b/scripture/kjv/01/17/25/scripture.json new file mode 100644 index 00000000..a509699f --- /dev/null +++ b/scripture/kjv/01/17/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "10", + "date": "Friday 17-January, 2025", + "getbible": "https://getbible.life/kjv/John/10/42", + "name": "John 10:42", + "scripture": [ + { + "nr": "42", + "text": "And many believed on him there. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "42", + "version": "kjv" +} diff --git a/scripture/kjv/01/17/25/scripture.md b/scripture/kjv/01/17/25/scripture.md new file mode 100644 index 00000000..457ec557 --- /dev/null +++ b/scripture/kjv/01/17/25/scripture.md @@ -0,0 +1,5 @@ +**John 10:42** + +42 And many believed on him there. + +[Friday 17-January, 2025](https://getbible.life/kjv/John/10/42) diff --git a/scripture/kjv/01/17/25/scripture.tg b/scripture/kjv/01/17/25/scripture.tg new file mode 100644 index 00000000..7a6d32ad --- /dev/null +++ b/scripture/kjv/01/17/25/scripture.tg @@ -0,0 +1,4 @@ +John 10:42 +42 And many believed on him there. + +Friday 17-January, 2025 diff --git a/scripture/kjv/01/17/25/scripture.tg.id b/scripture/kjv/01/17/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/17/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/17/25/scripture.today b/scripture/kjv/01/17/25/scripture.today new file mode 100644 index 00000000..bdce9146 --- /dev/null +++ b/scripture/kjv/01/17/25/scripture.today @@ -0,0 +1 @@ +43 10:42 diff --git a/scripture/kjv/01/17/26/scripture.html b/scripture/kjv/01/17/26/scripture.html new file mode 100644 index 00000000..97d96e40 --- /dev/null +++ b/scripture/kjv/01/17/26/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 9:9
+9 (As it is written, He hath dispersed abroad; he hath given to the poor: his righteousness remaineth for ever.

+Saturday 17-January, 2026 diff --git a/scripture/kjv/01/17/26/scripture.json b/scripture/kjv/01/17/26/scripture.json new file mode 100644 index 00000000..b8fff763 --- /dev/null +++ b/scripture/kjv/01/17/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "9", + "date": "Saturday 17-January, 2026", + "getbible": "https://getbible.life/kjv/2 Corinthians/9/9", + "name": "2 Corinthians 9:9", + "scripture": [ + { + "nr": "9", + "text": "(As it is written, He hath dispersed abroad; he hath given to the poor: his righteousness remaineth for ever." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9", + "version": "kjv" +} diff --git a/scripture/kjv/01/17/26/scripture.md b/scripture/kjv/01/17/26/scripture.md new file mode 100644 index 00000000..9b8068fc --- /dev/null +++ b/scripture/kjv/01/17/26/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 9:9** + +9 (As it is written, He hath dispersed abroad; he hath given to the poor: his righteousness remaineth for ever. + +[Saturday 17-January, 2026](https://getbible.life/kjv/2 Corinthians/9/9) diff --git a/scripture/kjv/01/17/26/scripture.tg b/scripture/kjv/01/17/26/scripture.tg new file mode 100644 index 00000000..fbe2d626 --- /dev/null +++ b/scripture/kjv/01/17/26/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 9:9 +9 (As it is written, He hath dispersed abroad; he hath given to the poor: his righteousness remaineth for ever. + +Saturday 17-January, 2026 diff --git a/scripture/kjv/01/17/26/scripture.tg.id b/scripture/kjv/01/17/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/17/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/17/26/scripture.today b/scripture/kjv/01/17/26/scripture.today new file mode 100644 index 00000000..c7965afa --- /dev/null +++ b/scripture/kjv/01/17/26/scripture.today @@ -0,0 +1 @@ +47 9:9 diff --git a/scripture/kjv/01/18/23/scripture.html b/scripture/kjv/01/18/23/scripture.html new file mode 100644 index 00000000..463ab252 --- /dev/null +++ b/scripture/kjv/01/18/23/scripture.html @@ -0,0 +1,3 @@ +Titus 2:14
+14 Who gave himself for us, that he might redeem us from all iniquity, and purify unto himself a peculiar people, zealous of good works.

+Wednesday 18-January, 2023 diff --git a/scripture/kjv/01/18/23/scripture.json b/scripture/kjv/01/18/23/scripture.json new file mode 100644 index 00000000..6a4fc613 --- /dev/null +++ b/scripture/kjv/01/18/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Wednesday 18-January, 2023", + "name": "Titus 2:14", + "scripture": [ + { + "nr": "14", + "text": "Who gave himself for us, that he might redeem us from all iniquity, and purify unto himself a peculiar people, zealous of good works." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/18/23/scripture.md b/scripture/kjv/01/18/23/scripture.md new file mode 100644 index 00000000..3a42e2fc --- /dev/null +++ b/scripture/kjv/01/18/23/scripture.md @@ -0,0 +1,5 @@ +**Titus 2:14** + +14 Who gave himself for us, that he might redeem us from all iniquity, and purify unto himself a peculiar people, zealous of good works. + +[Wednesday 18-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/18/23/scripture.tg b/scripture/kjv/01/18/23/scripture.tg new file mode 100644 index 00000000..8bad70b2 --- /dev/null +++ b/scripture/kjv/01/18/23/scripture.tg @@ -0,0 +1,4 @@ +Titus 2:14 +14 Who gave himself for us, that he might redeem us from all iniquity, and purify unto himself a peculiar people, zealous of good works. + +Wednesday 18-January, 2023 diff --git a/scripture/kjv/01/18/23/scripture.today b/scripture/kjv/01/18/23/scripture.today new file mode 100644 index 00000000..54b690f6 --- /dev/null +++ b/scripture/kjv/01/18/23/scripture.today @@ -0,0 +1 @@ +56 2:14 diff --git a/scripture/kjv/01/18/24/scripture.html b/scripture/kjv/01/18/24/scripture.html new file mode 100644 index 00000000..a882ae86 --- /dev/null +++ b/scripture/kjv/01/18/24/scripture.html @@ -0,0 +1,3 @@ +Zechariah 1:17
+17 Cry yet, saying, Thus saith the Lord of hosts; My cities through prosperity shall yet be spread abroad; and the Lord shall yet comfort Zion, and shall yet choose Jerusalem.

+Thursday 18-January, 2024 diff --git a/scripture/kjv/01/18/24/scripture.json b/scripture/kjv/01/18/24/scripture.json new file mode 100644 index 00000000..2ea2979e --- /dev/null +++ b/scripture/kjv/01/18/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Zechariah", + "chapter": "1", + "date": "Thursday 18-January, 2024", + "getbible": "https://getbible.life/kjv/Zechariah/1/17", + "name": "Zechariah 1:17", + "scripture": [ + { + "nr": "17", + "text": "Cry yet, saying, Thus saith the Lord of hosts; My cities through prosperity shall yet be spread abroad; and the Lord shall yet comfort Zion, and shall yet choose Jerusalem." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17", + "version": "kjv" +} diff --git a/scripture/kjv/01/18/24/scripture.md b/scripture/kjv/01/18/24/scripture.md new file mode 100644 index 00000000..81ab60a3 --- /dev/null +++ b/scripture/kjv/01/18/24/scripture.md @@ -0,0 +1,5 @@ +**Zechariah 1:17** + +17 Cry yet, saying, Thus saith the Lord of hosts; My cities through prosperity shall yet be spread abroad; and the Lord shall yet comfort Zion, and shall yet choose Jerusalem. + +[Thursday 18-January, 2024](https://getbible.life/kjv/Zechariah/1/17) diff --git a/scripture/kjv/01/18/24/scripture.tg b/scripture/kjv/01/18/24/scripture.tg new file mode 100644 index 00000000..48052192 --- /dev/null +++ b/scripture/kjv/01/18/24/scripture.tg @@ -0,0 +1,4 @@ +Zechariah 1:17 +17 Cry yet, saying, Thus saith the Lord of hosts; My cities through prosperity shall yet be spread abroad; and the Lord shall yet comfort Zion, and shall yet choose Jerusalem. + +Thursday 18-January, 2024 diff --git a/scripture/kjv/01/18/24/scripture.tg.id b/scripture/kjv/01/18/24/scripture.tg.id new file mode 100644 index 00000000..c1243269 --- /dev/null +++ b/scripture/kjv/01/18/24/scripture.tg.id @@ -0,0 +1 @@ +1203 diff --git a/scripture/kjv/01/18/24/scripture.today b/scripture/kjv/01/18/24/scripture.today new file mode 100644 index 00000000..d761df2d --- /dev/null +++ b/scripture/kjv/01/18/24/scripture.today @@ -0,0 +1 @@ +38 1:17 diff --git a/scripture/kjv/01/18/25/scripture.html b/scripture/kjv/01/18/25/scripture.html new file mode 100644 index 00000000..7974020c --- /dev/null +++ b/scripture/kjv/01/18/25/scripture.html @@ -0,0 +1,3 @@ +James 2:8-9
+8 If ye fulfil the royal law according to the scripture, Thou shalt love thy neighbour as thyself, ye do well: 9 But if ye have respect to persons, ye commit sin, and are convinced of the law as transgressors.

+Saturday 18-January, 2025 diff --git a/scripture/kjv/01/18/25/scripture.json b/scripture/kjv/01/18/25/scripture.json new file mode 100644 index 00000000..019ed90b --- /dev/null +++ b/scripture/kjv/01/18/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "James", + "chapter": "2", + "date": "Saturday 18-January, 2025", + "getbible": "https://getbible.life/kjv/James/2/8-9", + "name": "James 2:8-9", + "scripture": [ + { + "nr": "8", + "text": "If ye fulfil the royal law according to the scripture, Thou shalt love thy neighbour as thyself, ye do well:" + }, + { + "nr": "9", + "text": "But if ye have respect to persons, ye commit sin, and are convinced of the law as transgressors." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8-9", + "version": "kjv" +} diff --git a/scripture/kjv/01/18/25/scripture.md b/scripture/kjv/01/18/25/scripture.md new file mode 100644 index 00000000..09266f4a --- /dev/null +++ b/scripture/kjv/01/18/25/scripture.md @@ -0,0 +1,5 @@ +**James 2:8-9** + +8 If ye fulfil the royal law according to the scripture, Thou shalt love thy neighbour as thyself, ye do well: 9 But if ye have respect to persons, ye commit sin, and are convinced of the law as transgressors. + +[Saturday 18-January, 2025](https://getbible.life/kjv/James/2/8-9) diff --git a/scripture/kjv/01/18/25/scripture.tg b/scripture/kjv/01/18/25/scripture.tg new file mode 100644 index 00000000..e92d95f6 --- /dev/null +++ b/scripture/kjv/01/18/25/scripture.tg @@ -0,0 +1,4 @@ +James 2:8-9 +8 If ye fulfil the royal law according to the scripture, Thou shalt love thy neighbour as thyself, ye do well: 9 But if ye have respect to persons, ye commit sin, and are convinced of the law as transgressors. + +Saturday 18-January, 2025 diff --git a/scripture/kjv/01/18/25/scripture.tg.id b/scripture/kjv/01/18/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/18/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/18/25/scripture.today b/scripture/kjv/01/18/25/scripture.today new file mode 100644 index 00000000..9e789604 --- /dev/null +++ b/scripture/kjv/01/18/25/scripture.today @@ -0,0 +1 @@ +59 2:8-9 diff --git a/scripture/kjv/01/18/26/scripture.html b/scripture/kjv/01/18/26/scripture.html new file mode 100644 index 00000000..28a67c81 --- /dev/null +++ b/scripture/kjv/01/18/26/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 10:1-12
+1 Moreover, brethren, I would not that ye should be ignorant, how that all our fathers were under the cloud, and all passed through the sea; 2 And were all baptized unto Moses in the cloud and in the sea; 3 And did all eat the same spiritual meat; 4 And did all drink the same spiritual drink: for they drank of that spiritual Rock that followed them: and that Rock was Christ. 5 But with many of them God was not well pleased: for they were overthrown in the wilderness. 6 Now these things were our examples, to the intent we should not lust after evil things, as they also lusted. 7 Neither be ye idolaters, as were some of them; as it is written, The people sat down to eat and drink, and rose up to play. 8 Neither let us commit fornication, as some of them committed, and fell in one day three and twenty thousand. 9 Neither let us tempt Christ, as some of them also tempted, and were destroyed of serpents. 10 Neither murmur ye, as some of them also murmured, and were destroyed of the destroyer. 11 Now all these things happened unto them for ensamples: and they are written for our admonition, upon whom the ends of the world are come. 12 Wherefore let him that thinketh he standeth take heed lest he fall.

+Sunday 18-January, 2026 diff --git a/scripture/kjv/01/18/26/scripture.json b/scripture/kjv/01/18/26/scripture.json new file mode 100644 index 00000000..f88105a3 --- /dev/null +++ b/scripture/kjv/01/18/26/scripture.json @@ -0,0 +1,61 @@ +{ + "book": "1 Corinthians", + "chapter": "10", + "date": "Sunday 18-January, 2026", + "getbible": "https://getbible.life/kjv/1 Corinthians/10/1-12", + "name": "1 Corinthians 10:1-12", + "scripture": [ + { + "nr": "1", + "text": "Moreover, brethren, I would not that ye should be ignorant, how that all our fathers were under the cloud, and all passed through the sea;" + }, + { + "nr": "2", + "text": "And were all baptized unto Moses in the cloud and in the sea;" + }, + { + "nr": "3", + "text": "And did all eat the same spiritual meat;" + }, + { + "nr": "4", + "text": "And did all drink the same spiritual drink: for they drank of that spiritual Rock that followed them: and that Rock was Christ." + }, + { + "nr": "5", + "text": "But with many of them God was not well pleased: for they were overthrown in the wilderness." + }, + { + "nr": "6", + "text": "Now these things were our examples, to the intent we should not lust after evil things, as they also lusted." + }, + { + "nr": "7", + "text": "Neither be ye idolaters, as were some of them; as it is written, The people sat down to eat and drink, and rose up to play." + }, + { + "nr": "8", + "text": "Neither let us commit fornication, as some of them committed, and fell in one day three and twenty thousand." + }, + { + "nr": "9", + "text": "Neither let us tempt Christ, as some of them also tempted, and were destroyed of serpents." + }, + { + "nr": "10", + "text": "Neither murmur ye, as some of them also murmured, and were destroyed of the destroyer." + }, + { + "nr": "11", + "text": "Now all these things happened unto them for ensamples: and they are written for our admonition, upon whom the ends of the world are come." + }, + { + "nr": "12", + "text": "Wherefore let him that thinketh he standeth take heed lest he fall." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-12", + "version": "kjv" +} diff --git a/scripture/kjv/01/18/26/scripture.md b/scripture/kjv/01/18/26/scripture.md new file mode 100644 index 00000000..68923ae7 --- /dev/null +++ b/scripture/kjv/01/18/26/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 10:1-12** + +1 Moreover, brethren, I would not that ye should be ignorant, how that all our fathers were under the cloud, and all passed through the sea; 2 And were all baptized unto Moses in the cloud and in the sea; 3 And did all eat the same spiritual meat; 4 And did all drink the same spiritual drink: for they drank of that spiritual Rock that followed them: and that Rock was Christ. 5 But with many of them God was not well pleased: for they were overthrown in the wilderness. 6 Now these things were our examples, to the intent we should not lust after evil things, as they also lusted. 7 Neither be ye idolaters, as were some of them; as it is written, The people sat down to eat and drink, and rose up to play. 8 Neither let us commit fornication, as some of them committed, and fell in one day three and twenty thousand. 9 Neither let us tempt Christ, as some of them also tempted, and were destroyed of serpents. 10 Neither murmur ye, as some of them also murmured, and were destroyed of the destroyer. 11 Now all these things happened unto them for ensamples: and they are written for our admonition, upon whom the ends of the world are come. 12 Wherefore let him that thinketh he standeth take heed lest he fall. + +[Sunday 18-January, 2026](https://getbible.life/kjv/1 Corinthians/10/1-12) diff --git a/scripture/kjv/01/18/26/scripture.tg b/scripture/kjv/01/18/26/scripture.tg new file mode 100644 index 00000000..fa74a703 --- /dev/null +++ b/scripture/kjv/01/18/26/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 10:1-12 +1 Moreover, brethren, I would not that ye should be ignorant, how that all our fathers were under the cloud, and all passed through the sea; 2 And were all baptized unto Moses in the cloud and in the sea; 3 And did all eat the same spiritual meat; 4 And did all drink the same spiritual drink: for they drank of that spiritual Rock that followed them: and that Rock was Christ. 5 But with many of them God was not well pleased: for they were overthrown in the wilderness. 6 Now these things were our examples, to the intent we should not lust after evil things, as they also lusted. 7 Neither be ye idolaters, as were some of them; as it is written, The people sat down to eat and drink, and rose up to play. 8 Neither let us commit fornication, as some of them committed, and fell in one day three and twenty thousand. 9 Neither let us tempt Christ, as some of them also tempted, and were destroyed of serpents. 10 Neither murmur ye, as some of them also murmured, and were destroyed of the destroyer. 11 Now all these things happened unto them for ensamples: and they are written for our admonition, upon whom the ends of the world are come. 12 Wherefore let him that thinketh he standeth take heed lest he fall. + +Sunday 18-January, 2026 diff --git a/scripture/kjv/01/18/26/scripture.tg.id b/scripture/kjv/01/18/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/18/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/18/26/scripture.today b/scripture/kjv/01/18/26/scripture.today new file mode 100644 index 00000000..731a8c85 --- /dev/null +++ b/scripture/kjv/01/18/26/scripture.today @@ -0,0 +1 @@ +46 10:1-12 diff --git a/scripture/kjv/01/19/23/scripture.html b/scripture/kjv/01/19/23/scripture.html new file mode 100644 index 00000000..d2cc2273 --- /dev/null +++ b/scripture/kjv/01/19/23/scripture.html @@ -0,0 +1,3 @@ +Nehemiah 5:10-13
+10 I likewise, and my brethren, and my servants, might exact of them money and corn: I pray you, let us leave off this usury. 11 Restore, I pray you, to them, even this day, their lands, their vineyards, their oliveyards, and their houses, also the hundredth part of the money, and of the corn, the wine, and the oil, that ye exact of them. 12 Then said they, We will restore them, and will require nothing of them; so will we do as thou sayest. Then I called the priests, and took an oath of them, that they should do according to this promise. 13 Also I shook my lap, and said, So God shake out every man from his house, and from his labour, that performeth not this promise, even thus be he shaken out, and emptied. And all the congregation said, Amen, and praised the Lord. And the people did according to this promise.

+Thursday 19-January, 2023 diff --git a/scripture/kjv/01/19/23/scripture.json b/scripture/kjv/01/19/23/scripture.json new file mode 100644 index 00000000..831318d9 --- /dev/null +++ b/scripture/kjv/01/19/23/scripture.json @@ -0,0 +1,25 @@ +{ + "date": "Thursday 19-January, 2023", + "name": "Nehemiah 5:10-13", + "scripture": [ + { + "nr": "10", + "text": "I likewise, and my brethren, and my servants, might exact of them money and corn: I pray you, let us leave off this usury." + }, + { + "nr": "11", + "text": "Restore, I pray you, to them, even this day, their lands, their vineyards, their oliveyards, and their houses, also the hundredth part of the money, and of the corn, the wine, and the oil, that ye exact of them." + }, + { + "nr": "12", + "text": "Then said they, We will restore them, and will require nothing of them; so will we do as thou sayest. Then I called the priests, and took an oath of them, that they should do according to this promise." + }, + { + "nr": "13", + "text": "Also I shook my lap, and said, So God shake out every man from his house, and from his labour, that performeth not this promise, even thus be he shaken out, and emptied. And all the congregation said, Amen, and praised the Lord. And the people did according to this promise." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/19/23/scripture.md b/scripture/kjv/01/19/23/scripture.md new file mode 100644 index 00000000..5c95b89e --- /dev/null +++ b/scripture/kjv/01/19/23/scripture.md @@ -0,0 +1,5 @@ +**Nehemiah 5:10-13** + +10 I likewise, and my brethren, and my servants, might exact of them money and corn: I pray you, let us leave off this usury. 11 Restore, I pray you, to them, even this day, their lands, their vineyards, their oliveyards, and their houses, also the hundredth part of the money, and of the corn, the wine, and the oil, that ye exact of them. 12 Then said they, We will restore them, and will require nothing of them; so will we do as thou sayest. Then I called the priests, and took an oath of them, that they should do according to this promise. 13 Also I shook my lap, and said, So God shake out every man from his house, and from his labour, that performeth not this promise, even thus be he shaken out, and emptied. And all the congregation said, Amen, and praised the Lord. And the people did according to this promise. + +[Thursday 19-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/19/23/scripture.tg b/scripture/kjv/01/19/23/scripture.tg new file mode 100644 index 00000000..7b22a4dd --- /dev/null +++ b/scripture/kjv/01/19/23/scripture.tg @@ -0,0 +1,4 @@ +Nehemiah 5:10-13 +10 I likewise, and my brethren, and my servants, might exact of them money and corn: I pray you, let us leave off this usury. 11 Restore, I pray you, to them, even this day, their lands, their vineyards, their oliveyards, and their houses, also the hundredth part of the money, and of the corn, the wine, and the oil, that ye exact of them. 12 Then said they, We will restore them, and will require nothing of them; so will we do as thou sayest. Then I called the priests, and took an oath of them, that they should do according to this promise. 13 Also I shook my lap, and said, So God shake out every man from his house, and from his labour, that performeth not this promise, even thus be he shaken out, and emptied. And all the congregation said, Amen, and praised the Lord. And the people did according to this promise. + +Thursday 19-January, 2023 diff --git a/scripture/kjv/01/19/23/scripture.today b/scripture/kjv/01/19/23/scripture.today new file mode 100644 index 00000000..92660472 --- /dev/null +++ b/scripture/kjv/01/19/23/scripture.today @@ -0,0 +1 @@ +16 5:10-13 diff --git a/scripture/kjv/01/19/24/scripture.html b/scripture/kjv/01/19/24/scripture.html new file mode 100644 index 00000000..cb949faf --- /dev/null +++ b/scripture/kjv/01/19/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 21:23
+23 Whoso keepeth his mouth and his tongue keepeth his soul from troubles.

+Friday 19-January, 2024 diff --git a/scripture/kjv/01/19/24/scripture.json b/scripture/kjv/01/19/24/scripture.json new file mode 100644 index 00000000..b33da5dc --- /dev/null +++ b/scripture/kjv/01/19/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "21", + "date": "Friday 19-January, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/21/23", + "name": "Proverbs 21:23", + "scripture": [ + { + "nr": "23", + "text": "Whoso keepeth his mouth and his tongue keepeth his soul from troubles." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "23", + "version": "kjv" +} diff --git a/scripture/kjv/01/19/24/scripture.md b/scripture/kjv/01/19/24/scripture.md new file mode 100644 index 00000000..9368bb25 --- /dev/null +++ b/scripture/kjv/01/19/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 21:23** + +23 Whoso keepeth his mouth and his tongue keepeth his soul from troubles. + +[Friday 19-January, 2024](https://getbible.life/kjv/Proverbs/21/23) diff --git a/scripture/kjv/01/19/24/scripture.tg b/scripture/kjv/01/19/24/scripture.tg new file mode 100644 index 00000000..a7f0db87 --- /dev/null +++ b/scripture/kjv/01/19/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 21:23 +23 Whoso keepeth his mouth and his tongue keepeth his soul from troubles. + +Friday 19-January, 2024 diff --git a/scripture/kjv/01/19/24/scripture.tg.id b/scripture/kjv/01/19/24/scripture.tg.id new file mode 100644 index 00000000..f8d65c31 --- /dev/null +++ b/scripture/kjv/01/19/24/scripture.tg.id @@ -0,0 +1 @@ +1204 diff --git a/scripture/kjv/01/19/24/scripture.today b/scripture/kjv/01/19/24/scripture.today new file mode 100644 index 00000000..212d3d17 --- /dev/null +++ b/scripture/kjv/01/19/24/scripture.today @@ -0,0 +1 @@ +20 21:23 diff --git a/scripture/kjv/01/19/25/scripture.html b/scripture/kjv/01/19/25/scripture.html new file mode 100644 index 00000000..3eece77c --- /dev/null +++ b/scripture/kjv/01/19/25/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 13:14
+14 So will I break down the wall that ye have daubed with untempered morter, and bring it down to the ground, so that the foundation thereof shall be discovered, and it shall fall, and ye shall be consumed in the midst thereof: and ye shall know that I am the Lord.

+Sunday 19-January, 2025 diff --git a/scripture/kjv/01/19/25/scripture.json b/scripture/kjv/01/19/25/scripture.json new file mode 100644 index 00000000..208ba033 --- /dev/null +++ b/scripture/kjv/01/19/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ezekiel", + "chapter": "13", + "date": "Sunday 19-January, 2025", + "getbible": "https://getbible.life/kjv/Ezekiel/13/14", + "name": "Ezekiel 13:14", + "scripture": [ + { + "nr": "14", + "text": "So will I break down the wall that ye have daubed with untempered morter, and bring it down to the ground, so that the foundation thereof shall be discovered, and it shall fall, and ye shall be consumed in the midst thereof: and ye shall know that I am the Lord." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/01/19/25/scripture.md b/scripture/kjv/01/19/25/scripture.md new file mode 100644 index 00000000..c09f82fa --- /dev/null +++ b/scripture/kjv/01/19/25/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 13:14** + +14 So will I break down the wall that ye have daubed with untempered morter, and bring it down to the ground, so that the foundation thereof shall be discovered, and it shall fall, and ye shall be consumed in the midst thereof: and ye shall know that I am the Lord. + +[Sunday 19-January, 2025](https://getbible.life/kjv/Ezekiel/13/14) diff --git a/scripture/kjv/01/19/25/scripture.tg b/scripture/kjv/01/19/25/scripture.tg new file mode 100644 index 00000000..00e35ee7 --- /dev/null +++ b/scripture/kjv/01/19/25/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 13:14 +14 So will I break down the wall that ye have daubed with untempered morter, and bring it down to the ground, so that the foundation thereof shall be discovered, and it shall fall, and ye shall be consumed in the midst thereof: and ye shall know that I am the Lord. + +Sunday 19-January, 2025 diff --git a/scripture/kjv/01/19/25/scripture.tg.id b/scripture/kjv/01/19/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/19/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/19/25/scripture.today b/scripture/kjv/01/19/25/scripture.today new file mode 100644 index 00000000..88cdc078 --- /dev/null +++ b/scripture/kjv/01/19/25/scripture.today @@ -0,0 +1 @@ +26 13:14 diff --git a/scripture/kjv/01/19/26/scripture.html b/scripture/kjv/01/19/26/scripture.html new file mode 100644 index 00000000..c0a83392 --- /dev/null +++ b/scripture/kjv/01/19/26/scripture.html @@ -0,0 +1,3 @@ +Jonah 2:6
+6 I went down to the bottoms of the mountains; the earth with her bars was about me for ever: yet hast thou brought up my life from corruption, O Lord my God.

+Monday 19-January, 2026 diff --git a/scripture/kjv/01/19/26/scripture.json b/scripture/kjv/01/19/26/scripture.json new file mode 100644 index 00000000..f2bb3cf1 --- /dev/null +++ b/scripture/kjv/01/19/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Jonah", + "chapter": "2", + "date": "Monday 19-January, 2026", + "getbible": "https://getbible.life/kjv/Jonah/2/6", + "name": "Jonah 2:6", + "scripture": [ + { + "nr": "6", + "text": "I went down to the bottoms of the mountains; the earth with her bars was about me for ever: yet hast thou brought up my life from corruption, O Lord my God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6", + "version": "kjv" +} diff --git a/scripture/kjv/01/19/26/scripture.md b/scripture/kjv/01/19/26/scripture.md new file mode 100644 index 00000000..ee6a0e74 --- /dev/null +++ b/scripture/kjv/01/19/26/scripture.md @@ -0,0 +1,5 @@ +**Jonah 2:6** + +6 I went down to the bottoms of the mountains; the earth with her bars was about me for ever: yet hast thou brought up my life from corruption, O Lord my God. + +[Monday 19-January, 2026](https://getbible.life/kjv/Jonah/2/6) diff --git a/scripture/kjv/01/19/26/scripture.tg b/scripture/kjv/01/19/26/scripture.tg new file mode 100644 index 00000000..2bb865ca --- /dev/null +++ b/scripture/kjv/01/19/26/scripture.tg @@ -0,0 +1,4 @@ +Jonah 2:6 +6 I went down to the bottoms of the mountains; the earth with her bars was about me for ever: yet hast thou brought up my life from corruption, O Lord my God. + +Monday 19-January, 2026 diff --git a/scripture/kjv/01/19/26/scripture.tg.id b/scripture/kjv/01/19/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/19/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/19/26/scripture.today b/scripture/kjv/01/19/26/scripture.today new file mode 100644 index 00000000..78aabc7a --- /dev/null +++ b/scripture/kjv/01/19/26/scripture.today @@ -0,0 +1 @@ +32 2:6 diff --git a/scripture/kjv/01/20/23/scripture.html b/scripture/kjv/01/20/23/scripture.html new file mode 100644 index 00000000..aa7af40b --- /dev/null +++ b/scripture/kjv/01/20/23/scripture.html @@ -0,0 +1,3 @@ +Ecclesiastes 11:6
+6 In the morning sow thy seed, and in the evening withhold not thine hand: for thou knowest not whether shall prosper, either this or that, or whether they both shall be alike good.

+Friday 20-January, 2023 diff --git a/scripture/kjv/01/20/23/scripture.json b/scripture/kjv/01/20/23/scripture.json new file mode 100644 index 00000000..31ce113d --- /dev/null +++ b/scripture/kjv/01/20/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Friday 20-January, 2023", + "name": "Ecclesiastes 11:6", + "scripture": [ + { + "nr": "6", + "text": "In the morning sow thy seed, and in the evening withhold not thine hand: for thou knowest not whether shall prosper, either this or that, or whether they both shall be alike good." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/20/23/scripture.md b/scripture/kjv/01/20/23/scripture.md new file mode 100644 index 00000000..9a1ad3df --- /dev/null +++ b/scripture/kjv/01/20/23/scripture.md @@ -0,0 +1,5 @@ +**Ecclesiastes 11:6** + +6 In the morning sow thy seed, and in the evening withhold not thine hand: for thou knowest not whether shall prosper, either this or that, or whether they both shall be alike good. + +[Friday 20-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/20/23/scripture.tg b/scripture/kjv/01/20/23/scripture.tg new file mode 100644 index 00000000..ec975832 --- /dev/null +++ b/scripture/kjv/01/20/23/scripture.tg @@ -0,0 +1,4 @@ +Ecclesiastes 11:6 +6 In the morning sow thy seed, and in the evening withhold not thine hand: for thou knowest not whether shall prosper, either this or that, or whether they both shall be alike good. + +Friday 20-January, 2023 diff --git a/scripture/kjv/01/20/23/scripture.today b/scripture/kjv/01/20/23/scripture.today new file mode 100644 index 00000000..0ae244ce --- /dev/null +++ b/scripture/kjv/01/20/23/scripture.today @@ -0,0 +1 @@ +21 11:6 diff --git a/scripture/kjv/01/20/24/scripture.html b/scripture/kjv/01/20/24/scripture.html new file mode 100644 index 00000000..97c20f35 --- /dev/null +++ b/scripture/kjv/01/20/24/scripture.html @@ -0,0 +1,3 @@ +Philippians 4:23
+23 The grace of our Lord Jesus Christ be with you all. Amen. It was written to the Philippians from Rome by Epaphroditus.

+Saturday 20-January, 2024 diff --git a/scripture/kjv/01/20/24/scripture.json b/scripture/kjv/01/20/24/scripture.json new file mode 100644 index 00000000..463127ec --- /dev/null +++ b/scripture/kjv/01/20/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Philippians", + "chapter": "4", + "date": "Saturday 20-January, 2024", + "getbible": "https://getbible.life/kjv/Philippians/4/23", + "name": "Philippians 4:23", + "scripture": [ + { + "nr": "23", + "text": "The grace of our Lord Jesus Christ be with you all. Amen. It was written to the Philippians from Rome by Epaphroditus. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "23", + "version": "kjv" +} diff --git a/scripture/kjv/01/20/24/scripture.md b/scripture/kjv/01/20/24/scripture.md new file mode 100644 index 00000000..b3550ddc --- /dev/null +++ b/scripture/kjv/01/20/24/scripture.md @@ -0,0 +1,5 @@ +**Philippians 4:23** + +23 The grace of our Lord Jesus Christ be with you all. Amen. It was written to the Philippians from Rome by Epaphroditus. + +[Saturday 20-January, 2024](https://getbible.life/kjv/Philippians/4/23) diff --git a/scripture/kjv/01/20/24/scripture.tg b/scripture/kjv/01/20/24/scripture.tg new file mode 100644 index 00000000..0b0de6f6 --- /dev/null +++ b/scripture/kjv/01/20/24/scripture.tg @@ -0,0 +1,4 @@ +Philippians 4:23 +23 The grace of our Lord Jesus Christ be with you all. Amen. It was written to the Philippians from Rome by Epaphroditus. + +Saturday 20-January, 2024 diff --git a/scripture/kjv/01/20/24/scripture.tg.id b/scripture/kjv/01/20/24/scripture.tg.id new file mode 100644 index 00000000..b0536459 --- /dev/null +++ b/scripture/kjv/01/20/24/scripture.tg.id @@ -0,0 +1 @@ +1205 diff --git a/scripture/kjv/01/20/24/scripture.today b/scripture/kjv/01/20/24/scripture.today new file mode 100644 index 00000000..507ad5be --- /dev/null +++ b/scripture/kjv/01/20/24/scripture.today @@ -0,0 +1 @@ +50 4:23 diff --git a/scripture/kjv/01/20/25/scripture.html b/scripture/kjv/01/20/25/scripture.html new file mode 100644 index 00000000..7138d6ea --- /dev/null +++ b/scripture/kjv/01/20/25/scripture.html @@ -0,0 +1,3 @@ +Galatians 4:10-11
+10 Ye observe days, and months, and times, and years. 11 I am afraid of you, lest I have bestowed upon you labour in vain.

+Monday 20-January, 2025 diff --git a/scripture/kjv/01/20/25/scripture.json b/scripture/kjv/01/20/25/scripture.json new file mode 100644 index 00000000..e1d1adba --- /dev/null +++ b/scripture/kjv/01/20/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Galatians", + "chapter": "4", + "date": "Monday 20-January, 2025", + "getbible": "https://getbible.life/kjv/Galatians/4/10-11", + "name": "Galatians 4:10-11", + "scripture": [ + { + "nr": "10", + "text": "Ye observe days, and months, and times, and years." + }, + { + "nr": "11", + "text": "I am afraid of you, lest I have bestowed upon you labour in vain." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10-11", + "version": "kjv" +} diff --git a/scripture/kjv/01/20/25/scripture.md b/scripture/kjv/01/20/25/scripture.md new file mode 100644 index 00000000..7096bbf8 --- /dev/null +++ b/scripture/kjv/01/20/25/scripture.md @@ -0,0 +1,5 @@ +**Galatians 4:10-11** + +10 Ye observe days, and months, and times, and years. 11 I am afraid of you, lest I have bestowed upon you labour in vain. + +[Monday 20-January, 2025](https://getbible.life/kjv/Galatians/4/10-11) diff --git a/scripture/kjv/01/20/25/scripture.tg b/scripture/kjv/01/20/25/scripture.tg new file mode 100644 index 00000000..fc19a3c1 --- /dev/null +++ b/scripture/kjv/01/20/25/scripture.tg @@ -0,0 +1,4 @@ +Galatians 4:10-11 +10 Ye observe days, and months, and times, and years. 11 I am afraid of you, lest I have bestowed upon you labour in vain. + +Monday 20-January, 2025 diff --git a/scripture/kjv/01/20/25/scripture.tg.id b/scripture/kjv/01/20/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/20/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/20/25/scripture.today b/scripture/kjv/01/20/25/scripture.today new file mode 100644 index 00000000..2226e267 --- /dev/null +++ b/scripture/kjv/01/20/25/scripture.today @@ -0,0 +1 @@ +48 4:10-11 diff --git a/scripture/kjv/01/20/26/scripture.html b/scripture/kjv/01/20/26/scripture.html new file mode 100644 index 00000000..bd03f74d --- /dev/null +++ b/scripture/kjv/01/20/26/scripture.html @@ -0,0 +1,3 @@ +Ecclesiastes 7:27
+27 Behold, this have I found, saith the preacher, counting one by one, to find out the account:

+Tuesday 20-January, 2026 diff --git a/scripture/kjv/01/20/26/scripture.json b/scripture/kjv/01/20/26/scripture.json new file mode 100644 index 00000000..a17b5456 --- /dev/null +++ b/scripture/kjv/01/20/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ecclesiastes", + "chapter": "7", + "date": "Tuesday 20-January, 2026", + "getbible": "https://getbible.life/kjv/Ecclesiastes/7/27", + "name": "Ecclesiastes 7:27", + "scripture": [ + { + "nr": "27", + "text": "Behold, this have I found, saith the preacher, counting one by one, to find out the account:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "27", + "version": "kjv" +} diff --git a/scripture/kjv/01/20/26/scripture.md b/scripture/kjv/01/20/26/scripture.md new file mode 100644 index 00000000..0ad9186d --- /dev/null +++ b/scripture/kjv/01/20/26/scripture.md @@ -0,0 +1,5 @@ +**Ecclesiastes 7:27** + +27 Behold, this have I found, saith the preacher, counting one by one, to find out the account: + +[Tuesday 20-January, 2026](https://getbible.life/kjv/Ecclesiastes/7/27) diff --git a/scripture/kjv/01/20/26/scripture.tg b/scripture/kjv/01/20/26/scripture.tg new file mode 100644 index 00000000..07462dfa --- /dev/null +++ b/scripture/kjv/01/20/26/scripture.tg @@ -0,0 +1,4 @@ +Ecclesiastes 7:27 +27 Behold, this have I found, saith the preacher, counting one by one, to find out the account: + +Tuesday 20-January, 2026 diff --git a/scripture/kjv/01/20/26/scripture.tg.id b/scripture/kjv/01/20/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/20/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/20/26/scripture.today b/scripture/kjv/01/20/26/scripture.today new file mode 100644 index 00000000..8defa15a --- /dev/null +++ b/scripture/kjv/01/20/26/scripture.today @@ -0,0 +1 @@ +21 7:27 diff --git a/scripture/kjv/01/21/23/scripture.html b/scripture/kjv/01/21/23/scripture.html new file mode 100644 index 00000000..7d0a1ce8 --- /dev/null +++ b/scripture/kjv/01/21/23/scripture.html @@ -0,0 +1,3 @@ +Amos 5:18-24
+18 Woe unto you that desire the day of the Lord! to what end is it for you? the day of the Lord is darkness, and not light. 19 As if a man did flee from a lion, and a bear met him; or went into the house, and leaned his hand on the wall, and a serpent bit him. 20 Shall not the day of the Lord be darkness, and not light? even very dark, and no brightness in it? 21 I hate, I despise your feast days, and I will not smell in your solemn assemblies. 22 Though ye offer me burnt offerings and your meat offerings, I will not accept them: neither will I regard the peace offerings of your fat beasts. 23 Take thou away from me the noise of thy songs; for I will not hear the melody of thy viols. 24 But let judgment run down as waters, and righteousness as a mighty stream.

+Saturday 21-January, 2023 diff --git a/scripture/kjv/01/21/23/scripture.json b/scripture/kjv/01/21/23/scripture.json new file mode 100644 index 00000000..4701295f --- /dev/null +++ b/scripture/kjv/01/21/23/scripture.json @@ -0,0 +1,37 @@ +{ + "date": "Saturday 21-January, 2023", + "name": "Amos 5:18-24", + "scripture": [ + { + "nr": "18", + "text": "Woe unto you that desire the day of the Lord! to what end is it for you? the day of the Lord is darkness, and not light." + }, + { + "nr": "19", + "text": "As if a man did flee from a lion, and a bear met him; or went into the house, and leaned his hand on the wall, and a serpent bit him." + }, + { + "nr": "20", + "text": "Shall not the day of the Lord be darkness, and not light? even very dark, and no brightness in it?" + }, + { + "nr": "21", + "text": "I hate, I despise your feast days, and I will not smell in your solemn assemblies." + }, + { + "nr": "22", + "text": "Though ye offer me burnt offerings and your meat offerings, I will not accept them: neither will I regard the peace offerings of your fat beasts." + }, + { + "nr": "23", + "text": "Take thou away from me the noise of thy songs; for I will not hear the melody of thy viols." + }, + { + "nr": "24", + "text": "But let judgment run down as waters, and righteousness as a mighty stream." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/21/23/scripture.md b/scripture/kjv/01/21/23/scripture.md new file mode 100644 index 00000000..64f3ca10 --- /dev/null +++ b/scripture/kjv/01/21/23/scripture.md @@ -0,0 +1,5 @@ +**Amos 5:18-24** + +18 Woe unto you that desire the day of the Lord! to what end is it for you? the day of the Lord is darkness, and not light. 19 As if a man did flee from a lion, and a bear met him; or went into the house, and leaned his hand on the wall, and a serpent bit him. 20 Shall not the day of the Lord be darkness, and not light? even very dark, and no brightness in it? 21 I hate, I despise your feast days, and I will not smell in your solemn assemblies. 22 Though ye offer me burnt offerings and your meat offerings, I will not accept them: neither will I regard the peace offerings of your fat beasts. 23 Take thou away from me the noise of thy songs; for I will not hear the melody of thy viols. 24 But let judgment run down as waters, and righteousness as a mighty stream. + +[Saturday 21-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/21/23/scripture.tg b/scripture/kjv/01/21/23/scripture.tg new file mode 100644 index 00000000..9f4bd751 --- /dev/null +++ b/scripture/kjv/01/21/23/scripture.tg @@ -0,0 +1,4 @@ +Amos 5:18-24 +18 Woe unto you that desire the day of the Lord! to what end is it for you? the day of the Lord is darkness, and not light. 19 As if a man did flee from a lion, and a bear met him; or went into the house, and leaned his hand on the wall, and a serpent bit him. 20 Shall not the day of the Lord be darkness, and not light? even very dark, and no brightness in it? 21 I hate, I despise your feast days, and I will not smell in your solemn assemblies. 22 Though ye offer me burnt offerings and your meat offerings, I will not accept them: neither will I regard the peace offerings of your fat beasts. 23 Take thou away from me the noise of thy songs; for I will not hear the melody of thy viols. 24 But let judgment run down as waters, and righteousness as a mighty stream. + +Saturday 21-January, 2023 diff --git a/scripture/kjv/01/21/23/scripture.today b/scripture/kjv/01/21/23/scripture.today new file mode 100644 index 00000000..4ef2e0bd --- /dev/null +++ b/scripture/kjv/01/21/23/scripture.today @@ -0,0 +1 @@ +30 5:18-24 diff --git a/scripture/kjv/01/21/24/scripture.html b/scripture/kjv/01/21/24/scripture.html new file mode 100644 index 00000000..f3458f84 --- /dev/null +++ b/scripture/kjv/01/21/24/scripture.html @@ -0,0 +1,3 @@ +Hebrews 12:11-12
+11 Now no chastening for the present seemeth to be joyous, but grievous: nevertheless afterward it yieldeth the peaceable fruit of righteousness unto them which are exercised thereby. 12 Wherefore lift up the hands which hang down, and the feeble knees;

+Sunday 21-January, 2024 diff --git a/scripture/kjv/01/21/24/scripture.json b/scripture/kjv/01/21/24/scripture.json new file mode 100644 index 00000000..fbf0628d --- /dev/null +++ b/scripture/kjv/01/21/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Hebrews", + "chapter": "12", + "date": "Sunday 21-January, 2024", + "getbible": "https://getbible.life/kjv/Hebrews/12/11-12", + "name": "Hebrews 12:11-12", + "scripture": [ + { + "nr": "11", + "text": "Now no chastening for the present seemeth to be joyous, but grievous: nevertheless afterward it yieldeth the peaceable fruit of righteousness unto them which are exercised thereby." + }, + { + "nr": "12", + "text": "Wherefore lift up the hands which hang down, and the feeble knees;" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11-12", + "version": "kjv" +} diff --git a/scripture/kjv/01/21/24/scripture.md b/scripture/kjv/01/21/24/scripture.md new file mode 100644 index 00000000..86e64879 --- /dev/null +++ b/scripture/kjv/01/21/24/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 12:11-12** + +11 Now no chastening for the present seemeth to be joyous, but grievous: nevertheless afterward it yieldeth the peaceable fruit of righteousness unto them which are exercised thereby. 12 Wherefore lift up the hands which hang down, and the feeble knees; + +[Sunday 21-January, 2024](https://getbible.life/kjv/Hebrews/12/11-12) diff --git a/scripture/kjv/01/21/24/scripture.tg b/scripture/kjv/01/21/24/scripture.tg new file mode 100644 index 00000000..8a46bba4 --- /dev/null +++ b/scripture/kjv/01/21/24/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 12:11-12 +11 Now no chastening for the present seemeth to be joyous, but grievous: nevertheless afterward it yieldeth the peaceable fruit of righteousness unto them which are exercised thereby. 12 Wherefore lift up the hands which hang down, and the feeble knees; + +Sunday 21-January, 2024 diff --git a/scripture/kjv/01/21/24/scripture.tg.id b/scripture/kjv/01/21/24/scripture.tg.id new file mode 100644 index 00000000..e944bea9 --- /dev/null +++ b/scripture/kjv/01/21/24/scripture.tg.id @@ -0,0 +1 @@ +1206 diff --git a/scripture/kjv/01/21/24/scripture.today b/scripture/kjv/01/21/24/scripture.today new file mode 100644 index 00000000..21103dee --- /dev/null +++ b/scripture/kjv/01/21/24/scripture.today @@ -0,0 +1 @@ +58 12:11-12 diff --git a/scripture/kjv/01/21/25/scripture.html b/scripture/kjv/01/21/25/scripture.html new file mode 100644 index 00000000..52e7e110 --- /dev/null +++ b/scripture/kjv/01/21/25/scripture.html @@ -0,0 +1,3 @@ +Proverbs 22:20-21
+20 Have not I written to thee excellent things in counsels and knowledge, 21 That I might make thee know the certainty of the words of truth; that thou mightest answer the words of truth to them that send unto thee?

+Tuesday 21-January, 2025 diff --git a/scripture/kjv/01/21/25/scripture.json b/scripture/kjv/01/21/25/scripture.json new file mode 100644 index 00000000..dbca13f5 --- /dev/null +++ b/scripture/kjv/01/21/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Proverbs", + "chapter": "22", + "date": "Tuesday 21-January, 2025", + "getbible": "https://getbible.life/kjv/Proverbs/22/20-21", + "name": "Proverbs 22:20-21", + "scripture": [ + { + "nr": "20", + "text": "Have not I written to thee excellent things in counsels and knowledge," + }, + { + "nr": "21", + "text": "That I might make thee know the certainty of the words of truth; that thou mightest answer the words of truth to them that send unto thee?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20-21", + "version": "kjv" +} diff --git a/scripture/kjv/01/21/25/scripture.md b/scripture/kjv/01/21/25/scripture.md new file mode 100644 index 00000000..8ed28ba0 --- /dev/null +++ b/scripture/kjv/01/21/25/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 22:20-21** + +20 Have not I written to thee excellent things in counsels and knowledge, 21 That I might make thee know the certainty of the words of truth; that thou mightest answer the words of truth to them that send unto thee? + +[Tuesday 21-January, 2025](https://getbible.life/kjv/Proverbs/22/20-21) diff --git a/scripture/kjv/01/21/25/scripture.tg b/scripture/kjv/01/21/25/scripture.tg new file mode 100644 index 00000000..72414457 --- /dev/null +++ b/scripture/kjv/01/21/25/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 22:20-21 +20 Have not I written to thee excellent things in counsels and knowledge, 21 That I might make thee know the certainty of the words of truth; that thou mightest answer the words of truth to them that send unto thee? + +Tuesday 21-January, 2025 diff --git a/scripture/kjv/01/21/25/scripture.tg.id b/scripture/kjv/01/21/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/21/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/21/25/scripture.today b/scripture/kjv/01/21/25/scripture.today new file mode 100644 index 00000000..580d53aa --- /dev/null +++ b/scripture/kjv/01/21/25/scripture.today @@ -0,0 +1 @@ +20 22:20-21 diff --git a/scripture/kjv/01/21/26/scripture.html b/scripture/kjv/01/21/26/scripture.html new file mode 100644 index 00000000..4bf17aa4 --- /dev/null +++ b/scripture/kjv/01/21/26/scripture.html @@ -0,0 +1,3 @@ +Song of Songs 7:10
+10 I am my beloved’s, and his desire is toward me.

+Wednesday 21-January, 2026 diff --git a/scripture/kjv/01/21/26/scripture.json b/scripture/kjv/01/21/26/scripture.json new file mode 100644 index 00000000..000a3a47 --- /dev/null +++ b/scripture/kjv/01/21/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Song of Songs", + "chapter": "7", + "date": "Wednesday 21-January, 2026", + "getbible": "https://getbible.life/kjv/Song of Songs/7/10", + "name": "Song of Songs 7:10", + "scripture": [ + { + "nr": "10", + "text": "I am my beloved’s, and his desire is toward me." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/01/21/26/scripture.md b/scripture/kjv/01/21/26/scripture.md new file mode 100644 index 00000000..36f5e636 --- /dev/null +++ b/scripture/kjv/01/21/26/scripture.md @@ -0,0 +1,5 @@ +**Song of Songs 7:10** + +10 I am my beloved’s, and his desire is toward me. + +[Wednesday 21-January, 2026](https://getbible.life/kjv/Song of Songs/7/10) diff --git a/scripture/kjv/01/21/26/scripture.tg b/scripture/kjv/01/21/26/scripture.tg new file mode 100644 index 00000000..7f8bbd1b --- /dev/null +++ b/scripture/kjv/01/21/26/scripture.tg @@ -0,0 +1,4 @@ +Song of Songs 7:10 +10 I am my beloved’s, and his desire is toward me. + +Wednesday 21-January, 2026 diff --git a/scripture/kjv/01/21/26/scripture.tg.id b/scripture/kjv/01/21/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/21/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/21/26/scripture.today b/scripture/kjv/01/21/26/scripture.today new file mode 100644 index 00000000..87c9d923 --- /dev/null +++ b/scripture/kjv/01/21/26/scripture.today @@ -0,0 +1 @@ +22 7:10 diff --git a/scripture/kjv/01/22/23/scripture.html b/scripture/kjv/01/22/23/scripture.html new file mode 100644 index 00000000..dbdbf77d --- /dev/null +++ b/scripture/kjv/01/22/23/scripture.html @@ -0,0 +1,3 @@ +Revelation 1:8
+8 I am Alpha and Omega, the beginning and the ending, saith the Lord, which is, and which was, and which is to come, the Almighty.

+Sunday 22-January, 2023 diff --git a/scripture/kjv/01/22/23/scripture.json b/scripture/kjv/01/22/23/scripture.json new file mode 100644 index 00000000..013feec4 --- /dev/null +++ b/scripture/kjv/01/22/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Sunday 22-January, 2023", + "name": "Revelation 1:8", + "scripture": [ + { + "nr": "8", + "text": "I am Alpha and Omega, the beginning and the ending, saith the Lord, which is, and which was, and which is to come, the Almighty." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/22/23/scripture.md b/scripture/kjv/01/22/23/scripture.md new file mode 100644 index 00000000..f714ad87 --- /dev/null +++ b/scripture/kjv/01/22/23/scripture.md @@ -0,0 +1,5 @@ +**Revelation 1:8** + +8 I am Alpha and Omega, the beginning and the ending, saith the Lord, which is, and which was, and which is to come, the Almighty. + +[Sunday 22-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/22/23/scripture.tg b/scripture/kjv/01/22/23/scripture.tg new file mode 100644 index 00000000..9c94ecc3 --- /dev/null +++ b/scripture/kjv/01/22/23/scripture.tg @@ -0,0 +1,4 @@ +Revelation 1:8 +8 I am Alpha and Omega, the beginning and the ending, saith the Lord, which is, and which was, and which is to come, the Almighty. + +Sunday 22-January, 2023 diff --git a/scripture/kjv/01/22/23/scripture.today b/scripture/kjv/01/22/23/scripture.today new file mode 100644 index 00000000..7b397f4c --- /dev/null +++ b/scripture/kjv/01/22/23/scripture.today @@ -0,0 +1 @@ +66 1:8 diff --git a/scripture/kjv/01/22/24/scripture.html b/scripture/kjv/01/22/24/scripture.html new file mode 100644 index 00000000..57852fb0 --- /dev/null +++ b/scripture/kjv/01/22/24/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 15:33
+33 Be not deceived: evil communications corrupt good manners.

+Monday 22-January, 2024 diff --git a/scripture/kjv/01/22/24/scripture.json b/scripture/kjv/01/22/24/scripture.json new file mode 100644 index 00000000..2e73e156 --- /dev/null +++ b/scripture/kjv/01/22/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "15", + "date": "Monday 22-January, 2024", + "getbible": "https://getbible.life/kjv/1 Corinthians/15/33", + "name": "1 Corinthians 15:33", + "scripture": [ + { + "nr": "33", + "text": "Be not deceived: evil communications corrupt good manners." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "33", + "version": "kjv" +} diff --git a/scripture/kjv/01/22/24/scripture.md b/scripture/kjv/01/22/24/scripture.md new file mode 100644 index 00000000..2ecdff62 --- /dev/null +++ b/scripture/kjv/01/22/24/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 15:33** + +33 Be not deceived: evil communications corrupt good manners. + +[Monday 22-January, 2024](https://getbible.life/kjv/1 Corinthians/15/33) diff --git a/scripture/kjv/01/22/24/scripture.tg b/scripture/kjv/01/22/24/scripture.tg new file mode 100644 index 00000000..594ddb00 --- /dev/null +++ b/scripture/kjv/01/22/24/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 15:33 +33 Be not deceived: evil communications corrupt good manners. + +Monday 22-January, 2024 diff --git a/scripture/kjv/01/22/24/scripture.tg.id b/scripture/kjv/01/22/24/scripture.tg.id new file mode 100644 index 00000000..de0cde04 --- /dev/null +++ b/scripture/kjv/01/22/24/scripture.tg.id @@ -0,0 +1 @@ +1207 diff --git a/scripture/kjv/01/22/24/scripture.today b/scripture/kjv/01/22/24/scripture.today new file mode 100644 index 00000000..0b2c59d4 --- /dev/null +++ b/scripture/kjv/01/22/24/scripture.today @@ -0,0 +1 @@ +46 15:33 diff --git a/scripture/kjv/01/22/25/scripture.html b/scripture/kjv/01/22/25/scripture.html new file mode 100644 index 00000000..433c9cc8 --- /dev/null +++ b/scripture/kjv/01/22/25/scripture.html @@ -0,0 +1,3 @@ +John 3:19
+19 And this is the condemnation, that light is come into the world, and men loved darkness rather than light, because their deeds were evil.

+Wednesday 22-January, 2025 diff --git a/scripture/kjv/01/22/25/scripture.json b/scripture/kjv/01/22/25/scripture.json new file mode 100644 index 00000000..52810d36 --- /dev/null +++ b/scripture/kjv/01/22/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "3", + "date": "Wednesday 22-January, 2025", + "getbible": "https://getbible.life/kjv/John/3/19", + "name": "John 3:19", + "scripture": [ + { + "nr": "19", + "text": "And this is the condemnation, that light is come into the world, and men loved darkness rather than light, because their deeds were evil." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "19", + "version": "kjv" +} diff --git a/scripture/kjv/01/22/25/scripture.md b/scripture/kjv/01/22/25/scripture.md new file mode 100644 index 00000000..96469fab --- /dev/null +++ b/scripture/kjv/01/22/25/scripture.md @@ -0,0 +1,5 @@ +**John 3:19** + +19 And this is the condemnation, that light is come into the world, and men loved darkness rather than light, because their deeds were evil. + +[Wednesday 22-January, 2025](https://getbible.life/kjv/John/3/19) diff --git a/scripture/kjv/01/22/25/scripture.tg b/scripture/kjv/01/22/25/scripture.tg new file mode 100644 index 00000000..5855b7b1 --- /dev/null +++ b/scripture/kjv/01/22/25/scripture.tg @@ -0,0 +1,4 @@ +John 3:19 +19 And this is the condemnation, that light is come into the world, and men loved darkness rather than light, because their deeds were evil. + +Wednesday 22-January, 2025 diff --git a/scripture/kjv/01/22/25/scripture.tg.id b/scripture/kjv/01/22/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/22/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/22/25/scripture.today b/scripture/kjv/01/22/25/scripture.today new file mode 100644 index 00000000..af7bfaf0 --- /dev/null +++ b/scripture/kjv/01/22/25/scripture.today @@ -0,0 +1 @@ +43 3:19 diff --git a/scripture/kjv/01/22/26/scripture.html b/scripture/kjv/01/22/26/scripture.html new file mode 100644 index 00000000..2a7f04ee --- /dev/null +++ b/scripture/kjv/01/22/26/scripture.html @@ -0,0 +1,3 @@ +Job 22:24-30
+24 Then shalt thou lay up gold as dust, and the gold of Ophir as the stones of the brooks. 25 Yea, the Almighty shall be thy defence, and thou shalt have plenty of silver. 26 For then shalt thou have thy delight in the Almighty, and shalt lift up thy face unto God. 27 Thou shalt make thy prayer unto him, and he shall hear thee, and thou shalt pay thy vows. 28 Thou shalt also decree a thing, and it shall be established unto thee: and the light shall shine upon thy ways. 29 When men are cast down, then thou shalt say, There is lifting up; and he shall save the humble person. 30 He shall deliver the island of the innocent: and it is delivered by the pureness of thine hands.

+Thursday 22-January, 2026 diff --git a/scripture/kjv/01/22/26/scripture.json b/scripture/kjv/01/22/26/scripture.json new file mode 100644 index 00000000..bc76d513 --- /dev/null +++ b/scripture/kjv/01/22/26/scripture.json @@ -0,0 +1,41 @@ +{ + "book": "Job", + "chapter": "22", + "date": "Thursday 22-January, 2026", + "getbible": "https://getbible.life/kjv/Job/22/24-30", + "name": "Job 22:24-30", + "scripture": [ + { + "nr": "24", + "text": "Then shalt thou lay up gold as dust, and the gold of Ophir as the stones of the brooks." + }, + { + "nr": "25", + "text": "Yea, the Almighty shall be thy defence, and thou shalt have plenty of silver." + }, + { + "nr": "26", + "text": "For then shalt thou have thy delight in the Almighty, and shalt lift up thy face unto God." + }, + { + "nr": "27", + "text": "Thou shalt make thy prayer unto him, and he shall hear thee, and thou shalt pay thy vows." + }, + { + "nr": "28", + "text": "Thou shalt also decree a thing, and it shall be established unto thee: and the light shall shine upon thy ways." + }, + { + "nr": "29", + "text": "When men are cast down, then thou shalt say, There is lifting up; and he shall save the humble person." + }, + { + "nr": "30", + "text": "He shall deliver the island of the innocent: and it is delivered by the pureness of thine hands. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "24-30", + "version": "kjv" +} diff --git a/scripture/kjv/01/22/26/scripture.md b/scripture/kjv/01/22/26/scripture.md new file mode 100644 index 00000000..06b17394 --- /dev/null +++ b/scripture/kjv/01/22/26/scripture.md @@ -0,0 +1,5 @@ +**Job 22:24-30** + +24 Then shalt thou lay up gold as dust, and the gold of Ophir as the stones of the brooks. 25 Yea, the Almighty shall be thy defence, and thou shalt have plenty of silver. 26 For then shalt thou have thy delight in the Almighty, and shalt lift up thy face unto God. 27 Thou shalt make thy prayer unto him, and he shall hear thee, and thou shalt pay thy vows. 28 Thou shalt also decree a thing, and it shall be established unto thee: and the light shall shine upon thy ways. 29 When men are cast down, then thou shalt say, There is lifting up; and he shall save the humble person. 30 He shall deliver the island of the innocent: and it is delivered by the pureness of thine hands. + +[Thursday 22-January, 2026](https://getbible.life/kjv/Job/22/24-30) diff --git a/scripture/kjv/01/22/26/scripture.tg b/scripture/kjv/01/22/26/scripture.tg new file mode 100644 index 00000000..bd997d71 --- /dev/null +++ b/scripture/kjv/01/22/26/scripture.tg @@ -0,0 +1,4 @@ +Job 22:24-30 +24 Then shalt thou lay up gold as dust, and the gold of Ophir as the stones of the brooks. 25 Yea, the Almighty shall be thy defence, and thou shalt have plenty of silver. 26 For then shalt thou have thy delight in the Almighty, and shalt lift up thy face unto God. 27 Thou shalt make thy prayer unto him, and he shall hear thee, and thou shalt pay thy vows. 28 Thou shalt also decree a thing, and it shall be established unto thee: and the light shall shine upon thy ways. 29 When men are cast down, then thou shalt say, There is lifting up; and he shall save the humble person. 30 He shall deliver the island of the innocent: and it is delivered by the pureness of thine hands. + +Thursday 22-January, 2026 diff --git a/scripture/kjv/01/22/26/scripture.tg.id b/scripture/kjv/01/22/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/22/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/22/26/scripture.today b/scripture/kjv/01/22/26/scripture.today new file mode 100644 index 00000000..80e5c57a --- /dev/null +++ b/scripture/kjv/01/22/26/scripture.today @@ -0,0 +1 @@ +18 22:24-30 diff --git a/scripture/kjv/01/23/23/scripture.html b/scripture/kjv/01/23/23/scripture.html new file mode 100644 index 00000000..333cad6b --- /dev/null +++ b/scripture/kjv/01/23/23/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 9:8
+8 And God is able to make all grace abound toward you; that ye, always having all sufficiency in all things, may abound to every good work:

+Monday 23-January, 2023 diff --git a/scripture/kjv/01/23/23/scripture.json b/scripture/kjv/01/23/23/scripture.json new file mode 100644 index 00000000..7516d95c --- /dev/null +++ b/scripture/kjv/01/23/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Monday 23-January, 2023", + "name": "2 Corinthians 9:8", + "scripture": [ + { + "nr": "8", + "text": "And God is able to make all grace abound toward you; that ye, always having all sufficiency in all things, may abound to every good work:" + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/23/23/scripture.md b/scripture/kjv/01/23/23/scripture.md new file mode 100644 index 00000000..2cc6535d --- /dev/null +++ b/scripture/kjv/01/23/23/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 9:8** + +8 And God is able to make all grace abound toward you; that ye, always having all sufficiency in all things, may abound to every good work: + +[Monday 23-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/23/23/scripture.tg b/scripture/kjv/01/23/23/scripture.tg new file mode 100644 index 00000000..1847aad3 --- /dev/null +++ b/scripture/kjv/01/23/23/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 9:8 +8 And God is able to make all grace abound toward you; that ye, always having all sufficiency in all things, may abound to every good work: + +Monday 23-January, 2023 diff --git a/scripture/kjv/01/23/23/scripture.today b/scripture/kjv/01/23/23/scripture.today new file mode 100644 index 00000000..9f4863a9 --- /dev/null +++ b/scripture/kjv/01/23/23/scripture.today @@ -0,0 +1 @@ +47 9:8 diff --git a/scripture/kjv/01/23/24/scripture.html b/scripture/kjv/01/23/24/scripture.html new file mode 100644 index 00000000..3eb3c335 --- /dev/null +++ b/scripture/kjv/01/23/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 21:26
+26 He coveteth greedily all the day long: but the righteous giveth and spareth not.

+Tuesday 23-January, 2024 diff --git a/scripture/kjv/01/23/24/scripture.json b/scripture/kjv/01/23/24/scripture.json new file mode 100644 index 00000000..df23f258 --- /dev/null +++ b/scripture/kjv/01/23/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "21", + "date": "Tuesday 23-January, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/21/26", + "name": "Proverbs 21:26", + "scripture": [ + { + "nr": "26", + "text": "He coveteth greedily all the day long: but the righteous giveth and spareth not." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "26", + "version": "kjv" +} diff --git a/scripture/kjv/01/23/24/scripture.md b/scripture/kjv/01/23/24/scripture.md new file mode 100644 index 00000000..a2a86b49 --- /dev/null +++ b/scripture/kjv/01/23/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 21:26** + +26 He coveteth greedily all the day long: but the righteous giveth and spareth not. + +[Tuesday 23-January, 2024](https://getbible.life/kjv/Proverbs/21/26) diff --git a/scripture/kjv/01/23/24/scripture.tg b/scripture/kjv/01/23/24/scripture.tg new file mode 100644 index 00000000..08d7c3c0 --- /dev/null +++ b/scripture/kjv/01/23/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 21:26 +26 He coveteth greedily all the day long: but the righteous giveth and spareth not. + +Tuesday 23-January, 2024 diff --git a/scripture/kjv/01/23/24/scripture.tg.id b/scripture/kjv/01/23/24/scripture.tg.id new file mode 100644 index 00000000..42d79794 --- /dev/null +++ b/scripture/kjv/01/23/24/scripture.tg.id @@ -0,0 +1 @@ +1208 diff --git a/scripture/kjv/01/23/24/scripture.today b/scripture/kjv/01/23/24/scripture.today new file mode 100644 index 00000000..49157dd1 --- /dev/null +++ b/scripture/kjv/01/23/24/scripture.today @@ -0,0 +1 @@ +20 21:26 diff --git a/scripture/kjv/01/23/25/scripture.html b/scripture/kjv/01/23/25/scripture.html new file mode 100644 index 00000000..c9a81dd1 --- /dev/null +++ b/scripture/kjv/01/23/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 131:1-3
+1 Lord, my heart is not haughty, nor mine eyes lofty: neither do I exercise myself in great matters, or in things too high for me. 2 Surely I have behaved and quieted myself, as a child that is weaned of his mother: my soul is even as a weaned child. 3 Let Israel hope in the Lord from henceforth and for ever.

+Thursday 23-January, 2025 diff --git a/scripture/kjv/01/23/25/scripture.json b/scripture/kjv/01/23/25/scripture.json new file mode 100644 index 00000000..5e1923ba --- /dev/null +++ b/scripture/kjv/01/23/25/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Psalms", + "chapter": "131", + "date": "Thursday 23-January, 2025", + "getbible": "https://getbible.life/kjv/Psalms/131/1-3", + "name": "Psalms 131:1-3", + "scripture": [ + { + "nr": "1", + "text": "Lord, my heart is not haughty, nor mine eyes lofty: neither do I exercise myself in great matters, or in things too high for me." + }, + { + "nr": "2", + "text": "Surely I have behaved and quieted myself, as a child that is weaned of his mother: my soul is even as a weaned child." + }, + { + "nr": "3", + "text": "Let Israel hope in the Lord from henceforth and for ever. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-3", + "version": "kjv" +} diff --git a/scripture/kjv/01/23/25/scripture.md b/scripture/kjv/01/23/25/scripture.md new file mode 100644 index 00000000..f8858321 --- /dev/null +++ b/scripture/kjv/01/23/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 131:1-3** + +1 Lord, my heart is not haughty, nor mine eyes lofty: neither do I exercise myself in great matters, or in things too high for me. 2 Surely I have behaved and quieted myself, as a child that is weaned of his mother: my soul is even as a weaned child. 3 Let Israel hope in the Lord from henceforth and for ever. + +[Thursday 23-January, 2025](https://getbible.life/kjv/Psalms/131/1-3) diff --git a/scripture/kjv/01/23/25/scripture.tg b/scripture/kjv/01/23/25/scripture.tg new file mode 100644 index 00000000..f9bc593f --- /dev/null +++ b/scripture/kjv/01/23/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 131:1-3 +1 Lord, my heart is not haughty, nor mine eyes lofty: neither do I exercise myself in great matters, or in things too high for me. 2 Surely I have behaved and quieted myself, as a child that is weaned of his mother: my soul is even as a weaned child. 3 Let Israel hope in the Lord from henceforth and for ever. + +Thursday 23-January, 2025 diff --git a/scripture/kjv/01/23/25/scripture.tg.id b/scripture/kjv/01/23/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/23/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/23/25/scripture.today b/scripture/kjv/01/23/25/scripture.today new file mode 100644 index 00000000..045028ef --- /dev/null +++ b/scripture/kjv/01/23/25/scripture.today @@ -0,0 +1 @@ +19 131:1-3 diff --git a/scripture/kjv/01/23/26/scripture.html b/scripture/kjv/01/23/26/scripture.html new file mode 100644 index 00000000..8cc9713f --- /dev/null +++ b/scripture/kjv/01/23/26/scripture.html @@ -0,0 +1,3 @@ +Jeremiah 29:11
+11 For I know the thoughts that I think toward you, saith the Lord, thoughts of peace, and not of evil, to give you an expected end.

+Friday 23-January, 2026 diff --git a/scripture/kjv/01/23/26/scripture.json b/scripture/kjv/01/23/26/scripture.json new file mode 100644 index 00000000..c2127015 --- /dev/null +++ b/scripture/kjv/01/23/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Jeremiah", + "chapter": "29", + "date": "Friday 23-January, 2026", + "getbible": "https://getbible.life/kjv/Jeremiah/29/11", + "name": "Jeremiah 29:11", + "scripture": [ + { + "nr": "11", + "text": "For I know the thoughts that I think toward you, saith the Lord, thoughts of peace, and not of evil, to give you an expected end." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/01/23/26/scripture.md b/scripture/kjv/01/23/26/scripture.md new file mode 100644 index 00000000..f2eb74c2 --- /dev/null +++ b/scripture/kjv/01/23/26/scripture.md @@ -0,0 +1,5 @@ +**Jeremiah 29:11** + +11 For I know the thoughts that I think toward you, saith the Lord, thoughts of peace, and not of evil, to give you an expected end. + +[Friday 23-January, 2026](https://getbible.life/kjv/Jeremiah/29/11) diff --git a/scripture/kjv/01/23/26/scripture.tg b/scripture/kjv/01/23/26/scripture.tg new file mode 100644 index 00000000..ceabeab6 --- /dev/null +++ b/scripture/kjv/01/23/26/scripture.tg @@ -0,0 +1,4 @@ +Jeremiah 29:11 +11 For I know the thoughts that I think toward you, saith the Lord, thoughts of peace, and not of evil, to give you an expected end. + +Friday 23-January, 2026 diff --git a/scripture/kjv/01/23/26/scripture.tg.id b/scripture/kjv/01/23/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/23/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/23/26/scripture.today b/scripture/kjv/01/23/26/scripture.today new file mode 100644 index 00000000..fe889701 --- /dev/null +++ b/scripture/kjv/01/23/26/scripture.today @@ -0,0 +1 @@ +24 29:11 diff --git a/scripture/kjv/01/24/23/scripture.html b/scripture/kjv/01/24/23/scripture.html new file mode 100644 index 00000000..4002afdb --- /dev/null +++ b/scripture/kjv/01/24/23/scripture.html @@ -0,0 +1,3 @@ +Mark 9:40
+40 For he that is not against us is on our part.

+Tuesday 24-January, 2023 diff --git a/scripture/kjv/01/24/23/scripture.json b/scripture/kjv/01/24/23/scripture.json new file mode 100644 index 00000000..10a08149 --- /dev/null +++ b/scripture/kjv/01/24/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Tuesday 24-January, 2023", + "name": "Mark 9:40", + "scripture": [ + { + "nr": "40", + "text": "For he that is not against us is on our part." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/24/23/scripture.md b/scripture/kjv/01/24/23/scripture.md new file mode 100644 index 00000000..deb99e2f --- /dev/null +++ b/scripture/kjv/01/24/23/scripture.md @@ -0,0 +1,5 @@ +**Mark 9:40** + +40 For he that is not against us is on our part. + +[Tuesday 24-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/24/23/scripture.tg b/scripture/kjv/01/24/23/scripture.tg new file mode 100644 index 00000000..1a3817d0 --- /dev/null +++ b/scripture/kjv/01/24/23/scripture.tg @@ -0,0 +1,4 @@ +Mark 9:40 +40 For he that is not against us is on our part. + +Tuesday 24-January, 2023 diff --git a/scripture/kjv/01/24/23/scripture.today b/scripture/kjv/01/24/23/scripture.today new file mode 100644 index 00000000..5fb59811 --- /dev/null +++ b/scripture/kjv/01/24/23/scripture.today @@ -0,0 +1 @@ +41 9:40 diff --git a/scripture/kjv/01/24/24/scripture.html b/scripture/kjv/01/24/24/scripture.html new file mode 100644 index 00000000..047216c7 --- /dev/null +++ b/scripture/kjv/01/24/24/scripture.html @@ -0,0 +1,3 @@ +Daniel 9:19
+19 O Lord, hear; O Lord, forgive; O Lord, hearken and do; defer not, for thine own sake, O my God: for thy city and thy people are called by thy name.

+Wednesday 24-January, 2024 diff --git a/scripture/kjv/01/24/24/scripture.json b/scripture/kjv/01/24/24/scripture.json new file mode 100644 index 00000000..ef4eca40 --- /dev/null +++ b/scripture/kjv/01/24/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Daniel", + "chapter": "9", + "date": "Wednesday 24-January, 2024", + "getbible": "https://getbible.life/kjv/Daniel/9/19", + "name": "Daniel 9:19", + "scripture": [ + { + "nr": "19", + "text": "O Lord, hear; O Lord, forgive; O Lord, hearken and do; defer not, for thine own sake, O my God: for thy city and thy people are called by thy name." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "19", + "version": "kjv" +} diff --git a/scripture/kjv/01/24/24/scripture.md b/scripture/kjv/01/24/24/scripture.md new file mode 100644 index 00000000..d11733ba --- /dev/null +++ b/scripture/kjv/01/24/24/scripture.md @@ -0,0 +1,5 @@ +**Daniel 9:19** + +19 O Lord, hear; O Lord, forgive; O Lord, hearken and do; defer not, for thine own sake, O my God: for thy city and thy people are called by thy name. + +[Wednesday 24-January, 2024](https://getbible.life/kjv/Daniel/9/19) diff --git a/scripture/kjv/01/24/24/scripture.tg b/scripture/kjv/01/24/24/scripture.tg new file mode 100644 index 00000000..a9eeb40a --- /dev/null +++ b/scripture/kjv/01/24/24/scripture.tg @@ -0,0 +1,4 @@ +Daniel 9:19 +19 O Lord, hear; O Lord, forgive; O Lord, hearken and do; defer not, for thine own sake, O my God: for thy city and thy people are called by thy name. + +Wednesday 24-January, 2024 diff --git a/scripture/kjv/01/24/24/scripture.tg.id b/scripture/kjv/01/24/24/scripture.tg.id new file mode 100644 index 00000000..f72207f9 --- /dev/null +++ b/scripture/kjv/01/24/24/scripture.tg.id @@ -0,0 +1 @@ +1209 diff --git a/scripture/kjv/01/24/24/scripture.today b/scripture/kjv/01/24/24/scripture.today new file mode 100644 index 00000000..2f656017 --- /dev/null +++ b/scripture/kjv/01/24/24/scripture.today @@ -0,0 +1 @@ +27 9:19 diff --git a/scripture/kjv/01/24/25/scripture.html b/scripture/kjv/01/24/25/scripture.html new file mode 100644 index 00000000..6be46c3f --- /dev/null +++ b/scripture/kjv/01/24/25/scripture.html @@ -0,0 +1,3 @@ +Proverbs 31:25
+25 Strength and honour are her clothing; and she shall rejoice in time to come.

+Friday 24-January, 2025 diff --git a/scripture/kjv/01/24/25/scripture.json b/scripture/kjv/01/24/25/scripture.json new file mode 100644 index 00000000..527af6a4 --- /dev/null +++ b/scripture/kjv/01/24/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "31", + "date": "Friday 24-January, 2025", + "getbible": "https://getbible.life/kjv/Proverbs/31/25", + "name": "Proverbs 31:25", + "scripture": [ + { + "nr": "25", + "text": "Strength and honour are her clothing; and she shall rejoice in time to come." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "25", + "version": "kjv" +} diff --git a/scripture/kjv/01/24/25/scripture.md b/scripture/kjv/01/24/25/scripture.md new file mode 100644 index 00000000..54f2f725 --- /dev/null +++ b/scripture/kjv/01/24/25/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 31:25** + +25 Strength and honour are her clothing; and she shall rejoice in time to come. + +[Friday 24-January, 2025](https://getbible.life/kjv/Proverbs/31/25) diff --git a/scripture/kjv/01/24/25/scripture.tg b/scripture/kjv/01/24/25/scripture.tg new file mode 100644 index 00000000..8d698e8c --- /dev/null +++ b/scripture/kjv/01/24/25/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 31:25 +25 Strength and honour are her clothing; and she shall rejoice in time to come. + +Friday 24-January, 2025 diff --git a/scripture/kjv/01/24/25/scripture.tg.id b/scripture/kjv/01/24/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/24/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/24/25/scripture.today b/scripture/kjv/01/24/25/scripture.today new file mode 100644 index 00000000..99d17fcc --- /dev/null +++ b/scripture/kjv/01/24/25/scripture.today @@ -0,0 +1 @@ +20 31:25 diff --git a/scripture/kjv/01/24/26/scripture.html b/scripture/kjv/01/24/26/scripture.html new file mode 100644 index 00000000..d9631668 --- /dev/null +++ b/scripture/kjv/01/24/26/scripture.html @@ -0,0 +1,3 @@ +3 John 1:4
+4 I have no greater joy than to hear that my children walk in truth.

+Saturday 24-January, 2026 diff --git a/scripture/kjv/01/24/26/scripture.json b/scripture/kjv/01/24/26/scripture.json new file mode 100644 index 00000000..46a66fb9 --- /dev/null +++ b/scripture/kjv/01/24/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "3 John", + "chapter": "1", + "date": "Saturday 24-January, 2026", + "getbible": "https://getbible.life/kjv/3 John/1/4", + "name": "3 John 1:4", + "scripture": [ + { + "nr": "4", + "text": "I have no greater joy than to hear that my children walk in truth." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4", + "version": "kjv" +} diff --git a/scripture/kjv/01/24/26/scripture.md b/scripture/kjv/01/24/26/scripture.md new file mode 100644 index 00000000..87193aeb --- /dev/null +++ b/scripture/kjv/01/24/26/scripture.md @@ -0,0 +1,5 @@ +**3 John 1:4** + +4 I have no greater joy than to hear that my children walk in truth. + +[Saturday 24-January, 2026](https://getbible.life/kjv/3 John/1/4) diff --git a/scripture/kjv/01/24/26/scripture.tg b/scripture/kjv/01/24/26/scripture.tg new file mode 100644 index 00000000..7f6d0cbb --- /dev/null +++ b/scripture/kjv/01/24/26/scripture.tg @@ -0,0 +1,4 @@ +3 John 1:4 +4 I have no greater joy than to hear that my children walk in truth. + +Saturday 24-January, 2026 diff --git a/scripture/kjv/01/24/26/scripture.tg.id b/scripture/kjv/01/24/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/24/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/24/26/scripture.today b/scripture/kjv/01/24/26/scripture.today new file mode 100644 index 00000000..347e2b8e --- /dev/null +++ b/scripture/kjv/01/24/26/scripture.today @@ -0,0 +1 @@ +64 1:4 diff --git a/scripture/kjv/01/25/23/scripture.html b/scripture/kjv/01/25/23/scripture.html new file mode 100644 index 00000000..1a4fec97 --- /dev/null +++ b/scripture/kjv/01/25/23/scripture.html @@ -0,0 +1,3 @@ +Isaiah 53:12
+12 Therefore will I divide him a portion with the great, and he shall divide the spoil with the strong; because he hath poured out his soul unto death: and he was numbered with the transgressors; and he bare the sin of many, and made intercession for the transgressors.

+Wednesday 25-January, 2023 diff --git a/scripture/kjv/01/25/23/scripture.json b/scripture/kjv/01/25/23/scripture.json new file mode 100644 index 00000000..fd5986b0 --- /dev/null +++ b/scripture/kjv/01/25/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Wednesday 25-January, 2023", + "name": "Isaiah 53:12", + "scripture": [ + { + "nr": "12", + "text": "Therefore will I divide him a portion with the great, and he shall divide the spoil with the strong; because he hath poured out his soul unto death: and he was numbered with the transgressors; and he bare the sin of many, and made intercession for the transgressors. " + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/25/23/scripture.md b/scripture/kjv/01/25/23/scripture.md new file mode 100644 index 00000000..f6b94029 --- /dev/null +++ b/scripture/kjv/01/25/23/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 53:12** + +12 Therefore will I divide him a portion with the great, and he shall divide the spoil with the strong; because he hath poured out his soul unto death: and he was numbered with the transgressors; and he bare the sin of many, and made intercession for the transgressors. + +[Wednesday 25-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/25/23/scripture.tg b/scripture/kjv/01/25/23/scripture.tg new file mode 100644 index 00000000..5956d642 --- /dev/null +++ b/scripture/kjv/01/25/23/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 53:12 +12 Therefore will I divide him a portion with the great, and he shall divide the spoil with the strong; because he hath poured out his soul unto death: and he was numbered with the transgressors; and he bare the sin of many, and made intercession for the transgressors. + +Wednesday 25-January, 2023 diff --git a/scripture/kjv/01/25/23/scripture.today b/scripture/kjv/01/25/23/scripture.today new file mode 100644 index 00000000..7cbf28a4 --- /dev/null +++ b/scripture/kjv/01/25/23/scripture.today @@ -0,0 +1 @@ +23 53:12 diff --git a/scripture/kjv/01/25/24/scripture.html b/scripture/kjv/01/25/24/scripture.html new file mode 100644 index 00000000..6bcc1976 --- /dev/null +++ b/scripture/kjv/01/25/24/scripture.html @@ -0,0 +1,3 @@ +Isaiah 26:3
+3 Thou wilt keep him in perfect peace, whose mind is stayed on thee: because he trusteth in thee.

+Thursday 25-January, 2024 diff --git a/scripture/kjv/01/25/24/scripture.json b/scripture/kjv/01/25/24/scripture.json new file mode 100644 index 00000000..c436196e --- /dev/null +++ b/scripture/kjv/01/25/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "26", + "date": "Thursday 25-January, 2024", + "getbible": "https://getbible.life/kjv/Isaiah/26/3", + "name": "Isaiah 26:3", + "scripture": [ + { + "nr": "3", + "text": "Thou wilt keep him in perfect peace, whose mind is stayed on thee: because he trusteth in thee." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3", + "version": "kjv" +} diff --git a/scripture/kjv/01/25/24/scripture.md b/scripture/kjv/01/25/24/scripture.md new file mode 100644 index 00000000..993d1069 --- /dev/null +++ b/scripture/kjv/01/25/24/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 26:3** + +3 Thou wilt keep him in perfect peace, whose mind is stayed on thee: because he trusteth in thee. + +[Thursday 25-January, 2024](https://getbible.life/kjv/Isaiah/26/3) diff --git a/scripture/kjv/01/25/24/scripture.tg b/scripture/kjv/01/25/24/scripture.tg new file mode 100644 index 00000000..0e8320f2 --- /dev/null +++ b/scripture/kjv/01/25/24/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 26:3 +3 Thou wilt keep him in perfect peace, whose mind is stayed on thee: because he trusteth in thee. + +Thursday 25-January, 2024 diff --git a/scripture/kjv/01/25/24/scripture.tg.id b/scripture/kjv/01/25/24/scripture.tg.id new file mode 100644 index 00000000..9c2de766 --- /dev/null +++ b/scripture/kjv/01/25/24/scripture.tg.id @@ -0,0 +1 @@ +1210 diff --git a/scripture/kjv/01/25/24/scripture.today b/scripture/kjv/01/25/24/scripture.today new file mode 100644 index 00000000..7945c701 --- /dev/null +++ b/scripture/kjv/01/25/24/scripture.today @@ -0,0 +1 @@ +23 26:3 diff --git a/scripture/kjv/01/25/25/scripture.html b/scripture/kjv/01/25/25/scripture.html new file mode 100644 index 00000000..0c28278a --- /dev/null +++ b/scripture/kjv/01/25/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 118:8-9
+8 It is better to trust in the Lord than to put confidence in man. 9 It is better to trust in the Lord than to put confidence in princes.

+Saturday 25-January, 2025 diff --git a/scripture/kjv/01/25/25/scripture.json b/scripture/kjv/01/25/25/scripture.json new file mode 100644 index 00000000..74701a63 --- /dev/null +++ b/scripture/kjv/01/25/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Psalms", + "chapter": "118", + "date": "Saturday 25-January, 2025", + "getbible": "https://getbible.life/kjv/Psalms/118/8-9", + "name": "Psalms 118:8-9", + "scripture": [ + { + "nr": "8", + "text": "It is better to trust in the Lord than to put confidence in man." + }, + { + "nr": "9", + "text": "It is better to trust in the Lord than to put confidence in princes." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8-9", + "version": "kjv" +} diff --git a/scripture/kjv/01/25/25/scripture.md b/scripture/kjv/01/25/25/scripture.md new file mode 100644 index 00000000..455799b9 --- /dev/null +++ b/scripture/kjv/01/25/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 118:8-9** + +8 It is better to trust in the Lord than to put confidence in man. 9 It is better to trust in the Lord than to put confidence in princes. + +[Saturday 25-January, 2025](https://getbible.life/kjv/Psalms/118/8-9) diff --git a/scripture/kjv/01/25/25/scripture.tg b/scripture/kjv/01/25/25/scripture.tg new file mode 100644 index 00000000..1b012525 --- /dev/null +++ b/scripture/kjv/01/25/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 118:8-9 +8 It is better to trust in the Lord than to put confidence in man. 9 It is better to trust in the Lord than to put confidence in princes. + +Saturday 25-January, 2025 diff --git a/scripture/kjv/01/25/25/scripture.tg.id b/scripture/kjv/01/25/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/25/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/25/25/scripture.today b/scripture/kjv/01/25/25/scripture.today new file mode 100644 index 00000000..2824b626 --- /dev/null +++ b/scripture/kjv/01/25/25/scripture.today @@ -0,0 +1 @@ +19 118:8-9 diff --git a/scripture/kjv/01/25/26/scripture.html b/scripture/kjv/01/25/26/scripture.html new file mode 100644 index 00000000..9b573ba0 --- /dev/null +++ b/scripture/kjv/01/25/26/scripture.html @@ -0,0 +1,3 @@ +Amos 3:7
+7 Surely the Lord God will do nothing, but he revealeth his secret unto his servants the prophets.

+Sunday 25-January, 2026 diff --git a/scripture/kjv/01/25/26/scripture.json b/scripture/kjv/01/25/26/scripture.json new file mode 100644 index 00000000..d7d9ccb4 --- /dev/null +++ b/scripture/kjv/01/25/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Amos", + "chapter": "3", + "date": "Sunday 25-January, 2026", + "getbible": "https://getbible.life/kjv/Amos/3/7", + "name": "Amos 3:7", + "scripture": [ + { + "nr": "7", + "text": "Surely the Lord God will do nothing, but he revealeth his secret unto his servants the prophets." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7", + "version": "kjv" +} diff --git a/scripture/kjv/01/25/26/scripture.md b/scripture/kjv/01/25/26/scripture.md new file mode 100644 index 00000000..fc4ed0d2 --- /dev/null +++ b/scripture/kjv/01/25/26/scripture.md @@ -0,0 +1,5 @@ +**Amos 3:7** + +7 Surely the Lord God will do nothing, but he revealeth his secret unto his servants the prophets. + +[Sunday 25-January, 2026](https://getbible.life/kjv/Amos/3/7) diff --git a/scripture/kjv/01/25/26/scripture.tg b/scripture/kjv/01/25/26/scripture.tg new file mode 100644 index 00000000..f8208b07 --- /dev/null +++ b/scripture/kjv/01/25/26/scripture.tg @@ -0,0 +1,4 @@ +Amos 3:7 +7 Surely the Lord God will do nothing, but he revealeth his secret unto his servants the prophets. + +Sunday 25-January, 2026 diff --git a/scripture/kjv/01/25/26/scripture.tg.id b/scripture/kjv/01/25/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/25/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/25/26/scripture.today b/scripture/kjv/01/25/26/scripture.today new file mode 100644 index 00000000..19ab74a0 --- /dev/null +++ b/scripture/kjv/01/25/26/scripture.today @@ -0,0 +1 @@ +30 3:7 diff --git a/scripture/kjv/01/26/23/scripture.html b/scripture/kjv/01/26/23/scripture.html new file mode 100644 index 00000000..543a3435 --- /dev/null +++ b/scripture/kjv/01/26/23/scripture.html @@ -0,0 +1,3 @@ +Acts 5:29
+29 Then Peter and the other apostles answered and said, We ought to obey God rather than men.

+Thursday 26-January, 2023 diff --git a/scripture/kjv/01/26/23/scripture.json b/scripture/kjv/01/26/23/scripture.json new file mode 100644 index 00000000..638d744a --- /dev/null +++ b/scripture/kjv/01/26/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Thursday 26-January, 2023", + "name": "Acts 5:29", + "scripture": [ + { + "nr": "29", + "text": "Then Peter and the other apostles answered and said, We ought to obey God rather than men." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/26/23/scripture.md b/scripture/kjv/01/26/23/scripture.md new file mode 100644 index 00000000..fa17e948 --- /dev/null +++ b/scripture/kjv/01/26/23/scripture.md @@ -0,0 +1,5 @@ +**Acts 5:29** + +29 Then Peter and the other apostles answered and said, We ought to obey God rather than men. + +[Thursday 26-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/26/23/scripture.tg b/scripture/kjv/01/26/23/scripture.tg new file mode 100644 index 00000000..ce3384e7 --- /dev/null +++ b/scripture/kjv/01/26/23/scripture.tg @@ -0,0 +1,4 @@ +Acts 5:29 +29 Then Peter and the other apostles answered and said, We ought to obey God rather than men. + +Thursday 26-January, 2023 diff --git a/scripture/kjv/01/26/23/scripture.today b/scripture/kjv/01/26/23/scripture.today new file mode 100644 index 00000000..5142a52b --- /dev/null +++ b/scripture/kjv/01/26/23/scripture.today @@ -0,0 +1 @@ +44 5:29 diff --git a/scripture/kjv/01/26/24/scripture.html b/scripture/kjv/01/26/24/scripture.html new file mode 100644 index 00000000..ab2ce1ed --- /dev/null +++ b/scripture/kjv/01/26/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 31:15
+15 My times are in thy hand: deliver me from the hand of mine enemies, and from them that persecute me.

+Friday 26-January, 2024 diff --git a/scripture/kjv/01/26/24/scripture.json b/scripture/kjv/01/26/24/scripture.json new file mode 100644 index 00000000..fcaa9260 --- /dev/null +++ b/scripture/kjv/01/26/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "31", + "date": "Friday 26-January, 2024", + "getbible": "https://getbible.life/kjv/Psalms/31/15", + "name": "Psalms 31:15", + "scripture": [ + { + "nr": "15", + "text": "My times are in thy hand: deliver me from the hand of mine enemies, and from them that persecute me." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15", + "version": "kjv" +} diff --git a/scripture/kjv/01/26/24/scripture.md b/scripture/kjv/01/26/24/scripture.md new file mode 100644 index 00000000..b4a71010 --- /dev/null +++ b/scripture/kjv/01/26/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 31:15** + +15 My times are in thy hand: deliver me from the hand of mine enemies, and from them that persecute me. + +[Friday 26-January, 2024](https://getbible.life/kjv/Psalms/31/15) diff --git a/scripture/kjv/01/26/24/scripture.tg b/scripture/kjv/01/26/24/scripture.tg new file mode 100644 index 00000000..9c0e824f --- /dev/null +++ b/scripture/kjv/01/26/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 31:15 +15 My times are in thy hand: deliver me from the hand of mine enemies, and from them that persecute me. + +Friday 26-January, 2024 diff --git a/scripture/kjv/01/26/24/scripture.tg.id b/scripture/kjv/01/26/24/scripture.tg.id new file mode 100644 index 00000000..44ba2fc6 --- /dev/null +++ b/scripture/kjv/01/26/24/scripture.tg.id @@ -0,0 +1 @@ +1211 diff --git a/scripture/kjv/01/26/24/scripture.today b/scripture/kjv/01/26/24/scripture.today new file mode 100644 index 00000000..4a7df208 --- /dev/null +++ b/scripture/kjv/01/26/24/scripture.today @@ -0,0 +1 @@ +19 31:15 diff --git a/scripture/kjv/01/26/25/scripture.html b/scripture/kjv/01/26/25/scripture.html new file mode 100644 index 00000000..a7c2af84 --- /dev/null +++ b/scripture/kjv/01/26/25/scripture.html @@ -0,0 +1,3 @@ +Exodus 35:5-29
+5 Take ye from among you an offering unto the Lord: whosoever is of a willing heart, let him bring it, an offering of the Lord; gold, and silver, and brass, 6 And blue, and purple, and scarlet, and fine linen, and goats’ hair, 7 And rams’ skins dyed red, and badgers’ skins, and shittim wood, 8 And oil for the light, and spices for anointing oil, and for the sweet incense, 9 And onyx stones, and stones to be set for the ephod, and for the breastplate. 10 And every wise hearted among you shall come, and make all that the Lord hath commanded; 11 The tabernacle, his tent, and his covering, his taches, and his boards, his bars, his pillars, and his sockets, 12 The ark, and the staves thereof, with the mercy seat, and the vail of the covering, 13 The table, and his staves, and all his vessels, and the shewbread, 14 The candlestick also for the light, and his furniture, and his lamps, with the oil for the light, 15 And the incense altar, and his staves, and the anointing oil, and the sweet incense, and the hanging for the door at the entering in of the tabernacle, 16 The altar of burnt offering, with his brasen grate, his staves, and all his vessels, the laver and his foot, 17 The hangings of the court, his pillars, and their sockets, and the hanging for the door of the court, 18 The pins of the tabernacle, and the pins of the court, and their cords, 19 The cloths of service, to do service in the holy place, the holy garments for Aaron the priest, and the garments of his sons, to minister in the priest’s office. 20 And all the congregation of the children of Israel departed from the presence of Moses. 21 And they came, every one whose heart stirred him up, and every one whom his spirit made willing, and they brought the Lord’s offering to the work of the tabernacle of the congregation, and for all his service, and for the holy garments. 22 And they came, both men and women, as many as were willing hearted, and brought bracelets, and earrings, and rings, and tablets, all jewels of gold: and every man that offered offered an offering of gold unto the Lord. 23 And every man, with whom was found blue, and purple, and scarlet, and fine linen, and goats’ hair, and red skins of rams, and badgers’ skins, brought them. 24 Every one that did offer an offering of silver and brass brought the Lord’s offering: and every man, with whom was found shittim wood for any work of the service, brought it. 25 And all the women that were wise hearted did spin with their hands, and brought that which they had spun, both of blue, and of purple, and of scarlet, and of fine linen. 26 And all the women whose heart stirred them up in wisdom spun goats’ hair. 27 And the rulers brought onyx stones, and stones to be set, for the ephod, and for the breastplate; 28 And spice, and oil for the light, and for the anointing oil, and for the sweet incense. 29 The children of Israel brought a willing offering unto the Lord, every man and woman, whose heart made them willing to bring for all manner of work, which the Lord had commanded to be made by the hand of Moses.

+Sunday 26-January, 2025 diff --git a/scripture/kjv/01/26/25/scripture.json b/scripture/kjv/01/26/25/scripture.json new file mode 100644 index 00000000..f2a6099b --- /dev/null +++ b/scripture/kjv/01/26/25/scripture.json @@ -0,0 +1,113 @@ +{ + "book": "Exodus", + "chapter": "35", + "date": "Sunday 26-January, 2025", + "getbible": "https://getbible.life/kjv/Exodus/35/5-29", + "name": "Exodus 35:5-29", + "scripture": [ + { + "nr": "5", + "text": "Take ye from among you an offering unto the Lord: whosoever is of a willing heart, let him bring it, an offering of the Lord; gold, and silver, and brass," + }, + { + "nr": "6", + "text": "And blue, and purple, and scarlet, and fine linen, and goats’ hair," + }, + { + "nr": "7", + "text": "And rams’ skins dyed red, and badgers’ skins, and shittim wood," + }, + { + "nr": "8", + "text": "And oil for the light, and spices for anointing oil, and for the sweet incense," + }, + { + "nr": "9", + "text": "And onyx stones, and stones to be set for the ephod, and for the breastplate." + }, + { + "nr": "10", + "text": "And every wise hearted among you shall come, and make all that the Lord hath commanded;" + }, + { + "nr": "11", + "text": "The tabernacle, his tent, and his covering, his taches, and his boards, his bars, his pillars, and his sockets," + }, + { + "nr": "12", + "text": "The ark, and the staves thereof, with the mercy seat, and the vail of the covering," + }, + { + "nr": "13", + "text": "The table, and his staves, and all his vessels, and the shewbread," + }, + { + "nr": "14", + "text": "The candlestick also for the light, and his furniture, and his lamps, with the oil for the light," + }, + { + "nr": "15", + "text": "And the incense altar, and his staves, and the anointing oil, and the sweet incense, and the hanging for the door at the entering in of the tabernacle," + }, + { + "nr": "16", + "text": "The altar of burnt offering, with his brasen grate, his staves, and all his vessels, the laver and his foot," + }, + { + "nr": "17", + "text": "The hangings of the court, his pillars, and their sockets, and the hanging for the door of the court," + }, + { + "nr": "18", + "text": "The pins of the tabernacle, and the pins of the court, and their cords," + }, + { + "nr": "19", + "text": "The cloths of service, to do service in the holy place, the holy garments for Aaron the priest, and the garments of his sons, to minister in the priest’s office." + }, + { + "nr": "20", + "text": "And all the congregation of the children of Israel departed from the presence of Moses." + }, + { + "nr": "21", + "text": "And they came, every one whose heart stirred him up, and every one whom his spirit made willing, and they brought the Lord’s offering to the work of the tabernacle of the congregation, and for all his service, and for the holy garments." + }, + { + "nr": "22", + "text": "And they came, both men and women, as many as were willing hearted, and brought bracelets, and earrings, and rings, and tablets, all jewels of gold: and every man that offered offered an offering of gold unto the Lord." + }, + { + "nr": "23", + "text": "And every man, with whom was found blue, and purple, and scarlet, and fine linen, and goats’ hair, and red skins of rams, and badgers’ skins, brought them." + }, + { + "nr": "24", + "text": "Every one that did offer an offering of silver and brass brought the Lord’s offering: and every man, with whom was found shittim wood for any work of the service, brought it." + }, + { + "nr": "25", + "text": "And all the women that were wise hearted did spin with their hands, and brought that which they had spun, both of blue, and of purple, and of scarlet, and of fine linen." + }, + { + "nr": "26", + "text": "And all the women whose heart stirred them up in wisdom spun goats’ hair." + }, + { + "nr": "27", + "text": "And the rulers brought onyx stones, and stones to be set, for the ephod, and for the breastplate;" + }, + { + "nr": "28", + "text": "And spice, and oil for the light, and for the anointing oil, and for the sweet incense." + }, + { + "nr": "29", + "text": "The children of Israel brought a willing offering unto the Lord, every man and woman, whose heart made them willing to bring for all manner of work, which the Lord had commanded to be made by the hand of Moses." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5-29", + "version": "kjv" +} diff --git a/scripture/kjv/01/26/25/scripture.md b/scripture/kjv/01/26/25/scripture.md new file mode 100644 index 00000000..e9056cb4 --- /dev/null +++ b/scripture/kjv/01/26/25/scripture.md @@ -0,0 +1,5 @@ +**Exodus 35:5-29** + +5 Take ye from among you an offering unto the Lord: whosoever is of a willing heart, let him bring it, an offering of the Lord; gold, and silver, and brass, 6 And blue, and purple, and scarlet, and fine linen, and goats’ hair, 7 And rams’ skins dyed red, and badgers’ skins, and shittim wood, 8 And oil for the light, and spices for anointing oil, and for the sweet incense, 9 And onyx stones, and stones to be set for the ephod, and for the breastplate. 10 And every wise hearted among you shall come, and make all that the Lord hath commanded; 11 The tabernacle, his tent, and his covering, his taches, and his boards, his bars, his pillars, and his sockets, 12 The ark, and the staves thereof, with the mercy seat, and the vail of the covering, 13 The table, and his staves, and all his vessels, and the shewbread, 14 The candlestick also for the light, and his furniture, and his lamps, with the oil for the light, 15 And the incense altar, and his staves, and the anointing oil, and the sweet incense, and the hanging for the door at the entering in of the tabernacle, 16 The altar of burnt offering, with his brasen grate, his staves, and all his vessels, the laver and his foot, 17 The hangings of the court, his pillars, and their sockets, and the hanging for the door of the court, 18 The pins of the tabernacle, and the pins of the court, and their cords, 19 The cloths of service, to do service in the holy place, the holy garments for Aaron the priest, and the garments of his sons, to minister in the priest’s office. 20 And all the congregation of the children of Israel departed from the presence of Moses. 21 And they came, every one whose heart stirred him up, and every one whom his spirit made willing, and they brought the Lord’s offering to the work of the tabernacle of the congregation, and for all his service, and for the holy garments. 22 And they came, both men and women, as many as were willing hearted, and brought bracelets, and earrings, and rings, and tablets, all jewels of gold: and every man that offered offered an offering of gold unto the Lord. 23 And every man, with whom was found blue, and purple, and scarlet, and fine linen, and goats’ hair, and red skins of rams, and badgers’ skins, brought them. 24 Every one that did offer an offering of silver and brass brought the Lord’s offering: and every man, with whom was found shittim wood for any work of the service, brought it. 25 And all the women that were wise hearted did spin with their hands, and brought that which they had spun, both of blue, and of purple, and of scarlet, and of fine linen. 26 And all the women whose heart stirred them up in wisdom spun goats’ hair. 27 And the rulers brought onyx stones, and stones to be set, for the ephod, and for the breastplate; 28 And spice, and oil for the light, and for the anointing oil, and for the sweet incense. 29 The children of Israel brought a willing offering unto the Lord, every man and woman, whose heart made them willing to bring for all manner of work, which the Lord had commanded to be made by the hand of Moses. + +[Sunday 26-January, 2025](https://getbible.life/kjv/Exodus/35/5-29) diff --git a/scripture/kjv/01/26/25/scripture.tg b/scripture/kjv/01/26/25/scripture.tg new file mode 100644 index 00000000..bee46d70 --- /dev/null +++ b/scripture/kjv/01/26/25/scripture.tg @@ -0,0 +1,4 @@ +Exodus 35:5-29 +5 Take ye from among you an offering unto the Lord: whosoever is of a willing heart, let him bring it, an offering of the Lord; gold, and silver, and brass, 6 And blue, and purple, and scarlet, and fine linen, and goats’ hair, 7 And rams’ skins dyed red, and badgers’ skins, and shittim wood, 8 And oil for the light, and spices for anointing oil, and for the sweet incense, 9 And onyx stones, and stones to be set for the ephod, and for the breastplate. 10 And every wise hearted among you shall come, and make all that the Lord hath commanded; 11 The tabernacle, his tent, and his covering, his taches, and his boards, his bars, his pillars, and his sockets, 12 The ark, and the staves thereof, with the mercy seat, and the vail of the covering, 13 The table, and his staves, and all his vessels, and the shewbread, 14 The candlestick also for the light, and his furniture, and his lamps, with the oil for the light, 15 And the incense altar, and his staves, and the anointing oil, and the sweet incense, and the hanging for the door at the entering in of the tabernacle, 16 The altar of burnt offering, with his brasen grate, his staves, and all his vessels, the laver and his foot, 17 The hangings of the court, his pillars, and their sockets, and the hanging for the door of the court, 18 The pins of the tabernacle, and the pins of the court, and their cords, 19 The cloths of service, to do service in the holy place, the holy garments for Aaron the priest, and the garments of his sons, to minister in the priest’s office. 20 And all the congregation of the children of Israel departed from the presence of Moses. 21 And they came, every one whose heart stirred him up, and every one whom his spirit made willing, and they brought the Lord’s offering to the work of the tabernacle of the congregation, and for all his service, and for the holy garments. 22 And they came, both men and women, as many as were willing hearted, and brought bracelets, and earrings, and rings, and tablets, all jewels of gold: and every man that offered offered an offering of gold unto the Lord. 23 And every man, with whom was found blue, and purple, and scarlet, and fine linen, and goats’ hair, and red skins of rams, and badgers’ skins, brought them. 24 Every one that did offer an offering of silver and brass brought the Lord’s offering: and every man, with whom was found shittim wood for any work of the service, brought it. 25 And all the women that were wise hearted did spin with their hands, and brought that which they had spun, both of blue, and of purple, and of scarlet, and of fine linen. 26 And all the women whose heart stirred them up in wisdom spun goats’ hair. 27 And the rulers brought onyx stones, and stones to be set, for the ephod, and for the breastplate; 28 And spice, and oil for the light, and for the anointing oil, and for the sweet incense. 29 The children of Israel brought a willing offering unto the Lord, every man and woman, whose heart made them willing to bring for all manner of work, which the Lord had commanded to be made by the hand of Moses. + +Sunday 26-January, 2025 diff --git a/scripture/kjv/01/26/25/scripture.tg.id b/scripture/kjv/01/26/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/26/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/26/25/scripture.today b/scripture/kjv/01/26/25/scripture.today new file mode 100644 index 00000000..794a262b --- /dev/null +++ b/scripture/kjv/01/26/25/scripture.today @@ -0,0 +1 @@ +2 35:5-29 diff --git a/scripture/kjv/01/26/26/scripture.html b/scripture/kjv/01/26/26/scripture.html new file mode 100644 index 00000000..4add0390 --- /dev/null +++ b/scripture/kjv/01/26/26/scripture.html @@ -0,0 +1,3 @@ +Revelation 3:12
+12 Him that overcometh will I make a pillar in the temple of my God, and he shall go no more out: and I will write upon him the name of my God, and the name of the city of my God, which is new Jerusalem, which cometh down out of heaven from my God: and I will write upon him my new name.

+Monday 26-January, 2026 diff --git a/scripture/kjv/01/26/26/scripture.json b/scripture/kjv/01/26/26/scripture.json new file mode 100644 index 00000000..f71a5fed --- /dev/null +++ b/scripture/kjv/01/26/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Revelation", + "chapter": "3", + "date": "Monday 26-January, 2026", + "getbible": "https://getbible.life/kjv/Revelation/3/12", + "name": "Revelation 3:12", + "scripture": [ + { + "nr": "12", + "text": "Him that overcometh will I make a pillar in the temple of my God, and he shall go no more out: and I will write upon him the name of my God, and the name of the city of my God, which is new Jerusalem, which cometh down out of heaven from my God: and I will write upon him my new name." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/01/26/26/scripture.md b/scripture/kjv/01/26/26/scripture.md new file mode 100644 index 00000000..b0c296d9 --- /dev/null +++ b/scripture/kjv/01/26/26/scripture.md @@ -0,0 +1,5 @@ +**Revelation 3:12** + +12 Him that overcometh will I make a pillar in the temple of my God, and he shall go no more out: and I will write upon him the name of my God, and the name of the city of my God, which is new Jerusalem, which cometh down out of heaven from my God: and I will write upon him my new name. + +[Monday 26-January, 2026](https://getbible.life/kjv/Revelation/3/12) diff --git a/scripture/kjv/01/26/26/scripture.tg b/scripture/kjv/01/26/26/scripture.tg new file mode 100644 index 00000000..553a7b1a --- /dev/null +++ b/scripture/kjv/01/26/26/scripture.tg @@ -0,0 +1,4 @@ +Revelation 3:12 +12 Him that overcometh will I make a pillar in the temple of my God, and he shall go no more out: and I will write upon him the name of my God, and the name of the city of my God, which is new Jerusalem, which cometh down out of heaven from my God: and I will write upon him my new name. + +Monday 26-January, 2026 diff --git a/scripture/kjv/01/26/26/scripture.tg.id b/scripture/kjv/01/26/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/26/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/26/26/scripture.today b/scripture/kjv/01/26/26/scripture.today new file mode 100644 index 00000000..426edde5 --- /dev/null +++ b/scripture/kjv/01/26/26/scripture.today @@ -0,0 +1 @@ +66 3:12 diff --git a/scripture/kjv/01/27/23/scripture.html b/scripture/kjv/01/27/23/scripture.html new file mode 100644 index 00000000..fa44ec15 --- /dev/null +++ b/scripture/kjv/01/27/23/scripture.html @@ -0,0 +1,3 @@ +Genesis 22:18
+18 And in thy seed shall all the nations of the earth be blessed; because thou hast obeyed my voice.

+Friday 27-January, 2023 diff --git a/scripture/kjv/01/27/23/scripture.json b/scripture/kjv/01/27/23/scripture.json new file mode 100644 index 00000000..175b41a1 --- /dev/null +++ b/scripture/kjv/01/27/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Friday 27-January, 2023", + "name": "Genesis 22:18", + "scripture": [ + { + "nr": "18", + "text": "And in thy seed shall all the nations of the earth be blessed; because thou hast obeyed my voice." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/27/23/scripture.md b/scripture/kjv/01/27/23/scripture.md new file mode 100644 index 00000000..97f67829 --- /dev/null +++ b/scripture/kjv/01/27/23/scripture.md @@ -0,0 +1,5 @@ +**Genesis 22:18** + +18 And in thy seed shall all the nations of the earth be blessed; because thou hast obeyed my voice. + +[Friday 27-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/27/23/scripture.tg b/scripture/kjv/01/27/23/scripture.tg new file mode 100644 index 00000000..69192eb6 --- /dev/null +++ b/scripture/kjv/01/27/23/scripture.tg @@ -0,0 +1,4 @@ +Genesis 22:18 +18 And in thy seed shall all the nations of the earth be blessed; because thou hast obeyed my voice. + +Friday 27-January, 2023 diff --git a/scripture/kjv/01/27/23/scripture.today b/scripture/kjv/01/27/23/scripture.today new file mode 100644 index 00000000..35fca5a4 --- /dev/null +++ b/scripture/kjv/01/27/23/scripture.today @@ -0,0 +1 @@ +1 22:18 diff --git a/scripture/kjv/01/27/24/scripture.html b/scripture/kjv/01/27/24/scripture.html new file mode 100644 index 00000000..e47adc8e --- /dev/null +++ b/scripture/kjv/01/27/24/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 2:14
+14 Now thanks be unto God, which always causeth us to triumph in Christ, and maketh manifest the savour of his knowledge by us in every place.

+Saturday 27-January, 2024 diff --git a/scripture/kjv/01/27/24/scripture.json b/scripture/kjv/01/27/24/scripture.json new file mode 100644 index 00000000..668af5be --- /dev/null +++ b/scripture/kjv/01/27/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "2", + "date": "Saturday 27-January, 2024", + "getbible": "https://getbible.life/kjv/2 Corinthians/2/14", + "name": "2 Corinthians 2:14", + "scripture": [ + { + "nr": "14", + "text": "Now thanks be unto God, which always causeth us to triumph in Christ, and maketh manifest the savour of his knowledge by us in every place." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/01/27/24/scripture.md b/scripture/kjv/01/27/24/scripture.md new file mode 100644 index 00000000..8210d3bc --- /dev/null +++ b/scripture/kjv/01/27/24/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 2:14** + +14 Now thanks be unto God, which always causeth us to triumph in Christ, and maketh manifest the savour of his knowledge by us in every place. + +[Saturday 27-January, 2024](https://getbible.life/kjv/2 Corinthians/2/14) diff --git a/scripture/kjv/01/27/24/scripture.tg b/scripture/kjv/01/27/24/scripture.tg new file mode 100644 index 00000000..88d0c350 --- /dev/null +++ b/scripture/kjv/01/27/24/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 2:14 +14 Now thanks be unto God, which always causeth us to triumph in Christ, and maketh manifest the savour of his knowledge by us in every place. + +Saturday 27-January, 2024 diff --git a/scripture/kjv/01/27/24/scripture.tg.id b/scripture/kjv/01/27/24/scripture.tg.id new file mode 100644 index 00000000..1f8248ce --- /dev/null +++ b/scripture/kjv/01/27/24/scripture.tg.id @@ -0,0 +1 @@ +1212 diff --git a/scripture/kjv/01/27/24/scripture.today b/scripture/kjv/01/27/24/scripture.today new file mode 100644 index 00000000..3523f150 --- /dev/null +++ b/scripture/kjv/01/27/24/scripture.today @@ -0,0 +1 @@ +47 2:14 diff --git a/scripture/kjv/01/27/25/scripture.html b/scripture/kjv/01/27/25/scripture.html new file mode 100644 index 00000000..72182ff3 --- /dev/null +++ b/scripture/kjv/01/27/25/scripture.html @@ -0,0 +1,3 @@ +John 12:36
+36 While ye have light, believe in the light, that ye may be the children of light. These things spake Jesus, and departed, and did hide himself from them.

+Monday 27-January, 2025 diff --git a/scripture/kjv/01/27/25/scripture.json b/scripture/kjv/01/27/25/scripture.json new file mode 100644 index 00000000..f2f88d3d --- /dev/null +++ b/scripture/kjv/01/27/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "12", + "date": "Monday 27-January, 2025", + "getbible": "https://getbible.life/kjv/John/12/36", + "name": "John 12:36", + "scripture": [ + { + "nr": "36", + "text": "While ye have light, believe in the light, that ye may be the children of light. These things spake Jesus, and departed, and did hide himself from them." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "36", + "version": "kjv" +} diff --git a/scripture/kjv/01/27/25/scripture.md b/scripture/kjv/01/27/25/scripture.md new file mode 100644 index 00000000..fdd67556 --- /dev/null +++ b/scripture/kjv/01/27/25/scripture.md @@ -0,0 +1,5 @@ +**John 12:36** + +36 While ye have light, believe in the light, that ye may be the children of light. These things spake Jesus, and departed, and did hide himself from them. + +[Monday 27-January, 2025](https://getbible.life/kjv/John/12/36) diff --git a/scripture/kjv/01/27/25/scripture.tg b/scripture/kjv/01/27/25/scripture.tg new file mode 100644 index 00000000..1a65b30f --- /dev/null +++ b/scripture/kjv/01/27/25/scripture.tg @@ -0,0 +1,4 @@ +John 12:36 +36 While ye have light, believe in the light, that ye may be the children of light. These things spake Jesus, and departed, and did hide himself from them. + +Monday 27-January, 2025 diff --git a/scripture/kjv/01/27/25/scripture.tg.id b/scripture/kjv/01/27/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/27/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/27/25/scripture.today b/scripture/kjv/01/27/25/scripture.today new file mode 100644 index 00000000..9a8662c8 --- /dev/null +++ b/scripture/kjv/01/27/25/scripture.today @@ -0,0 +1 @@ +43 12:36 diff --git a/scripture/kjv/01/27/26/scripture.html b/scripture/kjv/01/27/26/scripture.html new file mode 100644 index 00000000..967481cc --- /dev/null +++ b/scripture/kjv/01/27/26/scripture.html @@ -0,0 +1,3 @@ +Genesis 24:31
+31 And he said, Come in, thou blessed of the Lord; wherefore standest thou without? for I have prepared the house, and room for the camels.

+Tuesday 27-January, 2026 diff --git a/scripture/kjv/01/27/26/scripture.json b/scripture/kjv/01/27/26/scripture.json new file mode 100644 index 00000000..dd917f5c --- /dev/null +++ b/scripture/kjv/01/27/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Genesis", + "chapter": "24", + "date": "Tuesday 27-January, 2026", + "getbible": "https://getbible.life/kjv/Genesis/24/31", + "name": "Genesis 24:31", + "scripture": [ + { + "nr": "31", + "text": "And he said, Come in, thou blessed of the Lord; wherefore standest thou without? for I have prepared the house, and room for the camels." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "31", + "version": "kjv" +} diff --git a/scripture/kjv/01/27/26/scripture.md b/scripture/kjv/01/27/26/scripture.md new file mode 100644 index 00000000..f38b41bf --- /dev/null +++ b/scripture/kjv/01/27/26/scripture.md @@ -0,0 +1,5 @@ +**Genesis 24:31** + +31 And he said, Come in, thou blessed of the Lord; wherefore standest thou without? for I have prepared the house, and room for the camels. + +[Tuesday 27-January, 2026](https://getbible.life/kjv/Genesis/24/31) diff --git a/scripture/kjv/01/27/26/scripture.tg b/scripture/kjv/01/27/26/scripture.tg new file mode 100644 index 00000000..38728e10 --- /dev/null +++ b/scripture/kjv/01/27/26/scripture.tg @@ -0,0 +1,4 @@ +Genesis 24:31 +31 And he said, Come in, thou blessed of the Lord; wherefore standest thou without? for I have prepared the house, and room for the camels. + +Tuesday 27-January, 2026 diff --git a/scripture/kjv/01/27/26/scripture.tg.id b/scripture/kjv/01/27/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/27/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/27/26/scripture.today b/scripture/kjv/01/27/26/scripture.today new file mode 100644 index 00000000..4e3fd04c --- /dev/null +++ b/scripture/kjv/01/27/26/scripture.today @@ -0,0 +1 @@ +1 24:31 diff --git a/scripture/kjv/01/28/23/scripture.html b/scripture/kjv/01/28/23/scripture.html new file mode 100644 index 00000000..da160176 --- /dev/null +++ b/scripture/kjv/01/28/23/scripture.html @@ -0,0 +1,3 @@ +1 John 4:1-3
+1 Beloved, believe not every spirit, but try the spirits whether they are of God: because many false prophets are gone out into the world. 2 Hereby know ye the Spirit of God: Every spirit that confesseth that Jesus Christ is come in the flesh is of God: 3 And every spirit that confesseth not that Jesus Christ is come in the flesh is not of God: and this is that spirit of antichrist, whereof ye have heard that it should come; and even now already is it in the world.

+Saturday 28-January, 2023 diff --git a/scripture/kjv/01/28/23/scripture.json b/scripture/kjv/01/28/23/scripture.json new file mode 100644 index 00000000..ffbf73ea --- /dev/null +++ b/scripture/kjv/01/28/23/scripture.json @@ -0,0 +1,21 @@ +{ + "date": "Saturday 28-January, 2023", + "name": "1 John 4:1-3", + "scripture": [ + { + "nr": "1", + "text": "Beloved, believe not every spirit, but try the spirits whether they are of God: because many false prophets are gone out into the world." + }, + { + "nr": "2", + "text": "Hereby know ye the Spirit of God: Every spirit that confesseth that Jesus Christ is come in the flesh is of God:" + }, + { + "nr": "3", + "text": "And every spirit that confesseth not that Jesus Christ is come in the flesh is not of God: and this is that spirit of antichrist, whereof ye have heard that it should come; and even now already is it in the world." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/28/23/scripture.md b/scripture/kjv/01/28/23/scripture.md new file mode 100644 index 00000000..b8195c11 --- /dev/null +++ b/scripture/kjv/01/28/23/scripture.md @@ -0,0 +1,5 @@ +**1 John 4:1-3** + +1 Beloved, believe not every spirit, but try the spirits whether they are of God: because many false prophets are gone out into the world. 2 Hereby know ye the Spirit of God: Every spirit that confesseth that Jesus Christ is come in the flesh is of God: 3 And every spirit that confesseth not that Jesus Christ is come in the flesh is not of God: and this is that spirit of antichrist, whereof ye have heard that it should come; and even now already is it in the world. + +[Saturday 28-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/28/23/scripture.tg b/scripture/kjv/01/28/23/scripture.tg new file mode 100644 index 00000000..f9ed4a4e --- /dev/null +++ b/scripture/kjv/01/28/23/scripture.tg @@ -0,0 +1,4 @@ +1 John 4:1-3 +1 Beloved, believe not every spirit, but try the spirits whether they are of God: because many false prophets are gone out into the world. 2 Hereby know ye the Spirit of God: Every spirit that confesseth that Jesus Christ is come in the flesh is of God: 3 And every spirit that confesseth not that Jesus Christ is come in the flesh is not of God: and this is that spirit of antichrist, whereof ye have heard that it should come; and even now already is it in the world. + +Saturday 28-January, 2023 diff --git a/scripture/kjv/01/28/23/scripture.today b/scripture/kjv/01/28/23/scripture.today new file mode 100644 index 00000000..37c77b7e --- /dev/null +++ b/scripture/kjv/01/28/23/scripture.today @@ -0,0 +1 @@ +62 4:1-3 diff --git a/scripture/kjv/01/28/24/scripture.html b/scripture/kjv/01/28/24/scripture.html new file mode 100644 index 00000000..2dda1ee2 --- /dev/null +++ b/scripture/kjv/01/28/24/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 21:16-17
+16 Go thee one way or other, either on the right hand, or on the left, whithersoever thy face is set. 17 I will also smite mine hands together, and I will cause my fury to rest: I the Lord have said it.

+Sunday 28-January, 2024 diff --git a/scripture/kjv/01/28/24/scripture.json b/scripture/kjv/01/28/24/scripture.json new file mode 100644 index 00000000..17751baa --- /dev/null +++ b/scripture/kjv/01/28/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Ezekiel", + "chapter": "21", + "date": "Sunday 28-January, 2024", + "getbible": "https://getbible.life/kjv/Ezekiel/21/16-17", + "name": "Ezekiel 21:16-17", + "scripture": [ + { + "nr": "16", + "text": "Go thee one way or other, either on the right hand, or on the left, whithersoever thy face is set." + }, + { + "nr": "17", + "text": "I will also smite mine hands together, and I will cause my fury to rest: I the Lord have said it." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16-17", + "version": "kjv" +} diff --git a/scripture/kjv/01/28/24/scripture.md b/scripture/kjv/01/28/24/scripture.md new file mode 100644 index 00000000..4a9c13df --- /dev/null +++ b/scripture/kjv/01/28/24/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 21:16-17** + +16 Go thee one way or other, either on the right hand, or on the left, whithersoever thy face is set. 17 I will also smite mine hands together, and I will cause my fury to rest: I the Lord have said it. + +[Sunday 28-January, 2024](https://getbible.life/kjv/Ezekiel/21/16-17) diff --git a/scripture/kjv/01/28/24/scripture.tg b/scripture/kjv/01/28/24/scripture.tg new file mode 100644 index 00000000..ed067f33 --- /dev/null +++ b/scripture/kjv/01/28/24/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 21:16-17 +16 Go thee one way or other, either on the right hand, or on the left, whithersoever thy face is set. 17 I will also smite mine hands together, and I will cause my fury to rest: I the Lord have said it. + +Sunday 28-January, 2024 diff --git a/scripture/kjv/01/28/24/scripture.tg.id b/scripture/kjv/01/28/24/scripture.tg.id new file mode 100644 index 00000000..4c11389f --- /dev/null +++ b/scripture/kjv/01/28/24/scripture.tg.id @@ -0,0 +1 @@ +1213 diff --git a/scripture/kjv/01/28/24/scripture.today b/scripture/kjv/01/28/24/scripture.today new file mode 100644 index 00000000..f6cd9a1c --- /dev/null +++ b/scripture/kjv/01/28/24/scripture.today @@ -0,0 +1 @@ +26 21:16-17 diff --git a/scripture/kjv/01/28/25/scripture.html b/scripture/kjv/01/28/25/scripture.html new file mode 100644 index 00000000..ce1704d0 --- /dev/null +++ b/scripture/kjv/01/28/25/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 45:10
+10 Ye shall have just balances, and a just ephah, and a just bath.

+Tuesday 28-January, 2025 diff --git a/scripture/kjv/01/28/25/scripture.json b/scripture/kjv/01/28/25/scripture.json new file mode 100644 index 00000000..b4585bc1 --- /dev/null +++ b/scripture/kjv/01/28/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ezekiel", + "chapter": "45", + "date": "Tuesday 28-January, 2025", + "getbible": "https://getbible.life/kjv/Ezekiel/45/10", + "name": "Ezekiel 45:10", + "scripture": [ + { + "nr": "10", + "text": "Ye shall have just balances, and a just ephah, and a just bath." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/01/28/25/scripture.md b/scripture/kjv/01/28/25/scripture.md new file mode 100644 index 00000000..3ea1ccf8 --- /dev/null +++ b/scripture/kjv/01/28/25/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 45:10** + +10 Ye shall have just balances, and a just ephah, and a just bath. + +[Tuesday 28-January, 2025](https://getbible.life/kjv/Ezekiel/45/10) diff --git a/scripture/kjv/01/28/25/scripture.tg b/scripture/kjv/01/28/25/scripture.tg new file mode 100644 index 00000000..a8d0ddc2 --- /dev/null +++ b/scripture/kjv/01/28/25/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 45:10 +10 Ye shall have just balances, and a just ephah, and a just bath. + +Tuesday 28-January, 2025 diff --git a/scripture/kjv/01/28/25/scripture.tg.id b/scripture/kjv/01/28/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/28/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/28/25/scripture.today b/scripture/kjv/01/28/25/scripture.today new file mode 100644 index 00000000..6a273762 --- /dev/null +++ b/scripture/kjv/01/28/25/scripture.today @@ -0,0 +1 @@ +26 45:10 diff --git a/scripture/kjv/01/28/26/scripture.html b/scripture/kjv/01/28/26/scripture.html new file mode 100644 index 00000000..097359ca --- /dev/null +++ b/scripture/kjv/01/28/26/scripture.html @@ -0,0 +1,3 @@ +Isaiah 59:19
+19 So shall they fear the name of the Lord from the west, and his glory from the rising of the sun. When the enemy shall come in like a flood, the Spirit of the Lord shall lift up a standard against him.

+Wednesday 28-January, 2026 diff --git a/scripture/kjv/01/28/26/scripture.json b/scripture/kjv/01/28/26/scripture.json new file mode 100644 index 00000000..31addb53 --- /dev/null +++ b/scripture/kjv/01/28/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "59", + "date": "Wednesday 28-January, 2026", + "getbible": "https://getbible.life/kjv/Isaiah/59/19", + "name": "Isaiah 59:19", + "scripture": [ + { + "nr": "19", + "text": "So shall they fear the name of the Lord from the west, and his glory from the rising of the sun. When the enemy shall come in like a flood, the Spirit of the Lord shall lift up a standard against him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "19", + "version": "kjv" +} diff --git a/scripture/kjv/01/28/26/scripture.md b/scripture/kjv/01/28/26/scripture.md new file mode 100644 index 00000000..5f885d9b --- /dev/null +++ b/scripture/kjv/01/28/26/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 59:19** + +19 So shall they fear the name of the Lord from the west, and his glory from the rising of the sun. When the enemy shall come in like a flood, the Spirit of the Lord shall lift up a standard against him. + +[Wednesday 28-January, 2026](https://getbible.life/kjv/Isaiah/59/19) diff --git a/scripture/kjv/01/28/26/scripture.tg b/scripture/kjv/01/28/26/scripture.tg new file mode 100644 index 00000000..2a92a5b5 --- /dev/null +++ b/scripture/kjv/01/28/26/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 59:19 +19 So shall they fear the name of the Lord from the west, and his glory from the rising of the sun. When the enemy shall come in like a flood, the Spirit of the Lord shall lift up a standard against him. + +Wednesday 28-January, 2026 diff --git a/scripture/kjv/01/28/26/scripture.tg.id b/scripture/kjv/01/28/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/28/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/28/26/scripture.today b/scripture/kjv/01/28/26/scripture.today new file mode 100644 index 00000000..11110355 --- /dev/null +++ b/scripture/kjv/01/28/26/scripture.today @@ -0,0 +1 @@ +23 59:19 diff --git a/scripture/kjv/01/29/23/scripture.html b/scripture/kjv/01/29/23/scripture.html new file mode 100644 index 00000000..fcfe1ff0 --- /dev/null +++ b/scripture/kjv/01/29/23/scripture.html @@ -0,0 +1,3 @@ +Luke 5:8-11
+8 When Simon Peter saw it, he fell down at Jesus’ knees, saying, Depart from me; for I am a sinful man, O Lord. 9 For he was astonished, and all that were with him, at the draught of the fishes which they had taken: 10 And so was also James, and John, the sons of Zebedee, which were partners with Simon. And Jesus said unto Simon, Fear not; from henceforth thou shalt catch men. 11 And when they had brought their ships to land, they forsook all, and followed him.

+Sunday 29-January, 2023 diff --git a/scripture/kjv/01/29/23/scripture.json b/scripture/kjv/01/29/23/scripture.json new file mode 100644 index 00000000..9cb9dc15 --- /dev/null +++ b/scripture/kjv/01/29/23/scripture.json @@ -0,0 +1,25 @@ +{ + "date": "Sunday 29-January, 2023", + "name": "Luke 5:8-11", + "scripture": [ + { + "nr": "8", + "text": "When Simon Peter saw it, he fell down at Jesus’ knees, saying, Depart from me; for I am a sinful man, O Lord." + }, + { + "nr": "9", + "text": "For he was astonished, and all that were with him, at the draught of the fishes which they had taken:" + }, + { + "nr": "10", + "text": "And so was also James, and John, the sons of Zebedee, which were partners with Simon. And Jesus said unto Simon, Fear not; from henceforth thou shalt catch men." + }, + { + "nr": "11", + "text": "And when they had brought their ships to land, they forsook all, and followed him." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/29/23/scripture.md b/scripture/kjv/01/29/23/scripture.md new file mode 100644 index 00000000..d1457eb8 --- /dev/null +++ b/scripture/kjv/01/29/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 5:8-11** + +8 When Simon Peter saw it, he fell down at Jesus’ knees, saying, Depart from me; for I am a sinful man, O Lord. 9 For he was astonished, and all that were with him, at the draught of the fishes which they had taken: 10 And so was also James, and John, the sons of Zebedee, which were partners with Simon. And Jesus said unto Simon, Fear not; from henceforth thou shalt catch men. 11 And when they had brought their ships to land, they forsook all, and followed him. + +[Sunday 29-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/29/23/scripture.tg b/scripture/kjv/01/29/23/scripture.tg new file mode 100644 index 00000000..b8622bd3 --- /dev/null +++ b/scripture/kjv/01/29/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 5:8-11 +8 When Simon Peter saw it, he fell down at Jesus’ knees, saying, Depart from me; for I am a sinful man, O Lord. 9 For he was astonished, and all that were with him, at the draught of the fishes which they had taken: 10 And so was also James, and John, the sons of Zebedee, which were partners with Simon. And Jesus said unto Simon, Fear not; from henceforth thou shalt catch men. 11 And when they had brought their ships to land, they forsook all, and followed him. + +Sunday 29-January, 2023 diff --git a/scripture/kjv/01/29/23/scripture.today b/scripture/kjv/01/29/23/scripture.today new file mode 100644 index 00000000..328320d5 --- /dev/null +++ b/scripture/kjv/01/29/23/scripture.today @@ -0,0 +1 @@ +42 5:8-11 diff --git a/scripture/kjv/01/29/24/scripture.html b/scripture/kjv/01/29/24/scripture.html new file mode 100644 index 00000000..4b672dab --- /dev/null +++ b/scripture/kjv/01/29/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 13:20
+20 He that walketh with wise men shall be wise: but a companion of fools shall be destroyed.

+Monday 29-January, 2024 diff --git a/scripture/kjv/01/29/24/scripture.json b/scripture/kjv/01/29/24/scripture.json new file mode 100644 index 00000000..0b20e006 --- /dev/null +++ b/scripture/kjv/01/29/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "13", + "date": "Monday 29-January, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/13/20", + "name": "Proverbs 13:20", + "scripture": [ + { + "nr": "20", + "text": "He that walketh with wise men shall be wise: but a companion of fools shall be destroyed." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20", + "version": "kjv" +} diff --git a/scripture/kjv/01/29/24/scripture.md b/scripture/kjv/01/29/24/scripture.md new file mode 100644 index 00000000..712b440c --- /dev/null +++ b/scripture/kjv/01/29/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 13:20** + +20 He that walketh with wise men shall be wise: but a companion of fools shall be destroyed. + +[Monday 29-January, 2024](https://getbible.life/kjv/Proverbs/13/20) diff --git a/scripture/kjv/01/29/24/scripture.tg b/scripture/kjv/01/29/24/scripture.tg new file mode 100644 index 00000000..21d0806b --- /dev/null +++ b/scripture/kjv/01/29/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 13:20 +20 He that walketh with wise men shall be wise: but a companion of fools shall be destroyed. + +Monday 29-January, 2024 diff --git a/scripture/kjv/01/29/24/scripture.tg.id b/scripture/kjv/01/29/24/scripture.tg.id new file mode 100644 index 00000000..efffd3bb --- /dev/null +++ b/scripture/kjv/01/29/24/scripture.tg.id @@ -0,0 +1 @@ +1214 diff --git a/scripture/kjv/01/29/24/scripture.today b/scripture/kjv/01/29/24/scripture.today new file mode 100644 index 00000000..58e7d41d --- /dev/null +++ b/scripture/kjv/01/29/24/scripture.today @@ -0,0 +1 @@ +20 13:20 diff --git a/scripture/kjv/01/29/25/scripture.html b/scripture/kjv/01/29/25/scripture.html new file mode 100644 index 00000000..8441e247 --- /dev/null +++ b/scripture/kjv/01/29/25/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 7:25-28
+25 Now concerning virgins I have no commandment of the Lord: yet I give my judgment, as one that hath obtained mercy of the Lord to be faithful. 26 I suppose therefore that this is good for the present distress, I say, that it is good for a man so to be. 27 Art thou bound unto a wife? seek not to be loosed. Art thou loosed from a wife? seek not a wife. 28 But and if thou marry, thou hast not sinned; and if a virgin marry, she hath not sinned. Nevertheless such shall have trouble in the flesh: but I spare you.

+Wednesday 29-January, 2025 diff --git a/scripture/kjv/01/29/25/scripture.json b/scripture/kjv/01/29/25/scripture.json new file mode 100644 index 00000000..cb2093ec --- /dev/null +++ b/scripture/kjv/01/29/25/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "1 Corinthians", + "chapter": "7", + "date": "Wednesday 29-January, 2025", + "getbible": "https://getbible.life/kjv/1 Corinthians/7/25-28", + "name": "1 Corinthians 7:25-28", + "scripture": [ + { + "nr": "25", + "text": "Now concerning virgins I have no commandment of the Lord: yet I give my judgment, as one that hath obtained mercy of the Lord to be faithful." + }, + { + "nr": "26", + "text": "I suppose therefore that this is good for the present distress, I say, that it is good for a man so to be." + }, + { + "nr": "27", + "text": "Art thou bound unto a wife? seek not to be loosed. Art thou loosed from a wife? seek not a wife." + }, + { + "nr": "28", + "text": "But and if thou marry, thou hast not sinned; and if a virgin marry, she hath not sinned. Nevertheless such shall have trouble in the flesh: but I spare you." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "25-28", + "version": "kjv" +} diff --git a/scripture/kjv/01/29/25/scripture.md b/scripture/kjv/01/29/25/scripture.md new file mode 100644 index 00000000..9043d794 --- /dev/null +++ b/scripture/kjv/01/29/25/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 7:25-28** + +25 Now concerning virgins I have no commandment of the Lord: yet I give my judgment, as one that hath obtained mercy of the Lord to be faithful. 26 I suppose therefore that this is good for the present distress, I say, that it is good for a man so to be. 27 Art thou bound unto a wife? seek not to be loosed. Art thou loosed from a wife? seek not a wife. 28 But and if thou marry, thou hast not sinned; and if a virgin marry, she hath not sinned. Nevertheless such shall have trouble in the flesh: but I spare you. + +[Wednesday 29-January, 2025](https://getbible.life/kjv/1 Corinthians/7/25-28) diff --git a/scripture/kjv/01/29/25/scripture.tg b/scripture/kjv/01/29/25/scripture.tg new file mode 100644 index 00000000..ab3d948f --- /dev/null +++ b/scripture/kjv/01/29/25/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 7:25-28 +25 Now concerning virgins I have no commandment of the Lord: yet I give my judgment, as one that hath obtained mercy of the Lord to be faithful. 26 I suppose therefore that this is good for the present distress, I say, that it is good for a man so to be. 27 Art thou bound unto a wife? seek not to be loosed. Art thou loosed from a wife? seek not a wife. 28 But and if thou marry, thou hast not sinned; and if a virgin marry, she hath not sinned. Nevertheless such shall have trouble in the flesh: but I spare you. + +Wednesday 29-January, 2025 diff --git a/scripture/kjv/01/29/25/scripture.tg.id b/scripture/kjv/01/29/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/29/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/29/25/scripture.today b/scripture/kjv/01/29/25/scripture.today new file mode 100644 index 00000000..41a6f5f9 --- /dev/null +++ b/scripture/kjv/01/29/25/scripture.today @@ -0,0 +1 @@ +46 7:25-28 diff --git a/scripture/kjv/01/29/26/scripture.html b/scripture/kjv/01/29/26/scripture.html new file mode 100644 index 00000000..ddeffb0e --- /dev/null +++ b/scripture/kjv/01/29/26/scripture.html @@ -0,0 +1,3 @@ +Genesis 15:5
+5 And he brought him forth abroad, and said, Look now toward heaven, and tell the stars, if thou be able to number them: and he said unto him, So shall thy seed be.

+Thursday 29-January, 2026 diff --git a/scripture/kjv/01/29/26/scripture.json b/scripture/kjv/01/29/26/scripture.json new file mode 100644 index 00000000..f956715a --- /dev/null +++ b/scripture/kjv/01/29/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Genesis", + "chapter": "15", + "date": "Thursday 29-January, 2026", + "getbible": "https://getbible.life/kjv/Genesis/15/5", + "name": "Genesis 15:5", + "scripture": [ + { + "nr": "5", + "text": "And he brought him forth abroad, and said, Look now toward heaven, and tell the stars, if thou be able to number them: and he said unto him, So shall thy seed be." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5", + "version": "kjv" +} diff --git a/scripture/kjv/01/29/26/scripture.md b/scripture/kjv/01/29/26/scripture.md new file mode 100644 index 00000000..01e0d0f2 --- /dev/null +++ b/scripture/kjv/01/29/26/scripture.md @@ -0,0 +1,5 @@ +**Genesis 15:5** + +5 And he brought him forth abroad, and said, Look now toward heaven, and tell the stars, if thou be able to number them: and he said unto him, So shall thy seed be. + +[Thursday 29-January, 2026](https://getbible.life/kjv/Genesis/15/5) diff --git a/scripture/kjv/01/29/26/scripture.tg b/scripture/kjv/01/29/26/scripture.tg new file mode 100644 index 00000000..a73ee348 --- /dev/null +++ b/scripture/kjv/01/29/26/scripture.tg @@ -0,0 +1,4 @@ +Genesis 15:5 +5 And he brought him forth abroad, and said, Look now toward heaven, and tell the stars, if thou be able to number them: and he said unto him, So shall thy seed be. + +Thursday 29-January, 2026 diff --git a/scripture/kjv/01/29/26/scripture.tg.id b/scripture/kjv/01/29/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/29/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/29/26/scripture.today b/scripture/kjv/01/29/26/scripture.today new file mode 100644 index 00000000..287e50ae --- /dev/null +++ b/scripture/kjv/01/29/26/scripture.today @@ -0,0 +1 @@ +1 15:5 diff --git a/scripture/kjv/01/30/23/scripture.html b/scripture/kjv/01/30/23/scripture.html new file mode 100644 index 00000000..3d00adce --- /dev/null +++ b/scripture/kjv/01/30/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 19:2
+2 Also, that the soul be without knowledge, it is not good; and he that hasteth with his feet sinneth.

+Monday 30-January, 2023 diff --git a/scripture/kjv/01/30/23/scripture.json b/scripture/kjv/01/30/23/scripture.json new file mode 100644 index 00000000..afcde657 --- /dev/null +++ b/scripture/kjv/01/30/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Monday 30-January, 2023", + "name": "Proverbs 19:2", + "scripture": [ + { + "nr": "2", + "text": "Also, that the soul be without knowledge, it is not good; and he that hasteth with his feet sinneth." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/30/23/scripture.md b/scripture/kjv/01/30/23/scripture.md new file mode 100644 index 00000000..f3392eea --- /dev/null +++ b/scripture/kjv/01/30/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 19:2** + +2 Also, that the soul be without knowledge, it is not good; and he that hasteth with his feet sinneth. + +[Monday 30-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/30/23/scripture.tg b/scripture/kjv/01/30/23/scripture.tg new file mode 100644 index 00000000..cc930018 --- /dev/null +++ b/scripture/kjv/01/30/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 19:2 +2 Also, that the soul be without knowledge, it is not good; and he that hasteth with his feet sinneth. + +Monday 30-January, 2023 diff --git a/scripture/kjv/01/30/23/scripture.today b/scripture/kjv/01/30/23/scripture.today new file mode 100644 index 00000000..46fbf78a --- /dev/null +++ b/scripture/kjv/01/30/23/scripture.today @@ -0,0 +1 @@ +20 19:2 diff --git a/scripture/kjv/01/30/24/scripture.html b/scripture/kjv/01/30/24/scripture.html new file mode 100644 index 00000000..a7801072 --- /dev/null +++ b/scripture/kjv/01/30/24/scripture.html @@ -0,0 +1,3 @@ +Romans 12:12
+12 Rejoicing in hope; patient in tribulation; continuing instant in prayer;

+Tuesday 30-January, 2024 diff --git a/scripture/kjv/01/30/24/scripture.json b/scripture/kjv/01/30/24/scripture.json new file mode 100644 index 00000000..e5c3092f --- /dev/null +++ b/scripture/kjv/01/30/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Romans", + "chapter": "12", + "date": "Tuesday 30-January, 2024", + "getbible": "https://getbible.life/kjv/Romans/12/12", + "name": "Romans 12:12", + "scripture": [ + { + "nr": "12", + "text": "Rejoicing in hope; patient in tribulation; continuing instant in prayer;" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/01/30/24/scripture.md b/scripture/kjv/01/30/24/scripture.md new file mode 100644 index 00000000..28b857f4 --- /dev/null +++ b/scripture/kjv/01/30/24/scripture.md @@ -0,0 +1,5 @@ +**Romans 12:12** + +12 Rejoicing in hope; patient in tribulation; continuing instant in prayer; + +[Tuesday 30-January, 2024](https://getbible.life/kjv/Romans/12/12) diff --git a/scripture/kjv/01/30/24/scripture.tg b/scripture/kjv/01/30/24/scripture.tg new file mode 100644 index 00000000..e1f6c298 --- /dev/null +++ b/scripture/kjv/01/30/24/scripture.tg @@ -0,0 +1,4 @@ +Romans 12:12 +12 Rejoicing in hope; patient in tribulation; continuing instant in prayer; + +Tuesday 30-January, 2024 diff --git a/scripture/kjv/01/30/24/scripture.tg.id b/scripture/kjv/01/30/24/scripture.tg.id new file mode 100644 index 00000000..b2c0b55f --- /dev/null +++ b/scripture/kjv/01/30/24/scripture.tg.id @@ -0,0 +1 @@ +1215 diff --git a/scripture/kjv/01/30/24/scripture.today b/scripture/kjv/01/30/24/scripture.today new file mode 100644 index 00000000..ee90022f --- /dev/null +++ b/scripture/kjv/01/30/24/scripture.today @@ -0,0 +1 @@ +45 12:12 diff --git a/scripture/kjv/01/30/25/scripture.html b/scripture/kjv/01/30/25/scripture.html new file mode 100644 index 00000000..d0bcdd9a --- /dev/null +++ b/scripture/kjv/01/30/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 69:9
+9 For the zeal of thine house hath eaten me up; and the reproaches of them that reproached thee are fallen upon me.

+Thursday 30-January, 2025 diff --git a/scripture/kjv/01/30/25/scripture.json b/scripture/kjv/01/30/25/scripture.json new file mode 100644 index 00000000..676ad9be --- /dev/null +++ b/scripture/kjv/01/30/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "69", + "date": "Thursday 30-January, 2025", + "getbible": "https://getbible.life/kjv/Psalms/69/9", + "name": "Psalms 69:9", + "scripture": [ + { + "nr": "9", + "text": "For the zeal of thine house hath eaten me up; and the reproaches of them that reproached thee are fallen upon me." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9", + "version": "kjv" +} diff --git a/scripture/kjv/01/30/25/scripture.md b/scripture/kjv/01/30/25/scripture.md new file mode 100644 index 00000000..38f4a7d7 --- /dev/null +++ b/scripture/kjv/01/30/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 69:9** + +9 For the zeal of thine house hath eaten me up; and the reproaches of them that reproached thee are fallen upon me. + +[Thursday 30-January, 2025](https://getbible.life/kjv/Psalms/69/9) diff --git a/scripture/kjv/01/30/25/scripture.tg b/scripture/kjv/01/30/25/scripture.tg new file mode 100644 index 00000000..6b565c71 --- /dev/null +++ b/scripture/kjv/01/30/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 69:9 +9 For the zeal of thine house hath eaten me up; and the reproaches of them that reproached thee are fallen upon me. + +Thursday 30-January, 2025 diff --git a/scripture/kjv/01/30/25/scripture.tg.id b/scripture/kjv/01/30/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/30/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/30/25/scripture.today b/scripture/kjv/01/30/25/scripture.today new file mode 100644 index 00000000..53622857 --- /dev/null +++ b/scripture/kjv/01/30/25/scripture.today @@ -0,0 +1 @@ +19 69:9 diff --git a/scripture/kjv/01/30/26/scripture.html b/scripture/kjv/01/30/26/scripture.html new file mode 100644 index 00000000..a6d0c2bf --- /dev/null +++ b/scripture/kjv/01/30/26/scripture.html @@ -0,0 +1,3 @@ +1 John 1:7-8
+7 But if we walk in the light, as he is in the light, we have fellowship one with another, and the blood of Jesus Christ his Son cleanseth us from all sin. 8 If we say that we have no sin, we deceive ourselves, and the truth is not in us.

+Friday 30-January, 2026 diff --git a/scripture/kjv/01/30/26/scripture.json b/scripture/kjv/01/30/26/scripture.json new file mode 100644 index 00000000..c78bd00e --- /dev/null +++ b/scripture/kjv/01/30/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "1 John", + "chapter": "1", + "date": "Friday 30-January, 2026", + "getbible": "https://getbible.life/kjv/1 John/1/7-8", + "name": "1 John 1:7-8", + "scripture": [ + { + "nr": "7", + "text": "But if we walk in the light, as he is in the light, we have fellowship one with another, and the blood of Jesus Christ his Son cleanseth us from all sin." + }, + { + "nr": "8", + "text": "If we say that we have no sin, we deceive ourselves, and the truth is not in us." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7-8", + "version": "kjv" +} diff --git a/scripture/kjv/01/30/26/scripture.md b/scripture/kjv/01/30/26/scripture.md new file mode 100644 index 00000000..495cdb7b --- /dev/null +++ b/scripture/kjv/01/30/26/scripture.md @@ -0,0 +1,5 @@ +**1 John 1:7-8** + +7 But if we walk in the light, as he is in the light, we have fellowship one with another, and the blood of Jesus Christ his Son cleanseth us from all sin. 8 If we say that we have no sin, we deceive ourselves, and the truth is not in us. + +[Friday 30-January, 2026](https://getbible.life/kjv/1 John/1/7-8) diff --git a/scripture/kjv/01/30/26/scripture.tg b/scripture/kjv/01/30/26/scripture.tg new file mode 100644 index 00000000..e8c4b978 --- /dev/null +++ b/scripture/kjv/01/30/26/scripture.tg @@ -0,0 +1,4 @@ +1 John 1:7-8 +7 But if we walk in the light, as he is in the light, we have fellowship one with another, and the blood of Jesus Christ his Son cleanseth us from all sin. 8 If we say that we have no sin, we deceive ourselves, and the truth is not in us. + +Friday 30-January, 2026 diff --git a/scripture/kjv/01/30/26/scripture.tg.id b/scripture/kjv/01/30/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/30/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/30/26/scripture.today b/scripture/kjv/01/30/26/scripture.today new file mode 100644 index 00000000..c974e941 --- /dev/null +++ b/scripture/kjv/01/30/26/scripture.today @@ -0,0 +1 @@ +62 1:7-8 diff --git a/scripture/kjv/01/31/23/scripture.html b/scripture/kjv/01/31/23/scripture.html new file mode 100644 index 00000000..ff1448a7 --- /dev/null +++ b/scripture/kjv/01/31/23/scripture.html @@ -0,0 +1,3 @@ +Song of Songs 4:12
+12 A garden inclosed is my sister, my spouse; a spring shut up, a fountain sealed.

+Tuesday 31-January, 2023 diff --git a/scripture/kjv/01/31/23/scripture.json b/scripture/kjv/01/31/23/scripture.json new file mode 100644 index 00000000..ca7e910e --- /dev/null +++ b/scripture/kjv/01/31/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Tuesday 31-January, 2023", + "name": "Song of Songs 4:12", + "scripture": [ + { + "nr": "12", + "text": "A garden inclosed is my sister, my spouse; a spring shut up, a fountain sealed." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/01/31/23/scripture.md b/scripture/kjv/01/31/23/scripture.md new file mode 100644 index 00000000..27f9052e --- /dev/null +++ b/scripture/kjv/01/31/23/scripture.md @@ -0,0 +1,5 @@ +**Song of Songs 4:12** + +12 A garden inclosed is my sister, my spouse; a spring shut up, a fountain sealed. + +[Tuesday 31-January, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/01/31/23/scripture.tg b/scripture/kjv/01/31/23/scripture.tg new file mode 100644 index 00000000..51937547 --- /dev/null +++ b/scripture/kjv/01/31/23/scripture.tg @@ -0,0 +1,4 @@ +Song of Songs 4:12 +12 A garden inclosed is my sister, my spouse; a spring shut up, a fountain sealed. + +Tuesday 31-January, 2023 diff --git a/scripture/kjv/01/31/23/scripture.today b/scripture/kjv/01/31/23/scripture.today new file mode 100644 index 00000000..e5a827d3 --- /dev/null +++ b/scripture/kjv/01/31/23/scripture.today @@ -0,0 +1 @@ +22 4:12 diff --git a/scripture/kjv/01/31/24/scripture.html b/scripture/kjv/01/31/24/scripture.html new file mode 100644 index 00000000..817cb95e --- /dev/null +++ b/scripture/kjv/01/31/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 69:1-3
+1 Save me, O God; for the waters are come in unto my soul. 2 I sink in deep mire, where there is no standing: I am come into deep waters, where the floods overflow me. 3 I am weary of my crying: my throat is dried: mine eyes fail while I wait for my God.

+Wednesday 31-January, 2024 diff --git a/scripture/kjv/01/31/24/scripture.json b/scripture/kjv/01/31/24/scripture.json new file mode 100644 index 00000000..81701fa8 --- /dev/null +++ b/scripture/kjv/01/31/24/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Psalms", + "chapter": "69", + "date": "Wednesday 31-January, 2024", + "getbible": "https://getbible.life/kjv/Psalms/69/1-3", + "name": "Psalms 69:1-3", + "scripture": [ + { + "nr": "1", + "text": "Save me, O God; for the waters are come in unto my soul." + }, + { + "nr": "2", + "text": "I sink in deep mire, where there is no standing: I am come into deep waters, where the floods overflow me." + }, + { + "nr": "3", + "text": "I am weary of my crying: my throat is dried: mine eyes fail while I wait for my God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-3", + "version": "kjv" +} diff --git a/scripture/kjv/01/31/24/scripture.md b/scripture/kjv/01/31/24/scripture.md new file mode 100644 index 00000000..1c15f22a --- /dev/null +++ b/scripture/kjv/01/31/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 69:1-3** + +1 Save me, O God; for the waters are come in unto my soul. 2 I sink in deep mire, where there is no standing: I am come into deep waters, where the floods overflow me. 3 I am weary of my crying: my throat is dried: mine eyes fail while I wait for my God. + +[Wednesday 31-January, 2024](https://getbible.life/kjv/Psalms/69/1-3) diff --git a/scripture/kjv/01/31/24/scripture.tg b/scripture/kjv/01/31/24/scripture.tg new file mode 100644 index 00000000..2aa41d24 --- /dev/null +++ b/scripture/kjv/01/31/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 69:1-3 +1 Save me, O God; for the waters are come in unto my soul. 2 I sink in deep mire, where there is no standing: I am come into deep waters, where the floods overflow me. 3 I am weary of my crying: my throat is dried: mine eyes fail while I wait for my God. + +Wednesday 31-January, 2024 diff --git a/scripture/kjv/01/31/24/scripture.tg.id b/scripture/kjv/01/31/24/scripture.tg.id new file mode 100644 index 00000000..cc7bb991 --- /dev/null +++ b/scripture/kjv/01/31/24/scripture.tg.id @@ -0,0 +1 @@ +1216 diff --git a/scripture/kjv/01/31/24/scripture.today b/scripture/kjv/01/31/24/scripture.today new file mode 100644 index 00000000..342b297b --- /dev/null +++ b/scripture/kjv/01/31/24/scripture.today @@ -0,0 +1 @@ +19 69:1-3 diff --git a/scripture/kjv/01/31/25/scripture.html b/scripture/kjv/01/31/25/scripture.html new file mode 100644 index 00000000..63db47eb --- /dev/null +++ b/scripture/kjv/01/31/25/scripture.html @@ -0,0 +1,3 @@ +John 16:33
+33 These things I have spoken unto you, that in me ye might have peace. In the world ye shall have tribulation: but be of good cheer; I have overcome the world.

+Friday 31-January, 2025 diff --git a/scripture/kjv/01/31/25/scripture.json b/scripture/kjv/01/31/25/scripture.json new file mode 100644 index 00000000..ffd5f914 --- /dev/null +++ b/scripture/kjv/01/31/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "16", + "date": "Friday 31-January, 2025", + "getbible": "https://getbible.life/kjv/John/16/33", + "name": "John 16:33", + "scripture": [ + { + "nr": "33", + "text": "These things I have spoken unto you, that in me ye might have peace. In the world ye shall have tribulation: but be of good cheer; I have overcome the world. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "33", + "version": "kjv" +} diff --git a/scripture/kjv/01/31/25/scripture.md b/scripture/kjv/01/31/25/scripture.md new file mode 100644 index 00000000..e5fa1b9c --- /dev/null +++ b/scripture/kjv/01/31/25/scripture.md @@ -0,0 +1,5 @@ +**John 16:33** + +33 These things I have spoken unto you, that in me ye might have peace. In the world ye shall have tribulation: but be of good cheer; I have overcome the world. + +[Friday 31-January, 2025](https://getbible.life/kjv/John/16/33) diff --git a/scripture/kjv/01/31/25/scripture.tg b/scripture/kjv/01/31/25/scripture.tg new file mode 100644 index 00000000..dff07cfa --- /dev/null +++ b/scripture/kjv/01/31/25/scripture.tg @@ -0,0 +1,4 @@ +John 16:33 +33 These things I have spoken unto you, that in me ye might have peace. In the world ye shall have tribulation: but be of good cheer; I have overcome the world. + +Friday 31-January, 2025 diff --git a/scripture/kjv/01/31/25/scripture.tg.id b/scripture/kjv/01/31/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/31/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/31/25/scripture.today b/scripture/kjv/01/31/25/scripture.today new file mode 100644 index 00000000..a2172e12 --- /dev/null +++ b/scripture/kjv/01/31/25/scripture.today @@ -0,0 +1 @@ +43 16:33 diff --git a/scripture/kjv/01/31/26/scripture.html b/scripture/kjv/01/31/26/scripture.html new file mode 100644 index 00000000..a7f7ffa1 --- /dev/null +++ b/scripture/kjv/01/31/26/scripture.html @@ -0,0 +1,3 @@ +Matthew 19:16-24
+16 And, behold, one came and said unto him, Good Master, what good thing shall I do, that I may have eternal life? 17 And he said unto him, Why callest thou me good? there is none good but one, that is, God: but if thou wilt enter into life, keep the commandments. 18 He saith unto him, Which? Jesus said, Thou shalt do no murder, Thou shalt not commit adultery, Thou shalt not steal, Thou shalt not bear false witness, 19 Honour thy father and thy mother: and, Thou shalt love thy neighbour as thyself. 20 The young man saith unto him, All these things have I kept from my youth up: what lack I yet? 21 Jesus said unto him, If thou wilt be perfect, go and sell that thou hast, and give to the poor, and thou shalt have treasure in heaven: and come and follow me. 22 But when the young man heard that saying, he went away sorrowful: for he had great possessions. 23 Then said Jesus unto his disciples, Verily I say unto you, That a rich man shall hardly enter into the kingdom of heaven. 24 And again I say unto you, It is easier for a camel to go through the eye of a needle, than for a rich man to enter into the kingdom of God.

+Saturday 31-January, 2026 diff --git a/scripture/kjv/01/31/26/scripture.json b/scripture/kjv/01/31/26/scripture.json new file mode 100644 index 00000000..b1257a6a --- /dev/null +++ b/scripture/kjv/01/31/26/scripture.json @@ -0,0 +1,49 @@ +{ + "book": "Matthew", + "chapter": "19", + "date": "Saturday 31-January, 2026", + "getbible": "https://getbible.life/kjv/Matthew/19/16-24", + "name": "Matthew 19:16-24", + "scripture": [ + { + "nr": "16", + "text": "And, behold, one came and said unto him, Good Master, what good thing shall I do, that I may have eternal life?" + }, + { + "nr": "17", + "text": "And he said unto him, Why callest thou me good? there is none good but one, that is, God: but if thou wilt enter into life, keep the commandments." + }, + { + "nr": "18", + "text": "He saith unto him, Which? Jesus said, Thou shalt do no murder, Thou shalt not commit adultery, Thou shalt not steal, Thou shalt not bear false witness," + }, + { + "nr": "19", + "text": "Honour thy father and thy mother: and, Thou shalt love thy neighbour as thyself." + }, + { + "nr": "20", + "text": "The young man saith unto him, All these things have I kept from my youth up: what lack I yet?" + }, + { + "nr": "21", + "text": "Jesus said unto him, If thou wilt be perfect, go and sell that thou hast, and give to the poor, and thou shalt have treasure in heaven: and come and follow me." + }, + { + "nr": "22", + "text": "But when the young man heard that saying, he went away sorrowful: for he had great possessions." + }, + { + "nr": "23", + "text": "Then said Jesus unto his disciples, Verily I say unto you, That a rich man shall hardly enter into the kingdom of heaven." + }, + { + "nr": "24", + "text": "And again I say unto you, It is easier for a camel to go through the eye of a needle, than for a rich man to enter into the kingdom of God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16-24", + "version": "kjv" +} diff --git a/scripture/kjv/01/31/26/scripture.md b/scripture/kjv/01/31/26/scripture.md new file mode 100644 index 00000000..ab31259a --- /dev/null +++ b/scripture/kjv/01/31/26/scripture.md @@ -0,0 +1,5 @@ +**Matthew 19:16-24** + +16 And, behold, one came and said unto him, Good Master, what good thing shall I do, that I may have eternal life? 17 And he said unto him, Why callest thou me good? there is none good but one, that is, God: but if thou wilt enter into life, keep the commandments. 18 He saith unto him, Which? Jesus said, Thou shalt do no murder, Thou shalt not commit adultery, Thou shalt not steal, Thou shalt not bear false witness, 19 Honour thy father and thy mother: and, Thou shalt love thy neighbour as thyself. 20 The young man saith unto him, All these things have I kept from my youth up: what lack I yet? 21 Jesus said unto him, If thou wilt be perfect, go and sell that thou hast, and give to the poor, and thou shalt have treasure in heaven: and come and follow me. 22 But when the young man heard that saying, he went away sorrowful: for he had great possessions. 23 Then said Jesus unto his disciples, Verily I say unto you, That a rich man shall hardly enter into the kingdom of heaven. 24 And again I say unto you, It is easier for a camel to go through the eye of a needle, than for a rich man to enter into the kingdom of God. + +[Saturday 31-January, 2026](https://getbible.life/kjv/Matthew/19/16-24) diff --git a/scripture/kjv/01/31/26/scripture.tg b/scripture/kjv/01/31/26/scripture.tg new file mode 100644 index 00000000..0032dceb --- /dev/null +++ b/scripture/kjv/01/31/26/scripture.tg @@ -0,0 +1,4 @@ +Matthew 19:16-24 +16 And, behold, one came and said unto him, Good Master, what good thing shall I do, that I may have eternal life? 17 And he said unto him, Why callest thou me good? there is none good but one, that is, God: but if thou wilt enter into life, keep the commandments. 18 He saith unto him, Which? Jesus said, Thou shalt do no murder, Thou shalt not commit adultery, Thou shalt not steal, Thou shalt not bear false witness, 19 Honour thy father and thy mother: and, Thou shalt love thy neighbour as thyself. 20 The young man saith unto him, All these things have I kept from my youth up: what lack I yet? 21 Jesus said unto him, If thou wilt be perfect, go and sell that thou hast, and give to the poor, and thou shalt have treasure in heaven: and come and follow me. 22 But when the young man heard that saying, he went away sorrowful: for he had great possessions. 23 Then said Jesus unto his disciples, Verily I say unto you, That a rich man shall hardly enter into the kingdom of heaven. 24 And again I say unto you, It is easier for a camel to go through the eye of a needle, than for a rich man to enter into the kingdom of God. + +Saturday 31-January, 2026 diff --git a/scripture/kjv/01/31/26/scripture.tg.id b/scripture/kjv/01/31/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/01/31/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/01/31/26/scripture.today b/scripture/kjv/01/31/26/scripture.today new file mode 100644 index 00000000..83b7d343 --- /dev/null +++ b/scripture/kjv/01/31/26/scripture.today @@ -0,0 +1 @@ +40 19:16-24 diff --git a/scripture/kjv/02/01/23/scripture.html b/scripture/kjv/02/01/23/scripture.html new file mode 100644 index 00000000..f7e93eb9 --- /dev/null +++ b/scripture/kjv/02/01/23/scripture.html @@ -0,0 +1,3 @@ +Mark 8:34
+34 And when he had called the people unto him with his disciples also, he said unto them, Whosoever will come after me, let him deny himself, and take up his cross, and follow me.

+Wednesday 01-February, 2023 diff --git a/scripture/kjv/02/01/23/scripture.json b/scripture/kjv/02/01/23/scripture.json new file mode 100644 index 00000000..8704b32e --- /dev/null +++ b/scripture/kjv/02/01/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Wednesday 01-February, 2023", + "name": "Mark 8:34", + "scripture": [ + { + "nr": "34", + "text": "And when he had called the people unto him with his disciples also, he said unto them, Whosoever will come after me, let him deny himself, and take up his cross, and follow me." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/02/01/23/scripture.md b/scripture/kjv/02/01/23/scripture.md new file mode 100644 index 00000000..becfdb6b --- /dev/null +++ b/scripture/kjv/02/01/23/scripture.md @@ -0,0 +1,5 @@ +**Mark 8:34** + +34 And when he had called the people unto him with his disciples also, he said unto them, Whosoever will come after me, let him deny himself, and take up his cross, and follow me. + +[Wednesday 01-February, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/02/01/23/scripture.tg b/scripture/kjv/02/01/23/scripture.tg new file mode 100644 index 00000000..2efee374 --- /dev/null +++ b/scripture/kjv/02/01/23/scripture.tg @@ -0,0 +1,4 @@ +Mark 8:34 +34 And when he had called the people unto him with his disciples also, he said unto them, Whosoever will come after me, let him deny himself, and take up his cross, and follow me. + +Wednesday 01-February, 2023 diff --git a/scripture/kjv/02/01/23/scripture.today b/scripture/kjv/02/01/23/scripture.today new file mode 100644 index 00000000..c1bbaf4a --- /dev/null +++ b/scripture/kjv/02/01/23/scripture.today @@ -0,0 +1 @@ +41 8:34 diff --git a/scripture/kjv/02/01/24/scripture.html b/scripture/kjv/02/01/24/scripture.html new file mode 100644 index 00000000..d602f9f4 --- /dev/null +++ b/scripture/kjv/02/01/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 115:14
+14 The Lord shall increase you more and more, you and your children.

+Thursday 01-February, 2024 diff --git a/scripture/kjv/02/01/24/scripture.json b/scripture/kjv/02/01/24/scripture.json new file mode 100644 index 00000000..c540b6b7 --- /dev/null +++ b/scripture/kjv/02/01/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "115", + "date": "Thursday 01-February, 2024", + "getbible": "https://getbible.life/kjv/Psalms/115/14", + "name": "Psalms 115:14", + "scripture": [ + { + "nr": "14", + "text": "The Lord shall increase you more and more, you and your children." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/02/01/24/scripture.md b/scripture/kjv/02/01/24/scripture.md new file mode 100644 index 00000000..73d00acd --- /dev/null +++ b/scripture/kjv/02/01/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 115:14** + +14 The Lord shall increase you more and more, you and your children. + +[Thursday 01-February, 2024](https://getbible.life/kjv/Psalms/115/14) diff --git a/scripture/kjv/02/01/24/scripture.tg b/scripture/kjv/02/01/24/scripture.tg new file mode 100644 index 00000000..598933d3 --- /dev/null +++ b/scripture/kjv/02/01/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 115:14 +14 The Lord shall increase you more and more, you and your children. + +Thursday 01-February, 2024 diff --git a/scripture/kjv/02/01/24/scripture.tg.id b/scripture/kjv/02/01/24/scripture.tg.id new file mode 100644 index 00000000..ab6c70d8 --- /dev/null +++ b/scripture/kjv/02/01/24/scripture.tg.id @@ -0,0 +1 @@ +1217 diff --git a/scripture/kjv/02/01/24/scripture.today b/scripture/kjv/02/01/24/scripture.today new file mode 100644 index 00000000..b6fd7b1e --- /dev/null +++ b/scripture/kjv/02/01/24/scripture.today @@ -0,0 +1 @@ +19 115:14 diff --git a/scripture/kjv/02/01/25/scripture.html b/scripture/kjv/02/01/25/scripture.html new file mode 100644 index 00000000..a71ff002 --- /dev/null +++ b/scripture/kjv/02/01/25/scripture.html @@ -0,0 +1,3 @@ +Proverbs 11:30
+30 The fruit of the righteous is a tree of life; and he that winneth souls is wise.

+Saturday 01-February, 2025 diff --git a/scripture/kjv/02/01/25/scripture.json b/scripture/kjv/02/01/25/scripture.json new file mode 100644 index 00000000..e3e5dc91 --- /dev/null +++ b/scripture/kjv/02/01/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "11", + "date": "Saturday 01-February, 2025", + "getbible": "https://getbible.life/kjv/Proverbs/11/30", + "name": "Proverbs 11:30", + "scripture": [ + { + "nr": "30", + "text": "The fruit of the righteous is a tree of life; and he that winneth souls is wise." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "30", + "version": "kjv" +} diff --git a/scripture/kjv/02/01/25/scripture.md b/scripture/kjv/02/01/25/scripture.md new file mode 100644 index 00000000..e2b469fa --- /dev/null +++ b/scripture/kjv/02/01/25/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 11:30** + +30 The fruit of the righteous is a tree of life; and he that winneth souls is wise. + +[Saturday 01-February, 2025](https://getbible.life/kjv/Proverbs/11/30) diff --git a/scripture/kjv/02/01/25/scripture.tg b/scripture/kjv/02/01/25/scripture.tg new file mode 100644 index 00000000..6cfb4824 --- /dev/null +++ b/scripture/kjv/02/01/25/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 11:30 +30 The fruit of the righteous is a tree of life; and he that winneth souls is wise. + +Saturday 01-February, 2025 diff --git a/scripture/kjv/02/01/25/scripture.tg.id b/scripture/kjv/02/01/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/01/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/01/25/scripture.today b/scripture/kjv/02/01/25/scripture.today new file mode 100644 index 00000000..292993fc --- /dev/null +++ b/scripture/kjv/02/01/25/scripture.today @@ -0,0 +1 @@ +20 11:30 diff --git a/scripture/kjv/02/01/26/scripture.html b/scripture/kjv/02/01/26/scripture.html new file mode 100644 index 00000000..3ce66c5e --- /dev/null +++ b/scripture/kjv/02/01/26/scripture.html @@ -0,0 +1,3 @@ +Psalms 9:9-10
+9 The Lord also will be a refuge for the oppressed, a refuge in times of trouble. 10 And they that know thy name will put their trust in thee: for thou, Lord, hast not forsaken them that seek thee.

+Sunday 01-February, 2026 diff --git a/scripture/kjv/02/01/26/scripture.json b/scripture/kjv/02/01/26/scripture.json new file mode 100644 index 00000000..de6dee2a --- /dev/null +++ b/scripture/kjv/02/01/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Psalms", + "chapter": "9", + "date": "Sunday 01-February, 2026", + "getbible": "https://getbible.life/kjv/Psalms/9/9-10", + "name": "Psalms 9:9-10", + "scripture": [ + { + "nr": "9", + "text": "The Lord also will be a refuge for the oppressed, a refuge in times of trouble." + }, + { + "nr": "10", + "text": "And they that know thy name will put their trust in thee: for thou, Lord, hast not forsaken them that seek thee." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9-10", + "version": "kjv" +} diff --git a/scripture/kjv/02/01/26/scripture.md b/scripture/kjv/02/01/26/scripture.md new file mode 100644 index 00000000..68c66b12 --- /dev/null +++ b/scripture/kjv/02/01/26/scripture.md @@ -0,0 +1,5 @@ +**Psalms 9:9-10** + +9 The Lord also will be a refuge for the oppressed, a refuge in times of trouble. 10 And they that know thy name will put their trust in thee: for thou, Lord, hast not forsaken them that seek thee. + +[Sunday 01-February, 2026](https://getbible.life/kjv/Psalms/9/9-10) diff --git a/scripture/kjv/02/01/26/scripture.tg b/scripture/kjv/02/01/26/scripture.tg new file mode 100644 index 00000000..557e423a --- /dev/null +++ b/scripture/kjv/02/01/26/scripture.tg @@ -0,0 +1,4 @@ +Psalms 9:9-10 +9 The Lord also will be a refuge for the oppressed, a refuge in times of trouble. 10 And they that know thy name will put their trust in thee: for thou, Lord, hast not forsaken them that seek thee. + +Sunday 01-February, 2026 diff --git a/scripture/kjv/02/01/26/scripture.tg.id b/scripture/kjv/02/01/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/01/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/01/26/scripture.today b/scripture/kjv/02/01/26/scripture.today new file mode 100644 index 00000000..023531f8 --- /dev/null +++ b/scripture/kjv/02/01/26/scripture.today @@ -0,0 +1 @@ +19 9:9-10 diff --git a/scripture/kjv/02/02/23/scripture.html b/scripture/kjv/02/02/23/scripture.html new file mode 100644 index 00000000..cd929f8e --- /dev/null +++ b/scripture/kjv/02/02/23/scripture.html @@ -0,0 +1,3 @@ +James 5:1-3
+1 Go to now, ye rich men, weep and howl for your miseries that shall come upon you. 2 Your riches are corrupted, and your garments are motheaten. 3 Your gold and silver is cankered; and the rust of them shall be a witness against you, and shall eat your flesh as it were fire. Ye have heaped treasure together for the last days.

+Thursday 02-February, 2023 diff --git a/scripture/kjv/02/02/23/scripture.json b/scripture/kjv/02/02/23/scripture.json new file mode 100644 index 00000000..1fa539e8 --- /dev/null +++ b/scripture/kjv/02/02/23/scripture.json @@ -0,0 +1,21 @@ +{ + "date": "Thursday 02-February, 2023", + "name": "James 5:1-3", + "scripture": [ + { + "nr": "1", + "text": "Go to now, ye rich men, weep and howl for your miseries that shall come upon you." + }, + { + "nr": "2", + "text": "Your riches are corrupted, and your garments are motheaten." + }, + { + "nr": "3", + "text": "Your gold and silver is cankered; and the rust of them shall be a witness against you, and shall eat your flesh as it were fire. Ye have heaped treasure together for the last days." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/02/02/23/scripture.md b/scripture/kjv/02/02/23/scripture.md new file mode 100644 index 00000000..4ccdb190 --- /dev/null +++ b/scripture/kjv/02/02/23/scripture.md @@ -0,0 +1,5 @@ +**James 5:1-3** + +1 Go to now, ye rich men, weep and howl for your miseries that shall come upon you. 2 Your riches are corrupted, and your garments are motheaten. 3 Your gold and silver is cankered; and the rust of them shall be a witness against you, and shall eat your flesh as it were fire. Ye have heaped treasure together for the last days. + +[Thursday 02-February, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/02/02/23/scripture.tg b/scripture/kjv/02/02/23/scripture.tg new file mode 100644 index 00000000..3e834103 --- /dev/null +++ b/scripture/kjv/02/02/23/scripture.tg @@ -0,0 +1,4 @@ +James 5:1-3 +1 Go to now, ye rich men, weep and howl for your miseries that shall come upon you. 2 Your riches are corrupted, and your garments are motheaten. 3 Your gold and silver is cankered; and the rust of them shall be a witness against you, and shall eat your flesh as it were fire. Ye have heaped treasure together for the last days. + +Thursday 02-February, 2023 diff --git a/scripture/kjv/02/02/23/scripture.today b/scripture/kjv/02/02/23/scripture.today new file mode 100644 index 00000000..ccc6d95a --- /dev/null +++ b/scripture/kjv/02/02/23/scripture.today @@ -0,0 +1 @@ +59 5:1-3 diff --git a/scripture/kjv/02/02/24/scripture.html b/scripture/kjv/02/02/24/scripture.html new file mode 100644 index 00000000..c0ee0633 --- /dev/null +++ b/scripture/kjv/02/02/24/scripture.html @@ -0,0 +1,3 @@ +Revelation 1:7
+7 Behold, he cometh with clouds; and every eye shall see him, and they also which pierced him: and all kindreds of the earth shall wail because of him. Even so, Amen.

+Friday 02-February, 2024 diff --git a/scripture/kjv/02/02/24/scripture.json b/scripture/kjv/02/02/24/scripture.json new file mode 100644 index 00000000..020bcd9e --- /dev/null +++ b/scripture/kjv/02/02/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Revelation", + "chapter": "1", + "date": "Friday 02-February, 2024", + "getbible": "https://getbible.life/kjv/Revelation/1/7", + "name": "Revelation 1:7", + "scripture": [ + { + "nr": "7", + "text": "Behold, he cometh with clouds; and every eye shall see him, and they also which pierced him: and all kindreds of the earth shall wail because of him. Even so, Amen." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7", + "version": "kjv" +} diff --git a/scripture/kjv/02/02/24/scripture.md b/scripture/kjv/02/02/24/scripture.md new file mode 100644 index 00000000..a3c0e46a --- /dev/null +++ b/scripture/kjv/02/02/24/scripture.md @@ -0,0 +1,5 @@ +**Revelation 1:7** + +7 Behold, he cometh with clouds; and every eye shall see him, and they also which pierced him: and all kindreds of the earth shall wail because of him. Even so, Amen. + +[Friday 02-February, 2024](https://getbible.life/kjv/Revelation/1/7) diff --git a/scripture/kjv/02/02/24/scripture.tg b/scripture/kjv/02/02/24/scripture.tg new file mode 100644 index 00000000..447ac369 --- /dev/null +++ b/scripture/kjv/02/02/24/scripture.tg @@ -0,0 +1,4 @@ +Revelation 1:7 +7 Behold, he cometh with clouds; and every eye shall see him, and they also which pierced him: and all kindreds of the earth shall wail because of him. Even so, Amen. + +Friday 02-February, 2024 diff --git a/scripture/kjv/02/02/24/scripture.tg.id b/scripture/kjv/02/02/24/scripture.tg.id new file mode 100644 index 00000000..5cc3b964 --- /dev/null +++ b/scripture/kjv/02/02/24/scripture.tg.id @@ -0,0 +1 @@ +1218 diff --git a/scripture/kjv/02/02/24/scripture.today b/scripture/kjv/02/02/24/scripture.today new file mode 100644 index 00000000..27b058eb --- /dev/null +++ b/scripture/kjv/02/02/24/scripture.today @@ -0,0 +1 @@ +66 1:7 diff --git a/scripture/kjv/02/02/25/scripture.html b/scripture/kjv/02/02/25/scripture.html new file mode 100644 index 00000000..bf3bd6b0 --- /dev/null +++ b/scripture/kjv/02/02/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 92:5
+5 O Lord, how great are thy works! and thy thoughts are very deep.

+Sunday 02-February, 2025 diff --git a/scripture/kjv/02/02/25/scripture.json b/scripture/kjv/02/02/25/scripture.json new file mode 100644 index 00000000..2a2c4f8d --- /dev/null +++ b/scripture/kjv/02/02/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "92", + "date": "Sunday 02-February, 2025", + "getbible": "https://getbible.life/kjv/Psalms/92/5", + "name": "Psalms 92:5", + "scripture": [ + { + "nr": "5", + "text": "O Lord, how great are thy works! and thy thoughts are very deep." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5", + "version": "kjv" +} diff --git a/scripture/kjv/02/02/25/scripture.md b/scripture/kjv/02/02/25/scripture.md new file mode 100644 index 00000000..5c0c94e7 --- /dev/null +++ b/scripture/kjv/02/02/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 92:5** + +5 O Lord, how great are thy works! and thy thoughts are very deep. + +[Sunday 02-February, 2025](https://getbible.life/kjv/Psalms/92/5) diff --git a/scripture/kjv/02/02/25/scripture.tg b/scripture/kjv/02/02/25/scripture.tg new file mode 100644 index 00000000..f62d8c9b --- /dev/null +++ b/scripture/kjv/02/02/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 92:5 +5 O Lord, how great are thy works! and thy thoughts are very deep. + +Sunday 02-February, 2025 diff --git a/scripture/kjv/02/02/25/scripture.tg.id b/scripture/kjv/02/02/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/02/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/02/25/scripture.today b/scripture/kjv/02/02/25/scripture.today new file mode 100644 index 00000000..12cfc2d6 --- /dev/null +++ b/scripture/kjv/02/02/25/scripture.today @@ -0,0 +1 @@ +19 92:5 diff --git a/scripture/kjv/02/02/26/scripture.html b/scripture/kjv/02/02/26/scripture.html new file mode 100644 index 00000000..7078a7c8 --- /dev/null +++ b/scripture/kjv/02/02/26/scripture.html @@ -0,0 +1,3 @@ +Galatians 3:28
+28 There is neither Jew nor Greek, there is neither bond nor free, there is neither male nor female: for ye are all one in Christ Jesus.

+Monday 02-February, 2026 diff --git a/scripture/kjv/02/02/26/scripture.json b/scripture/kjv/02/02/26/scripture.json new file mode 100644 index 00000000..236fd950 --- /dev/null +++ b/scripture/kjv/02/02/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Galatians", + "chapter": "3", + "date": "Monday 02-February, 2026", + "getbible": "https://getbible.life/kjv/Galatians/3/28", + "name": "Galatians 3:28", + "scripture": [ + { + "nr": "28", + "text": "There is neither Jew nor Greek, there is neither bond nor free, there is neither male nor female: for ye are all one in Christ Jesus." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "28", + "version": "kjv" +} diff --git a/scripture/kjv/02/02/26/scripture.md b/scripture/kjv/02/02/26/scripture.md new file mode 100644 index 00000000..2821dded --- /dev/null +++ b/scripture/kjv/02/02/26/scripture.md @@ -0,0 +1,5 @@ +**Galatians 3:28** + +28 There is neither Jew nor Greek, there is neither bond nor free, there is neither male nor female: for ye are all one in Christ Jesus. + +[Monday 02-February, 2026](https://getbible.life/kjv/Galatians/3/28) diff --git a/scripture/kjv/02/02/26/scripture.tg b/scripture/kjv/02/02/26/scripture.tg new file mode 100644 index 00000000..bf2ef457 --- /dev/null +++ b/scripture/kjv/02/02/26/scripture.tg @@ -0,0 +1,4 @@ +Galatians 3:28 +28 There is neither Jew nor Greek, there is neither bond nor free, there is neither male nor female: for ye are all one in Christ Jesus. + +Monday 02-February, 2026 diff --git a/scripture/kjv/02/02/26/scripture.today b/scripture/kjv/02/02/26/scripture.today new file mode 100644 index 00000000..1d54a358 --- /dev/null +++ b/scripture/kjv/02/02/26/scripture.today @@ -0,0 +1 @@ +48 3:28 diff --git a/scripture/kjv/02/03/23/scripture.html b/scripture/kjv/02/03/23/scripture.html new file mode 100644 index 00000000..a7b4651b --- /dev/null +++ b/scripture/kjv/02/03/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 21:28
+28 A false witness shall perish: but the man that heareth speaketh constantly.

+Friday 03-February, 2023 diff --git a/scripture/kjv/02/03/23/scripture.json b/scripture/kjv/02/03/23/scripture.json new file mode 100644 index 00000000..4a8a92c6 --- /dev/null +++ b/scripture/kjv/02/03/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Friday 03-February, 2023", + "name": "Proverbs 21:28", + "scripture": [ + { + "nr": "28", + "text": "A false witness shall perish: but the man that heareth speaketh constantly." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/02/03/23/scripture.md b/scripture/kjv/02/03/23/scripture.md new file mode 100644 index 00000000..7249710c --- /dev/null +++ b/scripture/kjv/02/03/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 21:28** + +28 A false witness shall perish: but the man that heareth speaketh constantly. + +[Friday 03-February, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/02/03/23/scripture.tg b/scripture/kjv/02/03/23/scripture.tg new file mode 100644 index 00000000..d313bae1 --- /dev/null +++ b/scripture/kjv/02/03/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 21:28 +28 A false witness shall perish: but the man that heareth speaketh constantly. + +Friday 03-February, 2023 diff --git a/scripture/kjv/02/03/23/scripture.today b/scripture/kjv/02/03/23/scripture.today new file mode 100644 index 00000000..42f2be14 --- /dev/null +++ b/scripture/kjv/02/03/23/scripture.today @@ -0,0 +1 @@ +20 21:28 diff --git a/scripture/kjv/02/03/24/scripture.html b/scripture/kjv/02/03/24/scripture.html new file mode 100644 index 00000000..c183bcfa --- /dev/null +++ b/scripture/kjv/02/03/24/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 6:2
+2 (For he saith, I have heard thee in a time accepted, and in the day of salvation have I succoured thee: behold, now is the accepted time; behold, now is the day of salvation.)

+Saturday 03-February, 2024 diff --git a/scripture/kjv/02/03/24/scripture.json b/scripture/kjv/02/03/24/scripture.json new file mode 100644 index 00000000..71e6b106 --- /dev/null +++ b/scripture/kjv/02/03/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "6", + "date": "Saturday 03-February, 2024", + "getbible": "https://getbible.life/kjv/2 Corinthians/6/2", + "name": "2 Corinthians 6:2", + "scripture": [ + { + "nr": "2", + "text": "(For he saith, I have heard thee in a time accepted, and in the day of salvation have I succoured thee: behold, now is the accepted time; behold, now is the day of salvation.)" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "2", + "version": "kjv" +} diff --git a/scripture/kjv/02/03/24/scripture.md b/scripture/kjv/02/03/24/scripture.md new file mode 100644 index 00000000..2a165f55 --- /dev/null +++ b/scripture/kjv/02/03/24/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 6:2** + +2 (For he saith, I have heard thee in a time accepted, and in the day of salvation have I succoured thee: behold, now is the accepted time; behold, now is the day of salvation.) + +[Saturday 03-February, 2024](https://getbible.life/kjv/2 Corinthians/6/2) diff --git a/scripture/kjv/02/03/24/scripture.tg b/scripture/kjv/02/03/24/scripture.tg new file mode 100644 index 00000000..fda4d367 --- /dev/null +++ b/scripture/kjv/02/03/24/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 6:2 +2 (For he saith, I have heard thee in a time accepted, and in the day of salvation have I succoured thee: behold, now is the accepted time; behold, now is the day of salvation.) + +Saturday 03-February, 2024 diff --git a/scripture/kjv/02/03/24/scripture.tg.id b/scripture/kjv/02/03/24/scripture.tg.id new file mode 100644 index 00000000..9e3410c0 --- /dev/null +++ b/scripture/kjv/02/03/24/scripture.tg.id @@ -0,0 +1 @@ +1219 diff --git a/scripture/kjv/02/03/24/scripture.today b/scripture/kjv/02/03/24/scripture.today new file mode 100644 index 00000000..0c4e4a05 --- /dev/null +++ b/scripture/kjv/02/03/24/scripture.today @@ -0,0 +1 @@ +47 6:2 diff --git a/scripture/kjv/02/03/25/scripture.html b/scripture/kjv/02/03/25/scripture.html new file mode 100644 index 00000000..93114c69 --- /dev/null +++ b/scripture/kjv/02/03/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 51:6
+6 Behold, thou desirest truth in the inward parts: and in the hidden part thou shalt make me to know wisdom.

+Monday 03-February, 2025 diff --git a/scripture/kjv/02/03/25/scripture.json b/scripture/kjv/02/03/25/scripture.json new file mode 100644 index 00000000..9f17001b --- /dev/null +++ b/scripture/kjv/02/03/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "51", + "date": "Monday 03-February, 2025", + "getbible": "https://getbible.life/kjv/Psalms/51/6", + "name": "Psalms 51:6", + "scripture": [ + { + "nr": "6", + "text": "Behold, thou desirest truth in the inward parts: and in the hidden part thou shalt make me to know wisdom." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6", + "version": "kjv" +} diff --git a/scripture/kjv/02/03/25/scripture.md b/scripture/kjv/02/03/25/scripture.md new file mode 100644 index 00000000..39ced77c --- /dev/null +++ b/scripture/kjv/02/03/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 51:6** + +6 Behold, thou desirest truth in the inward parts: and in the hidden part thou shalt make me to know wisdom. + +[Monday 03-February, 2025](https://getbible.life/kjv/Psalms/51/6) diff --git a/scripture/kjv/02/03/25/scripture.tg b/scripture/kjv/02/03/25/scripture.tg new file mode 100644 index 00000000..22da8300 --- /dev/null +++ b/scripture/kjv/02/03/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 51:6 +6 Behold, thou desirest truth in the inward parts: and in the hidden part thou shalt make me to know wisdom. + +Monday 03-February, 2025 diff --git a/scripture/kjv/02/03/25/scripture.tg.id b/scripture/kjv/02/03/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/03/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/03/25/scripture.today b/scripture/kjv/02/03/25/scripture.today new file mode 100644 index 00000000..412f9a7e --- /dev/null +++ b/scripture/kjv/02/03/25/scripture.today @@ -0,0 +1 @@ +19 51:6 diff --git a/scripture/kjv/02/03/26/scripture.tg.id b/scripture/kjv/02/03/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/03/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/04/23/scripture.html b/scripture/kjv/02/04/23/scripture.html new file mode 100644 index 00000000..146d0f39 --- /dev/null +++ b/scripture/kjv/02/04/23/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 16:22
+22 If any man love not the Lord Jesus Christ, let him be Anathema Maranatha.

+Saturday 04-February, 2023 diff --git a/scripture/kjv/02/04/23/scripture.json b/scripture/kjv/02/04/23/scripture.json new file mode 100644 index 00000000..e1147a08 --- /dev/null +++ b/scripture/kjv/02/04/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Saturday 04-February, 2023", + "name": "1 Corinthians 16:22", + "scripture": [ + { + "nr": "22", + "text": "If any man love not the Lord Jesus Christ, let him be Anathema Maranatha." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/02/04/23/scripture.md b/scripture/kjv/02/04/23/scripture.md new file mode 100644 index 00000000..b29aa673 --- /dev/null +++ b/scripture/kjv/02/04/23/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 16:22** + +22 If any man love not the Lord Jesus Christ, let him be Anathema Maranatha. + +[Saturday 04-February, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/02/04/23/scripture.tg b/scripture/kjv/02/04/23/scripture.tg new file mode 100644 index 00000000..2de72af7 --- /dev/null +++ b/scripture/kjv/02/04/23/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 16:22 +22 If any man love not the Lord Jesus Christ, let him be Anathema Maranatha. + +Saturday 04-February, 2023 diff --git a/scripture/kjv/02/04/23/scripture.today b/scripture/kjv/02/04/23/scripture.today new file mode 100644 index 00000000..bfddc833 --- /dev/null +++ b/scripture/kjv/02/04/23/scripture.today @@ -0,0 +1 @@ +46 16:22 diff --git a/scripture/kjv/02/04/24/scripture.html b/scripture/kjv/02/04/24/scripture.html new file mode 100644 index 00000000..8c739a43 --- /dev/null +++ b/scripture/kjv/02/04/24/scripture.html @@ -0,0 +1,3 @@ +Job 27:5-6
+5 God forbid that I should justify you: till I die I will not remove mine integrity from me. 6 My righteousness I hold fast, and will not let it go: my heart shall not reproach me so long as I live.

+Sunday 04-February, 2024 diff --git a/scripture/kjv/02/04/24/scripture.json b/scripture/kjv/02/04/24/scripture.json new file mode 100644 index 00000000..2cc6fe2e --- /dev/null +++ b/scripture/kjv/02/04/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Job", + "chapter": "27", + "date": "Sunday 04-February, 2024", + "getbible": "https://getbible.life/kjv/Job/27/5-6", + "name": "Job 27:5-6", + "scripture": [ + { + "nr": "5", + "text": "God forbid that I should justify you: till I die I will not remove mine integrity from me." + }, + { + "nr": "6", + "text": "My righteousness I hold fast, and will not let it go: my heart shall not reproach me so long as I live." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5-6", + "version": "kjv" +} diff --git a/scripture/kjv/02/04/24/scripture.md b/scripture/kjv/02/04/24/scripture.md new file mode 100644 index 00000000..e806ffa1 --- /dev/null +++ b/scripture/kjv/02/04/24/scripture.md @@ -0,0 +1,5 @@ +**Job 27:5-6** + +5 God forbid that I should justify you: till I die I will not remove mine integrity from me. 6 My righteousness I hold fast, and will not let it go: my heart shall not reproach me so long as I live. + +[Sunday 04-February, 2024](https://getbible.life/kjv/Job/27/5-6) diff --git a/scripture/kjv/02/04/24/scripture.tg b/scripture/kjv/02/04/24/scripture.tg new file mode 100644 index 00000000..d056729f --- /dev/null +++ b/scripture/kjv/02/04/24/scripture.tg @@ -0,0 +1,4 @@ +Job 27:5-6 +5 God forbid that I should justify you: till I die I will not remove mine integrity from me. 6 My righteousness I hold fast, and will not let it go: my heart shall not reproach me so long as I live. + +Sunday 04-February, 2024 diff --git a/scripture/kjv/02/04/24/scripture.tg.id b/scripture/kjv/02/04/24/scripture.tg.id new file mode 100644 index 00000000..15186126 --- /dev/null +++ b/scripture/kjv/02/04/24/scripture.tg.id @@ -0,0 +1 @@ +1220 diff --git a/scripture/kjv/02/04/24/scripture.today b/scripture/kjv/02/04/24/scripture.today new file mode 100644 index 00000000..11d02ffb --- /dev/null +++ b/scripture/kjv/02/04/24/scripture.today @@ -0,0 +1 @@ +18 27:5-6 diff --git a/scripture/kjv/02/04/25/scripture.html b/scripture/kjv/02/04/25/scripture.html new file mode 100644 index 00000000..e3e5d25a --- /dev/null +++ b/scripture/kjv/02/04/25/scripture.html @@ -0,0 +1,3 @@ +Mark 1:35
+35 And in the morning, rising up a great while before day, he went out, and departed into a solitary place, and there prayed.

+Tuesday 04-February, 2025 diff --git a/scripture/kjv/02/04/25/scripture.json b/scripture/kjv/02/04/25/scripture.json new file mode 100644 index 00000000..0131627f --- /dev/null +++ b/scripture/kjv/02/04/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Mark", + "chapter": "1", + "date": "Tuesday 04-February, 2025", + "getbible": "https://getbible.life/kjv/Mark/1/35", + "name": "Mark 1:35", + "scripture": [ + { + "nr": "35", + "text": "And in the morning, rising up a great while before day, he went out, and departed into a solitary place, and there prayed." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "35", + "version": "kjv" +} diff --git a/scripture/kjv/02/04/25/scripture.md b/scripture/kjv/02/04/25/scripture.md new file mode 100644 index 00000000..83e0c50e --- /dev/null +++ b/scripture/kjv/02/04/25/scripture.md @@ -0,0 +1,5 @@ +**Mark 1:35** + +35 And in the morning, rising up a great while before day, he went out, and departed into a solitary place, and there prayed. + +[Tuesday 04-February, 2025](https://getbible.life/kjv/Mark/1/35) diff --git a/scripture/kjv/02/04/25/scripture.tg b/scripture/kjv/02/04/25/scripture.tg new file mode 100644 index 00000000..ff624a1d --- /dev/null +++ b/scripture/kjv/02/04/25/scripture.tg @@ -0,0 +1,4 @@ +Mark 1:35 +35 And in the morning, rising up a great while before day, he went out, and departed into a solitary place, and there prayed. + +Tuesday 04-February, 2025 diff --git a/scripture/kjv/02/04/25/scripture.tg.id b/scripture/kjv/02/04/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/04/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/04/25/scripture.today b/scripture/kjv/02/04/25/scripture.today new file mode 100644 index 00000000..5d35dc56 --- /dev/null +++ b/scripture/kjv/02/04/25/scripture.today @@ -0,0 +1 @@ +41 1:35 diff --git a/scripture/kjv/02/04/26/scripture.html b/scripture/kjv/02/04/26/scripture.html new file mode 100644 index 00000000..dd6e0f61 --- /dev/null +++ b/scripture/kjv/02/04/26/scripture.html @@ -0,0 +1,3 @@ +Romans 11:3-5
+3 Lord, they have killed thy prophets, and digged down thine altars; and I am left alone, and they seek my life. 4 But what saith the answer of God unto him? I have reserved to myself seven thousand men, who have not bowed the knee to the image of Baal. 5 Even so then at this present time also there is a remnant according to the election of grace.

+Wednesday 04-February, 2026 diff --git a/scripture/kjv/02/04/26/scripture.json b/scripture/kjv/02/04/26/scripture.json new file mode 100644 index 00000000..fe65835e --- /dev/null +++ b/scripture/kjv/02/04/26/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Romans", + "chapter": "11", + "date": "Wednesday 04-February, 2026", + "getbible": "https://getbible.life/kjv/Romans/11/3-5", + "name": "Romans 11:3-5", + "scripture": [ + { + "nr": "3", + "text": "Lord, they have killed thy prophets, and digged down thine altars; and I am left alone, and they seek my life." + }, + { + "nr": "4", + "text": "But what saith the answer of God unto him? I have reserved to myself seven thousand men, who have not bowed the knee to the image of Baal." + }, + { + "nr": "5", + "text": "Even so then at this present time also there is a remnant according to the election of grace." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3-5", + "version": "kjv" +} diff --git a/scripture/kjv/02/04/26/scripture.md b/scripture/kjv/02/04/26/scripture.md new file mode 100644 index 00000000..370a6711 --- /dev/null +++ b/scripture/kjv/02/04/26/scripture.md @@ -0,0 +1,5 @@ +**Romans 11:3-5** + +3 Lord, they have killed thy prophets, and digged down thine altars; and I am left alone, and they seek my life. 4 But what saith the answer of God unto him? I have reserved to myself seven thousand men, who have not bowed the knee to the image of Baal. 5 Even so then at this present time also there is a remnant according to the election of grace. + +[Wednesday 04-February, 2026](https://getbible.life/kjv/Romans/11/3-5) diff --git a/scripture/kjv/02/04/26/scripture.tg b/scripture/kjv/02/04/26/scripture.tg new file mode 100644 index 00000000..1fe3e714 --- /dev/null +++ b/scripture/kjv/02/04/26/scripture.tg @@ -0,0 +1,4 @@ +Romans 11:3-5 +3 Lord, they have killed thy prophets, and digged down thine altars; and I am left alone, and they seek my life. 4 But what saith the answer of God unto him? I have reserved to myself seven thousand men, who have not bowed the knee to the image of Baal. 5 Even so then at this present time also there is a remnant according to the election of grace. + +Wednesday 04-February, 2026 diff --git a/scripture/kjv/02/04/26/scripture.tg.id b/scripture/kjv/02/04/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/04/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/04/26/scripture.today b/scripture/kjv/02/04/26/scripture.today new file mode 100644 index 00000000..6d908160 --- /dev/null +++ b/scripture/kjv/02/04/26/scripture.today @@ -0,0 +1 @@ +45 11:3-5 diff --git a/scripture/kjv/02/05/23/scripture.html b/scripture/kjv/02/05/23/scripture.html new file mode 100644 index 00000000..17c4ff67 --- /dev/null +++ b/scripture/kjv/02/05/23/scripture.html @@ -0,0 +1,3 @@ +Isaiah 1:26-27
+26 And I will restore thy judges as at the first, and thy counsellors as at the beginning: afterward thou shalt be called, The city of righteousness, the faithful city. 27 Zion shall be redeemed with judgment, and her converts with righteousness.

+Sunday 05-February, 2023 diff --git a/scripture/kjv/02/05/23/scripture.json b/scripture/kjv/02/05/23/scripture.json new file mode 100644 index 00000000..26560e10 --- /dev/null +++ b/scripture/kjv/02/05/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Sunday 05-February, 2023", + "name": "Isaiah 1:26-27", + "scripture": [ + { + "nr": "26", + "text": "And I will restore thy judges as at the first, and thy counsellors as at the beginning: afterward thou shalt be called, The city of righteousness, the faithful city." + }, + { + "nr": "27", + "text": "Zion shall be redeemed with judgment, and her converts with righteousness." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/02/05/23/scripture.md b/scripture/kjv/02/05/23/scripture.md new file mode 100644 index 00000000..445921d4 --- /dev/null +++ b/scripture/kjv/02/05/23/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 1:26-27** + +26 And I will restore thy judges as at the first, and thy counsellors as at the beginning: afterward thou shalt be called, The city of righteousness, the faithful city. 27 Zion shall be redeemed with judgment, and her converts with righteousness. + +[Sunday 05-February, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/02/05/23/scripture.tg b/scripture/kjv/02/05/23/scripture.tg new file mode 100644 index 00000000..3147ac92 --- /dev/null +++ b/scripture/kjv/02/05/23/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 1:26-27 +26 And I will restore thy judges as at the first, and thy counsellors as at the beginning: afterward thou shalt be called, The city of righteousness, the faithful city. 27 Zion shall be redeemed with judgment, and her converts with righteousness. + +Sunday 05-February, 2023 diff --git a/scripture/kjv/02/05/23/scripture.today b/scripture/kjv/02/05/23/scripture.today new file mode 100644 index 00000000..131e3ba0 --- /dev/null +++ b/scripture/kjv/02/05/23/scripture.today @@ -0,0 +1 @@ +23 1:26-27 diff --git a/scripture/kjv/02/05/24/scripture.html b/scripture/kjv/02/05/24/scripture.html new file mode 100644 index 00000000..e91ba7b7 --- /dev/null +++ b/scripture/kjv/02/05/24/scripture.html @@ -0,0 +1,3 @@ +Hebrews 4:11
+11 Let us labour therefore to enter into that rest, lest any man fall after the same example of unbelief.

+Monday 05-February, 2024 diff --git a/scripture/kjv/02/05/24/scripture.json b/scripture/kjv/02/05/24/scripture.json new file mode 100644 index 00000000..9a01bd57 --- /dev/null +++ b/scripture/kjv/02/05/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Hebrews", + "chapter": "4", + "date": "Monday 05-February, 2024", + "getbible": "https://getbible.life/kjv/Hebrews/4/11", + "name": "Hebrews 4:11", + "scripture": [ + { + "nr": "11", + "text": "Let us labour therefore to enter into that rest, lest any man fall after the same example of unbelief." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/02/05/24/scripture.md b/scripture/kjv/02/05/24/scripture.md new file mode 100644 index 00000000..0809b866 --- /dev/null +++ b/scripture/kjv/02/05/24/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 4:11** + +11 Let us labour therefore to enter into that rest, lest any man fall after the same example of unbelief. + +[Monday 05-February, 2024](https://getbible.life/kjv/Hebrews/4/11) diff --git a/scripture/kjv/02/05/24/scripture.tg b/scripture/kjv/02/05/24/scripture.tg new file mode 100644 index 00000000..fa69f266 --- /dev/null +++ b/scripture/kjv/02/05/24/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 4:11 +11 Let us labour therefore to enter into that rest, lest any man fall after the same example of unbelief. + +Monday 05-February, 2024 diff --git a/scripture/kjv/02/05/24/scripture.tg.id b/scripture/kjv/02/05/24/scripture.tg.id new file mode 100644 index 00000000..3acca38a --- /dev/null +++ b/scripture/kjv/02/05/24/scripture.tg.id @@ -0,0 +1 @@ +1221 diff --git a/scripture/kjv/02/05/24/scripture.today b/scripture/kjv/02/05/24/scripture.today new file mode 100644 index 00000000..a04ad96d --- /dev/null +++ b/scripture/kjv/02/05/24/scripture.today @@ -0,0 +1 @@ +58 4:11 diff --git a/scripture/kjv/02/05/25/scripture.html b/scripture/kjv/02/05/25/scripture.html new file mode 100644 index 00000000..003d46c4 --- /dev/null +++ b/scripture/kjv/02/05/25/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 7:8
+8 I say therefore to the unmarried and widows, It is good for them if they abide even as I.

+Wednesday 05-February, 2025 diff --git a/scripture/kjv/02/05/25/scripture.json b/scripture/kjv/02/05/25/scripture.json new file mode 100644 index 00000000..27f856b5 --- /dev/null +++ b/scripture/kjv/02/05/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "7", + "date": "Wednesday 05-February, 2025", + "getbible": "https://getbible.life/kjv/1 Corinthians/7/8", + "name": "1 Corinthians 7:8", + "scripture": [ + { + "nr": "8", + "text": "I say therefore to the unmarried and widows, It is good for them if they abide even as I." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8", + "version": "kjv" +} diff --git a/scripture/kjv/02/05/25/scripture.md b/scripture/kjv/02/05/25/scripture.md new file mode 100644 index 00000000..411c06ec --- /dev/null +++ b/scripture/kjv/02/05/25/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 7:8** + +8 I say therefore to the unmarried and widows, It is good for them if they abide even as I. + +[Wednesday 05-February, 2025](https://getbible.life/kjv/1 Corinthians/7/8) diff --git a/scripture/kjv/02/05/25/scripture.tg b/scripture/kjv/02/05/25/scripture.tg new file mode 100644 index 00000000..8eb69f45 --- /dev/null +++ b/scripture/kjv/02/05/25/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 7:8 +8 I say therefore to the unmarried and widows, It is good for them if they abide even as I. + +Wednesday 05-February, 2025 diff --git a/scripture/kjv/02/05/25/scripture.tg.id b/scripture/kjv/02/05/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/05/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/05/25/scripture.today b/scripture/kjv/02/05/25/scripture.today new file mode 100644 index 00000000..57f3c878 --- /dev/null +++ b/scripture/kjv/02/05/25/scripture.today @@ -0,0 +1 @@ +46 7:8 diff --git a/scripture/kjv/02/05/26/scripture.html b/scripture/kjv/02/05/26/scripture.html new file mode 100644 index 00000000..6c3b85f3 --- /dev/null +++ b/scripture/kjv/02/05/26/scripture.html @@ -0,0 +1,3 @@ +Proverbs 17:17
+17 A friend loveth at all times, and a brother is born for adversity.

+Thursday 05-February, 2026 diff --git a/scripture/kjv/02/05/26/scripture.json b/scripture/kjv/02/05/26/scripture.json new file mode 100644 index 00000000..47b70914 --- /dev/null +++ b/scripture/kjv/02/05/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "17", + "date": "Thursday 05-February, 2026", + "getbible": "https://getbible.life/kjv/Proverbs/17/17", + "name": "Proverbs 17:17", + "scripture": [ + { + "nr": "17", + "text": "A friend loveth at all times, and a brother is born for adversity." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17", + "version": "kjv" +} diff --git a/scripture/kjv/02/05/26/scripture.md b/scripture/kjv/02/05/26/scripture.md new file mode 100644 index 00000000..01a1abef --- /dev/null +++ b/scripture/kjv/02/05/26/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 17:17** + +17 A friend loveth at all times, and a brother is born for adversity. + +[Thursday 05-February, 2026](https://getbible.life/kjv/Proverbs/17/17) diff --git a/scripture/kjv/02/05/26/scripture.tg b/scripture/kjv/02/05/26/scripture.tg new file mode 100644 index 00000000..a8e497f8 --- /dev/null +++ b/scripture/kjv/02/05/26/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 17:17 +17 A friend loveth at all times, and a brother is born for adversity. + +Thursday 05-February, 2026 diff --git a/scripture/kjv/02/05/26/scripture.tg.id b/scripture/kjv/02/05/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/05/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/05/26/scripture.today b/scripture/kjv/02/05/26/scripture.today new file mode 100644 index 00000000..060865cb --- /dev/null +++ b/scripture/kjv/02/05/26/scripture.today @@ -0,0 +1 @@ +20 17:17 diff --git a/scripture/kjv/02/06/23/scripture.html b/scripture/kjv/02/06/23/scripture.html new file mode 100644 index 00000000..186b6aa2 --- /dev/null +++ b/scripture/kjv/02/06/23/scripture.html @@ -0,0 +1,3 @@ +Philippians 4:4
+4 Rejoice in the Lord alway: and again I say, Rejoice.

+Monday 06-February, 2023 diff --git a/scripture/kjv/02/06/23/scripture.json b/scripture/kjv/02/06/23/scripture.json new file mode 100644 index 00000000..11e4ae27 --- /dev/null +++ b/scripture/kjv/02/06/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Monday 06-February, 2023", + "name": "Philippians 4:4", + "scripture": [ + { + "nr": "4", + "text": "Rejoice in the Lord alway: and again I say, Rejoice." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/02/06/23/scripture.md b/scripture/kjv/02/06/23/scripture.md new file mode 100644 index 00000000..0a6694a7 --- /dev/null +++ b/scripture/kjv/02/06/23/scripture.md @@ -0,0 +1,5 @@ +**Philippians 4:4** + +4 Rejoice in the Lord alway: and again I say, Rejoice. + +[Monday 06-February, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/02/06/23/scripture.tg b/scripture/kjv/02/06/23/scripture.tg new file mode 100644 index 00000000..9d989edf --- /dev/null +++ b/scripture/kjv/02/06/23/scripture.tg @@ -0,0 +1,4 @@ +Philippians 4:4 +4 Rejoice in the Lord alway: and again I say, Rejoice. + +Monday 06-February, 2023 diff --git a/scripture/kjv/02/06/23/scripture.today b/scripture/kjv/02/06/23/scripture.today new file mode 100644 index 00000000..9bab6fe7 --- /dev/null +++ b/scripture/kjv/02/06/23/scripture.today @@ -0,0 +1 @@ +50 4:4 diff --git a/scripture/kjv/02/06/24/scripture.html b/scripture/kjv/02/06/24/scripture.html new file mode 100644 index 00000000..72ee5611 --- /dev/null +++ b/scripture/kjv/02/06/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 3:1-2
+1 My son, forget not my law; but let thine heart keep my commandments: 2 For length of days, and long life, and peace, shall they add to thee.

+Tuesday 06-February, 2024 diff --git a/scripture/kjv/02/06/24/scripture.json b/scripture/kjv/02/06/24/scripture.json new file mode 100644 index 00000000..ac77c632 --- /dev/null +++ b/scripture/kjv/02/06/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Proverbs", + "chapter": "3", + "date": "Tuesday 06-February, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/3/1-2", + "name": "Proverbs 3:1-2", + "scripture": [ + { + "nr": "1", + "text": "My son, forget not my law; but let thine heart keep my commandments:" + }, + { + "nr": "2", + "text": "For length of days, and long life, and peace, shall they add to thee." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-2", + "version": "kjv" +} diff --git a/scripture/kjv/02/06/24/scripture.md b/scripture/kjv/02/06/24/scripture.md new file mode 100644 index 00000000..422a3043 --- /dev/null +++ b/scripture/kjv/02/06/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 3:1-2** + +1 My son, forget not my law; but let thine heart keep my commandments: 2 For length of days, and long life, and peace, shall they add to thee. + +[Tuesday 06-February, 2024](https://getbible.life/kjv/Proverbs/3/1-2) diff --git a/scripture/kjv/02/06/24/scripture.tg b/scripture/kjv/02/06/24/scripture.tg new file mode 100644 index 00000000..8036649e --- /dev/null +++ b/scripture/kjv/02/06/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 3:1-2 +1 My son, forget not my law; but let thine heart keep my commandments: 2 For length of days, and long life, and peace, shall they add to thee. + +Tuesday 06-February, 2024 diff --git a/scripture/kjv/02/06/24/scripture.tg.id b/scripture/kjv/02/06/24/scripture.tg.id new file mode 100644 index 00000000..9d63033f --- /dev/null +++ b/scripture/kjv/02/06/24/scripture.tg.id @@ -0,0 +1 @@ +1222 diff --git a/scripture/kjv/02/06/24/scripture.today b/scripture/kjv/02/06/24/scripture.today new file mode 100644 index 00000000..c79b2782 --- /dev/null +++ b/scripture/kjv/02/06/24/scripture.today @@ -0,0 +1 @@ +20 3:1-2 diff --git a/scripture/kjv/02/06/25/scripture.html b/scripture/kjv/02/06/25/scripture.html new file mode 100644 index 00000000..95e2bb72 --- /dev/null +++ b/scripture/kjv/02/06/25/scripture.html @@ -0,0 +1,3 @@ +1 John 1:7-8
+7 But if we walk in the light, as he is in the light, we have fellowship one with another, and the blood of Jesus Christ his Son cleanseth us from all sin. 8 If we say that we have no sin, we deceive ourselves, and the truth is not in us.

+Thursday 06-February, 2025 diff --git a/scripture/kjv/02/06/25/scripture.json b/scripture/kjv/02/06/25/scripture.json new file mode 100644 index 00000000..3dcb8ed1 --- /dev/null +++ b/scripture/kjv/02/06/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "1 John", + "chapter": "1", + "date": "Thursday 06-February, 2025", + "getbible": "https://getbible.life/kjv/1 John/1/7-8", + "name": "1 John 1:7-8", + "scripture": [ + { + "nr": "7", + "text": "But if we walk in the light, as he is in the light, we have fellowship one with another, and the blood of Jesus Christ his Son cleanseth us from all sin." + }, + { + "nr": "8", + "text": "If we say that we have no sin, we deceive ourselves, and the truth is not in us." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7-8", + "version": "kjv" +} diff --git a/scripture/kjv/02/06/25/scripture.md b/scripture/kjv/02/06/25/scripture.md new file mode 100644 index 00000000..081217ed --- /dev/null +++ b/scripture/kjv/02/06/25/scripture.md @@ -0,0 +1,5 @@ +**1 John 1:7-8** + +7 But if we walk in the light, as he is in the light, we have fellowship one with another, and the blood of Jesus Christ his Son cleanseth us from all sin. 8 If we say that we have no sin, we deceive ourselves, and the truth is not in us. + +[Thursday 06-February, 2025](https://getbible.life/kjv/1 John/1/7-8) diff --git a/scripture/kjv/02/06/25/scripture.tg b/scripture/kjv/02/06/25/scripture.tg new file mode 100644 index 00000000..672557df --- /dev/null +++ b/scripture/kjv/02/06/25/scripture.tg @@ -0,0 +1,4 @@ +1 John 1:7-8 +7 But if we walk in the light, as he is in the light, we have fellowship one with another, and the blood of Jesus Christ his Son cleanseth us from all sin. 8 If we say that we have no sin, we deceive ourselves, and the truth is not in us. + +Thursday 06-February, 2025 diff --git a/scripture/kjv/02/06/25/scripture.tg.id b/scripture/kjv/02/06/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/06/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/06/25/scripture.today b/scripture/kjv/02/06/25/scripture.today new file mode 100644 index 00000000..c974e941 --- /dev/null +++ b/scripture/kjv/02/06/25/scripture.today @@ -0,0 +1 @@ +62 1:7-8 diff --git a/scripture/kjv/02/06/26/scripture.html b/scripture/kjv/02/06/26/scripture.html new file mode 100644 index 00000000..1c65fad8 --- /dev/null +++ b/scripture/kjv/02/06/26/scripture.html @@ -0,0 +1,3 @@ +Psalms 3:6
+6 I will not be afraid of ten thousands of people, that have set themselves against me round about.

+Friday 06-February, 2026 diff --git a/scripture/kjv/02/06/26/scripture.json b/scripture/kjv/02/06/26/scripture.json new file mode 100644 index 00000000..d90f10f0 --- /dev/null +++ b/scripture/kjv/02/06/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "3", + "date": "Friday 06-February, 2026", + "getbible": "https://getbible.life/kjv/Psalms/3/6", + "name": "Psalms 3:6", + "scripture": [ + { + "nr": "6", + "text": "I will not be afraid of ten thousands of people, that have set themselves against me round about." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6", + "version": "kjv" +} diff --git a/scripture/kjv/02/06/26/scripture.md b/scripture/kjv/02/06/26/scripture.md new file mode 100644 index 00000000..5e143076 --- /dev/null +++ b/scripture/kjv/02/06/26/scripture.md @@ -0,0 +1,5 @@ +**Psalms 3:6** + +6 I will not be afraid of ten thousands of people, that have set themselves against me round about. + +[Friday 06-February, 2026](https://getbible.life/kjv/Psalms/3/6) diff --git a/scripture/kjv/02/06/26/scripture.tg b/scripture/kjv/02/06/26/scripture.tg new file mode 100644 index 00000000..b5973575 --- /dev/null +++ b/scripture/kjv/02/06/26/scripture.tg @@ -0,0 +1,4 @@ +Psalms 3:6 +6 I will not be afraid of ten thousands of people, that have set themselves against me round about. + +Friday 06-February, 2026 diff --git a/scripture/kjv/02/06/26/scripture.tg.id b/scripture/kjv/02/06/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/06/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/06/26/scripture.today b/scripture/kjv/02/06/26/scripture.today new file mode 100644 index 00000000..69521d8f --- /dev/null +++ b/scripture/kjv/02/06/26/scripture.today @@ -0,0 +1 @@ +19 3:6 diff --git a/scripture/kjv/02/07/23/scripture.html b/scripture/kjv/02/07/23/scripture.html new file mode 100644 index 00000000..82118d4b --- /dev/null +++ b/scripture/kjv/02/07/23/scripture.html @@ -0,0 +1,3 @@ +Daniel 4:26
+26 And whereas they commanded to leave the stump of the tree roots; thy kingdom shall be sure unto thee, after that thou shalt have known that the heavens do rule.

+Tuesday 07-February, 2023 diff --git a/scripture/kjv/02/07/23/scripture.json b/scripture/kjv/02/07/23/scripture.json new file mode 100644 index 00000000..e53d915f --- /dev/null +++ b/scripture/kjv/02/07/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Tuesday 07-February, 2023", + "name": "Daniel 4:26", + "scripture": [ + { + "nr": "26", + "text": "And whereas they commanded to leave the stump of the tree roots; thy kingdom shall be sure unto thee, after that thou shalt have known that the heavens do rule." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/02/07/23/scripture.md b/scripture/kjv/02/07/23/scripture.md new file mode 100644 index 00000000..bb7d37f4 --- /dev/null +++ b/scripture/kjv/02/07/23/scripture.md @@ -0,0 +1,5 @@ +**Daniel 4:26** + +26 And whereas they commanded to leave the stump of the tree roots; thy kingdom shall be sure unto thee, after that thou shalt have known that the heavens do rule. + +[Tuesday 07-February, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/02/07/23/scripture.tg b/scripture/kjv/02/07/23/scripture.tg new file mode 100644 index 00000000..ba5025f5 --- /dev/null +++ b/scripture/kjv/02/07/23/scripture.tg @@ -0,0 +1,4 @@ +Daniel 4:26 +26 And whereas they commanded to leave the stump of the tree roots; thy kingdom shall be sure unto thee, after that thou shalt have known that the heavens do rule. + +Tuesday 07-February, 2023 diff --git a/scripture/kjv/02/07/23/scripture.today b/scripture/kjv/02/07/23/scripture.today new file mode 100644 index 00000000..e61c101b --- /dev/null +++ b/scripture/kjv/02/07/23/scripture.today @@ -0,0 +1 @@ +27 4:26 diff --git a/scripture/kjv/02/07/24/scripture.html b/scripture/kjv/02/07/24/scripture.html new file mode 100644 index 00000000..fa42665c --- /dev/null +++ b/scripture/kjv/02/07/24/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 5:11
+11 Knowing therefore the terror of the Lord, we persuade men; but we are made manifest unto God; and I trust also are made manifest in your consciences.

+Wednesday 07-February, 2024 diff --git a/scripture/kjv/02/07/24/scripture.json b/scripture/kjv/02/07/24/scripture.json new file mode 100644 index 00000000..eae1a5cf --- /dev/null +++ b/scripture/kjv/02/07/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "5", + "date": "Wednesday 07-February, 2024", + "getbible": "https://getbible.life/kjv/2 Corinthians/5/11", + "name": "2 Corinthians 5:11", + "scripture": [ + { + "nr": "11", + "text": "Knowing therefore the terror of the Lord, we persuade men; but we are made manifest unto God; and I trust also are made manifest in your consciences." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/02/07/24/scripture.md b/scripture/kjv/02/07/24/scripture.md new file mode 100644 index 00000000..1ebeecfb --- /dev/null +++ b/scripture/kjv/02/07/24/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 5:11** + +11 Knowing therefore the terror of the Lord, we persuade men; but we are made manifest unto God; and I trust also are made manifest in your consciences. + +[Wednesday 07-February, 2024](https://getbible.life/kjv/2 Corinthians/5/11) diff --git a/scripture/kjv/02/07/24/scripture.tg b/scripture/kjv/02/07/24/scripture.tg new file mode 100644 index 00000000..0680d3c9 --- /dev/null +++ b/scripture/kjv/02/07/24/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 5:11 +11 Knowing therefore the terror of the Lord, we persuade men; but we are made manifest unto God; and I trust also are made manifest in your consciences. + +Wednesday 07-February, 2024 diff --git a/scripture/kjv/02/07/24/scripture.tg.id b/scripture/kjv/02/07/24/scripture.tg.id new file mode 100644 index 00000000..d97ddee7 --- /dev/null +++ b/scripture/kjv/02/07/24/scripture.tg.id @@ -0,0 +1 @@ +1223 diff --git a/scripture/kjv/02/07/24/scripture.today b/scripture/kjv/02/07/24/scripture.today new file mode 100644 index 00000000..280dd342 --- /dev/null +++ b/scripture/kjv/02/07/24/scripture.today @@ -0,0 +1 @@ +47 5:11 diff --git a/scripture/kjv/02/07/25/scripture.html b/scripture/kjv/02/07/25/scripture.html new file mode 100644 index 00000000..5e6f184f --- /dev/null +++ b/scripture/kjv/02/07/25/scripture.html @@ -0,0 +1,3 @@ +Luke 12:27-28
+27 Consider the lilies how they grow: they toil not, they spin not; and yet I say unto you, that Solomon in all his glory was not arrayed like one of these. 28 If then God so clothe the grass, which is to day in the field, and to morrow is cast into the oven; how much more will he clothe you, O ye of little faith?

+Friday 07-February, 2025 diff --git a/scripture/kjv/02/07/25/scripture.json b/scripture/kjv/02/07/25/scripture.json new file mode 100644 index 00000000..0a9878d4 --- /dev/null +++ b/scripture/kjv/02/07/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Luke", + "chapter": "12", + "date": "Friday 07-February, 2025", + "getbible": "https://getbible.life/kjv/Luke/12/27-28", + "name": "Luke 12:27-28", + "scripture": [ + { + "nr": "27", + "text": "Consider the lilies how they grow: they toil not, they spin not; and yet I say unto you, that Solomon in all his glory was not arrayed like one of these." + }, + { + "nr": "28", + "text": "If then God so clothe the grass, which is to day in the field, and to morrow is cast into the oven; how much more will he clothe you, O ye of little faith?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "27-28", + "version": "kjv" +} diff --git a/scripture/kjv/02/07/25/scripture.md b/scripture/kjv/02/07/25/scripture.md new file mode 100644 index 00000000..d4321807 --- /dev/null +++ b/scripture/kjv/02/07/25/scripture.md @@ -0,0 +1,5 @@ +**Luke 12:27-28** + +27 Consider the lilies how they grow: they toil not, they spin not; and yet I say unto you, that Solomon in all his glory was not arrayed like one of these. 28 If then God so clothe the grass, which is to day in the field, and to morrow is cast into the oven; how much more will he clothe you, O ye of little faith? + +[Friday 07-February, 2025](https://getbible.life/kjv/Luke/12/27-28) diff --git a/scripture/kjv/02/07/25/scripture.tg b/scripture/kjv/02/07/25/scripture.tg new file mode 100644 index 00000000..00224397 --- /dev/null +++ b/scripture/kjv/02/07/25/scripture.tg @@ -0,0 +1,4 @@ +Luke 12:27-28 +27 Consider the lilies how they grow: they toil not, they spin not; and yet I say unto you, that Solomon in all his glory was not arrayed like one of these. 28 If then God so clothe the grass, which is to day in the field, and to morrow is cast into the oven; how much more will he clothe you, O ye of little faith? + +Friday 07-February, 2025 diff --git a/scripture/kjv/02/07/25/scripture.tg.id b/scripture/kjv/02/07/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/07/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/07/25/scripture.today b/scripture/kjv/02/07/25/scripture.today new file mode 100644 index 00000000..005135a3 --- /dev/null +++ b/scripture/kjv/02/07/25/scripture.today @@ -0,0 +1 @@ +42 12:27-28 diff --git a/scripture/kjv/02/07/26/scripture.html b/scripture/kjv/02/07/26/scripture.html new file mode 100644 index 00000000..f3daaa4c --- /dev/null +++ b/scripture/kjv/02/07/26/scripture.html @@ -0,0 +1,3 @@ +Proverbs 3:7
+7 Be not wise in thine own eyes: fear the Lord, and depart from evil.

+Saturday 07-February, 2026 diff --git a/scripture/kjv/02/07/26/scripture.json b/scripture/kjv/02/07/26/scripture.json new file mode 100644 index 00000000..28971080 --- /dev/null +++ b/scripture/kjv/02/07/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "3", + "date": "Saturday 07-February, 2026", + "getbible": "https://getbible.life/kjv/Proverbs/3/7", + "name": "Proverbs 3:7", + "scripture": [ + { + "nr": "7", + "text": "Be not wise in thine own eyes: fear the Lord, and depart from evil." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7", + "version": "kjv" +} diff --git a/scripture/kjv/02/07/26/scripture.md b/scripture/kjv/02/07/26/scripture.md new file mode 100644 index 00000000..350977e1 --- /dev/null +++ b/scripture/kjv/02/07/26/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 3:7** + +7 Be not wise in thine own eyes: fear the Lord, and depart from evil. + +[Saturday 07-February, 2026](https://getbible.life/kjv/Proverbs/3/7) diff --git a/scripture/kjv/02/07/26/scripture.tg b/scripture/kjv/02/07/26/scripture.tg new file mode 100644 index 00000000..ebe1fe2a --- /dev/null +++ b/scripture/kjv/02/07/26/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 3:7 +7 Be not wise in thine own eyes: fear the Lord, and depart from evil. + +Saturday 07-February, 2026 diff --git a/scripture/kjv/02/07/26/scripture.today b/scripture/kjv/02/07/26/scripture.today new file mode 100644 index 00000000..cad650c7 --- /dev/null +++ b/scripture/kjv/02/07/26/scripture.today @@ -0,0 +1 @@ +20 3:7 diff --git a/scripture/kjv/02/08/23/scripture.html b/scripture/kjv/02/08/23/scripture.html new file mode 100644 index 00000000..02f9821e --- /dev/null +++ b/scripture/kjv/02/08/23/scripture.html @@ -0,0 +1,3 @@ +John 3:20
+20 For every one that doeth evil hateth the light, neither cometh to the light, lest his deeds should be reproved.

+Wednesday 08-February, 2023 diff --git a/scripture/kjv/02/08/23/scripture.json b/scripture/kjv/02/08/23/scripture.json new file mode 100644 index 00000000..5c9517ba --- /dev/null +++ b/scripture/kjv/02/08/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Wednesday 08-February, 2023", + "name": "John 3:20", + "scripture": [ + { + "nr": "20", + "text": "For every one that doeth evil hateth the light, neither cometh to the light, lest his deeds should be reproved." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/02/08/23/scripture.md b/scripture/kjv/02/08/23/scripture.md new file mode 100644 index 00000000..f452477b --- /dev/null +++ b/scripture/kjv/02/08/23/scripture.md @@ -0,0 +1,5 @@ +**John 3:20** + +20 For every one that doeth evil hateth the light, neither cometh to the light, lest his deeds should be reproved. + +[Wednesday 08-February, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/02/08/23/scripture.tg b/scripture/kjv/02/08/23/scripture.tg new file mode 100644 index 00000000..1a7bc0d6 --- /dev/null +++ b/scripture/kjv/02/08/23/scripture.tg @@ -0,0 +1,4 @@ +John 3:20 +20 For every one that doeth evil hateth the light, neither cometh to the light, lest his deeds should be reproved. + +Wednesday 08-February, 2023 diff --git a/scripture/kjv/02/08/23/scripture.today b/scripture/kjv/02/08/23/scripture.today new file mode 100644 index 00000000..b220c763 --- /dev/null +++ b/scripture/kjv/02/08/23/scripture.today @@ -0,0 +1 @@ +43 3:20 diff --git a/scripture/kjv/02/08/24/scripture.html b/scripture/kjv/02/08/24/scripture.html new file mode 100644 index 00000000..c90310f3 --- /dev/null +++ b/scripture/kjv/02/08/24/scripture.html @@ -0,0 +1,3 @@ +Malachi 4:2-3
+2 But unto you that fear my name shall the Sun of righteousness arise with healing in his wings; and ye shall go forth, and grow up as calves of the stall. 3 And ye shall tread down the wicked; for they shall be ashes under the soles of your feet in the day that I shall do this, saith the Lord of hosts.

+Thursday 08-February, 2024 diff --git a/scripture/kjv/02/08/24/scripture.json b/scripture/kjv/02/08/24/scripture.json new file mode 100644 index 00000000..7fb06765 --- /dev/null +++ b/scripture/kjv/02/08/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Malachi", + "chapter": "4", + "date": "Thursday 08-February, 2024", + "getbible": "https://getbible.life/kjv/Malachi/4/2-3", + "name": "Malachi 4:2-3", + "scripture": [ + { + "nr": "2", + "text": "But unto you that fear my name shall the Sun of righteousness arise with healing in his wings; and ye shall go forth, and grow up as calves of the stall." + }, + { + "nr": "3", + "text": "And ye shall tread down the wicked; for they shall be ashes under the soles of your feet in the day that I shall do this, saith the Lord of hosts." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "2-3", + "version": "kjv" +} diff --git a/scripture/kjv/02/08/24/scripture.md b/scripture/kjv/02/08/24/scripture.md new file mode 100644 index 00000000..905d62c3 --- /dev/null +++ b/scripture/kjv/02/08/24/scripture.md @@ -0,0 +1,5 @@ +**Malachi 4:2-3** + +2 But unto you that fear my name shall the Sun of righteousness arise with healing in his wings; and ye shall go forth, and grow up as calves of the stall. 3 And ye shall tread down the wicked; for they shall be ashes under the soles of your feet in the day that I shall do this, saith the Lord of hosts. + +[Thursday 08-February, 2024](https://getbible.life/kjv/Malachi/4/2-3) diff --git a/scripture/kjv/02/08/24/scripture.tg b/scripture/kjv/02/08/24/scripture.tg new file mode 100644 index 00000000..43a84681 --- /dev/null +++ b/scripture/kjv/02/08/24/scripture.tg @@ -0,0 +1,4 @@ +Malachi 4:2-3 +2 But unto you that fear my name shall the Sun of righteousness arise with healing in his wings; and ye shall go forth, and grow up as calves of the stall. 3 And ye shall tread down the wicked; for they shall be ashes under the soles of your feet in the day that I shall do this, saith the Lord of hosts. + +Thursday 08-February, 2024 diff --git a/scripture/kjv/02/08/24/scripture.tg.id b/scripture/kjv/02/08/24/scripture.tg.id new file mode 100644 index 00000000..d6e9296e --- /dev/null +++ b/scripture/kjv/02/08/24/scripture.tg.id @@ -0,0 +1 @@ +1224 diff --git a/scripture/kjv/02/08/24/scripture.today b/scripture/kjv/02/08/24/scripture.today new file mode 100644 index 00000000..63561a45 --- /dev/null +++ b/scripture/kjv/02/08/24/scripture.today @@ -0,0 +1 @@ +39 4:2-3 diff --git a/scripture/kjv/02/08/25/scripture.html b/scripture/kjv/02/08/25/scripture.html new file mode 100644 index 00000000..413e60d5 --- /dev/null +++ b/scripture/kjv/02/08/25/scripture.html @@ -0,0 +1,3 @@ +Jeremiah 13:15
+15 Hear ye, and give ear; be not proud: for the Lord hath spoken.

+Saturday 08-February, 2025 diff --git a/scripture/kjv/02/08/25/scripture.json b/scripture/kjv/02/08/25/scripture.json new file mode 100644 index 00000000..f1ffcd40 --- /dev/null +++ b/scripture/kjv/02/08/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Jeremiah", + "chapter": "13", + "date": "Saturday 08-February, 2025", + "getbible": "https://getbible.life/kjv/Jeremiah/13/15", + "name": "Jeremiah 13:15", + "scripture": [ + { + "nr": "15", + "text": "Hear ye, and give ear; be not proud: for the Lord hath spoken." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15", + "version": "kjv" +} diff --git a/scripture/kjv/02/08/25/scripture.md b/scripture/kjv/02/08/25/scripture.md new file mode 100644 index 00000000..44e305b4 --- /dev/null +++ b/scripture/kjv/02/08/25/scripture.md @@ -0,0 +1,5 @@ +**Jeremiah 13:15** + +15 Hear ye, and give ear; be not proud: for the Lord hath spoken. + +[Saturday 08-February, 2025](https://getbible.life/kjv/Jeremiah/13/15) diff --git a/scripture/kjv/02/08/25/scripture.tg b/scripture/kjv/02/08/25/scripture.tg new file mode 100644 index 00000000..5748ba1a --- /dev/null +++ b/scripture/kjv/02/08/25/scripture.tg @@ -0,0 +1,4 @@ +Jeremiah 13:15 +15 Hear ye, and give ear; be not proud: for the Lord hath spoken. + +Saturday 08-February, 2025 diff --git a/scripture/kjv/02/08/25/scripture.tg.id b/scripture/kjv/02/08/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/08/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/08/25/scripture.today b/scripture/kjv/02/08/25/scripture.today new file mode 100644 index 00000000..f217bb2c --- /dev/null +++ b/scripture/kjv/02/08/25/scripture.today @@ -0,0 +1 @@ +24 13:15 diff --git a/scripture/kjv/02/08/26/scripture.html b/scripture/kjv/02/08/26/scripture.html new file mode 100644 index 00000000..3a93424a --- /dev/null +++ b/scripture/kjv/02/08/26/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 3:3-4
+3 For ye are yet carnal: for whereas there is among you envying, and strife, and divisions, are ye not carnal, and walk as men? 4 For while one saith, I am of Paul; and another, I am of Apollos; are ye not carnal?

+Sunday 08-February, 2026 diff --git a/scripture/kjv/02/08/26/scripture.json b/scripture/kjv/02/08/26/scripture.json new file mode 100644 index 00000000..4dd00236 --- /dev/null +++ b/scripture/kjv/02/08/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "1 Corinthians", + "chapter": "3", + "date": "Sunday 08-February, 2026", + "getbible": "https://getbible.life/kjv/1 Corinthians/3/3-4", + "name": "1 Corinthians 3:3-4", + "scripture": [ + { + "nr": "3", + "text": "For ye are yet carnal: for whereas there is among you envying, and strife, and divisions, are ye not carnal, and walk as men?" + }, + { + "nr": "4", + "text": "For while one saith, I am of Paul; and another, I am of Apollos; are ye not carnal?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3-4", + "version": "kjv" +} diff --git a/scripture/kjv/02/08/26/scripture.md b/scripture/kjv/02/08/26/scripture.md new file mode 100644 index 00000000..b0289e77 --- /dev/null +++ b/scripture/kjv/02/08/26/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 3:3-4** + +3 For ye are yet carnal: for whereas there is among you envying, and strife, and divisions, are ye not carnal, and walk as men? 4 For while one saith, I am of Paul; and another, I am of Apollos; are ye not carnal? + +[Sunday 08-February, 2026](https://getbible.life/kjv/1 Corinthians/3/3-4) diff --git a/scripture/kjv/02/08/26/scripture.tg b/scripture/kjv/02/08/26/scripture.tg new file mode 100644 index 00000000..25b8398f --- /dev/null +++ b/scripture/kjv/02/08/26/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 3:3-4 +3 For ye are yet carnal: for whereas there is among you envying, and strife, and divisions, are ye not carnal, and walk as men? 4 For while one saith, I am of Paul; and another, I am of Apollos; are ye not carnal? + +Sunday 08-February, 2026 diff --git a/scripture/kjv/02/08/26/scripture.tg.id b/scripture/kjv/02/08/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/08/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/08/26/scripture.today b/scripture/kjv/02/08/26/scripture.today new file mode 100644 index 00000000..95e0d223 --- /dev/null +++ b/scripture/kjv/02/08/26/scripture.today @@ -0,0 +1 @@ +46 3:3-4 diff --git a/scripture/kjv/02/09/23/scripture.html b/scripture/kjv/02/09/23/scripture.html new file mode 100644 index 00000000..95853473 --- /dev/null +++ b/scripture/kjv/02/09/23/scripture.html @@ -0,0 +1,3 @@ +Matthew 24:39-42
+39 And knew not until the flood came, and took them all away; so shall also the coming of the Son of man be. 40 Then shall two be in the field; the one shall be taken, and the other left. 41 Two women shall be grinding at the mill; the one shall be taken, and the other left. 42 Watch therefore: for ye know not what hour your Lord doth come.

+Thursday 09-February, 2023 diff --git a/scripture/kjv/02/09/23/scripture.json b/scripture/kjv/02/09/23/scripture.json new file mode 100644 index 00000000..45434833 --- /dev/null +++ b/scripture/kjv/02/09/23/scripture.json @@ -0,0 +1,25 @@ +{ + "date": "Thursday 09-February, 2023", + "name": "Matthew 24:39-42", + "scripture": [ + { + "nr": "39", + "text": "And knew not until the flood came, and took them all away; so shall also the coming of the Son of man be." + }, + { + "nr": "40", + "text": "Then shall two be in the field; the one shall be taken, and the other left." + }, + { + "nr": "41", + "text": "Two women shall be grinding at the mill; the one shall be taken, and the other left." + }, + { + "nr": "42", + "text": "Watch therefore: for ye know not what hour your Lord doth come." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/02/09/23/scripture.md b/scripture/kjv/02/09/23/scripture.md new file mode 100644 index 00000000..0e5c22ac --- /dev/null +++ b/scripture/kjv/02/09/23/scripture.md @@ -0,0 +1,5 @@ +**Matthew 24:39-42** + +39 And knew not until the flood came, and took them all away; so shall also the coming of the Son of man be. 40 Then shall two be in the field; the one shall be taken, and the other left. 41 Two women shall be grinding at the mill; the one shall be taken, and the other left. 42 Watch therefore: for ye know not what hour your Lord doth come. + +[Thursday 09-February, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/02/09/23/scripture.tg b/scripture/kjv/02/09/23/scripture.tg new file mode 100644 index 00000000..d203ee3c --- /dev/null +++ b/scripture/kjv/02/09/23/scripture.tg @@ -0,0 +1,4 @@ +Matthew 24:39-42 +39 And knew not until the flood came, and took them all away; so shall also the coming of the Son of man be. 40 Then shall two be in the field; the one shall be taken, and the other left. 41 Two women shall be grinding at the mill; the one shall be taken, and the other left. 42 Watch therefore: for ye know not what hour your Lord doth come. + +Thursday 09-February, 2023 diff --git a/scripture/kjv/02/09/23/scripture.today b/scripture/kjv/02/09/23/scripture.today new file mode 100644 index 00000000..5af35ea4 --- /dev/null +++ b/scripture/kjv/02/09/23/scripture.today @@ -0,0 +1 @@ +40 24:39-42 diff --git a/scripture/kjv/02/09/24/scripture.html b/scripture/kjv/02/09/24/scripture.html new file mode 100644 index 00000000..c414b6aa --- /dev/null +++ b/scripture/kjv/02/09/24/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 4:10
+10 Always bearing about in the body the dying of the Lord Jesus, that the life also of Jesus might be made manifest in our body.

+Friday 09-February, 2024 diff --git a/scripture/kjv/02/09/24/scripture.json b/scripture/kjv/02/09/24/scripture.json new file mode 100644 index 00000000..3ba27d32 --- /dev/null +++ b/scripture/kjv/02/09/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "4", + "date": "Friday 09-February, 2024", + "getbible": "https://getbible.life/kjv/2 Corinthians/4/10", + "name": "2 Corinthians 4:10", + "scripture": [ + { + "nr": "10", + "text": "Always bearing about in the body the dying of the Lord Jesus, that the life also of Jesus might be made manifest in our body." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/02/09/24/scripture.md b/scripture/kjv/02/09/24/scripture.md new file mode 100644 index 00000000..0ad2c9b4 --- /dev/null +++ b/scripture/kjv/02/09/24/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 4:10** + +10 Always bearing about in the body the dying of the Lord Jesus, that the life also of Jesus might be made manifest in our body. + +[Friday 09-February, 2024](https://getbible.life/kjv/2 Corinthians/4/10) diff --git a/scripture/kjv/02/09/24/scripture.tg b/scripture/kjv/02/09/24/scripture.tg new file mode 100644 index 00000000..d8678720 --- /dev/null +++ b/scripture/kjv/02/09/24/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 4:10 +10 Always bearing about in the body the dying of the Lord Jesus, that the life also of Jesus might be made manifest in our body. + +Friday 09-February, 2024 diff --git a/scripture/kjv/02/09/24/scripture.tg.id b/scripture/kjv/02/09/24/scripture.tg.id new file mode 100644 index 00000000..eb0b863d --- /dev/null +++ b/scripture/kjv/02/09/24/scripture.tg.id @@ -0,0 +1 @@ +1225 diff --git a/scripture/kjv/02/09/24/scripture.today b/scripture/kjv/02/09/24/scripture.today new file mode 100644 index 00000000..982171e5 --- /dev/null +++ b/scripture/kjv/02/09/24/scripture.today @@ -0,0 +1 @@ +47 4:10 diff --git a/scripture/kjv/02/09/25/scripture.html b/scripture/kjv/02/09/25/scripture.html new file mode 100644 index 00000000..269078f8 --- /dev/null +++ b/scripture/kjv/02/09/25/scripture.html @@ -0,0 +1,3 @@ +John 14:23
+23 Jesus answered and said unto him, If a man love me, he will keep my words: and my Father will love him, and we will come unto him, and make our abode with him.

+Sunday 09-February, 2025 diff --git a/scripture/kjv/02/09/25/scripture.json b/scripture/kjv/02/09/25/scripture.json new file mode 100644 index 00000000..e5102429 --- /dev/null +++ b/scripture/kjv/02/09/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "14", + "date": "Sunday 09-February, 2025", + "getbible": "https://getbible.life/kjv/John/14/23", + "name": "John 14:23", + "scripture": [ + { + "nr": "23", + "text": "Jesus answered and said unto him, If a man love me, he will keep my words: and my Father will love him, and we will come unto him, and make our abode with him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "23", + "version": "kjv" +} diff --git a/scripture/kjv/02/09/25/scripture.md b/scripture/kjv/02/09/25/scripture.md new file mode 100644 index 00000000..cf40efdc --- /dev/null +++ b/scripture/kjv/02/09/25/scripture.md @@ -0,0 +1,5 @@ +**John 14:23** + +23 Jesus answered and said unto him, If a man love me, he will keep my words: and my Father will love him, and we will come unto him, and make our abode with him. + +[Sunday 09-February, 2025](https://getbible.life/kjv/John/14/23) diff --git a/scripture/kjv/02/09/25/scripture.tg b/scripture/kjv/02/09/25/scripture.tg new file mode 100644 index 00000000..59845d76 --- /dev/null +++ b/scripture/kjv/02/09/25/scripture.tg @@ -0,0 +1,4 @@ +John 14:23 +23 Jesus answered and said unto him, If a man love me, he will keep my words: and my Father will love him, and we will come unto him, and make our abode with him. + +Sunday 09-February, 2025 diff --git a/scripture/kjv/02/09/25/scripture.tg.id b/scripture/kjv/02/09/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/09/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/09/25/scripture.today b/scripture/kjv/02/09/25/scripture.today new file mode 100644 index 00000000..14c1252d --- /dev/null +++ b/scripture/kjv/02/09/25/scripture.today @@ -0,0 +1 @@ +43 14:23 diff --git a/scripture/kjv/02/09/26/scripture.html b/scripture/kjv/02/09/26/scripture.html new file mode 100644 index 00000000..376adf36 --- /dev/null +++ b/scripture/kjv/02/09/26/scripture.html @@ -0,0 +1,3 @@ +Psalms 62:1-2
+1 Truly my soul waiteth upon God: from him cometh my salvation. 2 He only is my rock and my salvation; he is my defence; I shall not be greatly moved.

+Monday 09-February, 2026 diff --git a/scripture/kjv/02/09/26/scripture.json b/scripture/kjv/02/09/26/scripture.json new file mode 100644 index 00000000..29c62d6b --- /dev/null +++ b/scripture/kjv/02/09/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Psalms", + "chapter": "62", + "date": "Monday 09-February, 2026", + "getbible": "https://getbible.life/kjv/Psalms/62/1-2", + "name": "Psalms 62:1-2", + "scripture": [ + { + "nr": "1", + "text": "Truly my soul waiteth upon God: from him cometh my salvation." + }, + { + "nr": "2", + "text": "He only is my rock and my salvation; he is my defence; I shall not be greatly moved." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-2", + "version": "kjv" +} diff --git a/scripture/kjv/02/09/26/scripture.md b/scripture/kjv/02/09/26/scripture.md new file mode 100644 index 00000000..1e8df35d --- /dev/null +++ b/scripture/kjv/02/09/26/scripture.md @@ -0,0 +1,5 @@ +**Psalms 62:1-2** + +1 Truly my soul waiteth upon God: from him cometh my salvation. 2 He only is my rock and my salvation; he is my defence; I shall not be greatly moved. + +[Monday 09-February, 2026](https://getbible.life/kjv/Psalms/62/1-2) diff --git a/scripture/kjv/02/09/26/scripture.tg b/scripture/kjv/02/09/26/scripture.tg new file mode 100644 index 00000000..9a2f92ff --- /dev/null +++ b/scripture/kjv/02/09/26/scripture.tg @@ -0,0 +1,4 @@ +Psalms 62:1-2 +1 Truly my soul waiteth upon God: from him cometh my salvation. 2 He only is my rock and my salvation; he is my defence; I shall not be greatly moved. + +Monday 09-February, 2026 diff --git a/scripture/kjv/02/09/26/scripture.today b/scripture/kjv/02/09/26/scripture.today new file mode 100644 index 00000000..8ee85af8 --- /dev/null +++ b/scripture/kjv/02/09/26/scripture.today @@ -0,0 +1 @@ +19 62:1-2 diff --git a/scripture/kjv/02/10/23/scripture.html b/scripture/kjv/02/10/23/scripture.html new file mode 100644 index 00000000..92b94582 --- /dev/null +++ b/scripture/kjv/02/10/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 15:31
+31 The ear that heareth the reproof of life abideth among the wise.

+Friday 10-February, 2023 diff --git a/scripture/kjv/02/10/23/scripture.json b/scripture/kjv/02/10/23/scripture.json new file mode 100644 index 00000000..6b758e56 --- /dev/null +++ b/scripture/kjv/02/10/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Friday 10-February, 2023", + "name": "Proverbs 15:31", + "scripture": [ + { + "nr": "31", + "text": "The ear that heareth the reproof of life abideth among the wise." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/02/10/23/scripture.md b/scripture/kjv/02/10/23/scripture.md new file mode 100644 index 00000000..f8aa2da4 --- /dev/null +++ b/scripture/kjv/02/10/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 15:31** + +31 The ear that heareth the reproof of life abideth among the wise. + +[Friday 10-February, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/02/10/23/scripture.tg b/scripture/kjv/02/10/23/scripture.tg new file mode 100644 index 00000000..5ae04f9b --- /dev/null +++ b/scripture/kjv/02/10/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 15:31 +31 The ear that heareth the reproof of life abideth among the wise. + +Friday 10-February, 2023 diff --git a/scripture/kjv/02/10/23/scripture.today b/scripture/kjv/02/10/23/scripture.today new file mode 100644 index 00000000..5e55fefb --- /dev/null +++ b/scripture/kjv/02/10/23/scripture.today @@ -0,0 +1 @@ +20 15:31 diff --git a/scripture/kjv/02/10/24/scripture.html b/scripture/kjv/02/10/24/scripture.html new file mode 100644 index 00000000..07f972dd --- /dev/null +++ b/scripture/kjv/02/10/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 37:4
+4 Delight thyself also in the Lord; and he shall give thee the desires of thine heart.

+Saturday 10-February, 2024 diff --git a/scripture/kjv/02/10/24/scripture.json b/scripture/kjv/02/10/24/scripture.json new file mode 100644 index 00000000..b61ac757 --- /dev/null +++ b/scripture/kjv/02/10/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "37", + "date": "Saturday 10-February, 2024", + "getbible": "https://getbible.life/kjv/Psalms/37/4", + "name": "Psalms 37:4", + "scripture": [ + { + "nr": "4", + "text": "Delight thyself also in the Lord; and he shall give thee the desires of thine heart." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4", + "version": "kjv" +} diff --git a/scripture/kjv/02/10/24/scripture.md b/scripture/kjv/02/10/24/scripture.md new file mode 100644 index 00000000..a5f73456 --- /dev/null +++ b/scripture/kjv/02/10/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 37:4** + +4 Delight thyself also in the Lord; and he shall give thee the desires of thine heart. + +[Saturday 10-February, 2024](https://getbible.life/kjv/Psalms/37/4) diff --git a/scripture/kjv/02/10/24/scripture.tg b/scripture/kjv/02/10/24/scripture.tg new file mode 100644 index 00000000..3e310db8 --- /dev/null +++ b/scripture/kjv/02/10/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 37:4 +4 Delight thyself also in the Lord; and he shall give thee the desires of thine heart. + +Saturday 10-February, 2024 diff --git a/scripture/kjv/02/10/24/scripture.tg.id b/scripture/kjv/02/10/24/scripture.tg.id new file mode 100644 index 00000000..f1f06a03 --- /dev/null +++ b/scripture/kjv/02/10/24/scripture.tg.id @@ -0,0 +1 @@ +1226 diff --git a/scripture/kjv/02/10/24/scripture.today b/scripture/kjv/02/10/24/scripture.today new file mode 100644 index 00000000..9ab8aa51 --- /dev/null +++ b/scripture/kjv/02/10/24/scripture.today @@ -0,0 +1 @@ +19 37:4 diff --git a/scripture/kjv/02/10/25/scripture.html b/scripture/kjv/02/10/25/scripture.html new file mode 100644 index 00000000..0a58bbea --- /dev/null +++ b/scripture/kjv/02/10/25/scripture.html @@ -0,0 +1,3 @@ +Jeremiah 12:6
+6 For even thy brethren, and the house of thy father, even they have dealt treacherously with thee; yea, they have called a multitude after thee: believe them not, though they speak fair words unto thee.

+Monday 10-February, 2025 diff --git a/scripture/kjv/02/10/25/scripture.json b/scripture/kjv/02/10/25/scripture.json new file mode 100644 index 00000000..b876f590 --- /dev/null +++ b/scripture/kjv/02/10/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Jeremiah", + "chapter": "12", + "date": "Monday 10-February, 2025", + "getbible": "https://getbible.life/kjv/Jeremiah/12/6", + "name": "Jeremiah 12:6", + "scripture": [ + { + "nr": "6", + "text": "For even thy brethren, and the house of thy father, even they have dealt treacherously with thee; yea, they have called a multitude after thee: believe them not, though they speak fair words unto thee." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6", + "version": "kjv" +} diff --git a/scripture/kjv/02/10/25/scripture.md b/scripture/kjv/02/10/25/scripture.md new file mode 100644 index 00000000..a75b9f6f --- /dev/null +++ b/scripture/kjv/02/10/25/scripture.md @@ -0,0 +1,5 @@ +**Jeremiah 12:6** + +6 For even thy brethren, and the house of thy father, even they have dealt treacherously with thee; yea, they have called a multitude after thee: believe them not, though they speak fair words unto thee. + +[Monday 10-February, 2025](https://getbible.life/kjv/Jeremiah/12/6) diff --git a/scripture/kjv/02/10/25/scripture.tg b/scripture/kjv/02/10/25/scripture.tg new file mode 100644 index 00000000..72dba0c3 --- /dev/null +++ b/scripture/kjv/02/10/25/scripture.tg @@ -0,0 +1,4 @@ +Jeremiah 12:6 +6 For even thy brethren, and the house of thy father, even they have dealt treacherously with thee; yea, they have called a multitude after thee: believe them not, though they speak fair words unto thee. + +Monday 10-February, 2025 diff --git a/scripture/kjv/02/10/25/scripture.tg.id b/scripture/kjv/02/10/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/10/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/10/25/scripture.today b/scripture/kjv/02/10/25/scripture.today new file mode 100644 index 00000000..ca83a4d8 --- /dev/null +++ b/scripture/kjv/02/10/25/scripture.today @@ -0,0 +1 @@ +24 12:6 diff --git a/scripture/kjv/02/10/26/scripture.html b/scripture/kjv/02/10/26/scripture.html new file mode 100644 index 00000000..5f5d355d --- /dev/null +++ b/scripture/kjv/02/10/26/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 8:5-18
+5 Then said he unto me, Son of man, lift up thine eyes now the way toward the north. So I lifted up mine eyes the way toward the north, and behold northward at the gate of the altar this image of jealousy in the entry. 6 He said furthermore unto me, Son of man, seest thou what they do? even the great abominations that the house of Israel committeth here, that I should go far off from my sanctuary? but turn thee yet again, and thou shalt see greater abominations. 7 And he brought me to the door of the court; and when I looked, behold a hole in the wall. 8 Then said he unto me, Son of man, dig now in the wall: and when I had digged in the wall, behold a door. 9 And he said unto me, Go in, and behold the wicked abominations that they do here. 10 So I went in and saw; and behold every form of creeping things, and abominable beasts, and all the idols of the house of Israel, pourtrayed upon the wall round about. 11 And there stood before them seventy men of the ancients of the house of Israel, and in the midst of them stood Jaazaniah the son of Shaphan, with every man his censer in his hand; and a thick cloud of incense went up. 12 Then said he unto me, Son of man, hast thou seen what the ancients of the house of Israel do in the dark, every man in the chambers of his imagery? for they say, The Lord seeth us not; the Lord hath forsaken the earth. 13 He said also unto me, Turn thee yet again, and thou shalt see greater abominations that they do. 14 Then he brought me to the door of the gate of the Lord’s house which was toward the north; and, behold, there sat women weeping for Tammuz. 15 Then said he unto me, Hast thou seen this, O son of man? turn thee yet again, and thou shalt see greater abominations than these. 16 And he brought me into the inner court of the Lord’s house, and, behold, at the door of the temple of the Lord, between the porch and the altar, were about five and twenty men, with their backs toward the temple of the Lord, and their faces toward the east; and they worshipped the sun toward the east. 17 Then he said unto me, Hast thou seen this, O son of man? Is it a light thing to the house of Judah that they commit the abominations which they commit here? for they have filled the land with violence, and have returned to provoke me to anger: and, lo, they put the branch to their nose. 18 Therefore will I also deal in fury: mine eye shall not spare, neither will I have pity: and though they cry in mine ears with a loud voice, yet will I not hear them.

+Tuesday 10-February, 2026 diff --git a/scripture/kjv/02/10/26/scripture.json b/scripture/kjv/02/10/26/scripture.json new file mode 100644 index 00000000..1a463ca2 --- /dev/null +++ b/scripture/kjv/02/10/26/scripture.json @@ -0,0 +1,69 @@ +{ + "book": "Ezekiel", + "chapter": "8", + "date": "Tuesday 10-February, 2026", + "getbible": "https://getbible.life/kjv/Ezekiel/8/5-18", + "name": "Ezekiel 8:5-18", + "scripture": [ + { + "nr": "5", + "text": "Then said he unto me, Son of man, lift up thine eyes now the way toward the north. So I lifted up mine eyes the way toward the north, and behold northward at the gate of the altar this image of jealousy in the entry." + }, + { + "nr": "6", + "text": "He said furthermore unto me, Son of man, seest thou what they do? even the great abominations that the house of Israel committeth here, that I should go far off from my sanctuary? but turn thee yet again, and thou shalt see greater abominations." + }, + { + "nr": "7", + "text": "And he brought me to the door of the court; and when I looked, behold a hole in the wall." + }, + { + "nr": "8", + "text": "Then said he unto me, Son of man, dig now in the wall: and when I had digged in the wall, behold a door." + }, + { + "nr": "9", + "text": "And he said unto me, Go in, and behold the wicked abominations that they do here." + }, + { + "nr": "10", + "text": "So I went in and saw; and behold every form of creeping things, and abominable beasts, and all the idols of the house of Israel, pourtrayed upon the wall round about." + }, + { + "nr": "11", + "text": "And there stood before them seventy men of the ancients of the house of Israel, and in the midst of them stood Jaazaniah the son of Shaphan, with every man his censer in his hand; and a thick cloud of incense went up." + }, + { + "nr": "12", + "text": "Then said he unto me, Son of man, hast thou seen what the ancients of the house of Israel do in the dark, every man in the chambers of his imagery? for they say, The Lord seeth us not; the Lord hath forsaken the earth." + }, + { + "nr": "13", + "text": "He said also unto me, Turn thee yet again, and thou shalt see greater abominations that they do." + }, + { + "nr": "14", + "text": "Then he brought me to the door of the gate of the Lord’s house which was toward the north; and, behold, there sat women weeping for Tammuz." + }, + { + "nr": "15", + "text": "Then said he unto me, Hast thou seen this, O son of man? turn thee yet again, and thou shalt see greater abominations than these." + }, + { + "nr": "16", + "text": "And he brought me into the inner court of the Lord’s house, and, behold, at the door of the temple of the Lord, between the porch and the altar, were about five and twenty men, with their backs toward the temple of the Lord, and their faces toward the east; and they worshipped the sun toward the east." + }, + { + "nr": "17", + "text": "Then he said unto me, Hast thou seen this, O son of man? Is it a light thing to the house of Judah that they commit the abominations which they commit here? for they have filled the land with violence, and have returned to provoke me to anger: and, lo, they put the branch to their nose." + }, + { + "nr": "18", + "text": "Therefore will I also deal in fury: mine eye shall not spare, neither will I have pity: and though they cry in mine ears with a loud voice, yet will I not hear them. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5-18", + "version": "kjv" +} diff --git a/scripture/kjv/02/10/26/scripture.md b/scripture/kjv/02/10/26/scripture.md new file mode 100644 index 00000000..8dfc9ed9 --- /dev/null +++ b/scripture/kjv/02/10/26/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 8:5-18** + +5 Then said he unto me, Son of man, lift up thine eyes now the way toward the north. So I lifted up mine eyes the way toward the north, and behold northward at the gate of the altar this image of jealousy in the entry. 6 He said furthermore unto me, Son of man, seest thou what they do? even the great abominations that the house of Israel committeth here, that I should go far off from my sanctuary? but turn thee yet again, and thou shalt see greater abominations. 7 And he brought me to the door of the court; and when I looked, behold a hole in the wall. 8 Then said he unto me, Son of man, dig now in the wall: and when I had digged in the wall, behold a door. 9 And he said unto me, Go in, and behold the wicked abominations that they do here. 10 So I went in and saw; and behold every form of creeping things, and abominable beasts, and all the idols of the house of Israel, pourtrayed upon the wall round about. 11 And there stood before them seventy men of the ancients of the house of Israel, and in the midst of them stood Jaazaniah the son of Shaphan, with every man his censer in his hand; and a thick cloud of incense went up. 12 Then said he unto me, Son of man, hast thou seen what the ancients of the house of Israel do in the dark, every man in the chambers of his imagery? for they say, The Lord seeth us not; the Lord hath forsaken the earth. 13 He said also unto me, Turn thee yet again, and thou shalt see greater abominations that they do. 14 Then he brought me to the door of the gate of the Lord’s house which was toward the north; and, behold, there sat women weeping for Tammuz. 15 Then said he unto me, Hast thou seen this, O son of man? turn thee yet again, and thou shalt see greater abominations than these. 16 And he brought me into the inner court of the Lord’s house, and, behold, at the door of the temple of the Lord, between the porch and the altar, were about five and twenty men, with their backs toward the temple of the Lord, and their faces toward the east; and they worshipped the sun toward the east. 17 Then he said unto me, Hast thou seen this, O son of man? Is it a light thing to the house of Judah that they commit the abominations which they commit here? for they have filled the land with violence, and have returned to provoke me to anger: and, lo, they put the branch to their nose. 18 Therefore will I also deal in fury: mine eye shall not spare, neither will I have pity: and though they cry in mine ears with a loud voice, yet will I not hear them. + +[Tuesday 10-February, 2026](https://getbible.life/kjv/Ezekiel/8/5-18) diff --git a/scripture/kjv/02/10/26/scripture.tg b/scripture/kjv/02/10/26/scripture.tg new file mode 100644 index 00000000..dcc026f0 --- /dev/null +++ b/scripture/kjv/02/10/26/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 8:5-18 +5 Then said he unto me, Son of man, lift up thine eyes now the way toward the north. So I lifted up mine eyes the way toward the north, and behold northward at the gate of the altar this image of jealousy in the entry. 6 He said furthermore unto me, Son of man, seest thou what they do? even the great abominations that the house of Israel committeth here, that I should go far off from my sanctuary? but turn thee yet again, and thou shalt see greater abominations. 7 And he brought me to the door of the court; and when I looked, behold a hole in the wall. 8 Then said he unto me, Son of man, dig now in the wall: and when I had digged in the wall, behold a door. 9 And he said unto me, Go in, and behold the wicked abominations that they do here. 10 So I went in and saw; and behold every form of creeping things, and abominable beasts, and all the idols of the house of Israel, pourtrayed upon the wall round about. 11 And there stood before them seventy men of the ancients of the house of Israel, and in the midst of them stood Jaazaniah the son of Shaphan, with every man his censer in his hand; and a thick cloud of incense went up. 12 Then said he unto me, Son of man, hast thou seen what the ancients of the house of Israel do in the dark, every man in the chambers of his imagery? for they say, The Lord seeth us not; the Lord hath forsaken the earth. 13 He said also unto me, Turn thee yet again, and thou shalt see greater abominations that they do. 14 Then he brought me to the door of the gate of the Lord’s house which was toward the north; and, behold, there sat women weeping for Tammuz. 15 Then said he unto me, Hast thou seen this, O son of man? turn thee yet again, and thou shalt see greater abominations than these. 16 And he brought me into the inner court of the Lord’s house, and, behold, at the door of the temple of the Lord, between the porch and the altar, were about five and twenty men, with their backs toward the temple of the Lord, and their faces toward the east; and they worshipped the sun toward the east. 17 Then he said unto me, Hast thou seen this, O son of man? Is it a light thing to the house of Judah that they commit the abominations which they commit here? for they have filled the land with violence, and have returned to provoke me to anger: and, lo, they put the branch to their nose. 18 Therefore will I also deal in fury: mine eye shall not spare, neither will I have pity: and though they cry in mine ears with a loud voice, yet will I not hear them. + +Tuesday 10-February, 2026 diff --git a/scripture/kjv/02/10/26/scripture.tg.id b/scripture/kjv/02/10/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/10/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/10/26/scripture.today b/scripture/kjv/02/10/26/scripture.today new file mode 100644 index 00000000..90a37a79 --- /dev/null +++ b/scripture/kjv/02/10/26/scripture.today @@ -0,0 +1 @@ +26 8:5-18 diff --git a/scripture/kjv/02/11/23/scripture.html b/scripture/kjv/02/11/23/scripture.html new file mode 100644 index 00000000..eabf6030 --- /dev/null +++ b/scripture/kjv/02/11/23/scripture.html @@ -0,0 +1,3 @@ +Matthew 16:26
+26 For what is a man profited, if he shall gain the whole world, and lose his own soul? or what shall a man give in exchange for his soul?

+Saturday 11-February, 2023 diff --git a/scripture/kjv/02/11/23/scripture.json b/scripture/kjv/02/11/23/scripture.json new file mode 100644 index 00000000..1f6f78c0 --- /dev/null +++ b/scripture/kjv/02/11/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Saturday 11-February, 2023", + "name": "Matthew 16:26", + "scripture": [ + { + "nr": "26", + "text": "For what is a man profited, if he shall gain the whole world, and lose his own soul? or what shall a man give in exchange for his soul?" + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/02/11/23/scripture.md b/scripture/kjv/02/11/23/scripture.md new file mode 100644 index 00000000..1303bcb9 --- /dev/null +++ b/scripture/kjv/02/11/23/scripture.md @@ -0,0 +1,5 @@ +**Matthew 16:26** + +26 For what is a man profited, if he shall gain the whole world, and lose his own soul? or what shall a man give in exchange for his soul? + +[Saturday 11-February, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/02/11/23/scripture.tg b/scripture/kjv/02/11/23/scripture.tg new file mode 100644 index 00000000..4a67c1d2 --- /dev/null +++ b/scripture/kjv/02/11/23/scripture.tg @@ -0,0 +1,4 @@ +Matthew 16:26 +26 For what is a man profited, if he shall gain the whole world, and lose his own soul? or what shall a man give in exchange for his soul? + +Saturday 11-February, 2023 diff --git a/scripture/kjv/02/11/23/scripture.today b/scripture/kjv/02/11/23/scripture.today new file mode 100644 index 00000000..5689c201 --- /dev/null +++ b/scripture/kjv/02/11/23/scripture.today @@ -0,0 +1 @@ +40 16:26 diff --git a/scripture/kjv/02/11/24/scripture.html b/scripture/kjv/02/11/24/scripture.html new file mode 100644 index 00000000..6cbb7f7f --- /dev/null +++ b/scripture/kjv/02/11/24/scripture.html @@ -0,0 +1,3 @@ +Hosea 8:11-12
+11 Because Ephraim hath made many altars to sin, altars shall be unto him to sin. 12 I have written to him the great things of my law, but they were counted as a strange thing.

+Sunday 11-February, 2024 diff --git a/scripture/kjv/02/11/24/scripture.json b/scripture/kjv/02/11/24/scripture.json new file mode 100644 index 00000000..8f726da8 --- /dev/null +++ b/scripture/kjv/02/11/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Hosea", + "chapter": "8", + "date": "Sunday 11-February, 2024", + "getbible": "https://getbible.life/kjv/Hosea/8/11-12", + "name": "Hosea 8:11-12", + "scripture": [ + { + "nr": "11", + "text": "Because Ephraim hath made many altars to sin, altars shall be unto him to sin." + }, + { + "nr": "12", + "text": "I have written to him the great things of my law, but they were counted as a strange thing." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11-12", + "version": "kjv" +} diff --git a/scripture/kjv/02/11/24/scripture.md b/scripture/kjv/02/11/24/scripture.md new file mode 100644 index 00000000..ae8641c2 --- /dev/null +++ b/scripture/kjv/02/11/24/scripture.md @@ -0,0 +1,5 @@ +**Hosea 8:11-12** + +11 Because Ephraim hath made many altars to sin, altars shall be unto him to sin. 12 I have written to him the great things of my law, but they were counted as a strange thing. + +[Sunday 11-February, 2024](https://getbible.life/kjv/Hosea/8/11-12) diff --git a/scripture/kjv/02/11/24/scripture.tg b/scripture/kjv/02/11/24/scripture.tg new file mode 100644 index 00000000..ed37d501 --- /dev/null +++ b/scripture/kjv/02/11/24/scripture.tg @@ -0,0 +1,4 @@ +Hosea 8:11-12 +11 Because Ephraim hath made many altars to sin, altars shall be unto him to sin. 12 I have written to him the great things of my law, but they were counted as a strange thing. + +Sunday 11-February, 2024 diff --git a/scripture/kjv/02/11/24/scripture.tg.id b/scripture/kjv/02/11/24/scripture.tg.id new file mode 100644 index 00000000..4f720374 --- /dev/null +++ b/scripture/kjv/02/11/24/scripture.tg.id @@ -0,0 +1 @@ +1227 diff --git a/scripture/kjv/02/11/24/scripture.today b/scripture/kjv/02/11/24/scripture.today new file mode 100644 index 00000000..8481f513 --- /dev/null +++ b/scripture/kjv/02/11/24/scripture.today @@ -0,0 +1 @@ +28 8:11-12 diff --git a/scripture/kjv/02/11/25/scripture.html b/scripture/kjv/02/11/25/scripture.html new file mode 100644 index 00000000..8ba5640c --- /dev/null +++ b/scripture/kjv/02/11/25/scripture.html @@ -0,0 +1,3 @@ +1 Thessalonians 4:11-12
+11 And that ye study to be quiet, and to do your own business, and to work with your own hands, as we commanded you; 12 That ye may walk honestly toward them that are without, and that ye may have lack of nothing.

+Tuesday 11-February, 2025 diff --git a/scripture/kjv/02/11/25/scripture.json b/scripture/kjv/02/11/25/scripture.json new file mode 100644 index 00000000..e785f6ee --- /dev/null +++ b/scripture/kjv/02/11/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "1 Thessalonians", + "chapter": "4", + "date": "Tuesday 11-February, 2025", + "getbible": "https://getbible.life/kjv/1 Thessalonians/4/11-12", + "name": "1 Thessalonians 4:11-12", + "scripture": [ + { + "nr": "11", + "text": "And that ye study to be quiet, and to do your own business, and to work with your own hands, as we commanded you;" + }, + { + "nr": "12", + "text": "That ye may walk honestly toward them that are without, and that ye may have lack of nothing." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11-12", + "version": "kjv" +} diff --git a/scripture/kjv/02/11/25/scripture.md b/scripture/kjv/02/11/25/scripture.md new file mode 100644 index 00000000..2ec241ad --- /dev/null +++ b/scripture/kjv/02/11/25/scripture.md @@ -0,0 +1,5 @@ +**1 Thessalonians 4:11-12** + +11 And that ye study to be quiet, and to do your own business, and to work with your own hands, as we commanded you; 12 That ye may walk honestly toward them that are without, and that ye may have lack of nothing. + +[Tuesday 11-February, 2025](https://getbible.life/kjv/1 Thessalonians/4/11-12) diff --git a/scripture/kjv/02/11/25/scripture.tg b/scripture/kjv/02/11/25/scripture.tg new file mode 100644 index 00000000..52d56bb1 --- /dev/null +++ b/scripture/kjv/02/11/25/scripture.tg @@ -0,0 +1,4 @@ +1 Thessalonians 4:11-12 +11 And that ye study to be quiet, and to do your own business, and to work with your own hands, as we commanded you; 12 That ye may walk honestly toward them that are without, and that ye may have lack of nothing. + +Tuesday 11-February, 2025 diff --git a/scripture/kjv/02/11/25/scripture.tg.id b/scripture/kjv/02/11/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/11/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/11/25/scripture.today b/scripture/kjv/02/11/25/scripture.today new file mode 100644 index 00000000..5fc289e1 --- /dev/null +++ b/scripture/kjv/02/11/25/scripture.today @@ -0,0 +1 @@ +52 4:11-12 diff --git a/scripture/kjv/02/11/26/scripture.html b/scripture/kjv/02/11/26/scripture.html new file mode 100644 index 00000000..984b8432 --- /dev/null +++ b/scripture/kjv/02/11/26/scripture.html @@ -0,0 +1,3 @@ +Luke 21:13
+13 And it shall turn to you for a testimony.

+Wednesday 11-February, 2026 diff --git a/scripture/kjv/02/11/26/scripture.json b/scripture/kjv/02/11/26/scripture.json new file mode 100644 index 00000000..89720091 --- /dev/null +++ b/scripture/kjv/02/11/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "21", + "date": "Wednesday 11-February, 2026", + "getbible": "https://getbible.life/kjv/Luke/21/13", + "name": "Luke 21:13", + "scripture": [ + { + "nr": "13", + "text": "And it shall turn to you for a testimony." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13", + "version": "kjv" +} diff --git a/scripture/kjv/02/11/26/scripture.md b/scripture/kjv/02/11/26/scripture.md new file mode 100644 index 00000000..50b316a6 --- /dev/null +++ b/scripture/kjv/02/11/26/scripture.md @@ -0,0 +1,5 @@ +**Luke 21:13** + +13 And it shall turn to you for a testimony. + +[Wednesday 11-February, 2026](https://getbible.life/kjv/Luke/21/13) diff --git a/scripture/kjv/02/11/26/scripture.tg b/scripture/kjv/02/11/26/scripture.tg new file mode 100644 index 00000000..06c56eb5 --- /dev/null +++ b/scripture/kjv/02/11/26/scripture.tg @@ -0,0 +1,4 @@ +Luke 21:13 +13 And it shall turn to you for a testimony. + +Wednesday 11-February, 2026 diff --git a/scripture/kjv/02/11/26/scripture.tg.id b/scripture/kjv/02/11/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/11/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/11/26/scripture.today b/scripture/kjv/02/11/26/scripture.today new file mode 100644 index 00000000..239738e9 --- /dev/null +++ b/scripture/kjv/02/11/26/scripture.today @@ -0,0 +1 @@ +42 21:13 diff --git a/scripture/kjv/02/12/23/scripture.html b/scripture/kjv/02/12/23/scripture.html new file mode 100644 index 00000000..56472ef3 --- /dev/null +++ b/scripture/kjv/02/12/23/scripture.html @@ -0,0 +1,3 @@ +Acts 27:22
+22 And now I exhort you to be of good cheer: for there shall be no loss of any man’s life among you, but of the ship.

+Sunday 12-February, 2023 diff --git a/scripture/kjv/02/12/23/scripture.json b/scripture/kjv/02/12/23/scripture.json new file mode 100644 index 00000000..2dcda3b0 --- /dev/null +++ b/scripture/kjv/02/12/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Sunday 12-February, 2023", + "name": "Acts 27:22", + "scripture": [ + { + "nr": "22", + "text": "And now I exhort you to be of good cheer: for there shall be no loss of any man’s life among you, but of the ship." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/02/12/23/scripture.md b/scripture/kjv/02/12/23/scripture.md new file mode 100644 index 00000000..7c041df8 --- /dev/null +++ b/scripture/kjv/02/12/23/scripture.md @@ -0,0 +1,5 @@ +**Acts 27:22** + +22 And now I exhort you to be of good cheer: for there shall be no loss of any man’s life among you, but of the ship. + +[Sunday 12-February, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/02/12/23/scripture.tg b/scripture/kjv/02/12/23/scripture.tg new file mode 100644 index 00000000..54fcdb44 --- /dev/null +++ b/scripture/kjv/02/12/23/scripture.tg @@ -0,0 +1,4 @@ +Acts 27:22 +22 And now I exhort you to be of good cheer: for there shall be no loss of any man’s life among you, but of the ship. + +Sunday 12-February, 2023 diff --git a/scripture/kjv/02/12/23/scripture.today b/scripture/kjv/02/12/23/scripture.today new file mode 100644 index 00000000..190c58e8 --- /dev/null +++ b/scripture/kjv/02/12/23/scripture.today @@ -0,0 +1 @@ +44 27:22 diff --git a/scripture/kjv/02/12/24/scripture.html b/scripture/kjv/02/12/24/scripture.html new file mode 100644 index 00000000..94c98b20 --- /dev/null +++ b/scripture/kjv/02/12/24/scripture.html @@ -0,0 +1,3 @@ +Job 6:14
+14 To him that is afflicted pity should be shewed from his friend; but he forsaketh the fear of the Almighty.

+Monday 12-February, 2024 diff --git a/scripture/kjv/02/12/24/scripture.json b/scripture/kjv/02/12/24/scripture.json new file mode 100644 index 00000000..118c6d2f --- /dev/null +++ b/scripture/kjv/02/12/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Job", + "chapter": "6", + "date": "Monday 12-February, 2024", + "getbible": "https://getbible.life/kjv/Job/6/14", + "name": "Job 6:14", + "scripture": [ + { + "nr": "14", + "text": "To him that is afflicted pity should be shewed from his friend; but he forsaketh the fear of the Almighty." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/02/12/24/scripture.md b/scripture/kjv/02/12/24/scripture.md new file mode 100644 index 00000000..2679444b --- /dev/null +++ b/scripture/kjv/02/12/24/scripture.md @@ -0,0 +1,5 @@ +**Job 6:14** + +14 To him that is afflicted pity should be shewed from his friend; but he forsaketh the fear of the Almighty. + +[Monday 12-February, 2024](https://getbible.life/kjv/Job/6/14) diff --git a/scripture/kjv/02/12/24/scripture.tg b/scripture/kjv/02/12/24/scripture.tg new file mode 100644 index 00000000..fa8e457b --- /dev/null +++ b/scripture/kjv/02/12/24/scripture.tg @@ -0,0 +1,4 @@ +Job 6:14 +14 To him that is afflicted pity should be shewed from his friend; but he forsaketh the fear of the Almighty. + +Monday 12-February, 2024 diff --git a/scripture/kjv/02/12/24/scripture.tg.id b/scripture/kjv/02/12/24/scripture.tg.id new file mode 100644 index 00000000..fe1b0608 --- /dev/null +++ b/scripture/kjv/02/12/24/scripture.tg.id @@ -0,0 +1 @@ +1228 diff --git a/scripture/kjv/02/12/24/scripture.today b/scripture/kjv/02/12/24/scripture.today new file mode 100644 index 00000000..12ba583a --- /dev/null +++ b/scripture/kjv/02/12/24/scripture.today @@ -0,0 +1 @@ +18 6:14 diff --git a/scripture/kjv/02/12/25/scripture.html b/scripture/kjv/02/12/25/scripture.html new file mode 100644 index 00000000..13a461b1 --- /dev/null +++ b/scripture/kjv/02/12/25/scripture.html @@ -0,0 +1,3 @@ +John 16:14
+14 He shall glorify me: for he shall receive of mine, and shall shew it unto you.

+Wednesday 12-February, 2025 diff --git a/scripture/kjv/02/12/25/scripture.json b/scripture/kjv/02/12/25/scripture.json new file mode 100644 index 00000000..1aa5ac32 --- /dev/null +++ b/scripture/kjv/02/12/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "16", + "date": "Wednesday 12-February, 2025", + "getbible": "https://getbible.life/kjv/John/16/14", + "name": "John 16:14", + "scripture": [ + { + "nr": "14", + "text": "He shall glorify me: for he shall receive of mine, and shall shew it unto you." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/02/12/25/scripture.md b/scripture/kjv/02/12/25/scripture.md new file mode 100644 index 00000000..00d1f1e3 --- /dev/null +++ b/scripture/kjv/02/12/25/scripture.md @@ -0,0 +1,5 @@ +**John 16:14** + +14 He shall glorify me: for he shall receive of mine, and shall shew it unto you. + +[Wednesday 12-February, 2025](https://getbible.life/kjv/John/16/14) diff --git a/scripture/kjv/02/12/25/scripture.tg b/scripture/kjv/02/12/25/scripture.tg new file mode 100644 index 00000000..4f9a8d40 --- /dev/null +++ b/scripture/kjv/02/12/25/scripture.tg @@ -0,0 +1,4 @@ +John 16:14 +14 He shall glorify me: for he shall receive of mine, and shall shew it unto you. + +Wednesday 12-February, 2025 diff --git a/scripture/kjv/02/12/25/scripture.tg.id b/scripture/kjv/02/12/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/12/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/12/25/scripture.today b/scripture/kjv/02/12/25/scripture.today new file mode 100644 index 00000000..15b7c753 --- /dev/null +++ b/scripture/kjv/02/12/25/scripture.today @@ -0,0 +1 @@ +43 16:14 diff --git a/scripture/kjv/02/12/26/scripture.html b/scripture/kjv/02/12/26/scripture.html new file mode 100644 index 00000000..6a958b88 --- /dev/null +++ b/scripture/kjv/02/12/26/scripture.html @@ -0,0 +1,3 @@ +Revelation 3:2
+2 Be watchful, and strengthen the things which remain, that are ready to die: for I have not found thy works perfect before God.

+Thursday 12-February, 2026 diff --git a/scripture/kjv/02/12/26/scripture.json b/scripture/kjv/02/12/26/scripture.json new file mode 100644 index 00000000..f85d445b --- /dev/null +++ b/scripture/kjv/02/12/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Revelation", + "chapter": "3", + "date": "Thursday 12-February, 2026", + "getbible": "https://getbible.life/kjv/Revelation/3/2", + "name": "Revelation 3:2", + "scripture": [ + { + "nr": "2", + "text": "Be watchful, and strengthen the things which remain, that are ready to die: for I have not found thy works perfect before God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "2", + "version": "kjv" +} diff --git a/scripture/kjv/02/12/26/scripture.md b/scripture/kjv/02/12/26/scripture.md new file mode 100644 index 00000000..5c5e22e4 --- /dev/null +++ b/scripture/kjv/02/12/26/scripture.md @@ -0,0 +1,5 @@ +**Revelation 3:2** + +2 Be watchful, and strengthen the things which remain, that are ready to die: for I have not found thy works perfect before God. + +[Thursday 12-February, 2026](https://getbible.life/kjv/Revelation/3/2) diff --git a/scripture/kjv/02/12/26/scripture.tg b/scripture/kjv/02/12/26/scripture.tg new file mode 100644 index 00000000..d34b6830 --- /dev/null +++ b/scripture/kjv/02/12/26/scripture.tg @@ -0,0 +1,4 @@ +Revelation 3:2 +2 Be watchful, and strengthen the things which remain, that are ready to die: for I have not found thy works perfect before God. + +Thursday 12-February, 2026 diff --git a/scripture/kjv/02/12/26/scripture.today b/scripture/kjv/02/12/26/scripture.today new file mode 100644 index 00000000..865dc2c6 --- /dev/null +++ b/scripture/kjv/02/12/26/scripture.today @@ -0,0 +1 @@ +66 3:2 diff --git a/scripture/kjv/02/13/23/scripture.html b/scripture/kjv/02/13/23/scripture.html new file mode 100644 index 00000000..bb2865d7 --- /dev/null +++ b/scripture/kjv/02/13/23/scripture.html @@ -0,0 +1,3 @@ +Job 8:5-7
+5 If thou wouldest seek unto God betimes, and make thy supplication to the Almighty; 6 If thou wert pure and upright; surely now he would awake for thee, and make the habitation of thy righteousness prosperous. 7 Though thy beginning was small, yet thy latter end should greatly increase.

+Monday 13-February, 2023 diff --git a/scripture/kjv/02/13/23/scripture.json b/scripture/kjv/02/13/23/scripture.json new file mode 100644 index 00000000..654ccbff --- /dev/null +++ b/scripture/kjv/02/13/23/scripture.json @@ -0,0 +1,21 @@ +{ + "date": "Monday 13-February, 2023", + "name": "Job 8:5-7", + "scripture": [ + { + "nr": "5", + "text": "If thou wouldest seek unto God betimes, and make thy supplication to the Almighty;" + }, + { + "nr": "6", + "text": "If thou wert pure and upright; surely now he would awake for thee, and make the habitation of thy righteousness prosperous." + }, + { + "nr": "7", + "text": "Though thy beginning was small, yet thy latter end should greatly increase." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/02/13/23/scripture.md b/scripture/kjv/02/13/23/scripture.md new file mode 100644 index 00000000..5604c388 --- /dev/null +++ b/scripture/kjv/02/13/23/scripture.md @@ -0,0 +1,5 @@ +**Job 8:5-7** + +5 If thou wouldest seek unto God betimes, and make thy supplication to the Almighty; 6 If thou wert pure and upright; surely now he would awake for thee, and make the habitation of thy righteousness prosperous. 7 Though thy beginning was small, yet thy latter end should greatly increase. + +[Monday 13-February, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/02/13/23/scripture.tg b/scripture/kjv/02/13/23/scripture.tg new file mode 100644 index 00000000..8632941f --- /dev/null +++ b/scripture/kjv/02/13/23/scripture.tg @@ -0,0 +1,4 @@ +Job 8:5-7 +5 If thou wouldest seek unto God betimes, and make thy supplication to the Almighty; 6 If thou wert pure and upright; surely now he would awake for thee, and make the habitation of thy righteousness prosperous. 7 Though thy beginning was small, yet thy latter end should greatly increase. + +Monday 13-February, 2023 diff --git a/scripture/kjv/02/13/23/scripture.today b/scripture/kjv/02/13/23/scripture.today new file mode 100644 index 00000000..f7475f67 --- /dev/null +++ b/scripture/kjv/02/13/23/scripture.today @@ -0,0 +1 @@ +18 8:5-7 diff --git a/scripture/kjv/02/13/24/scripture.html b/scripture/kjv/02/13/24/scripture.html new file mode 100644 index 00000000..092b63d5 --- /dev/null +++ b/scripture/kjv/02/13/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 12:5
+5 For the oppression of the poor, for the sighing of the needy, now will I arise, saith the Lord; I will set him in safety from him that puffeth at him.

+Tuesday 13-February, 2024 diff --git a/scripture/kjv/02/13/24/scripture.json b/scripture/kjv/02/13/24/scripture.json new file mode 100644 index 00000000..7fd271f1 --- /dev/null +++ b/scripture/kjv/02/13/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "12", + "date": "Tuesday 13-February, 2024", + "getbible": "https://getbible.life/kjv/Psalms/12/5", + "name": "Psalms 12:5", + "scripture": [ + { + "nr": "5", + "text": "For the oppression of the poor, for the sighing of the needy, now will I arise, saith the Lord; I will set him in safety from him that puffeth at him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5", + "version": "kjv" +} diff --git a/scripture/kjv/02/13/24/scripture.md b/scripture/kjv/02/13/24/scripture.md new file mode 100644 index 00000000..049bb304 --- /dev/null +++ b/scripture/kjv/02/13/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 12:5** + +5 For the oppression of the poor, for the sighing of the needy, now will I arise, saith the Lord; I will set him in safety from him that puffeth at him. + +[Tuesday 13-February, 2024](https://getbible.life/kjv/Psalms/12/5) diff --git a/scripture/kjv/02/13/24/scripture.tg b/scripture/kjv/02/13/24/scripture.tg new file mode 100644 index 00000000..4e6c0965 --- /dev/null +++ b/scripture/kjv/02/13/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 12:5 +5 For the oppression of the poor, for the sighing of the needy, now will I arise, saith the Lord; I will set him in safety from him that puffeth at him. + +Tuesday 13-February, 2024 diff --git a/scripture/kjv/02/13/24/scripture.tg.id b/scripture/kjv/02/13/24/scripture.tg.id new file mode 100644 index 00000000..f954c7ae --- /dev/null +++ b/scripture/kjv/02/13/24/scripture.tg.id @@ -0,0 +1 @@ +1229 diff --git a/scripture/kjv/02/13/24/scripture.today b/scripture/kjv/02/13/24/scripture.today new file mode 100644 index 00000000..3acda78a --- /dev/null +++ b/scripture/kjv/02/13/24/scripture.today @@ -0,0 +1 @@ +19 12:5 diff --git a/scripture/kjv/02/13/25/scripture.html b/scripture/kjv/02/13/25/scripture.html new file mode 100644 index 00000000..9b6357a4 --- /dev/null +++ b/scripture/kjv/02/13/25/scripture.html @@ -0,0 +1,3 @@ +Philippians 2:27
+27 For indeed he was sick nigh unto death: but God had mercy on him; and not on him only, but on me also, lest I should have sorrow upon sorrow.

+Thursday 13-February, 2025 diff --git a/scripture/kjv/02/13/25/scripture.json b/scripture/kjv/02/13/25/scripture.json new file mode 100644 index 00000000..bd94c24f --- /dev/null +++ b/scripture/kjv/02/13/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Philippians", + "chapter": "2", + "date": "Thursday 13-February, 2025", + "getbible": "https://getbible.life/kjv/Philippians/2/27", + "name": "Philippians 2:27", + "scripture": [ + { + "nr": "27", + "text": "For indeed he was sick nigh unto death: but God had mercy on him; and not on him only, but on me also, lest I should have sorrow upon sorrow." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "27", + "version": "kjv" +} diff --git a/scripture/kjv/02/13/25/scripture.md b/scripture/kjv/02/13/25/scripture.md new file mode 100644 index 00000000..d91fd41d --- /dev/null +++ b/scripture/kjv/02/13/25/scripture.md @@ -0,0 +1,5 @@ +**Philippians 2:27** + +27 For indeed he was sick nigh unto death: but God had mercy on him; and not on him only, but on me also, lest I should have sorrow upon sorrow. + +[Thursday 13-February, 2025](https://getbible.life/kjv/Philippians/2/27) diff --git a/scripture/kjv/02/13/25/scripture.tg b/scripture/kjv/02/13/25/scripture.tg new file mode 100644 index 00000000..4e02f83f --- /dev/null +++ b/scripture/kjv/02/13/25/scripture.tg @@ -0,0 +1,4 @@ +Philippians 2:27 +27 For indeed he was sick nigh unto death: but God had mercy on him; and not on him only, but on me also, lest I should have sorrow upon sorrow. + +Thursday 13-February, 2025 diff --git a/scripture/kjv/02/13/25/scripture.tg.id b/scripture/kjv/02/13/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/13/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/13/25/scripture.today b/scripture/kjv/02/13/25/scripture.today new file mode 100644 index 00000000..dce191eb --- /dev/null +++ b/scripture/kjv/02/13/25/scripture.today @@ -0,0 +1 @@ +50 2:27 diff --git a/scripture/kjv/02/13/26/scripture.html b/scripture/kjv/02/13/26/scripture.html new file mode 100644 index 00000000..425e8acf --- /dev/null +++ b/scripture/kjv/02/13/26/scripture.html @@ -0,0 +1,3 @@ +Isaiah 3:11
+11 Woe unto the wicked! it shall be ill with him: for the reward of his hands shall be given him.

+Friday 13-February, 2026 diff --git a/scripture/kjv/02/13/26/scripture.json b/scripture/kjv/02/13/26/scripture.json new file mode 100644 index 00000000..86ef36ae --- /dev/null +++ b/scripture/kjv/02/13/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "3", + "date": "Friday 13-February, 2026", + "getbible": "https://getbible.life/kjv/Isaiah/3/11", + "name": "Isaiah 3:11", + "scripture": [ + { + "nr": "11", + "text": "Woe unto the wicked! it shall be ill with him: for the reward of his hands shall be given him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/02/13/26/scripture.md b/scripture/kjv/02/13/26/scripture.md new file mode 100644 index 00000000..279217db --- /dev/null +++ b/scripture/kjv/02/13/26/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 3:11** + +11 Woe unto the wicked! it shall be ill with him: for the reward of his hands shall be given him. + +[Friday 13-February, 2026](https://getbible.life/kjv/Isaiah/3/11) diff --git a/scripture/kjv/02/13/26/scripture.tg b/scripture/kjv/02/13/26/scripture.tg new file mode 100644 index 00000000..13d9848a --- /dev/null +++ b/scripture/kjv/02/13/26/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 3:11 +11 Woe unto the wicked! it shall be ill with him: for the reward of his hands shall be given him. + +Friday 13-February, 2026 diff --git a/scripture/kjv/02/13/26/scripture.tg.id b/scripture/kjv/02/13/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/13/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/13/26/scripture.today b/scripture/kjv/02/13/26/scripture.today new file mode 100644 index 00000000..5ce380b9 --- /dev/null +++ b/scripture/kjv/02/13/26/scripture.today @@ -0,0 +1 @@ +23 3:11 diff --git a/scripture/kjv/02/14/23/scripture.html b/scripture/kjv/02/14/23/scripture.html new file mode 100644 index 00000000..94680d0e --- /dev/null +++ b/scripture/kjv/02/14/23/scripture.html @@ -0,0 +1,3 @@ +Daniel 4:27
+27 Wherefore, O king, let my counsel be acceptable unto thee, and break off thy sins by righteousness, and thine iniquities by shewing mercy to the poor; if it may be a lengthening of thy tranquillity.

+Tuesday 14-February, 2023 diff --git a/scripture/kjv/02/14/23/scripture.json b/scripture/kjv/02/14/23/scripture.json new file mode 100644 index 00000000..9e85397f --- /dev/null +++ b/scripture/kjv/02/14/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Tuesday 14-February, 2023", + "name": "Daniel 4:27", + "scripture": [ + { + "nr": "27", + "text": "Wherefore, O king, let my counsel be acceptable unto thee, and break off thy sins by righteousness, and thine iniquities by shewing mercy to the poor; if it may be a lengthening of thy tranquillity." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/02/14/23/scripture.md b/scripture/kjv/02/14/23/scripture.md new file mode 100644 index 00000000..4368ee4a --- /dev/null +++ b/scripture/kjv/02/14/23/scripture.md @@ -0,0 +1,5 @@ +**Daniel 4:27** + +27 Wherefore, O king, let my counsel be acceptable unto thee, and break off thy sins by righteousness, and thine iniquities by shewing mercy to the poor; if it may be a lengthening of thy tranquillity. + +[Tuesday 14-February, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/02/14/23/scripture.tg b/scripture/kjv/02/14/23/scripture.tg new file mode 100644 index 00000000..378b38d5 --- /dev/null +++ b/scripture/kjv/02/14/23/scripture.tg @@ -0,0 +1,4 @@ +Daniel 4:27 +27 Wherefore, O king, let my counsel be acceptable unto thee, and break off thy sins by righteousness, and thine iniquities by shewing mercy to the poor; if it may be a lengthening of thy tranquillity. + +Tuesday 14-February, 2023 diff --git a/scripture/kjv/02/14/23/scripture.today b/scripture/kjv/02/14/23/scripture.today new file mode 100644 index 00000000..c65b6e64 --- /dev/null +++ b/scripture/kjv/02/14/23/scripture.today @@ -0,0 +1 @@ +27 4:27 diff --git a/scripture/kjv/02/14/24/scripture.html b/scripture/kjv/02/14/24/scripture.html new file mode 100644 index 00000000..ca02d47a --- /dev/null +++ b/scripture/kjv/02/14/24/scripture.html @@ -0,0 +1,3 @@ +John 12:26
+26 If any man serve me, let him follow me; and where I am, there shall also my servant be: if any man serve me, him will my Father honour.

+Wednesday 14-February, 2024 diff --git a/scripture/kjv/02/14/24/scripture.json b/scripture/kjv/02/14/24/scripture.json new file mode 100644 index 00000000..3519b7e7 --- /dev/null +++ b/scripture/kjv/02/14/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "12", + "date": "Wednesday 14-February, 2024", + "getbible": "https://getbible.life/kjv/John/12/26", + "name": "John 12:26", + "scripture": [ + { + "nr": "26", + "text": "If any man serve me, let him follow me; and where I am, there shall also my servant be: if any man serve me, him will my Father honour." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "26", + "version": "kjv" +} diff --git a/scripture/kjv/02/14/24/scripture.md b/scripture/kjv/02/14/24/scripture.md new file mode 100644 index 00000000..a7aec7e9 --- /dev/null +++ b/scripture/kjv/02/14/24/scripture.md @@ -0,0 +1,5 @@ +**John 12:26** + +26 If any man serve me, let him follow me; and where I am, there shall also my servant be: if any man serve me, him will my Father honour. + +[Wednesday 14-February, 2024](https://getbible.life/kjv/John/12/26) diff --git a/scripture/kjv/02/14/24/scripture.tg b/scripture/kjv/02/14/24/scripture.tg new file mode 100644 index 00000000..25a8b824 --- /dev/null +++ b/scripture/kjv/02/14/24/scripture.tg @@ -0,0 +1,4 @@ +John 12:26 +26 If any man serve me, let him follow me; and where I am, there shall also my servant be: if any man serve me, him will my Father honour. + +Wednesday 14-February, 2024 diff --git a/scripture/kjv/02/14/24/scripture.tg.id b/scripture/kjv/02/14/24/scripture.tg.id new file mode 100644 index 00000000..f70eccf2 --- /dev/null +++ b/scripture/kjv/02/14/24/scripture.tg.id @@ -0,0 +1 @@ +1230 diff --git a/scripture/kjv/02/14/24/scripture.today b/scripture/kjv/02/14/24/scripture.today new file mode 100644 index 00000000..ce00cf77 --- /dev/null +++ b/scripture/kjv/02/14/24/scripture.today @@ -0,0 +1 @@ +43 12:26 diff --git a/scripture/kjv/02/14/25/scripture.html b/scripture/kjv/02/14/25/scripture.html new file mode 100644 index 00000000..8f1a5204 --- /dev/null +++ b/scripture/kjv/02/14/25/scripture.html @@ -0,0 +1,3 @@ +Luke 21:37-38
+37 And in the day time he was teaching in the temple; and at night he went out, and abode in the mount that is called the mount of Olives. 38 And all the people came early in the morning to him in the temple, for to hear him.

+Friday 14-February, 2025 diff --git a/scripture/kjv/02/14/25/scripture.json b/scripture/kjv/02/14/25/scripture.json new file mode 100644 index 00000000..61d71286 --- /dev/null +++ b/scripture/kjv/02/14/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Luke", + "chapter": "21", + "date": "Friday 14-February, 2025", + "getbible": "https://getbible.life/kjv/Luke/21/37-38", + "name": "Luke 21:37-38", + "scripture": [ + { + "nr": "37", + "text": "And in the day time he was teaching in the temple; and at night he went out, and abode in the mount that is called the mount of Olives." + }, + { + "nr": "38", + "text": "And all the people came early in the morning to him in the temple, for to hear him. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "37-38", + "version": "kjv" +} diff --git a/scripture/kjv/02/14/25/scripture.md b/scripture/kjv/02/14/25/scripture.md new file mode 100644 index 00000000..236e6159 --- /dev/null +++ b/scripture/kjv/02/14/25/scripture.md @@ -0,0 +1,5 @@ +**Luke 21:37-38** + +37 And in the day time he was teaching in the temple; and at night he went out, and abode in the mount that is called the mount of Olives. 38 And all the people came early in the morning to him in the temple, for to hear him. + +[Friday 14-February, 2025](https://getbible.life/kjv/Luke/21/37-38) diff --git a/scripture/kjv/02/14/25/scripture.tg b/scripture/kjv/02/14/25/scripture.tg new file mode 100644 index 00000000..6ae0a6da --- /dev/null +++ b/scripture/kjv/02/14/25/scripture.tg @@ -0,0 +1,4 @@ +Luke 21:37-38 +37 And in the day time he was teaching in the temple; and at night he went out, and abode in the mount that is called the mount of Olives. 38 And all the people came early in the morning to him in the temple, for to hear him. + +Friday 14-February, 2025 diff --git a/scripture/kjv/02/14/25/scripture.tg.id b/scripture/kjv/02/14/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/14/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/14/25/scripture.today b/scripture/kjv/02/14/25/scripture.today new file mode 100644 index 00000000..c394ccdf --- /dev/null +++ b/scripture/kjv/02/14/25/scripture.today @@ -0,0 +1 @@ +42 21:37-38 diff --git a/scripture/kjv/02/14/26/scripture.html b/scripture/kjv/02/14/26/scripture.html new file mode 100644 index 00000000..bb7d8f09 --- /dev/null +++ b/scripture/kjv/02/14/26/scripture.html @@ -0,0 +1,3 @@ +1 Thessalonians 4:11-12
+11 And that ye study to be quiet, and to do your own business, and to work with your own hands, as we commanded you; 12 That ye may walk honestly toward them that are without, and that ye may have lack of nothing.

+Saturday 14-February, 2026 diff --git a/scripture/kjv/02/14/26/scripture.json b/scripture/kjv/02/14/26/scripture.json new file mode 100644 index 00000000..1bbbcf2a --- /dev/null +++ b/scripture/kjv/02/14/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "1 Thessalonians", + "chapter": "4", + "date": "Saturday 14-February, 2026", + "getbible": "https://getbible.life/kjv/1 Thessalonians/4/11-12", + "name": "1 Thessalonians 4:11-12", + "scripture": [ + { + "nr": "11", + "text": "And that ye study to be quiet, and to do your own business, and to work with your own hands, as we commanded you;" + }, + { + "nr": "12", + "text": "That ye may walk honestly toward them that are without, and that ye may have lack of nothing." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11-12", + "version": "kjv" +} diff --git a/scripture/kjv/02/14/26/scripture.md b/scripture/kjv/02/14/26/scripture.md new file mode 100644 index 00000000..5994a7a0 --- /dev/null +++ b/scripture/kjv/02/14/26/scripture.md @@ -0,0 +1,5 @@ +**1 Thessalonians 4:11-12** + +11 And that ye study to be quiet, and to do your own business, and to work with your own hands, as we commanded you; 12 That ye may walk honestly toward them that are without, and that ye may have lack of nothing. + +[Saturday 14-February, 2026](https://getbible.life/kjv/1 Thessalonians/4/11-12) diff --git a/scripture/kjv/02/14/26/scripture.tg b/scripture/kjv/02/14/26/scripture.tg new file mode 100644 index 00000000..9d4722ef --- /dev/null +++ b/scripture/kjv/02/14/26/scripture.tg @@ -0,0 +1,4 @@ +1 Thessalonians 4:11-12 +11 And that ye study to be quiet, and to do your own business, and to work with your own hands, as we commanded you; 12 That ye may walk honestly toward them that are without, and that ye may have lack of nothing. + +Saturday 14-February, 2026 diff --git a/scripture/kjv/02/14/26/scripture.tg.id b/scripture/kjv/02/14/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/14/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/14/26/scripture.today b/scripture/kjv/02/14/26/scripture.today new file mode 100644 index 00000000..5fc289e1 --- /dev/null +++ b/scripture/kjv/02/14/26/scripture.today @@ -0,0 +1 @@ +52 4:11-12 diff --git a/scripture/kjv/02/15/23/scripture.html b/scripture/kjv/02/15/23/scripture.html new file mode 100644 index 00000000..dd017659 --- /dev/null +++ b/scripture/kjv/02/15/23/scripture.html @@ -0,0 +1,3 @@ +Matthew 18:1-4
+1 At the same time came the disciples unto Jesus, saying, Who is the greatest in the kingdom of heaven? 2 And Jesus called a little child unto him, and set him in the midst of them, 3 And said, Verily I say unto you, Except ye be converted, and become as little children, ye shall not enter into the kingdom of heaven. 4 Whosoever therefore shall humble himself as this little child, the same is greatest in the kingdom of heaven.

+Wednesday 15-February, 2023 diff --git a/scripture/kjv/02/15/23/scripture.json b/scripture/kjv/02/15/23/scripture.json new file mode 100644 index 00000000..3bd19fcd --- /dev/null +++ b/scripture/kjv/02/15/23/scripture.json @@ -0,0 +1,25 @@ +{ + "date": "Wednesday 15-February, 2023", + "name": "Matthew 18:1-4", + "scripture": [ + { + "nr": "1", + "text": "At the same time came the disciples unto Jesus, saying, Who is the greatest in the kingdom of heaven?" + }, + { + "nr": "2", + "text": "And Jesus called a little child unto him, and set him in the midst of them," + }, + { + "nr": "3", + "text": "And said, Verily I say unto you, Except ye be converted, and become as little children, ye shall not enter into the kingdom of heaven." + }, + { + "nr": "4", + "text": "Whosoever therefore shall humble himself as this little child, the same is greatest in the kingdom of heaven." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/02/15/23/scripture.md b/scripture/kjv/02/15/23/scripture.md new file mode 100644 index 00000000..3e881a8c --- /dev/null +++ b/scripture/kjv/02/15/23/scripture.md @@ -0,0 +1,5 @@ +**Matthew 18:1-4** + +1 At the same time came the disciples unto Jesus, saying, Who is the greatest in the kingdom of heaven? 2 And Jesus called a little child unto him, and set him in the midst of them, 3 And said, Verily I say unto you, Except ye be converted, and become as little children, ye shall not enter into the kingdom of heaven. 4 Whosoever therefore shall humble himself as this little child, the same is greatest in the kingdom of heaven. + +[Wednesday 15-February, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/02/15/23/scripture.tg b/scripture/kjv/02/15/23/scripture.tg new file mode 100644 index 00000000..aee92f78 --- /dev/null +++ b/scripture/kjv/02/15/23/scripture.tg @@ -0,0 +1,4 @@ +Matthew 18:1-4 +1 At the same time came the disciples unto Jesus, saying, Who is the greatest in the kingdom of heaven? 2 And Jesus called a little child unto him, and set him in the midst of them, 3 And said, Verily I say unto you, Except ye be converted, and become as little children, ye shall not enter into the kingdom of heaven. 4 Whosoever therefore shall humble himself as this little child, the same is greatest in the kingdom of heaven. + +Wednesday 15-February, 2023 diff --git a/scripture/kjv/02/15/23/scripture.today b/scripture/kjv/02/15/23/scripture.today new file mode 100644 index 00000000..35ddebde --- /dev/null +++ b/scripture/kjv/02/15/23/scripture.today @@ -0,0 +1 @@ +40 18:1-4 diff --git a/scripture/kjv/02/15/24/scripture.html b/scripture/kjv/02/15/24/scripture.html new file mode 100644 index 00000000..ace4f1f1 --- /dev/null +++ b/scripture/kjv/02/15/24/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 12:15-16
+15 If the foot shall say, Because I am not the hand, I am not of the body; is it therefore not of the body? 16 And if the ear shall say, Because I am not the eye, I am not of the body; is it therefore not of the body?

+Thursday 15-February, 2024 diff --git a/scripture/kjv/02/15/24/scripture.json b/scripture/kjv/02/15/24/scripture.json new file mode 100644 index 00000000..b6b1f1e5 --- /dev/null +++ b/scripture/kjv/02/15/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "1 Corinthians", + "chapter": "12", + "date": "Thursday 15-February, 2024", + "getbible": "https://getbible.life/kjv/1 Corinthians/12/15-16", + "name": "1 Corinthians 12:15-16", + "scripture": [ + { + "nr": "15", + "text": "If the foot shall say, Because I am not the hand, I am not of the body; is it therefore not of the body?" + }, + { + "nr": "16", + "text": "And if the ear shall say, Because I am not the eye, I am not of the body; is it therefore not of the body?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15-16", + "version": "kjv" +} diff --git a/scripture/kjv/02/15/24/scripture.md b/scripture/kjv/02/15/24/scripture.md new file mode 100644 index 00000000..f8487c99 --- /dev/null +++ b/scripture/kjv/02/15/24/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 12:15-16** + +15 If the foot shall say, Because I am not the hand, I am not of the body; is it therefore not of the body? 16 And if the ear shall say, Because I am not the eye, I am not of the body; is it therefore not of the body? + +[Thursday 15-February, 2024](https://getbible.life/kjv/1 Corinthians/12/15-16) diff --git a/scripture/kjv/02/15/24/scripture.tg b/scripture/kjv/02/15/24/scripture.tg new file mode 100644 index 00000000..e6e399a4 --- /dev/null +++ b/scripture/kjv/02/15/24/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 12:15-16 +15 If the foot shall say, Because I am not the hand, I am not of the body; is it therefore not of the body? 16 And if the ear shall say, Because I am not the eye, I am not of the body; is it therefore not of the body? + +Thursday 15-February, 2024 diff --git a/scripture/kjv/02/15/24/scripture.tg.id b/scripture/kjv/02/15/24/scripture.tg.id new file mode 100644 index 00000000..53d108b9 --- /dev/null +++ b/scripture/kjv/02/15/24/scripture.tg.id @@ -0,0 +1 @@ +1231 diff --git a/scripture/kjv/02/15/24/scripture.today b/scripture/kjv/02/15/24/scripture.today new file mode 100644 index 00000000..2c7d3e08 --- /dev/null +++ b/scripture/kjv/02/15/24/scripture.today @@ -0,0 +1 @@ +46 12:15-16 diff --git a/scripture/kjv/02/15/25/scripture.html b/scripture/kjv/02/15/25/scripture.html new file mode 100644 index 00000000..4cbf1859 --- /dev/null +++ b/scripture/kjv/02/15/25/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 6:11-13
+11 O ye Corinthians, our mouth is open unto you, our heart is enlarged. 12 Ye are not straitened in us, but ye are straitened in your own bowels. 13 Now for a recompence in the same, (I speak as unto my children,) be ye also enlarged.

+Saturday 15-February, 2025 diff --git a/scripture/kjv/02/15/25/scripture.json b/scripture/kjv/02/15/25/scripture.json new file mode 100644 index 00000000..2913750e --- /dev/null +++ b/scripture/kjv/02/15/25/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "2 Corinthians", + "chapter": "6", + "date": "Saturday 15-February, 2025", + "getbible": "https://getbible.life/kjv/2 Corinthians/6/11-13", + "name": "2 Corinthians 6:11-13", + "scripture": [ + { + "nr": "11", + "text": "O ye Corinthians, our mouth is open unto you, our heart is enlarged." + }, + { + "nr": "12", + "text": "Ye are not straitened in us, but ye are straitened in your own bowels." + }, + { + "nr": "13", + "text": "Now for a recompence in the same, (I speak as unto my children,) be ye also enlarged." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11-13", + "version": "kjv" +} diff --git a/scripture/kjv/02/15/25/scripture.md b/scripture/kjv/02/15/25/scripture.md new file mode 100644 index 00000000..148b8b5f --- /dev/null +++ b/scripture/kjv/02/15/25/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 6:11-13** + +11 O ye Corinthians, our mouth is open unto you, our heart is enlarged. 12 Ye are not straitened in us, but ye are straitened in your own bowels. 13 Now for a recompence in the same, (I speak as unto my children,) be ye also enlarged. + +[Saturday 15-February, 2025](https://getbible.life/kjv/2 Corinthians/6/11-13) diff --git a/scripture/kjv/02/15/25/scripture.tg b/scripture/kjv/02/15/25/scripture.tg new file mode 100644 index 00000000..71918b12 --- /dev/null +++ b/scripture/kjv/02/15/25/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 6:11-13 +11 O ye Corinthians, our mouth is open unto you, our heart is enlarged. 12 Ye are not straitened in us, but ye are straitened in your own bowels. 13 Now for a recompence in the same, (I speak as unto my children,) be ye also enlarged. + +Saturday 15-February, 2025 diff --git a/scripture/kjv/02/15/25/scripture.tg.id b/scripture/kjv/02/15/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/15/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/15/25/scripture.today b/scripture/kjv/02/15/25/scripture.today new file mode 100644 index 00000000..41954b32 --- /dev/null +++ b/scripture/kjv/02/15/25/scripture.today @@ -0,0 +1 @@ +47 6:11-13 diff --git a/scripture/kjv/02/15/26/scripture.html b/scripture/kjv/02/15/26/scripture.html new file mode 100644 index 00000000..4231802e --- /dev/null +++ b/scripture/kjv/02/15/26/scripture.html @@ -0,0 +1,3 @@ +1 John 5:12-13
+12 He that hath the Son hath life; and he that hath not the Son of God hath not life. 13 These things have I written unto you that believe on the name of the Son of God; that ye may know that ye have eternal life, and that ye may believe on the name of the Son of God.

+Sunday 15-February, 2026 diff --git a/scripture/kjv/02/15/26/scripture.json b/scripture/kjv/02/15/26/scripture.json new file mode 100644 index 00000000..4f495457 --- /dev/null +++ b/scripture/kjv/02/15/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "1 John", + "chapter": "5", + "date": "Sunday 15-February, 2026", + "getbible": "https://getbible.life/kjv/1 John/5/12-13", + "name": "1 John 5:12-13", + "scripture": [ + { + "nr": "12", + "text": "He that hath the Son hath life; and he that hath not the Son of God hath not life." + }, + { + "nr": "13", + "text": "These things have I written unto you that believe on the name of the Son of God; that ye may know that ye have eternal life, and that ye may believe on the name of the Son of God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12-13", + "version": "kjv" +} diff --git a/scripture/kjv/02/15/26/scripture.md b/scripture/kjv/02/15/26/scripture.md new file mode 100644 index 00000000..34987517 --- /dev/null +++ b/scripture/kjv/02/15/26/scripture.md @@ -0,0 +1,5 @@ +**1 John 5:12-13** + +12 He that hath the Son hath life; and he that hath not the Son of God hath not life. 13 These things have I written unto you that believe on the name of the Son of God; that ye may know that ye have eternal life, and that ye may believe on the name of the Son of God. + +[Sunday 15-February, 2026](https://getbible.life/kjv/1 John/5/12-13) diff --git a/scripture/kjv/02/15/26/scripture.tg b/scripture/kjv/02/15/26/scripture.tg new file mode 100644 index 00000000..d7824eba --- /dev/null +++ b/scripture/kjv/02/15/26/scripture.tg @@ -0,0 +1,4 @@ +1 John 5:12-13 +12 He that hath the Son hath life; and he that hath not the Son of God hath not life. 13 These things have I written unto you that believe on the name of the Son of God; that ye may know that ye have eternal life, and that ye may believe on the name of the Son of God. + +Sunday 15-February, 2026 diff --git a/scripture/kjv/02/15/26/scripture.tg.id b/scripture/kjv/02/15/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/15/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/15/26/scripture.today b/scripture/kjv/02/15/26/scripture.today new file mode 100644 index 00000000..db486aa8 --- /dev/null +++ b/scripture/kjv/02/15/26/scripture.today @@ -0,0 +1 @@ +62 5:12-13 diff --git a/scripture/kjv/02/16/23/scripture.html b/scripture/kjv/02/16/23/scripture.html new file mode 100644 index 00000000..7b12a420 --- /dev/null +++ b/scripture/kjv/02/16/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 81:11-13
+11 But my people would not hearken to my voice; and Israel would none of me. 12 So I gave them up unto their own hearts’ lust: and they walked in their own counsels. 13 Oh that my people had hearkened unto me, and Israel had walked in my ways!

+Thursday 16-February, 2023 diff --git a/scripture/kjv/02/16/23/scripture.json b/scripture/kjv/02/16/23/scripture.json new file mode 100644 index 00000000..ae92f1b7 --- /dev/null +++ b/scripture/kjv/02/16/23/scripture.json @@ -0,0 +1,21 @@ +{ + "date": "Thursday 16-February, 2023", + "name": "Psalms 81:11-13", + "scripture": [ + { + "nr": "11", + "text": "But my people would not hearken to my voice; and Israel would none of me." + }, + { + "nr": "12", + "text": "So I gave them up unto their own hearts’ lust: and they walked in their own counsels." + }, + { + "nr": "13", + "text": "Oh that my people had hearkened unto me, and Israel had walked in my ways!" + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/02/16/23/scripture.md b/scripture/kjv/02/16/23/scripture.md new file mode 100644 index 00000000..4802c19f --- /dev/null +++ b/scripture/kjv/02/16/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 81:11-13** + +11 But my people would not hearken to my voice; and Israel would none of me. 12 So I gave them up unto their own hearts’ lust: and they walked in their own counsels. 13 Oh that my people had hearkened unto me, and Israel had walked in my ways! + +[Thursday 16-February, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/02/16/23/scripture.tg b/scripture/kjv/02/16/23/scripture.tg new file mode 100644 index 00000000..8ba99323 --- /dev/null +++ b/scripture/kjv/02/16/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 81:11-13 +11 But my people would not hearken to my voice; and Israel would none of me. 12 So I gave them up unto their own hearts’ lust: and they walked in their own counsels. 13 Oh that my people had hearkened unto me, and Israel had walked in my ways! + +Thursday 16-February, 2023 diff --git a/scripture/kjv/02/16/23/scripture.today b/scripture/kjv/02/16/23/scripture.today new file mode 100644 index 00000000..9586549c --- /dev/null +++ b/scripture/kjv/02/16/23/scripture.today @@ -0,0 +1 @@ +19 81:11-13 diff --git a/scripture/kjv/02/16/24/scripture.html b/scripture/kjv/02/16/24/scripture.html new file mode 100644 index 00000000..107d30c7 --- /dev/null +++ b/scripture/kjv/02/16/24/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 4:16
+16 For which cause we faint not; but though our outward man perish, yet the inward man is renewed day by day.

+Friday 16-February, 2024 diff --git a/scripture/kjv/02/16/24/scripture.json b/scripture/kjv/02/16/24/scripture.json new file mode 100644 index 00000000..ae5212a3 --- /dev/null +++ b/scripture/kjv/02/16/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "4", + "date": "Friday 16-February, 2024", + "getbible": "https://getbible.life/kjv/2 Corinthians/4/16", + "name": "2 Corinthians 4:16", + "scripture": [ + { + "nr": "16", + "text": "For which cause we faint not; but though our outward man perish, yet the inward man is renewed day by day." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16", + "version": "kjv" +} diff --git a/scripture/kjv/02/16/24/scripture.md b/scripture/kjv/02/16/24/scripture.md new file mode 100644 index 00000000..767c1974 --- /dev/null +++ b/scripture/kjv/02/16/24/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 4:16** + +16 For which cause we faint not; but though our outward man perish, yet the inward man is renewed day by day. + +[Friday 16-February, 2024](https://getbible.life/kjv/2 Corinthians/4/16) diff --git a/scripture/kjv/02/16/24/scripture.tg b/scripture/kjv/02/16/24/scripture.tg new file mode 100644 index 00000000..7a1c54b5 --- /dev/null +++ b/scripture/kjv/02/16/24/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 4:16 +16 For which cause we faint not; but though our outward man perish, yet the inward man is renewed day by day. + +Friday 16-February, 2024 diff --git a/scripture/kjv/02/16/24/scripture.tg.id b/scripture/kjv/02/16/24/scripture.tg.id new file mode 100644 index 00000000..9ee8e022 --- /dev/null +++ b/scripture/kjv/02/16/24/scripture.tg.id @@ -0,0 +1 @@ +1232 diff --git a/scripture/kjv/02/16/24/scripture.today b/scripture/kjv/02/16/24/scripture.today new file mode 100644 index 00000000..3434b27f --- /dev/null +++ b/scripture/kjv/02/16/24/scripture.today @@ -0,0 +1 @@ +47 4:16 diff --git a/scripture/kjv/02/16/25/scripture.html b/scripture/kjv/02/16/25/scripture.html new file mode 100644 index 00000000..c0e822b3 --- /dev/null +++ b/scripture/kjv/02/16/25/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 15:10
+10 But by the grace of God I am what I am: and his grace which was bestowed upon me was not in vain; but I laboured more abundantly than they all: yet not I, but the grace of God which was with me.

+Sunday 16-February, 2025 diff --git a/scripture/kjv/02/16/25/scripture.json b/scripture/kjv/02/16/25/scripture.json new file mode 100644 index 00000000..fdc00050 --- /dev/null +++ b/scripture/kjv/02/16/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "15", + "date": "Sunday 16-February, 2025", + "getbible": "https://getbible.life/kjv/1 Corinthians/15/10", + "name": "1 Corinthians 15:10", + "scripture": [ + { + "nr": "10", + "text": "But by the grace of God I am what I am: and his grace which was bestowed upon me was not in vain; but I laboured more abundantly than they all: yet not I, but the grace of God which was with me." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/02/16/25/scripture.md b/scripture/kjv/02/16/25/scripture.md new file mode 100644 index 00000000..9c8799d4 --- /dev/null +++ b/scripture/kjv/02/16/25/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 15:10** + +10 But by the grace of God I am what I am: and his grace which was bestowed upon me was not in vain; but I laboured more abundantly than they all: yet not I, but the grace of God which was with me. + +[Sunday 16-February, 2025](https://getbible.life/kjv/1 Corinthians/15/10) diff --git a/scripture/kjv/02/16/25/scripture.tg b/scripture/kjv/02/16/25/scripture.tg new file mode 100644 index 00000000..bf0af9bf --- /dev/null +++ b/scripture/kjv/02/16/25/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 15:10 +10 But by the grace of God I am what I am: and his grace which was bestowed upon me was not in vain; but I laboured more abundantly than they all: yet not I, but the grace of God which was with me. + +Sunday 16-February, 2025 diff --git a/scripture/kjv/02/16/25/scripture.tg.id b/scripture/kjv/02/16/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/16/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/16/25/scripture.today b/scripture/kjv/02/16/25/scripture.today new file mode 100644 index 00000000..6e0e6568 --- /dev/null +++ b/scripture/kjv/02/16/25/scripture.today @@ -0,0 +1 @@ +46 15:10 diff --git a/scripture/kjv/02/16/26/scripture.html b/scripture/kjv/02/16/26/scripture.html new file mode 100644 index 00000000..9e1b0850 --- /dev/null +++ b/scripture/kjv/02/16/26/scripture.html @@ -0,0 +1,3 @@ +Joshua 23:8-11
+8 But cleave unto the Lord your God, as ye have done unto this day. 9 For the Lord hath driven out from before you great nations and strong: but as for you, no man hath been able to stand before you unto this day. 10 One man of you shall chase a thousand: for the Lord your God, he it is that fighteth for you, as he hath promised you. 11 Take good heed therefore unto yourselves, that ye love the Lord your God.

+Monday 16-February, 2026 diff --git a/scripture/kjv/02/16/26/scripture.json b/scripture/kjv/02/16/26/scripture.json new file mode 100644 index 00000000..1d35d94c --- /dev/null +++ b/scripture/kjv/02/16/26/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "Joshua", + "chapter": "23", + "date": "Monday 16-February, 2026", + "getbible": "https://getbible.life/kjv/Joshua/23/8-11", + "name": "Joshua 23:8-11", + "scripture": [ + { + "nr": "8", + "text": "But cleave unto the Lord your God, as ye have done unto this day." + }, + { + "nr": "9", + "text": "For the Lord hath driven out from before you great nations and strong: but as for you, no man hath been able to stand before you unto this day." + }, + { + "nr": "10", + "text": "One man of you shall chase a thousand: for the Lord your God, he it is that fighteth for you, as he hath promised you." + }, + { + "nr": "11", + "text": "Take good heed therefore unto yourselves, that ye love the Lord your God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8-11", + "version": "kjv" +} diff --git a/scripture/kjv/02/16/26/scripture.md b/scripture/kjv/02/16/26/scripture.md new file mode 100644 index 00000000..5f5afa59 --- /dev/null +++ b/scripture/kjv/02/16/26/scripture.md @@ -0,0 +1,5 @@ +**Joshua 23:8-11** + +8 But cleave unto the Lord your God, as ye have done unto this day. 9 For the Lord hath driven out from before you great nations and strong: but as for you, no man hath been able to stand before you unto this day. 10 One man of you shall chase a thousand: for the Lord your God, he it is that fighteth for you, as he hath promised you. 11 Take good heed therefore unto yourselves, that ye love the Lord your God. + +[Monday 16-February, 2026](https://getbible.life/kjv/Joshua/23/8-11) diff --git a/scripture/kjv/02/16/26/scripture.tg b/scripture/kjv/02/16/26/scripture.tg new file mode 100644 index 00000000..b5602d0d --- /dev/null +++ b/scripture/kjv/02/16/26/scripture.tg @@ -0,0 +1,4 @@ +Joshua 23:8-11 +8 But cleave unto the Lord your God, as ye have done unto this day. 9 For the Lord hath driven out from before you great nations and strong: but as for you, no man hath been able to stand before you unto this day. 10 One man of you shall chase a thousand: for the Lord your God, he it is that fighteth for you, as he hath promised you. 11 Take good heed therefore unto yourselves, that ye love the Lord your God. + +Monday 16-February, 2026 diff --git a/scripture/kjv/02/16/26/scripture.today b/scripture/kjv/02/16/26/scripture.today new file mode 100644 index 00000000..95ba8b0f --- /dev/null +++ b/scripture/kjv/02/16/26/scripture.today @@ -0,0 +1 @@ +6 23:8-11 diff --git a/scripture/kjv/02/17/23/scripture.html b/scripture/kjv/02/17/23/scripture.html new file mode 100644 index 00000000..2dfb4b44 --- /dev/null +++ b/scripture/kjv/02/17/23/scripture.html @@ -0,0 +1,3 @@ +Romans 12:17
+17 Recompense to no man evil for evil. Provide things honest in the sight of all men.

+Friday 17-February, 2023 diff --git a/scripture/kjv/02/17/23/scripture.json b/scripture/kjv/02/17/23/scripture.json new file mode 100644 index 00000000..4cfb6f91 --- /dev/null +++ b/scripture/kjv/02/17/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Friday 17-February, 2023", + "name": "Romans 12:17", + "scripture": [ + { + "nr": "17", + "text": "Recompense to no man evil for evil. Provide things honest in the sight of all men." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/02/17/23/scripture.md b/scripture/kjv/02/17/23/scripture.md new file mode 100644 index 00000000..cb06d07e --- /dev/null +++ b/scripture/kjv/02/17/23/scripture.md @@ -0,0 +1,5 @@ +**Romans 12:17** + +17 Recompense to no man evil for evil. Provide things honest in the sight of all men. + +[Friday 17-February, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/02/17/23/scripture.tg b/scripture/kjv/02/17/23/scripture.tg new file mode 100644 index 00000000..b0662826 --- /dev/null +++ b/scripture/kjv/02/17/23/scripture.tg @@ -0,0 +1,4 @@ +Romans 12:17 +17 Recompense to no man evil for evil. Provide things honest in the sight of all men. + +Friday 17-February, 2023 diff --git a/scripture/kjv/02/17/23/scripture.today b/scripture/kjv/02/17/23/scripture.today new file mode 100644 index 00000000..624ef242 --- /dev/null +++ b/scripture/kjv/02/17/23/scripture.today @@ -0,0 +1 @@ +45 12:17 diff --git a/scripture/kjv/02/17/24/scripture.html b/scripture/kjv/02/17/24/scripture.html new file mode 100644 index 00000000..c8388294 --- /dev/null +++ b/scripture/kjv/02/17/24/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 14:1
+1 Follow after charity, and desire spiritual gifts, but rather that ye may prophesy.

+Saturday 17-February, 2024 diff --git a/scripture/kjv/02/17/24/scripture.json b/scripture/kjv/02/17/24/scripture.json new file mode 100644 index 00000000..671334f7 --- /dev/null +++ b/scripture/kjv/02/17/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "14", + "date": "Saturday 17-February, 2024", + "getbible": "https://getbible.life/kjv/1 Corinthians/14/1", + "name": "1 Corinthians 14:1", + "scripture": [ + { + "nr": "1", + "text": "Follow after charity, and desire spiritual gifts, but rather that ye may prophesy." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1", + "version": "kjv" +} diff --git a/scripture/kjv/02/17/24/scripture.md b/scripture/kjv/02/17/24/scripture.md new file mode 100644 index 00000000..b5168b15 --- /dev/null +++ b/scripture/kjv/02/17/24/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 14:1** + +1 Follow after charity, and desire spiritual gifts, but rather that ye may prophesy. + +[Saturday 17-February, 2024](https://getbible.life/kjv/1 Corinthians/14/1) diff --git a/scripture/kjv/02/17/24/scripture.tg b/scripture/kjv/02/17/24/scripture.tg new file mode 100644 index 00000000..1ba2ed92 --- /dev/null +++ b/scripture/kjv/02/17/24/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 14:1 +1 Follow after charity, and desire spiritual gifts, but rather that ye may prophesy. + +Saturday 17-February, 2024 diff --git a/scripture/kjv/02/17/24/scripture.tg.id b/scripture/kjv/02/17/24/scripture.tg.id new file mode 100644 index 00000000..939b0cbc --- /dev/null +++ b/scripture/kjv/02/17/24/scripture.tg.id @@ -0,0 +1 @@ +1233 diff --git a/scripture/kjv/02/17/24/scripture.today b/scripture/kjv/02/17/24/scripture.today new file mode 100644 index 00000000..5229fe8b --- /dev/null +++ b/scripture/kjv/02/17/24/scripture.today @@ -0,0 +1 @@ +46 14:1 diff --git a/scripture/kjv/02/17/25/scripture.html b/scripture/kjv/02/17/25/scripture.html new file mode 100644 index 00000000..b877a5d7 --- /dev/null +++ b/scripture/kjv/02/17/25/scripture.html @@ -0,0 +1,3 @@ +Isaiah 61:9
+9 And their seed shall be known among the Gentiles, and their offspring among the people: all that see them shall acknowledge them, that they are the seed which the Lord hath blessed.

+Monday 17-February, 2025 diff --git a/scripture/kjv/02/17/25/scripture.json b/scripture/kjv/02/17/25/scripture.json new file mode 100644 index 00000000..7890ca78 --- /dev/null +++ b/scripture/kjv/02/17/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "61", + "date": "Monday 17-February, 2025", + "getbible": "https://getbible.life/kjv/Isaiah/61/9", + "name": "Isaiah 61:9", + "scripture": [ + { + "nr": "9", + "text": "And their seed shall be known among the Gentiles, and their offspring among the people: all that see them shall acknowledge them, that they are the seed which the Lord hath blessed." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9", + "version": "kjv" +} diff --git a/scripture/kjv/02/17/25/scripture.md b/scripture/kjv/02/17/25/scripture.md new file mode 100644 index 00000000..9b161e61 --- /dev/null +++ b/scripture/kjv/02/17/25/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 61:9** + +9 And their seed shall be known among the Gentiles, and their offspring among the people: all that see them shall acknowledge them, that they are the seed which the Lord hath blessed. + +[Monday 17-February, 2025](https://getbible.life/kjv/Isaiah/61/9) diff --git a/scripture/kjv/02/17/25/scripture.tg b/scripture/kjv/02/17/25/scripture.tg new file mode 100644 index 00000000..369830c2 --- /dev/null +++ b/scripture/kjv/02/17/25/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 61:9 +9 And their seed shall be known among the Gentiles, and their offspring among the people: all that see them shall acknowledge them, that they are the seed which the Lord hath blessed. + +Monday 17-February, 2025 diff --git a/scripture/kjv/02/17/25/scripture.tg.id b/scripture/kjv/02/17/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/17/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/17/25/scripture.today b/scripture/kjv/02/17/25/scripture.today new file mode 100644 index 00000000..1eca065a --- /dev/null +++ b/scripture/kjv/02/17/25/scripture.today @@ -0,0 +1 @@ +23 61:9 diff --git a/scripture/kjv/02/17/26/scripture.html b/scripture/kjv/02/17/26/scripture.html new file mode 100644 index 00000000..d68081a4 --- /dev/null +++ b/scripture/kjv/02/17/26/scripture.html @@ -0,0 +1,3 @@ +1 John 2:20
+20 But ye have an unction from the Holy One, and ye know all things.

+Tuesday 17-February, 2026 diff --git a/scripture/kjv/02/17/26/scripture.json b/scripture/kjv/02/17/26/scripture.json new file mode 100644 index 00000000..102e59d0 --- /dev/null +++ b/scripture/kjv/02/17/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 John", + "chapter": "2", + "date": "Tuesday 17-February, 2026", + "getbible": "https://getbible.life/kjv/1 John/2/20", + "name": "1 John 2:20", + "scripture": [ + { + "nr": "20", + "text": "But ye have an unction from the Holy One, and ye know all things." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20", + "version": "kjv" +} diff --git a/scripture/kjv/02/17/26/scripture.md b/scripture/kjv/02/17/26/scripture.md new file mode 100644 index 00000000..7a7352ae --- /dev/null +++ b/scripture/kjv/02/17/26/scripture.md @@ -0,0 +1,5 @@ +**1 John 2:20** + +20 But ye have an unction from the Holy One, and ye know all things. + +[Tuesday 17-February, 2026](https://getbible.life/kjv/1 John/2/20) diff --git a/scripture/kjv/02/17/26/scripture.tg b/scripture/kjv/02/17/26/scripture.tg new file mode 100644 index 00000000..56b5529d --- /dev/null +++ b/scripture/kjv/02/17/26/scripture.tg @@ -0,0 +1,4 @@ +1 John 2:20 +20 But ye have an unction from the Holy One, and ye know all things. + +Tuesday 17-February, 2026 diff --git a/scripture/kjv/02/17/26/scripture.tg.id b/scripture/kjv/02/17/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/17/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/17/26/scripture.today b/scripture/kjv/02/17/26/scripture.today new file mode 100644 index 00000000..438bca5f --- /dev/null +++ b/scripture/kjv/02/17/26/scripture.today @@ -0,0 +1 @@ +62 2:20 diff --git a/scripture/kjv/02/18/23/scripture.html b/scripture/kjv/02/18/23/scripture.html new file mode 100644 index 00000000..2e893455 --- /dev/null +++ b/scripture/kjv/02/18/23/scripture.html @@ -0,0 +1,3 @@ +Ephesians 5:15-16
+15 See then that ye walk circumspectly, not as fools, but as wise, 16 Redeeming the time, because the days are evil.

+Saturday 18-February, 2023 diff --git a/scripture/kjv/02/18/23/scripture.json b/scripture/kjv/02/18/23/scripture.json new file mode 100644 index 00000000..b9dccc1c --- /dev/null +++ b/scripture/kjv/02/18/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Saturday 18-February, 2023", + "name": "Ephesians 5:15-16", + "scripture": [ + { + "nr": "15", + "text": "See then that ye walk circumspectly, not as fools, but as wise," + }, + { + "nr": "16", + "text": "Redeeming the time, because the days are evil." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/02/18/23/scripture.md b/scripture/kjv/02/18/23/scripture.md new file mode 100644 index 00000000..5a3d5311 --- /dev/null +++ b/scripture/kjv/02/18/23/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 5:15-16** + +15 See then that ye walk circumspectly, not as fools, but as wise, 16 Redeeming the time, because the days are evil. + +[Saturday 18-February, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/02/18/23/scripture.tg b/scripture/kjv/02/18/23/scripture.tg new file mode 100644 index 00000000..50b04115 --- /dev/null +++ b/scripture/kjv/02/18/23/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 5:15-16 +15 See then that ye walk circumspectly, not as fools, but as wise, 16 Redeeming the time, because the days are evil. + +Saturday 18-February, 2023 diff --git a/scripture/kjv/02/18/23/scripture.today b/scripture/kjv/02/18/23/scripture.today new file mode 100644 index 00000000..befc5354 --- /dev/null +++ b/scripture/kjv/02/18/23/scripture.today @@ -0,0 +1 @@ +49 5:15-16 diff --git a/scripture/kjv/02/18/24/scripture.html b/scripture/kjv/02/18/24/scripture.html new file mode 100644 index 00000000..225fa963 --- /dev/null +++ b/scripture/kjv/02/18/24/scripture.html @@ -0,0 +1,3 @@ +Jeremiah 32:27
+27 Behold, I am the Lord, the God of all flesh: is there any thing too hard for me?

+Sunday 18-February, 2024 diff --git a/scripture/kjv/02/18/24/scripture.json b/scripture/kjv/02/18/24/scripture.json new file mode 100644 index 00000000..40659e68 --- /dev/null +++ b/scripture/kjv/02/18/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Jeremiah", + "chapter": "32", + "date": "Sunday 18-February, 2024", + "getbible": "https://getbible.life/kjv/Jeremiah/32/27", + "name": "Jeremiah 32:27", + "scripture": [ + { + "nr": "27", + "text": "Behold, I am the Lord, the God of all flesh: is there any thing too hard for me?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "27", + "version": "kjv" +} diff --git a/scripture/kjv/02/18/24/scripture.md b/scripture/kjv/02/18/24/scripture.md new file mode 100644 index 00000000..f5d78e24 --- /dev/null +++ b/scripture/kjv/02/18/24/scripture.md @@ -0,0 +1,5 @@ +**Jeremiah 32:27** + +27 Behold, I am the Lord, the God of all flesh: is there any thing too hard for me? + +[Sunday 18-February, 2024](https://getbible.life/kjv/Jeremiah/32/27) diff --git a/scripture/kjv/02/18/24/scripture.tg b/scripture/kjv/02/18/24/scripture.tg new file mode 100644 index 00000000..e77930a0 --- /dev/null +++ b/scripture/kjv/02/18/24/scripture.tg @@ -0,0 +1,4 @@ +Jeremiah 32:27 +27 Behold, I am the Lord, the God of all flesh: is there any thing too hard for me? + +Sunday 18-February, 2024 diff --git a/scripture/kjv/02/18/24/scripture.tg.id b/scripture/kjv/02/18/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/18/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/18/24/scripture.today b/scripture/kjv/02/18/24/scripture.today new file mode 100644 index 00000000..24348edf --- /dev/null +++ b/scripture/kjv/02/18/24/scripture.today @@ -0,0 +1 @@ +24 32:27 diff --git a/scripture/kjv/02/18/25/scripture.html b/scripture/kjv/02/18/25/scripture.html new file mode 100644 index 00000000..9b0243fc --- /dev/null +++ b/scripture/kjv/02/18/25/scripture.html @@ -0,0 +1,3 @@ +Luke 15:7
+7 I say unto you, that likewise joy shall be in heaven over one sinner that repenteth, more than over ninety and nine just persons, which need no repentance.

+Tuesday 18-February, 2025 diff --git a/scripture/kjv/02/18/25/scripture.json b/scripture/kjv/02/18/25/scripture.json new file mode 100644 index 00000000..fe4c67b4 --- /dev/null +++ b/scripture/kjv/02/18/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "15", + "date": "Tuesday 18-February, 2025", + "getbible": "https://getbible.life/kjv/Luke/15/7", + "name": "Luke 15:7", + "scripture": [ + { + "nr": "7", + "text": "I say unto you, that likewise joy shall be in heaven over one sinner that repenteth, more than over ninety and nine just persons, which need no repentance." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7", + "version": "kjv" +} diff --git a/scripture/kjv/02/18/25/scripture.md b/scripture/kjv/02/18/25/scripture.md new file mode 100644 index 00000000..c2b72a54 --- /dev/null +++ b/scripture/kjv/02/18/25/scripture.md @@ -0,0 +1,5 @@ +**Luke 15:7** + +7 I say unto you, that likewise joy shall be in heaven over one sinner that repenteth, more than over ninety and nine just persons, which need no repentance. + +[Tuesday 18-February, 2025](https://getbible.life/kjv/Luke/15/7) diff --git a/scripture/kjv/02/18/25/scripture.tg b/scripture/kjv/02/18/25/scripture.tg new file mode 100644 index 00000000..842f0544 --- /dev/null +++ b/scripture/kjv/02/18/25/scripture.tg @@ -0,0 +1,4 @@ +Luke 15:7 +7 I say unto you, that likewise joy shall be in heaven over one sinner that repenteth, more than over ninety and nine just persons, which need no repentance. + +Tuesday 18-February, 2025 diff --git a/scripture/kjv/02/18/25/scripture.tg.id b/scripture/kjv/02/18/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/18/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/18/25/scripture.today b/scripture/kjv/02/18/25/scripture.today new file mode 100644 index 00000000..e5ccd34f --- /dev/null +++ b/scripture/kjv/02/18/25/scripture.today @@ -0,0 +1 @@ +42 15:7 diff --git a/scripture/kjv/02/18/26/scripture.html b/scripture/kjv/02/18/26/scripture.html new file mode 100644 index 00000000..e67a08d2 --- /dev/null +++ b/scripture/kjv/02/18/26/scripture.html @@ -0,0 +1,3 @@ +Romans 1:14-15
+14 I am debtor both to the Greeks, and to the Barbarians; both to the wise, and to the unwise. 15 So, as much as in me is, I am ready to preach the gospel to you that are at Rome also.

+Wednesday 18-February, 2026 diff --git a/scripture/kjv/02/18/26/scripture.json b/scripture/kjv/02/18/26/scripture.json new file mode 100644 index 00000000..241637b8 --- /dev/null +++ b/scripture/kjv/02/18/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Romans", + "chapter": "1", + "date": "Wednesday 18-February, 2026", + "getbible": "https://getbible.life/kjv/Romans/1/14-15", + "name": "Romans 1:14-15", + "scripture": [ + { + "nr": "14", + "text": "I am debtor both to the Greeks, and to the Barbarians; both to the wise, and to the unwise." + }, + { + "nr": "15", + "text": "So, as much as in me is, I am ready to preach the gospel to you that are at Rome also." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14-15", + "version": "kjv" +} diff --git a/scripture/kjv/02/18/26/scripture.md b/scripture/kjv/02/18/26/scripture.md new file mode 100644 index 00000000..ac68e278 --- /dev/null +++ b/scripture/kjv/02/18/26/scripture.md @@ -0,0 +1,5 @@ +**Romans 1:14-15** + +14 I am debtor both to the Greeks, and to the Barbarians; both to the wise, and to the unwise. 15 So, as much as in me is, I am ready to preach the gospel to you that are at Rome also. + +[Wednesday 18-February, 2026](https://getbible.life/kjv/Romans/1/14-15) diff --git a/scripture/kjv/02/18/26/scripture.tg b/scripture/kjv/02/18/26/scripture.tg new file mode 100644 index 00000000..ba005cda --- /dev/null +++ b/scripture/kjv/02/18/26/scripture.tg @@ -0,0 +1,4 @@ +Romans 1:14-15 +14 I am debtor both to the Greeks, and to the Barbarians; both to the wise, and to the unwise. 15 So, as much as in me is, I am ready to preach the gospel to you that are at Rome also. + +Wednesday 18-February, 2026 diff --git a/scripture/kjv/02/18/26/scripture.tg.id b/scripture/kjv/02/18/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/18/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/18/26/scripture.today b/scripture/kjv/02/18/26/scripture.today new file mode 100644 index 00000000..e13f3b32 --- /dev/null +++ b/scripture/kjv/02/18/26/scripture.today @@ -0,0 +1 @@ +45 1:14-15 diff --git a/scripture/kjv/02/19/23/scripture.html b/scripture/kjv/02/19/23/scripture.html new file mode 100644 index 00000000..0d63665c --- /dev/null +++ b/scripture/kjv/02/19/23/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 4:20
+20 For the kingdom of God is not in word, but in power.

+Sunday 19-February, 2023 diff --git a/scripture/kjv/02/19/23/scripture.json b/scripture/kjv/02/19/23/scripture.json new file mode 100644 index 00000000..bbef90a1 --- /dev/null +++ b/scripture/kjv/02/19/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Sunday 19-February, 2023", + "name": "1 Corinthians 4:20", + "scripture": [ + { + "nr": "20", + "text": "For the kingdom of God is not in word, but in power." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/02/19/23/scripture.md b/scripture/kjv/02/19/23/scripture.md new file mode 100644 index 00000000..4a297af7 --- /dev/null +++ b/scripture/kjv/02/19/23/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 4:20** + +20 For the kingdom of God is not in word, but in power. + +[Sunday 19-February, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/02/19/23/scripture.tg b/scripture/kjv/02/19/23/scripture.tg new file mode 100644 index 00000000..f28a2628 --- /dev/null +++ b/scripture/kjv/02/19/23/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 4:20 +20 For the kingdom of God is not in word, but in power. + +Sunday 19-February, 2023 diff --git a/scripture/kjv/02/19/23/scripture.today b/scripture/kjv/02/19/23/scripture.today new file mode 100644 index 00000000..f410fa9a --- /dev/null +++ b/scripture/kjv/02/19/23/scripture.today @@ -0,0 +1 @@ +46 4:20 diff --git a/scripture/kjv/02/19/24/scripture.html b/scripture/kjv/02/19/24/scripture.html new file mode 100644 index 00000000..31e96848 --- /dev/null +++ b/scripture/kjv/02/19/24/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 33:15
+15 If the wicked restore the pledge, give again that he had robbed, walk in the statutes of life, without committing iniquity; he shall surely live, he shall not die.

+Monday 19-February, 2024 diff --git a/scripture/kjv/02/19/24/scripture.json b/scripture/kjv/02/19/24/scripture.json new file mode 100644 index 00000000..a549cf41 --- /dev/null +++ b/scripture/kjv/02/19/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ezekiel", + "chapter": "33", + "date": "Monday 19-February, 2024", + "getbible": "https://getbible.life/kjv/Ezekiel/33/15", + "name": "Ezekiel 33:15", + "scripture": [ + { + "nr": "15", + "text": "If the wicked restore the pledge, give again that he had robbed, walk in the statutes of life, without committing iniquity; he shall surely live, he shall not die." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15", + "version": "kjv" +} diff --git a/scripture/kjv/02/19/24/scripture.md b/scripture/kjv/02/19/24/scripture.md new file mode 100644 index 00000000..d8de4c26 --- /dev/null +++ b/scripture/kjv/02/19/24/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 33:15** + +15 If the wicked restore the pledge, give again that he had robbed, walk in the statutes of life, without committing iniquity; he shall surely live, he shall not die. + +[Monday 19-February, 2024](https://getbible.life/kjv/Ezekiel/33/15) diff --git a/scripture/kjv/02/19/24/scripture.tg b/scripture/kjv/02/19/24/scripture.tg new file mode 100644 index 00000000..244acbc5 --- /dev/null +++ b/scripture/kjv/02/19/24/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 33:15 +15 If the wicked restore the pledge, give again that he had robbed, walk in the statutes of life, without committing iniquity; he shall surely live, he shall not die. + +Monday 19-February, 2024 diff --git a/scripture/kjv/02/19/24/scripture.tg.id b/scripture/kjv/02/19/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/19/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/19/24/scripture.today b/scripture/kjv/02/19/24/scripture.today new file mode 100644 index 00000000..8b86c0a3 --- /dev/null +++ b/scripture/kjv/02/19/24/scripture.today @@ -0,0 +1 @@ +26 33:15 diff --git a/scripture/kjv/02/19/25/scripture.html b/scripture/kjv/02/19/25/scripture.html new file mode 100644 index 00000000..eb1bf665 --- /dev/null +++ b/scripture/kjv/02/19/25/scripture.html @@ -0,0 +1,3 @@ +1 John 3:13
+13 Marvel not, my brethren, if the world hate you.

+Wednesday 19-February, 2025 diff --git a/scripture/kjv/02/19/25/scripture.json b/scripture/kjv/02/19/25/scripture.json new file mode 100644 index 00000000..f51f1e6b --- /dev/null +++ b/scripture/kjv/02/19/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 John", + "chapter": "3", + "date": "Wednesday 19-February, 2025", + "getbible": "https://getbible.life/kjv/1 John/3/13", + "name": "1 John 3:13", + "scripture": [ + { + "nr": "13", + "text": "Marvel not, my brethren, if the world hate you." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13", + "version": "kjv" +} diff --git a/scripture/kjv/02/19/25/scripture.md b/scripture/kjv/02/19/25/scripture.md new file mode 100644 index 00000000..ac61aa62 --- /dev/null +++ b/scripture/kjv/02/19/25/scripture.md @@ -0,0 +1,5 @@ +**1 John 3:13** + +13 Marvel not, my brethren, if the world hate you. + +[Wednesday 19-February, 2025](https://getbible.life/kjv/1 John/3/13) diff --git a/scripture/kjv/02/19/25/scripture.tg b/scripture/kjv/02/19/25/scripture.tg new file mode 100644 index 00000000..0d8bef74 --- /dev/null +++ b/scripture/kjv/02/19/25/scripture.tg @@ -0,0 +1,4 @@ +1 John 3:13 +13 Marvel not, my brethren, if the world hate you. + +Wednesday 19-February, 2025 diff --git a/scripture/kjv/02/19/25/scripture.tg.id b/scripture/kjv/02/19/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/19/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/19/25/scripture.today b/scripture/kjv/02/19/25/scripture.today new file mode 100644 index 00000000..ec34d4d7 --- /dev/null +++ b/scripture/kjv/02/19/25/scripture.today @@ -0,0 +1 @@ +62 3:13 diff --git a/scripture/kjv/02/19/26/scripture.html b/scripture/kjv/02/19/26/scripture.html new file mode 100644 index 00000000..83601f2d --- /dev/null +++ b/scripture/kjv/02/19/26/scripture.html @@ -0,0 +1,3 @@ +Hebrews 6:15
+15 And so, after he had patiently endured, he obtained the promise.

+Thursday 19-February, 2026 diff --git a/scripture/kjv/02/19/26/scripture.json b/scripture/kjv/02/19/26/scripture.json new file mode 100644 index 00000000..c1ff6abf --- /dev/null +++ b/scripture/kjv/02/19/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Hebrews", + "chapter": "6", + "date": "Thursday 19-February, 2026", + "getbible": "https://getbible.life/kjv/Hebrews/6/15", + "name": "Hebrews 6:15", + "scripture": [ + { + "nr": "15", + "text": "And so, after he had patiently endured, he obtained the promise." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15", + "version": "kjv" +} diff --git a/scripture/kjv/02/19/26/scripture.md b/scripture/kjv/02/19/26/scripture.md new file mode 100644 index 00000000..f4d11c0c --- /dev/null +++ b/scripture/kjv/02/19/26/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 6:15** + +15 And so, after he had patiently endured, he obtained the promise. + +[Thursday 19-February, 2026](https://getbible.life/kjv/Hebrews/6/15) diff --git a/scripture/kjv/02/19/26/scripture.tg b/scripture/kjv/02/19/26/scripture.tg new file mode 100644 index 00000000..8bfdd2bd --- /dev/null +++ b/scripture/kjv/02/19/26/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 6:15 +15 And so, after he had patiently endured, he obtained the promise. + +Thursday 19-February, 2026 diff --git a/scripture/kjv/02/19/26/scripture.tg.id b/scripture/kjv/02/19/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/19/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/19/26/scripture.today b/scripture/kjv/02/19/26/scripture.today new file mode 100644 index 00000000..9fe71212 --- /dev/null +++ b/scripture/kjv/02/19/26/scripture.today @@ -0,0 +1 @@ +58 6:15 diff --git a/scripture/kjv/02/20/23/scripture.html b/scripture/kjv/02/20/23/scripture.html new file mode 100644 index 00000000..869438e3 --- /dev/null +++ b/scripture/kjv/02/20/23/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 2:9
+9 For to this end also did I write, that I might know the proof of you, whether ye be obedient in all things.

+Monday 20-February, 2023 diff --git a/scripture/kjv/02/20/23/scripture.json b/scripture/kjv/02/20/23/scripture.json new file mode 100644 index 00000000..c065d438 --- /dev/null +++ b/scripture/kjv/02/20/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Monday 20-February, 2023", + "name": "2 Corinthians 2:9", + "scripture": [ + { + "nr": "9", + "text": "For to this end also did I write, that I might know the proof of you, whether ye be obedient in all things." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/02/20/23/scripture.md b/scripture/kjv/02/20/23/scripture.md new file mode 100644 index 00000000..56e29eae --- /dev/null +++ b/scripture/kjv/02/20/23/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 2:9** + +9 For to this end also did I write, that I might know the proof of you, whether ye be obedient in all things. + +[Monday 20-February, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/02/20/23/scripture.tg b/scripture/kjv/02/20/23/scripture.tg new file mode 100644 index 00000000..89ff136e --- /dev/null +++ b/scripture/kjv/02/20/23/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 2:9 +9 For to this end also did I write, that I might know the proof of you, whether ye be obedient in all things. + +Monday 20-February, 2023 diff --git a/scripture/kjv/02/20/23/scripture.today b/scripture/kjv/02/20/23/scripture.today new file mode 100644 index 00000000..65c8a3c2 --- /dev/null +++ b/scripture/kjv/02/20/23/scripture.today @@ -0,0 +1 @@ +47 2:9 diff --git a/scripture/kjv/02/20/24/scripture.html b/scripture/kjv/02/20/24/scripture.html new file mode 100644 index 00000000..78d9b43d --- /dev/null +++ b/scripture/kjv/02/20/24/scripture.html @@ -0,0 +1,3 @@ +Job 28:28
+28 And unto man he said, Behold, the fear of the Lord, that is wisdom; and to depart from evil is understanding.

+Tuesday 20-February, 2024 diff --git a/scripture/kjv/02/20/24/scripture.json b/scripture/kjv/02/20/24/scripture.json new file mode 100644 index 00000000..c5a41517 --- /dev/null +++ b/scripture/kjv/02/20/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Job", + "chapter": "28", + "date": "Tuesday 20-February, 2024", + "getbible": "https://getbible.life/kjv/Job/28/28", + "name": "Job 28:28", + "scripture": [ + { + "nr": "28", + "text": "And unto man he said, Behold, the fear of the Lord, that is wisdom; and to depart from evil is understanding. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "28", + "version": "kjv" +} diff --git a/scripture/kjv/02/20/24/scripture.md b/scripture/kjv/02/20/24/scripture.md new file mode 100644 index 00000000..0b1a9c36 --- /dev/null +++ b/scripture/kjv/02/20/24/scripture.md @@ -0,0 +1,5 @@ +**Job 28:28** + +28 And unto man he said, Behold, the fear of the Lord, that is wisdom; and to depart from evil is understanding. + +[Tuesday 20-February, 2024](https://getbible.life/kjv/Job/28/28) diff --git a/scripture/kjv/02/20/24/scripture.tg b/scripture/kjv/02/20/24/scripture.tg new file mode 100644 index 00000000..e60939c3 --- /dev/null +++ b/scripture/kjv/02/20/24/scripture.tg @@ -0,0 +1,4 @@ +Job 28:28 +28 And unto man he said, Behold, the fear of the Lord, that is wisdom; and to depart from evil is understanding. + +Tuesday 20-February, 2024 diff --git a/scripture/kjv/02/20/24/scripture.tg.id b/scripture/kjv/02/20/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/20/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/20/24/scripture.today b/scripture/kjv/02/20/24/scripture.today new file mode 100644 index 00000000..1798cde9 --- /dev/null +++ b/scripture/kjv/02/20/24/scripture.today @@ -0,0 +1 @@ +18 28:28 diff --git a/scripture/kjv/02/20/25/scripture.html b/scripture/kjv/02/20/25/scripture.html new file mode 100644 index 00000000..11ce503a --- /dev/null +++ b/scripture/kjv/02/20/25/scripture.html @@ -0,0 +1,3 @@ +Isaiah 56:10-11
+10 His watchmen are blind: they are all ignorant, they are all dumb dogs, they cannot bark; sleeping, lying down, loving to slumber. 11 Yea, they are greedy dogs which can never have enough, and they are shepherds that cannot understand: they all look to their own way, every one for his gain, from his quarter.

+Thursday 20-February, 2025 diff --git a/scripture/kjv/02/20/25/scripture.json b/scripture/kjv/02/20/25/scripture.json new file mode 100644 index 00000000..2839c057 --- /dev/null +++ b/scripture/kjv/02/20/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Isaiah", + "chapter": "56", + "date": "Thursday 20-February, 2025", + "getbible": "https://getbible.life/kjv/Isaiah/56/10-11", + "name": "Isaiah 56:10-11", + "scripture": [ + { + "nr": "10", + "text": "His watchmen are blind: they are all ignorant, they are all dumb dogs, they cannot bark; sleeping, lying down, loving to slumber." + }, + { + "nr": "11", + "text": "Yea, they are greedy dogs which can never have enough, and they are shepherds that cannot understand: they all look to their own way, every one for his gain, from his quarter." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10-11", + "version": "kjv" +} diff --git a/scripture/kjv/02/20/25/scripture.md b/scripture/kjv/02/20/25/scripture.md new file mode 100644 index 00000000..36310b26 --- /dev/null +++ b/scripture/kjv/02/20/25/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 56:10-11** + +10 His watchmen are blind: they are all ignorant, they are all dumb dogs, they cannot bark; sleeping, lying down, loving to slumber. 11 Yea, they are greedy dogs which can never have enough, and they are shepherds that cannot understand: they all look to their own way, every one for his gain, from his quarter. + +[Thursday 20-February, 2025](https://getbible.life/kjv/Isaiah/56/10-11) diff --git a/scripture/kjv/02/20/25/scripture.tg b/scripture/kjv/02/20/25/scripture.tg new file mode 100644 index 00000000..d3b426ef --- /dev/null +++ b/scripture/kjv/02/20/25/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 56:10-11 +10 His watchmen are blind: they are all ignorant, they are all dumb dogs, they cannot bark; sleeping, lying down, loving to slumber. 11 Yea, they are greedy dogs which can never have enough, and they are shepherds that cannot understand: they all look to their own way, every one for his gain, from his quarter. + +Thursday 20-February, 2025 diff --git a/scripture/kjv/02/20/25/scripture.tg.id b/scripture/kjv/02/20/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/20/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/20/25/scripture.today b/scripture/kjv/02/20/25/scripture.today new file mode 100644 index 00000000..1886b1cd --- /dev/null +++ b/scripture/kjv/02/20/25/scripture.today @@ -0,0 +1 @@ +23 56:10-11 diff --git a/scripture/kjv/02/20/26/scripture.html b/scripture/kjv/02/20/26/scripture.html new file mode 100644 index 00000000..dc0af04f --- /dev/null +++ b/scripture/kjv/02/20/26/scripture.html @@ -0,0 +1,3 @@ +Psalms 63:4-8
+4 Thus will I bless thee while I live: I will lift up my hands in thy name. 5 My soul shall be satisfied as with marrow and fatness; and my mouth shall praise thee with joyful lips: 6 When I remember thee upon my bed, and meditate on thee in the night watches. 7 Because thou hast been my help, therefore in the shadow of thy wings will I rejoice. 8 My soul followeth hard after thee: thy right hand upholdeth me.

+Friday 20-February, 2026 diff --git a/scripture/kjv/02/20/26/scripture.json b/scripture/kjv/02/20/26/scripture.json new file mode 100644 index 00000000..5a2d3279 --- /dev/null +++ b/scripture/kjv/02/20/26/scripture.json @@ -0,0 +1,33 @@ +{ + "book": "Psalms", + "chapter": "63", + "date": "Friday 20-February, 2026", + "getbible": "https://getbible.life/kjv/Psalms/63/4-8", + "name": "Psalms 63:4-8", + "scripture": [ + { + "nr": "4", + "text": "Thus will I bless thee while I live: I will lift up my hands in thy name." + }, + { + "nr": "5", + "text": "My soul shall be satisfied as with marrow and fatness; and my mouth shall praise thee with joyful lips:" + }, + { + "nr": "6", + "text": "When I remember thee upon my bed, and meditate on thee in the night watches." + }, + { + "nr": "7", + "text": "Because thou hast been my help, therefore in the shadow of thy wings will I rejoice." + }, + { + "nr": "8", + "text": "My soul followeth hard after thee: thy right hand upholdeth me." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4-8", + "version": "kjv" +} diff --git a/scripture/kjv/02/20/26/scripture.md b/scripture/kjv/02/20/26/scripture.md new file mode 100644 index 00000000..0779aeac --- /dev/null +++ b/scripture/kjv/02/20/26/scripture.md @@ -0,0 +1,5 @@ +**Psalms 63:4-8** + +4 Thus will I bless thee while I live: I will lift up my hands in thy name. 5 My soul shall be satisfied as with marrow and fatness; and my mouth shall praise thee with joyful lips: 6 When I remember thee upon my bed, and meditate on thee in the night watches. 7 Because thou hast been my help, therefore in the shadow of thy wings will I rejoice. 8 My soul followeth hard after thee: thy right hand upholdeth me. + +[Friday 20-February, 2026](https://getbible.life/kjv/Psalms/63/4-8) diff --git a/scripture/kjv/02/20/26/scripture.tg b/scripture/kjv/02/20/26/scripture.tg new file mode 100644 index 00000000..87be2e7d --- /dev/null +++ b/scripture/kjv/02/20/26/scripture.tg @@ -0,0 +1,4 @@ +Psalms 63:4-8 +4 Thus will I bless thee while I live: I will lift up my hands in thy name. 5 My soul shall be satisfied as with marrow and fatness; and my mouth shall praise thee with joyful lips: 6 When I remember thee upon my bed, and meditate on thee in the night watches. 7 Because thou hast been my help, therefore in the shadow of thy wings will I rejoice. 8 My soul followeth hard after thee: thy right hand upholdeth me. + +Friday 20-February, 2026 diff --git a/scripture/kjv/02/20/26/scripture.tg.id b/scripture/kjv/02/20/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/20/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/20/26/scripture.today b/scripture/kjv/02/20/26/scripture.today new file mode 100644 index 00000000..bc8a0903 --- /dev/null +++ b/scripture/kjv/02/20/26/scripture.today @@ -0,0 +1 @@ +19 63:4-8 diff --git a/scripture/kjv/02/21/23/scripture.html b/scripture/kjv/02/21/23/scripture.html new file mode 100644 index 00000000..98e95131 --- /dev/null +++ b/scripture/kjv/02/21/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 22:26
+26 The meek shall eat and be satisfied: they shall praise the Lord that seek him: your heart shall live for ever.

+Tuesday 21-February, 2023 diff --git a/scripture/kjv/02/21/23/scripture.json b/scripture/kjv/02/21/23/scripture.json new file mode 100644 index 00000000..5d2dc684 --- /dev/null +++ b/scripture/kjv/02/21/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Tuesday 21-February, 2023", + "name": "Psalms 22:26", + "scripture": [ + { + "nr": "26", + "text": "The meek shall eat and be satisfied: they shall praise the Lord that seek him: your heart shall live for ever." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/02/21/23/scripture.md b/scripture/kjv/02/21/23/scripture.md new file mode 100644 index 00000000..1df13a1e --- /dev/null +++ b/scripture/kjv/02/21/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 22:26** + +26 The meek shall eat and be satisfied: they shall praise the Lord that seek him: your heart shall live for ever. + +[Tuesday 21-February, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/02/21/23/scripture.tg b/scripture/kjv/02/21/23/scripture.tg new file mode 100644 index 00000000..aca29398 --- /dev/null +++ b/scripture/kjv/02/21/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 22:26 +26 The meek shall eat and be satisfied: they shall praise the Lord that seek him: your heart shall live for ever. + +Tuesday 21-February, 2023 diff --git a/scripture/kjv/02/21/23/scripture.today b/scripture/kjv/02/21/23/scripture.today new file mode 100644 index 00000000..dc4e5fda --- /dev/null +++ b/scripture/kjv/02/21/23/scripture.today @@ -0,0 +1 @@ +19 22:26 diff --git a/scripture/kjv/02/21/24/scripture.html b/scripture/kjv/02/21/24/scripture.html new file mode 100644 index 00000000..5e3ffde5 --- /dev/null +++ b/scripture/kjv/02/21/24/scripture.html @@ -0,0 +1,3 @@ +Romans 5:8
+8 But God commendeth his love toward us, in that, while we were yet sinners, Christ died for us.

+Wednesday 21-February, 2024 diff --git a/scripture/kjv/02/21/24/scripture.json b/scripture/kjv/02/21/24/scripture.json new file mode 100644 index 00000000..ae0bae0b --- /dev/null +++ b/scripture/kjv/02/21/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Romans", + "chapter": "5", + "date": "Wednesday 21-February, 2024", + "getbible": "https://getbible.life/kjv/Romans/5/8", + "name": "Romans 5:8", + "scripture": [ + { + "nr": "8", + "text": "But God commendeth his love toward us, in that, while we were yet sinners, Christ died for us." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8", + "version": "kjv" +} diff --git a/scripture/kjv/02/21/24/scripture.md b/scripture/kjv/02/21/24/scripture.md new file mode 100644 index 00000000..0c20ce28 --- /dev/null +++ b/scripture/kjv/02/21/24/scripture.md @@ -0,0 +1,5 @@ +**Romans 5:8** + +8 But God commendeth his love toward us, in that, while we were yet sinners, Christ died for us. + +[Wednesday 21-February, 2024](https://getbible.life/kjv/Romans/5/8) diff --git a/scripture/kjv/02/21/24/scripture.tg b/scripture/kjv/02/21/24/scripture.tg new file mode 100644 index 00000000..fcdf7f08 --- /dev/null +++ b/scripture/kjv/02/21/24/scripture.tg @@ -0,0 +1,4 @@ +Romans 5:8 +8 But God commendeth his love toward us, in that, while we were yet sinners, Christ died for us. + +Wednesday 21-February, 2024 diff --git a/scripture/kjv/02/21/24/scripture.tg.id b/scripture/kjv/02/21/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/21/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/21/24/scripture.today b/scripture/kjv/02/21/24/scripture.today new file mode 100644 index 00000000..19268d36 --- /dev/null +++ b/scripture/kjv/02/21/24/scripture.today @@ -0,0 +1 @@ +45 5:8 diff --git a/scripture/kjv/02/21/25/scripture.html b/scripture/kjv/02/21/25/scripture.html new file mode 100644 index 00000000..2f7d5aee --- /dev/null +++ b/scripture/kjv/02/21/25/scripture.html @@ -0,0 +1,3 @@ +2 Peter 3:1-2
+1 This second epistle, beloved, I now write unto you; in both which I stir up your pure minds by way of remembrance: 2 That ye may be mindful of the words which were spoken before by the holy prophets, and of the commandment of us the apostles of the Lord and Saviour:

+Friday 21-February, 2025 diff --git a/scripture/kjv/02/21/25/scripture.json b/scripture/kjv/02/21/25/scripture.json new file mode 100644 index 00000000..318c5c02 --- /dev/null +++ b/scripture/kjv/02/21/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "2 Peter", + "chapter": "3", + "date": "Friday 21-February, 2025", + "getbible": "https://getbible.life/kjv/2 Peter/3/1-2", + "name": "2 Peter 3:1-2", + "scripture": [ + { + "nr": "1", + "text": "This second epistle, beloved, I now write unto you; in both which I stir up your pure minds by way of remembrance:" + }, + { + "nr": "2", + "text": "That ye may be mindful of the words which were spoken before by the holy prophets, and of the commandment of us the apostles of the Lord and Saviour:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-2", + "version": "kjv" +} diff --git a/scripture/kjv/02/21/25/scripture.md b/scripture/kjv/02/21/25/scripture.md new file mode 100644 index 00000000..0b2cd5a8 --- /dev/null +++ b/scripture/kjv/02/21/25/scripture.md @@ -0,0 +1,5 @@ +**2 Peter 3:1-2** + +1 This second epistle, beloved, I now write unto you; in both which I stir up your pure minds by way of remembrance: 2 That ye may be mindful of the words which were spoken before by the holy prophets, and of the commandment of us the apostles of the Lord and Saviour: + +[Friday 21-February, 2025](https://getbible.life/kjv/2 Peter/3/1-2) diff --git a/scripture/kjv/02/21/25/scripture.tg b/scripture/kjv/02/21/25/scripture.tg new file mode 100644 index 00000000..700e4f2d --- /dev/null +++ b/scripture/kjv/02/21/25/scripture.tg @@ -0,0 +1,4 @@ +2 Peter 3:1-2 +1 This second epistle, beloved, I now write unto you; in both which I stir up your pure minds by way of remembrance: 2 That ye may be mindful of the words which were spoken before by the holy prophets, and of the commandment of us the apostles of the Lord and Saviour: + +Friday 21-February, 2025 diff --git a/scripture/kjv/02/21/25/scripture.tg.id b/scripture/kjv/02/21/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/21/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/21/25/scripture.today b/scripture/kjv/02/21/25/scripture.today new file mode 100644 index 00000000..972d31c1 --- /dev/null +++ b/scripture/kjv/02/21/25/scripture.today @@ -0,0 +1 @@ +61 3:1-2 diff --git a/scripture/kjv/02/21/26/scripture.html b/scripture/kjv/02/21/26/scripture.html new file mode 100644 index 00000000..58c2e3b8 --- /dev/null +++ b/scripture/kjv/02/21/26/scripture.html @@ -0,0 +1,3 @@ +Revelation 22:12
+12 And, behold, I come quickly; and my reward is with me, to give every man according as his work shall be.

+Saturday 21-February, 2026 diff --git a/scripture/kjv/02/21/26/scripture.json b/scripture/kjv/02/21/26/scripture.json new file mode 100644 index 00000000..69d851c0 --- /dev/null +++ b/scripture/kjv/02/21/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Revelation", + "chapter": "22", + "date": "Saturday 21-February, 2026", + "getbible": "https://getbible.life/kjv/Revelation/22/12", + "name": "Revelation 22:12", + "scripture": [ + { + "nr": "12", + "text": "And, behold, I come quickly; and my reward is with me, to give every man according as his work shall be." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/02/21/26/scripture.md b/scripture/kjv/02/21/26/scripture.md new file mode 100644 index 00000000..a652e342 --- /dev/null +++ b/scripture/kjv/02/21/26/scripture.md @@ -0,0 +1,5 @@ +**Revelation 22:12** + +12 And, behold, I come quickly; and my reward is with me, to give every man according as his work shall be. + +[Saturday 21-February, 2026](https://getbible.life/kjv/Revelation/22/12) diff --git a/scripture/kjv/02/21/26/scripture.tg b/scripture/kjv/02/21/26/scripture.tg new file mode 100644 index 00000000..6d5834e8 --- /dev/null +++ b/scripture/kjv/02/21/26/scripture.tg @@ -0,0 +1,4 @@ +Revelation 22:12 +12 And, behold, I come quickly; and my reward is with me, to give every man according as his work shall be. + +Saturday 21-February, 2026 diff --git a/scripture/kjv/02/21/26/scripture.tg.id b/scripture/kjv/02/21/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/21/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/21/26/scripture.today b/scripture/kjv/02/21/26/scripture.today new file mode 100644 index 00000000..fdee465e --- /dev/null +++ b/scripture/kjv/02/21/26/scripture.today @@ -0,0 +1 @@ +66 22:12 diff --git a/scripture/kjv/02/22/23/scripture.html b/scripture/kjv/02/22/23/scripture.html new file mode 100644 index 00000000..a89a0099 --- /dev/null +++ b/scripture/kjv/02/22/23/scripture.html @@ -0,0 +1,3 @@ +1 John 4:12
+12 No man hath seen God at any time. If we love one another, God dwelleth in us, and his love is perfected in us.

+Wednesday 22-February, 2023 diff --git a/scripture/kjv/02/22/23/scripture.json b/scripture/kjv/02/22/23/scripture.json new file mode 100644 index 00000000..29a58612 --- /dev/null +++ b/scripture/kjv/02/22/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Wednesday 22-February, 2023", + "name": "1 John 4:12", + "scripture": [ + { + "nr": "12", + "text": "No man hath seen God at any time. If we love one another, God dwelleth in us, and his love is perfected in us." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/02/22/23/scripture.md b/scripture/kjv/02/22/23/scripture.md new file mode 100644 index 00000000..88c5ce5d --- /dev/null +++ b/scripture/kjv/02/22/23/scripture.md @@ -0,0 +1,5 @@ +**1 John 4:12** + +12 No man hath seen God at any time. If we love one another, God dwelleth in us, and his love is perfected in us. + +[Wednesday 22-February, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/02/22/23/scripture.tg b/scripture/kjv/02/22/23/scripture.tg new file mode 100644 index 00000000..3f6f2b7a --- /dev/null +++ b/scripture/kjv/02/22/23/scripture.tg @@ -0,0 +1,4 @@ +1 John 4:12 +12 No man hath seen God at any time. If we love one another, God dwelleth in us, and his love is perfected in us. + +Wednesday 22-February, 2023 diff --git a/scripture/kjv/02/22/23/scripture.today b/scripture/kjv/02/22/23/scripture.today new file mode 100644 index 00000000..e4f0e3b9 --- /dev/null +++ b/scripture/kjv/02/22/23/scripture.today @@ -0,0 +1 @@ +62 4:12 diff --git a/scripture/kjv/02/22/24/scripture.html b/scripture/kjv/02/22/24/scripture.html new file mode 100644 index 00000000..c3de48c0 --- /dev/null +++ b/scripture/kjv/02/22/24/scripture.html @@ -0,0 +1,3 @@ +Luke 22:44
+44 And being in an agony he prayed more earnestly: and his sweat was as it were great drops of blood falling down to the ground.

+Thursday 22-February, 2024 diff --git a/scripture/kjv/02/22/24/scripture.json b/scripture/kjv/02/22/24/scripture.json new file mode 100644 index 00000000..522e8bb0 --- /dev/null +++ b/scripture/kjv/02/22/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "22", + "date": "Thursday 22-February, 2024", + "getbible": "https://getbible.life/kjv/Luke/22/44", + "name": "Luke 22:44", + "scripture": [ + { + "nr": "44", + "text": "And being in an agony he prayed more earnestly: and his sweat was as it were great drops of blood falling down to the ground." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "44", + "version": "kjv" +} diff --git a/scripture/kjv/02/22/24/scripture.md b/scripture/kjv/02/22/24/scripture.md new file mode 100644 index 00000000..f79156f2 --- /dev/null +++ b/scripture/kjv/02/22/24/scripture.md @@ -0,0 +1,5 @@ +**Luke 22:44** + +44 And being in an agony he prayed more earnestly: and his sweat was as it were great drops of blood falling down to the ground. + +[Thursday 22-February, 2024](https://getbible.life/kjv/Luke/22/44) diff --git a/scripture/kjv/02/22/24/scripture.tg b/scripture/kjv/02/22/24/scripture.tg new file mode 100644 index 00000000..71685e24 --- /dev/null +++ b/scripture/kjv/02/22/24/scripture.tg @@ -0,0 +1,4 @@ +Luke 22:44 +44 And being in an agony he prayed more earnestly: and his sweat was as it were great drops of blood falling down to the ground. + +Thursday 22-February, 2024 diff --git a/scripture/kjv/02/22/24/scripture.tg.id b/scripture/kjv/02/22/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/22/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/22/24/scripture.today b/scripture/kjv/02/22/24/scripture.today new file mode 100644 index 00000000..b1390e2a --- /dev/null +++ b/scripture/kjv/02/22/24/scripture.today @@ -0,0 +1 @@ +42 22:44 diff --git a/scripture/kjv/02/22/25/scripture.html b/scripture/kjv/02/22/25/scripture.html new file mode 100644 index 00000000..ad60a22d --- /dev/null +++ b/scripture/kjv/02/22/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 26:8
+8 Lord, I have loved the habitation of thy house, and the place where thine honour dwelleth.

+Saturday 22-February, 2025 diff --git a/scripture/kjv/02/22/25/scripture.json b/scripture/kjv/02/22/25/scripture.json new file mode 100644 index 00000000..b0e77c1a --- /dev/null +++ b/scripture/kjv/02/22/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "26", + "date": "Saturday 22-February, 2025", + "getbible": "https://getbible.life/kjv/Psalms/26/8", + "name": "Psalms 26:8", + "scripture": [ + { + "nr": "8", + "text": "Lord, I have loved the habitation of thy house, and the place where thine honour dwelleth." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8", + "version": "kjv" +} diff --git a/scripture/kjv/02/22/25/scripture.md b/scripture/kjv/02/22/25/scripture.md new file mode 100644 index 00000000..0e21c46d --- /dev/null +++ b/scripture/kjv/02/22/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 26:8** + +8 Lord, I have loved the habitation of thy house, and the place where thine honour dwelleth. + +[Saturday 22-February, 2025](https://getbible.life/kjv/Psalms/26/8) diff --git a/scripture/kjv/02/22/25/scripture.tg b/scripture/kjv/02/22/25/scripture.tg new file mode 100644 index 00000000..fb2b4a2e --- /dev/null +++ b/scripture/kjv/02/22/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 26:8 +8 Lord, I have loved the habitation of thy house, and the place where thine honour dwelleth. + +Saturday 22-February, 2025 diff --git a/scripture/kjv/02/22/25/scripture.tg.id b/scripture/kjv/02/22/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/22/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/22/25/scripture.today b/scripture/kjv/02/22/25/scripture.today new file mode 100644 index 00000000..f1c40697 --- /dev/null +++ b/scripture/kjv/02/22/25/scripture.today @@ -0,0 +1 @@ +19 26:8 diff --git a/scripture/kjv/02/22/26/scripture.html b/scripture/kjv/02/22/26/scripture.html new file mode 100644 index 00000000..d21a8140 --- /dev/null +++ b/scripture/kjv/02/22/26/scripture.html @@ -0,0 +1,3 @@ +Isaiah 55:1-3
+1 Ho, every one that thirsteth, come ye to the waters, and he that hath no money; come ye, buy, and eat; yea, come, buy wine and milk without money and without price. 2 Wherefore do ye spend money for that which is not bread? and your labour for that which satisfieth not? hearken diligently unto me, and eat ye that which is good, and let your soul delight itself in fatness. 3 Incline your ear, and come unto me: hear, and your soul shall live; and I will make an everlasting covenant with you, even the sure mercies of David.

+Sunday 22-February, 2026 diff --git a/scripture/kjv/02/22/26/scripture.json b/scripture/kjv/02/22/26/scripture.json new file mode 100644 index 00000000..9db0eddc --- /dev/null +++ b/scripture/kjv/02/22/26/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Isaiah", + "chapter": "55", + "date": "Sunday 22-February, 2026", + "getbible": "https://getbible.life/kjv/Isaiah/55/1-3", + "name": "Isaiah 55:1-3", + "scripture": [ + { + "nr": "1", + "text": "Ho, every one that thirsteth, come ye to the waters, and he that hath no money; come ye, buy, and eat; yea, come, buy wine and milk without money and without price." + }, + { + "nr": "2", + "text": "Wherefore do ye spend money for that which is not bread? and your labour for that which satisfieth not? hearken diligently unto me, and eat ye that which is good, and let your soul delight itself in fatness." + }, + { + "nr": "3", + "text": "Incline your ear, and come unto me: hear, and your soul shall live; and I will make an everlasting covenant with you, even the sure mercies of David." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-3", + "version": "kjv" +} diff --git a/scripture/kjv/02/22/26/scripture.md b/scripture/kjv/02/22/26/scripture.md new file mode 100644 index 00000000..a35cbae7 --- /dev/null +++ b/scripture/kjv/02/22/26/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 55:1-3** + +1 Ho, every one that thirsteth, come ye to the waters, and he that hath no money; come ye, buy, and eat; yea, come, buy wine and milk without money and without price. 2 Wherefore do ye spend money for that which is not bread? and your labour for that which satisfieth not? hearken diligently unto me, and eat ye that which is good, and let your soul delight itself in fatness. 3 Incline your ear, and come unto me: hear, and your soul shall live; and I will make an everlasting covenant with you, even the sure mercies of David. + +[Sunday 22-February, 2026](https://getbible.life/kjv/Isaiah/55/1-3) diff --git a/scripture/kjv/02/22/26/scripture.tg b/scripture/kjv/02/22/26/scripture.tg new file mode 100644 index 00000000..f093bb43 --- /dev/null +++ b/scripture/kjv/02/22/26/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 55:1-3 +1 Ho, every one that thirsteth, come ye to the waters, and he that hath no money; come ye, buy, and eat; yea, come, buy wine and milk without money and without price. 2 Wherefore do ye spend money for that which is not bread? and your labour for that which satisfieth not? hearken diligently unto me, and eat ye that which is good, and let your soul delight itself in fatness. 3 Incline your ear, and come unto me: hear, and your soul shall live; and I will make an everlasting covenant with you, even the sure mercies of David. + +Sunday 22-February, 2026 diff --git a/scripture/kjv/02/22/26/scripture.tg.id b/scripture/kjv/02/22/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/22/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/22/26/scripture.today b/scripture/kjv/02/22/26/scripture.today new file mode 100644 index 00000000..6e79aac2 --- /dev/null +++ b/scripture/kjv/02/22/26/scripture.today @@ -0,0 +1 @@ +23 55:1-3 diff --git a/scripture/kjv/02/23/23/scripture.html b/scripture/kjv/02/23/23/scripture.html new file mode 100644 index 00000000..fa176570 --- /dev/null +++ b/scripture/kjv/02/23/23/scripture.html @@ -0,0 +1,3 @@ +John 8:12
+12 Then spake Jesus again unto them, saying, I am the light of the world: he that followeth me shall not walk in darkness, but shall have the light of life.

+Thursday 23-February, 2023 diff --git a/scripture/kjv/02/23/23/scripture.json b/scripture/kjv/02/23/23/scripture.json new file mode 100644 index 00000000..b30bf4e6 --- /dev/null +++ b/scripture/kjv/02/23/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Thursday 23-February, 2023", + "name": "John 8:12", + "scripture": [ + { + "nr": "12", + "text": "Then spake Jesus again unto them, saying, I am the light of the world: he that followeth me shall not walk in darkness, but shall have the light of life." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/02/23/23/scripture.md b/scripture/kjv/02/23/23/scripture.md new file mode 100644 index 00000000..93761a86 --- /dev/null +++ b/scripture/kjv/02/23/23/scripture.md @@ -0,0 +1,5 @@ +**John 8:12** + +12 Then spake Jesus again unto them, saying, I am the light of the world: he that followeth me shall not walk in darkness, but shall have the light of life. + +[Thursday 23-February, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/02/23/23/scripture.tg b/scripture/kjv/02/23/23/scripture.tg new file mode 100644 index 00000000..a16c9428 --- /dev/null +++ b/scripture/kjv/02/23/23/scripture.tg @@ -0,0 +1,4 @@ +John 8:12 +12 Then spake Jesus again unto them, saying, I am the light of the world: he that followeth me shall not walk in darkness, but shall have the light of life. + +Thursday 23-February, 2023 diff --git a/scripture/kjv/02/23/23/scripture.today b/scripture/kjv/02/23/23/scripture.today new file mode 100644 index 00000000..8fa1adf3 --- /dev/null +++ b/scripture/kjv/02/23/23/scripture.today @@ -0,0 +1 @@ +43 8:12 diff --git a/scripture/kjv/02/23/24/scripture.html b/scripture/kjv/02/23/24/scripture.html new file mode 100644 index 00000000..263a55b6 --- /dev/null +++ b/scripture/kjv/02/23/24/scripture.html @@ -0,0 +1,3 @@ +Jonah 1:3
+3 But Jonah rose up to flee unto Tarshish from the presence of the Lord, and went down to Joppa; and he found a ship going to Tarshish: so he paid the fare thereof, and went down into it, to go with them unto Tarshish from the presence of the Lord.

+Friday 23-February, 2024 diff --git a/scripture/kjv/02/23/24/scripture.json b/scripture/kjv/02/23/24/scripture.json new file mode 100644 index 00000000..e1cf49dd --- /dev/null +++ b/scripture/kjv/02/23/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Jonah", + "chapter": "1", + "date": "Friday 23-February, 2024", + "getbible": "https://getbible.life/kjv/Jonah/1/3", + "name": "Jonah 1:3", + "scripture": [ + { + "nr": "3", + "text": "But Jonah rose up to flee unto Tarshish from the presence of the Lord, and went down to Joppa; and he found a ship going to Tarshish: so he paid the fare thereof, and went down into it, to go with them unto Tarshish from the presence of the Lord." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3", + "version": "kjv" +} diff --git a/scripture/kjv/02/23/24/scripture.md b/scripture/kjv/02/23/24/scripture.md new file mode 100644 index 00000000..7e4ceefb --- /dev/null +++ b/scripture/kjv/02/23/24/scripture.md @@ -0,0 +1,5 @@ +**Jonah 1:3** + +3 But Jonah rose up to flee unto Tarshish from the presence of the Lord, and went down to Joppa; and he found a ship going to Tarshish: so he paid the fare thereof, and went down into it, to go with them unto Tarshish from the presence of the Lord. + +[Friday 23-February, 2024](https://getbible.life/kjv/Jonah/1/3) diff --git a/scripture/kjv/02/23/24/scripture.tg b/scripture/kjv/02/23/24/scripture.tg new file mode 100644 index 00000000..480a1c2c --- /dev/null +++ b/scripture/kjv/02/23/24/scripture.tg @@ -0,0 +1,4 @@ +Jonah 1:3 +3 But Jonah rose up to flee unto Tarshish from the presence of the Lord, and went down to Joppa; and he found a ship going to Tarshish: so he paid the fare thereof, and went down into it, to go with them unto Tarshish from the presence of the Lord. + +Friday 23-February, 2024 diff --git a/scripture/kjv/02/23/24/scripture.tg.id b/scripture/kjv/02/23/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/23/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/23/24/scripture.today b/scripture/kjv/02/23/24/scripture.today new file mode 100644 index 00000000..0b81bc39 --- /dev/null +++ b/scripture/kjv/02/23/24/scripture.today @@ -0,0 +1 @@ +32 1:3 diff --git a/scripture/kjv/02/23/25/scripture.html b/scripture/kjv/02/23/25/scripture.html new file mode 100644 index 00000000..48f4df61 --- /dev/null +++ b/scripture/kjv/02/23/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 17:5
+5 Hold up my goings in thy paths, that my footsteps slip not.

+Sunday 23-February, 2025 diff --git a/scripture/kjv/02/23/25/scripture.json b/scripture/kjv/02/23/25/scripture.json new file mode 100644 index 00000000..f8bbfc25 --- /dev/null +++ b/scripture/kjv/02/23/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "17", + "date": "Sunday 23-February, 2025", + "getbible": "https://getbible.life/kjv/Psalms/17/5", + "name": "Psalms 17:5", + "scripture": [ + { + "nr": "5", + "text": "Hold up my goings in thy paths, that my footsteps slip not." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5", + "version": "kjv" +} diff --git a/scripture/kjv/02/23/25/scripture.md b/scripture/kjv/02/23/25/scripture.md new file mode 100644 index 00000000..237aa760 --- /dev/null +++ b/scripture/kjv/02/23/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 17:5** + +5 Hold up my goings in thy paths, that my footsteps slip not. + +[Sunday 23-February, 2025](https://getbible.life/kjv/Psalms/17/5) diff --git a/scripture/kjv/02/23/25/scripture.tg b/scripture/kjv/02/23/25/scripture.tg new file mode 100644 index 00000000..629d1fd6 --- /dev/null +++ b/scripture/kjv/02/23/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 17:5 +5 Hold up my goings in thy paths, that my footsteps slip not. + +Sunday 23-February, 2025 diff --git a/scripture/kjv/02/23/25/scripture.tg.id b/scripture/kjv/02/23/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/23/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/23/25/scripture.today b/scripture/kjv/02/23/25/scripture.today new file mode 100644 index 00000000..1d067699 --- /dev/null +++ b/scripture/kjv/02/23/25/scripture.today @@ -0,0 +1 @@ +19 17:5 diff --git a/scripture/kjv/02/23/26/scripture.html b/scripture/kjv/02/23/26/scripture.html new file mode 100644 index 00000000..d76edffd --- /dev/null +++ b/scripture/kjv/02/23/26/scripture.html @@ -0,0 +1,3 @@ +Psalms 65:9-13
+9 Thou visitest the earth, and waterest it: thou greatly enrichest it with the river of God, which is full of water: thou preparest them corn, when thou hast so provided for it. 10 Thou waterest the ridges thereof abundantly: thou settlest the furrows thereof: thou makest it soft with showers: thou blessest the springing thereof. 11 Thou crownest the year with thy goodness; and thy paths drop fatness. 12 They drop upon the pastures of the wilderness: and the little hills rejoice on every side. 13 The pastures are clothed with flocks; the valleys also are covered over with corn; they shout for joy, they also sing.

+Monday 23-February, 2026 diff --git a/scripture/kjv/02/23/26/scripture.json b/scripture/kjv/02/23/26/scripture.json new file mode 100644 index 00000000..666a7e07 --- /dev/null +++ b/scripture/kjv/02/23/26/scripture.json @@ -0,0 +1,33 @@ +{ + "book": "Psalms", + "chapter": "65", + "date": "Monday 23-February, 2026", + "getbible": "https://getbible.life/kjv/Psalms/65/9-13", + "name": "Psalms 65:9-13", + "scripture": [ + { + "nr": "9", + "text": "Thou visitest the earth, and waterest it: thou greatly enrichest it with the river of God, which is full of water: thou preparest them corn, when thou hast so provided for it." + }, + { + "nr": "10", + "text": "Thou waterest the ridges thereof abundantly: thou settlest the furrows thereof: thou makest it soft with showers: thou blessest the springing thereof." + }, + { + "nr": "11", + "text": "Thou crownest the year with thy goodness; and thy paths drop fatness." + }, + { + "nr": "12", + "text": "They drop upon the pastures of the wilderness: and the little hills rejoice on every side." + }, + { + "nr": "13", + "text": "The pastures are clothed with flocks; the valleys also are covered over with corn; they shout for joy, they also sing. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9-13", + "version": "kjv" +} diff --git a/scripture/kjv/02/23/26/scripture.md b/scripture/kjv/02/23/26/scripture.md new file mode 100644 index 00000000..b47ddcd6 --- /dev/null +++ b/scripture/kjv/02/23/26/scripture.md @@ -0,0 +1,5 @@ +**Psalms 65:9-13** + +9 Thou visitest the earth, and waterest it: thou greatly enrichest it with the river of God, which is full of water: thou preparest them corn, when thou hast so provided for it. 10 Thou waterest the ridges thereof abundantly: thou settlest the furrows thereof: thou makest it soft with showers: thou blessest the springing thereof. 11 Thou crownest the year with thy goodness; and thy paths drop fatness. 12 They drop upon the pastures of the wilderness: and the little hills rejoice on every side. 13 The pastures are clothed with flocks; the valleys also are covered over with corn; they shout for joy, they also sing. + +[Monday 23-February, 2026](https://getbible.life/kjv/Psalms/65/9-13) diff --git a/scripture/kjv/02/23/26/scripture.tg b/scripture/kjv/02/23/26/scripture.tg new file mode 100644 index 00000000..89210a6f --- /dev/null +++ b/scripture/kjv/02/23/26/scripture.tg @@ -0,0 +1,4 @@ +Psalms 65:9-13 +9 Thou visitest the earth, and waterest it: thou greatly enrichest it with the river of God, which is full of water: thou preparest them corn, when thou hast so provided for it. 10 Thou waterest the ridges thereof abundantly: thou settlest the furrows thereof: thou makest it soft with showers: thou blessest the springing thereof. 11 Thou crownest the year with thy goodness; and thy paths drop fatness. 12 They drop upon the pastures of the wilderness: and the little hills rejoice on every side. 13 The pastures are clothed with flocks; the valleys also are covered over with corn; they shout for joy, they also sing. + +Monday 23-February, 2026 diff --git a/scripture/kjv/02/23/26/scripture.today b/scripture/kjv/02/23/26/scripture.today new file mode 100644 index 00000000..cac87bfc --- /dev/null +++ b/scripture/kjv/02/23/26/scripture.today @@ -0,0 +1 @@ +19 65:9-13 diff --git a/scripture/kjv/02/24/23/scripture.html b/scripture/kjv/02/24/23/scripture.html new file mode 100644 index 00000000..0edcbac6 --- /dev/null +++ b/scripture/kjv/02/24/23/scripture.html @@ -0,0 +1,3 @@ +Isaiah 57:15-16
+15 For thus saith the high and lofty One that inhabiteth eternity, whose name is Holy; I dwell in the high and holy place, with him also that is of a contrite and humble spirit, to revive the spirit of the humble, and to revive the heart of the contrite ones. 16 For I will not contend for ever, neither will I be always wroth: for the spirit should fail before me, and the souls which I have made.

+Friday 24-February, 2023 diff --git a/scripture/kjv/02/24/23/scripture.json b/scripture/kjv/02/24/23/scripture.json new file mode 100644 index 00000000..dfc0863e --- /dev/null +++ b/scripture/kjv/02/24/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Friday 24-February, 2023", + "name": "Isaiah 57:15-16", + "scripture": [ + { + "nr": "15", + "text": "For thus saith the high and lofty One that inhabiteth eternity, whose name is Holy; I dwell in the high and holy place, with him also that is of a contrite and humble spirit, to revive the spirit of the humble, and to revive the heart of the contrite ones." + }, + { + "nr": "16", + "text": "For I will not contend for ever, neither will I be always wroth: for the spirit should fail before me, and the souls which I have made." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/02/24/23/scripture.md b/scripture/kjv/02/24/23/scripture.md new file mode 100644 index 00000000..1f49f987 --- /dev/null +++ b/scripture/kjv/02/24/23/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 57:15-16** + +15 For thus saith the high and lofty One that inhabiteth eternity, whose name is Holy; I dwell in the high and holy place, with him also that is of a contrite and humble spirit, to revive the spirit of the humble, and to revive the heart of the contrite ones. 16 For I will not contend for ever, neither will I be always wroth: for the spirit should fail before me, and the souls which I have made. + +[Friday 24-February, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/02/24/23/scripture.tg b/scripture/kjv/02/24/23/scripture.tg new file mode 100644 index 00000000..f48c7407 --- /dev/null +++ b/scripture/kjv/02/24/23/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 57:15-16 +15 For thus saith the high and lofty One that inhabiteth eternity, whose name is Holy; I dwell in the high and holy place, with him also that is of a contrite and humble spirit, to revive the spirit of the humble, and to revive the heart of the contrite ones. 16 For I will not contend for ever, neither will I be always wroth: for the spirit should fail before me, and the souls which I have made. + +Friday 24-February, 2023 diff --git a/scripture/kjv/02/24/23/scripture.today b/scripture/kjv/02/24/23/scripture.today new file mode 100644 index 00000000..0a7ff3a7 --- /dev/null +++ b/scripture/kjv/02/24/23/scripture.today @@ -0,0 +1 @@ +23 57:15-16 diff --git a/scripture/kjv/02/24/24/scripture.html b/scripture/kjv/02/24/24/scripture.html new file mode 100644 index 00000000..512bf688 --- /dev/null +++ b/scripture/kjv/02/24/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 40:1-3
+1 I waited patiently for the Lord; and he inclined unto me, and heard my cry. 2 He brought me up also out of an horrible pit, out of the miry clay, and set my feet upon a rock, and established my goings. 3 And he hath put a new song in my mouth, even praise unto our God: many shall see it, and fear, and shall trust in the Lord.

+Saturday 24-February, 2024 diff --git a/scripture/kjv/02/24/24/scripture.json b/scripture/kjv/02/24/24/scripture.json new file mode 100644 index 00000000..ad26e699 --- /dev/null +++ b/scripture/kjv/02/24/24/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Psalms", + "chapter": "40", + "date": "Saturday 24-February, 2024", + "getbible": "https://getbible.life/kjv/Psalms/40/1-3", + "name": "Psalms 40:1-3", + "scripture": [ + { + "nr": "1", + "text": "I waited patiently for the Lord; and he inclined unto me, and heard my cry." + }, + { + "nr": "2", + "text": "He brought me up also out of an horrible pit, out of the miry clay, and set my feet upon a rock, and established my goings." + }, + { + "nr": "3", + "text": "And he hath put a new song in my mouth, even praise unto our God: many shall see it, and fear, and shall trust in the Lord." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-3", + "version": "kjv" +} diff --git a/scripture/kjv/02/24/24/scripture.md b/scripture/kjv/02/24/24/scripture.md new file mode 100644 index 00000000..5bd23b9f --- /dev/null +++ b/scripture/kjv/02/24/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 40:1-3** + +1 I waited patiently for the Lord; and he inclined unto me, and heard my cry. 2 He brought me up also out of an horrible pit, out of the miry clay, and set my feet upon a rock, and established my goings. 3 And he hath put a new song in my mouth, even praise unto our God: many shall see it, and fear, and shall trust in the Lord. + +[Saturday 24-February, 2024](https://getbible.life/kjv/Psalms/40/1-3) diff --git a/scripture/kjv/02/24/24/scripture.tg b/scripture/kjv/02/24/24/scripture.tg new file mode 100644 index 00000000..2fa13dcb --- /dev/null +++ b/scripture/kjv/02/24/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 40:1-3 +1 I waited patiently for the Lord; and he inclined unto me, and heard my cry. 2 He brought me up also out of an horrible pit, out of the miry clay, and set my feet upon a rock, and established my goings. 3 And he hath put a new song in my mouth, even praise unto our God: many shall see it, and fear, and shall trust in the Lord. + +Saturday 24-February, 2024 diff --git a/scripture/kjv/02/24/24/scripture.tg.id b/scripture/kjv/02/24/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/24/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/24/24/scripture.today b/scripture/kjv/02/24/24/scripture.today new file mode 100644 index 00000000..c1dfdec8 --- /dev/null +++ b/scripture/kjv/02/24/24/scripture.today @@ -0,0 +1 @@ +19 40:1-3 diff --git a/scripture/kjv/02/24/25/scripture.html b/scripture/kjv/02/24/25/scripture.html new file mode 100644 index 00000000..c69f70fc --- /dev/null +++ b/scripture/kjv/02/24/25/scripture.html @@ -0,0 +1,3 @@ +Luke 8:39
+39 Return to thine own house, and shew how great things God hath done unto thee. And he went his way, and published throughout the whole city how great things Jesus had done unto him.

+Monday 24-February, 2025 diff --git a/scripture/kjv/02/24/25/scripture.json b/scripture/kjv/02/24/25/scripture.json new file mode 100644 index 00000000..f615f4aa --- /dev/null +++ b/scripture/kjv/02/24/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "8", + "date": "Monday 24-February, 2025", + "getbible": "https://getbible.life/kjv/Luke/8/39", + "name": "Luke 8:39", + "scripture": [ + { + "nr": "39", + "text": "Return to thine own house, and shew how great things God hath done unto thee. And he went his way, and published throughout the whole city how great things Jesus had done unto him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "39", + "version": "kjv" +} diff --git a/scripture/kjv/02/24/25/scripture.md b/scripture/kjv/02/24/25/scripture.md new file mode 100644 index 00000000..baa3e2ae --- /dev/null +++ b/scripture/kjv/02/24/25/scripture.md @@ -0,0 +1,5 @@ +**Luke 8:39** + +39 Return to thine own house, and shew how great things God hath done unto thee. And he went his way, and published throughout the whole city how great things Jesus had done unto him. + +[Monday 24-February, 2025](https://getbible.life/kjv/Luke/8/39) diff --git a/scripture/kjv/02/24/25/scripture.tg b/scripture/kjv/02/24/25/scripture.tg new file mode 100644 index 00000000..8bc038a8 --- /dev/null +++ b/scripture/kjv/02/24/25/scripture.tg @@ -0,0 +1,4 @@ +Luke 8:39 +39 Return to thine own house, and shew how great things God hath done unto thee. And he went his way, and published throughout the whole city how great things Jesus had done unto him. + +Monday 24-February, 2025 diff --git a/scripture/kjv/02/24/25/scripture.tg.id b/scripture/kjv/02/24/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/24/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/24/25/scripture.today b/scripture/kjv/02/24/25/scripture.today new file mode 100644 index 00000000..e1ce7263 --- /dev/null +++ b/scripture/kjv/02/24/25/scripture.today @@ -0,0 +1 @@ +42 8:39 diff --git a/scripture/kjv/02/24/26/scripture.html b/scripture/kjv/02/24/26/scripture.html new file mode 100644 index 00000000..4c9627b6 --- /dev/null +++ b/scripture/kjv/02/24/26/scripture.html @@ -0,0 +1,3 @@ +Isaiah 6:8
+8 Also I heard the voice of the Lord, saying, Whom shall I send, and who will go for us? Then said I, Here am I; send me.

+Tuesday 24-February, 2026 diff --git a/scripture/kjv/02/24/26/scripture.json b/scripture/kjv/02/24/26/scripture.json new file mode 100644 index 00000000..0b67d0d7 --- /dev/null +++ b/scripture/kjv/02/24/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "6", + "date": "Tuesday 24-February, 2026", + "getbible": "https://getbible.life/kjv/Isaiah/6/8", + "name": "Isaiah 6:8", + "scripture": [ + { + "nr": "8", + "text": "Also I heard the voice of the Lord, saying, Whom shall I send, and who will go for us? Then said I, Here am I; send me." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8", + "version": "kjv" +} diff --git a/scripture/kjv/02/24/26/scripture.md b/scripture/kjv/02/24/26/scripture.md new file mode 100644 index 00000000..010330a8 --- /dev/null +++ b/scripture/kjv/02/24/26/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 6:8** + +8 Also I heard the voice of the Lord, saying, Whom shall I send, and who will go for us? Then said I, Here am I; send me. + +[Tuesday 24-February, 2026](https://getbible.life/kjv/Isaiah/6/8) diff --git a/scripture/kjv/02/24/26/scripture.tg b/scripture/kjv/02/24/26/scripture.tg new file mode 100644 index 00000000..d7ab4300 --- /dev/null +++ b/scripture/kjv/02/24/26/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 6:8 +8 Also I heard the voice of the Lord, saying, Whom shall I send, and who will go for us? Then said I, Here am I; send me. + +Tuesday 24-February, 2026 diff --git a/scripture/kjv/02/24/26/scripture.tg.id b/scripture/kjv/02/24/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/24/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/24/26/scripture.today b/scripture/kjv/02/24/26/scripture.today new file mode 100644 index 00000000..cc212a8d --- /dev/null +++ b/scripture/kjv/02/24/26/scripture.today @@ -0,0 +1 @@ +23 6:8 diff --git a/scripture/kjv/02/25/23/scripture.html b/scripture/kjv/02/25/23/scripture.html new file mode 100644 index 00000000..dd6693b1 --- /dev/null +++ b/scripture/kjv/02/25/23/scripture.html @@ -0,0 +1,3 @@ +John 7:18
+18 He that speaketh of himself seeketh his own glory: but he that seeketh his glory that sent him, the same is true, and no unrighteousness is in him.

+Saturday 25-February, 2023 diff --git a/scripture/kjv/02/25/23/scripture.json b/scripture/kjv/02/25/23/scripture.json new file mode 100644 index 00000000..74d9f22a --- /dev/null +++ b/scripture/kjv/02/25/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Saturday 25-February, 2023", + "name": "John 7:18", + "scripture": [ + { + "nr": "18", + "text": "He that speaketh of himself seeketh his own glory: but he that seeketh his glory that sent him, the same is true, and no unrighteousness is in him." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/02/25/23/scripture.md b/scripture/kjv/02/25/23/scripture.md new file mode 100644 index 00000000..a01ae3a3 --- /dev/null +++ b/scripture/kjv/02/25/23/scripture.md @@ -0,0 +1,5 @@ +**John 7:18** + +18 He that speaketh of himself seeketh his own glory: but he that seeketh his glory that sent him, the same is true, and no unrighteousness is in him. + +[Saturday 25-February, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/02/25/23/scripture.tg b/scripture/kjv/02/25/23/scripture.tg new file mode 100644 index 00000000..1653e8e1 --- /dev/null +++ b/scripture/kjv/02/25/23/scripture.tg @@ -0,0 +1,4 @@ +John 7:18 +18 He that speaketh of himself seeketh his own glory: but he that seeketh his glory that sent him, the same is true, and no unrighteousness is in him. + +Saturday 25-February, 2023 diff --git a/scripture/kjv/02/25/23/scripture.today b/scripture/kjv/02/25/23/scripture.today new file mode 100644 index 00000000..6da4ae51 --- /dev/null +++ b/scripture/kjv/02/25/23/scripture.today @@ -0,0 +1 @@ +43 7:18 diff --git a/scripture/kjv/02/25/24/scripture.html b/scripture/kjv/02/25/24/scripture.html new file mode 100644 index 00000000..51b669b9 --- /dev/null +++ b/scripture/kjv/02/25/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 19:11
+11 The discretion of a man deferreth his anger; and it is his glory to pass over a transgression.

+Sunday 25-February, 2024 diff --git a/scripture/kjv/02/25/24/scripture.json b/scripture/kjv/02/25/24/scripture.json new file mode 100644 index 00000000..428df282 --- /dev/null +++ b/scripture/kjv/02/25/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "19", + "date": "Sunday 25-February, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/19/11", + "name": "Proverbs 19:11", + "scripture": [ + { + "nr": "11", + "text": "The discretion of a man deferreth his anger; and it is his glory to pass over a transgression." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/02/25/24/scripture.md b/scripture/kjv/02/25/24/scripture.md new file mode 100644 index 00000000..d8029ec8 --- /dev/null +++ b/scripture/kjv/02/25/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 19:11** + +11 The discretion of a man deferreth his anger; and it is his glory to pass over a transgression. + +[Sunday 25-February, 2024](https://getbible.life/kjv/Proverbs/19/11) diff --git a/scripture/kjv/02/25/24/scripture.tg b/scripture/kjv/02/25/24/scripture.tg new file mode 100644 index 00000000..cee888ee --- /dev/null +++ b/scripture/kjv/02/25/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 19:11 +11 The discretion of a man deferreth his anger; and it is his glory to pass over a transgression. + +Sunday 25-February, 2024 diff --git a/scripture/kjv/02/25/24/scripture.tg.id b/scripture/kjv/02/25/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/25/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/25/24/scripture.today b/scripture/kjv/02/25/24/scripture.today new file mode 100644 index 00000000..3f593f5b --- /dev/null +++ b/scripture/kjv/02/25/24/scripture.today @@ -0,0 +1 @@ +20 19:11 diff --git a/scripture/kjv/02/25/25/scripture.html b/scripture/kjv/02/25/25/scripture.html new file mode 100644 index 00000000..60b69bec --- /dev/null +++ b/scripture/kjv/02/25/25/scripture.html @@ -0,0 +1,3 @@ +Luke 16:7-9
+7 Then said he to another, And how much owest thou? And he said, An hundred measures of wheat. And he said unto him, Take thy bill, and write fourscore. 8 And the lord commended the unjust steward, because he had done wisely: for the children of this world are in their generation wiser than the children of light. 9 And I say unto you, Make to yourselves friends of the mammon of unrighteousness; that, when ye fail, they may receive you into everlasting habitations.

+Tuesday 25-February, 2025 diff --git a/scripture/kjv/02/25/25/scripture.json b/scripture/kjv/02/25/25/scripture.json new file mode 100644 index 00000000..cc162178 --- /dev/null +++ b/scripture/kjv/02/25/25/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Luke", + "chapter": "16", + "date": "Tuesday 25-February, 2025", + "getbible": "https://getbible.life/kjv/Luke/16/7-9", + "name": "Luke 16:7-9", + "scripture": [ + { + "nr": "7", + "text": "Then said he to another, And how much owest thou? And he said, An hundred measures of wheat. And he said unto him, Take thy bill, and write fourscore." + }, + { + "nr": "8", + "text": "And the lord commended the unjust steward, because he had done wisely: for the children of this world are in their generation wiser than the children of light." + }, + { + "nr": "9", + "text": "And I say unto you, Make to yourselves friends of the mammon of unrighteousness; that, when ye fail, they may receive you into everlasting habitations." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7-9", + "version": "kjv" +} diff --git a/scripture/kjv/02/25/25/scripture.md b/scripture/kjv/02/25/25/scripture.md new file mode 100644 index 00000000..faefdc41 --- /dev/null +++ b/scripture/kjv/02/25/25/scripture.md @@ -0,0 +1,5 @@ +**Luke 16:7-9** + +7 Then said he to another, And how much owest thou? And he said, An hundred measures of wheat. And he said unto him, Take thy bill, and write fourscore. 8 And the lord commended the unjust steward, because he had done wisely: for the children of this world are in their generation wiser than the children of light. 9 And I say unto you, Make to yourselves friends of the mammon of unrighteousness; that, when ye fail, they may receive you into everlasting habitations. + +[Tuesday 25-February, 2025](https://getbible.life/kjv/Luke/16/7-9) diff --git a/scripture/kjv/02/25/25/scripture.tg b/scripture/kjv/02/25/25/scripture.tg new file mode 100644 index 00000000..4dc70b4f --- /dev/null +++ b/scripture/kjv/02/25/25/scripture.tg @@ -0,0 +1,4 @@ +Luke 16:7-9 +7 Then said he to another, And how much owest thou? And he said, An hundred measures of wheat. And he said unto him, Take thy bill, and write fourscore. 8 And the lord commended the unjust steward, because he had done wisely: for the children of this world are in their generation wiser than the children of light. 9 And I say unto you, Make to yourselves friends of the mammon of unrighteousness; that, when ye fail, they may receive you into everlasting habitations. + +Tuesday 25-February, 2025 diff --git a/scripture/kjv/02/25/25/scripture.tg.id b/scripture/kjv/02/25/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/25/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/25/25/scripture.today b/scripture/kjv/02/25/25/scripture.today new file mode 100644 index 00000000..46b4840e --- /dev/null +++ b/scripture/kjv/02/25/25/scripture.today @@ -0,0 +1 @@ +42 16:7-9 diff --git a/scripture/kjv/02/25/26/scripture.html b/scripture/kjv/02/25/26/scripture.html new file mode 100644 index 00000000..04e6f98c --- /dev/null +++ b/scripture/kjv/02/25/26/scripture.html @@ -0,0 +1,3 @@ +Romans 2:4
+4 Or despisest thou the riches of his goodness and forbearance and longsuffering; not knowing that the goodness of God leadeth thee to repentance?

+Wednesday 25-February, 2026 diff --git a/scripture/kjv/02/25/26/scripture.json b/scripture/kjv/02/25/26/scripture.json new file mode 100644 index 00000000..13f7e872 --- /dev/null +++ b/scripture/kjv/02/25/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Romans", + "chapter": "2", + "date": "Wednesday 25-February, 2026", + "getbible": "https://getbible.life/kjv/Romans/2/4", + "name": "Romans 2:4", + "scripture": [ + { + "nr": "4", + "text": "Or despisest thou the riches of his goodness and forbearance and longsuffering; not knowing that the goodness of God leadeth thee to repentance?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4", + "version": "kjv" +} diff --git a/scripture/kjv/02/25/26/scripture.md b/scripture/kjv/02/25/26/scripture.md new file mode 100644 index 00000000..b3d8be6b --- /dev/null +++ b/scripture/kjv/02/25/26/scripture.md @@ -0,0 +1,5 @@ +**Romans 2:4** + +4 Or despisest thou the riches of his goodness and forbearance and longsuffering; not knowing that the goodness of God leadeth thee to repentance? + +[Wednesday 25-February, 2026](https://getbible.life/kjv/Romans/2/4) diff --git a/scripture/kjv/02/25/26/scripture.tg b/scripture/kjv/02/25/26/scripture.tg new file mode 100644 index 00000000..3c93871d --- /dev/null +++ b/scripture/kjv/02/25/26/scripture.tg @@ -0,0 +1,4 @@ +Romans 2:4 +4 Or despisest thou the riches of his goodness and forbearance and longsuffering; not knowing that the goodness of God leadeth thee to repentance? + +Wednesday 25-February, 2026 diff --git a/scripture/kjv/02/25/26/scripture.tg.id b/scripture/kjv/02/25/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/25/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/25/26/scripture.today b/scripture/kjv/02/25/26/scripture.today new file mode 100644 index 00000000..10657990 --- /dev/null +++ b/scripture/kjv/02/25/26/scripture.today @@ -0,0 +1 @@ +45 2:4 diff --git a/scripture/kjv/02/26/23/scripture.html b/scripture/kjv/02/26/23/scripture.html new file mode 100644 index 00000000..b3653e17 --- /dev/null +++ b/scripture/kjv/02/26/23/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 11:23-27
+23 Are they ministers of Christ? (I speak as a fool) I am more; in labours more abundant, in stripes above measure, in prisons more frequent, in deaths oft. 24 Of the Jews five times received I forty stripes save one. 25 Thrice was I beaten with rods, once was I stoned, thrice I suffered shipwreck, a night and a day I have been in the deep; 26 In journeyings often, in perils of waters, in perils of robbers, in perils by mine own countrymen, in perils by the heathen, in perils in the city, in perils in the wilderness, in perils in the sea, in perils among false brethren; 27 In weariness and painfulness, in watchings often, in hunger and thirst, in fastings often, in cold and nakedness.

+Sunday 26-February, 2023 diff --git a/scripture/kjv/02/26/23/scripture.json b/scripture/kjv/02/26/23/scripture.json new file mode 100644 index 00000000..22b5f7c5 --- /dev/null +++ b/scripture/kjv/02/26/23/scripture.json @@ -0,0 +1,29 @@ +{ + "date": "Sunday 26-February, 2023", + "name": "2 Corinthians 11:23-27", + "scripture": [ + { + "nr": "23", + "text": "Are they ministers of Christ? (I speak as a fool) I am more; in labours more abundant, in stripes above measure, in prisons more frequent, in deaths oft." + }, + { + "nr": "24", + "text": "Of the Jews five times received I forty stripes save one." + }, + { + "nr": "25", + "text": "Thrice was I beaten with rods, once was I stoned, thrice I suffered shipwreck, a night and a day I have been in the deep;" + }, + { + "nr": "26", + "text": "In journeyings often, in perils of waters, in perils of robbers, in perils by mine own countrymen, in perils by the heathen, in perils in the city, in perils in the wilderness, in perils in the sea, in perils among false brethren;" + }, + { + "nr": "27", + "text": "In weariness and painfulness, in watchings often, in hunger and thirst, in fastings often, in cold and nakedness." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/02/26/23/scripture.md b/scripture/kjv/02/26/23/scripture.md new file mode 100644 index 00000000..4a36b03a --- /dev/null +++ b/scripture/kjv/02/26/23/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 11:23-27** + +23 Are they ministers of Christ? (I speak as a fool) I am more; in labours more abundant, in stripes above measure, in prisons more frequent, in deaths oft. 24 Of the Jews five times received I forty stripes save one. 25 Thrice was I beaten with rods, once was I stoned, thrice I suffered shipwreck, a night and a day I have been in the deep; 26 In journeyings often, in perils of waters, in perils of robbers, in perils by mine own countrymen, in perils by the heathen, in perils in the city, in perils in the wilderness, in perils in the sea, in perils among false brethren; 27 In weariness and painfulness, in watchings often, in hunger and thirst, in fastings often, in cold and nakedness. + +[Sunday 26-February, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/02/26/23/scripture.tg b/scripture/kjv/02/26/23/scripture.tg new file mode 100644 index 00000000..76b912e3 --- /dev/null +++ b/scripture/kjv/02/26/23/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 11:23-27 +23 Are they ministers of Christ? (I speak as a fool) I am more; in labours more abundant, in stripes above measure, in prisons more frequent, in deaths oft. 24 Of the Jews five times received I forty stripes save one. 25 Thrice was I beaten with rods, once was I stoned, thrice I suffered shipwreck, a night and a day I have been in the deep; 26 In journeyings often, in perils of waters, in perils of robbers, in perils by mine own countrymen, in perils by the heathen, in perils in the city, in perils in the wilderness, in perils in the sea, in perils among false brethren; 27 In weariness and painfulness, in watchings often, in hunger and thirst, in fastings often, in cold and nakedness. + +Sunday 26-February, 2023 diff --git a/scripture/kjv/02/26/23/scripture.today b/scripture/kjv/02/26/23/scripture.today new file mode 100644 index 00000000..f430b0da --- /dev/null +++ b/scripture/kjv/02/26/23/scripture.today @@ -0,0 +1 @@ +47 11:23-27 diff --git a/scripture/kjv/02/26/24/scripture.html b/scripture/kjv/02/26/24/scripture.html new file mode 100644 index 00000000..2f0396e4 --- /dev/null +++ b/scripture/kjv/02/26/24/scripture.html @@ -0,0 +1,3 @@ +Ephesians 6:24
+24 Grace be with all them that love our Lord Jesus Christ in sincerity. Amen. Written from Rome unto the Ephesians by Tychicus.

+Monday 26-February, 2024 diff --git a/scripture/kjv/02/26/24/scripture.json b/scripture/kjv/02/26/24/scripture.json new file mode 100644 index 00000000..efe4ad86 --- /dev/null +++ b/scripture/kjv/02/26/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ephesians", + "chapter": "6", + "date": "Monday 26-February, 2024", + "getbible": "https://getbible.life/kjv/Ephesians/6/24", + "name": "Ephesians 6:24", + "scripture": [ + { + "nr": "24", + "text": "Grace be with all them that love our Lord Jesus Christ in sincerity. Amen. Written from Rome unto the Ephesians by Tychicus. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "24", + "version": "kjv" +} diff --git a/scripture/kjv/02/26/24/scripture.md b/scripture/kjv/02/26/24/scripture.md new file mode 100644 index 00000000..0160926e --- /dev/null +++ b/scripture/kjv/02/26/24/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 6:24** + +24 Grace be with all them that love our Lord Jesus Christ in sincerity. Amen. Written from Rome unto the Ephesians by Tychicus. + +[Monday 26-February, 2024](https://getbible.life/kjv/Ephesians/6/24) diff --git a/scripture/kjv/02/26/24/scripture.tg b/scripture/kjv/02/26/24/scripture.tg new file mode 100644 index 00000000..f135b8ce --- /dev/null +++ b/scripture/kjv/02/26/24/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 6:24 +24 Grace be with all them that love our Lord Jesus Christ in sincerity. Amen. Written from Rome unto the Ephesians by Tychicus. + +Monday 26-February, 2024 diff --git a/scripture/kjv/02/26/24/scripture.tg.id b/scripture/kjv/02/26/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/26/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/26/24/scripture.today b/scripture/kjv/02/26/24/scripture.today new file mode 100644 index 00000000..8f82b7ca --- /dev/null +++ b/scripture/kjv/02/26/24/scripture.today @@ -0,0 +1 @@ +49 6:24 diff --git a/scripture/kjv/02/26/25/scripture.html b/scripture/kjv/02/26/25/scripture.html new file mode 100644 index 00000000..b3490f70 --- /dev/null +++ b/scripture/kjv/02/26/25/scripture.html @@ -0,0 +1,3 @@ +Daniel 12:3
+3 And they that be wise shall shine as the brightness of the firmament; and they that turn many to righteousness as the stars for ever and ever.

+Wednesday 26-February, 2025 diff --git a/scripture/kjv/02/26/25/scripture.json b/scripture/kjv/02/26/25/scripture.json new file mode 100644 index 00000000..0756f1b5 --- /dev/null +++ b/scripture/kjv/02/26/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Daniel", + "chapter": "12", + "date": "Wednesday 26-February, 2025", + "getbible": "https://getbible.life/kjv/Daniel/12/3", + "name": "Daniel 12:3", + "scripture": [ + { + "nr": "3", + "text": "And they that be wise shall shine as the brightness of the firmament; and they that turn many to righteousness as the stars for ever and ever." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3", + "version": "kjv" +} diff --git a/scripture/kjv/02/26/25/scripture.md b/scripture/kjv/02/26/25/scripture.md new file mode 100644 index 00000000..9b15a467 --- /dev/null +++ b/scripture/kjv/02/26/25/scripture.md @@ -0,0 +1,5 @@ +**Daniel 12:3** + +3 And they that be wise shall shine as the brightness of the firmament; and they that turn many to righteousness as the stars for ever and ever. + +[Wednesday 26-February, 2025](https://getbible.life/kjv/Daniel/12/3) diff --git a/scripture/kjv/02/26/25/scripture.tg b/scripture/kjv/02/26/25/scripture.tg new file mode 100644 index 00000000..31dc8ea3 --- /dev/null +++ b/scripture/kjv/02/26/25/scripture.tg @@ -0,0 +1,4 @@ +Daniel 12:3 +3 And they that be wise shall shine as the brightness of the firmament; and they that turn many to righteousness as the stars for ever and ever. + +Wednesday 26-February, 2025 diff --git a/scripture/kjv/02/26/25/scripture.tg.id b/scripture/kjv/02/26/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/26/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/26/25/scripture.today b/scripture/kjv/02/26/25/scripture.today new file mode 100644 index 00000000..dc07f615 --- /dev/null +++ b/scripture/kjv/02/26/25/scripture.today @@ -0,0 +1 @@ +27 12:3 diff --git a/scripture/kjv/02/26/26/scripture.html b/scripture/kjv/02/26/26/scripture.html new file mode 100644 index 00000000..eae52105 --- /dev/null +++ b/scripture/kjv/02/26/26/scripture.html @@ -0,0 +1,3 @@ +Matthew 7:28-29
+28 And it came to pass, when Jesus had ended these sayings, the people were astonished at his doctrine: 29 For he taught them as one having authority, and not as the scribes.

+Thursday 26-February, 2026 diff --git a/scripture/kjv/02/26/26/scripture.json b/scripture/kjv/02/26/26/scripture.json new file mode 100644 index 00000000..12398ad4 --- /dev/null +++ b/scripture/kjv/02/26/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Matthew", + "chapter": "7", + "date": "Thursday 26-February, 2026", + "getbible": "https://getbible.life/kjv/Matthew/7/28-29", + "name": "Matthew 7:28-29", + "scripture": [ + { + "nr": "28", + "text": "And it came to pass, when Jesus had ended these sayings, the people were astonished at his doctrine:" + }, + { + "nr": "29", + "text": "For he taught them as one having authority, and not as the scribes. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "28-29", + "version": "kjv" +} diff --git a/scripture/kjv/02/26/26/scripture.md b/scripture/kjv/02/26/26/scripture.md new file mode 100644 index 00000000..0f72b5e8 --- /dev/null +++ b/scripture/kjv/02/26/26/scripture.md @@ -0,0 +1,5 @@ +**Matthew 7:28-29** + +28 And it came to pass, when Jesus had ended these sayings, the people were astonished at his doctrine: 29 For he taught them as one having authority, and not as the scribes. + +[Thursday 26-February, 2026](https://getbible.life/kjv/Matthew/7/28-29) diff --git a/scripture/kjv/02/26/26/scripture.tg b/scripture/kjv/02/26/26/scripture.tg new file mode 100644 index 00000000..a7e94f8d --- /dev/null +++ b/scripture/kjv/02/26/26/scripture.tg @@ -0,0 +1,4 @@ +Matthew 7:28-29 +28 And it came to pass, when Jesus had ended these sayings, the people were astonished at his doctrine: 29 For he taught them as one having authority, and not as the scribes. + +Thursday 26-February, 2026 diff --git a/scripture/kjv/02/26/26/scripture.tg.id b/scripture/kjv/02/26/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/26/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/26/26/scripture.today b/scripture/kjv/02/26/26/scripture.today new file mode 100644 index 00000000..4d728ed1 --- /dev/null +++ b/scripture/kjv/02/26/26/scripture.today @@ -0,0 +1 @@ +40 7:28-29 diff --git a/scripture/kjv/02/27/23/scripture.html b/scripture/kjv/02/27/23/scripture.html new file mode 100644 index 00000000..4f0f8ea0 --- /dev/null +++ b/scripture/kjv/02/27/23/scripture.html @@ -0,0 +1,3 @@ +Joel 2:23
+23 Be glad then, ye children of Zion, and rejoice in the Lord your God: for he hath given you the former rain moderately, and he will cause to come down for you the rain, the former rain, and the latter rain in the first month.

+Monday 27-February, 2023 diff --git a/scripture/kjv/02/27/23/scripture.json b/scripture/kjv/02/27/23/scripture.json new file mode 100644 index 00000000..86b47a7e --- /dev/null +++ b/scripture/kjv/02/27/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Monday 27-February, 2023", + "name": "Joel 2:23", + "scripture": [ + { + "nr": "23", + "text": "Be glad then, ye children of Zion, and rejoice in the Lord your God: for he hath given you the former rain moderately, and he will cause to come down for you the rain, the former rain, and the latter rain in the first month." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/02/27/23/scripture.md b/scripture/kjv/02/27/23/scripture.md new file mode 100644 index 00000000..6fc23898 --- /dev/null +++ b/scripture/kjv/02/27/23/scripture.md @@ -0,0 +1,5 @@ +**Joel 2:23** + +23 Be glad then, ye children of Zion, and rejoice in the Lord your God: for he hath given you the former rain moderately, and he will cause to come down for you the rain, the former rain, and the latter rain in the first month. + +[Monday 27-February, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/02/27/23/scripture.tg b/scripture/kjv/02/27/23/scripture.tg new file mode 100644 index 00000000..17367342 --- /dev/null +++ b/scripture/kjv/02/27/23/scripture.tg @@ -0,0 +1,4 @@ +Joel 2:23 +23 Be glad then, ye children of Zion, and rejoice in the Lord your God: for he hath given you the former rain moderately, and he will cause to come down for you the rain, the former rain, and the latter rain in the first month. + +Monday 27-February, 2023 diff --git a/scripture/kjv/02/27/23/scripture.today b/scripture/kjv/02/27/23/scripture.today new file mode 100644 index 00000000..b3e39831 --- /dev/null +++ b/scripture/kjv/02/27/23/scripture.today @@ -0,0 +1 @@ +29 2:23 diff --git a/scripture/kjv/02/27/24/scripture.html b/scripture/kjv/02/27/24/scripture.html new file mode 100644 index 00000000..de19336a --- /dev/null +++ b/scripture/kjv/02/27/24/scripture.html @@ -0,0 +1,3 @@ +1 Timothy 3:16
+16 And without controversy great is the mystery of godliness: God was manifest in the flesh, justified in the Spirit, seen of angels, preached unto the Gentiles, believed on in the world, received up into glory.

+Tuesday 27-February, 2024 diff --git a/scripture/kjv/02/27/24/scripture.json b/scripture/kjv/02/27/24/scripture.json new file mode 100644 index 00000000..e7b8d8ec --- /dev/null +++ b/scripture/kjv/02/27/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Timothy", + "chapter": "3", + "date": "Tuesday 27-February, 2024", + "getbible": "https://getbible.life/kjv/1 Timothy/3/16", + "name": "1 Timothy 3:16", + "scripture": [ + { + "nr": "16", + "text": "And without controversy great is the mystery of godliness: God was manifest in the flesh, justified in the Spirit, seen of angels, preached unto the Gentiles, believed on in the world, received up into glory. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16", + "version": "kjv" +} diff --git a/scripture/kjv/02/27/24/scripture.md b/scripture/kjv/02/27/24/scripture.md new file mode 100644 index 00000000..775d5a88 --- /dev/null +++ b/scripture/kjv/02/27/24/scripture.md @@ -0,0 +1,5 @@ +**1 Timothy 3:16** + +16 And without controversy great is the mystery of godliness: God was manifest in the flesh, justified in the Spirit, seen of angels, preached unto the Gentiles, believed on in the world, received up into glory. + +[Tuesday 27-February, 2024](https://getbible.life/kjv/1 Timothy/3/16) diff --git a/scripture/kjv/02/27/24/scripture.tg b/scripture/kjv/02/27/24/scripture.tg new file mode 100644 index 00000000..f3f4233e --- /dev/null +++ b/scripture/kjv/02/27/24/scripture.tg @@ -0,0 +1,4 @@ +1 Timothy 3:16 +16 And without controversy great is the mystery of godliness: God was manifest in the flesh, justified in the Spirit, seen of angels, preached unto the Gentiles, believed on in the world, received up into glory. + +Tuesday 27-February, 2024 diff --git a/scripture/kjv/02/27/24/scripture.tg.id b/scripture/kjv/02/27/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/27/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/27/24/scripture.today b/scripture/kjv/02/27/24/scripture.today new file mode 100644 index 00000000..40b7642b --- /dev/null +++ b/scripture/kjv/02/27/24/scripture.today @@ -0,0 +1 @@ +54 3:16 diff --git a/scripture/kjv/02/27/25/scripture.html b/scripture/kjv/02/27/25/scripture.html new file mode 100644 index 00000000..542b1ec8 --- /dev/null +++ b/scripture/kjv/02/27/25/scripture.html @@ -0,0 +1,3 @@ +Colossians 3:19
+19 Husbands, love your wives, and be not bitter against them.

+Thursday 27-February, 2025 diff --git a/scripture/kjv/02/27/25/scripture.json b/scripture/kjv/02/27/25/scripture.json new file mode 100644 index 00000000..f8fee7de --- /dev/null +++ b/scripture/kjv/02/27/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Colossians", + "chapter": "3", + "date": "Thursday 27-February, 2025", + "getbible": "https://getbible.life/kjv/Colossians/3/19", + "name": "Colossians 3:19", + "scripture": [ + { + "nr": "19", + "text": "Husbands, love your wives, and be not bitter against them." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "19", + "version": "kjv" +} diff --git a/scripture/kjv/02/27/25/scripture.md b/scripture/kjv/02/27/25/scripture.md new file mode 100644 index 00000000..570210e3 --- /dev/null +++ b/scripture/kjv/02/27/25/scripture.md @@ -0,0 +1,5 @@ +**Colossians 3:19** + +19 Husbands, love your wives, and be not bitter against them. + +[Thursday 27-February, 2025](https://getbible.life/kjv/Colossians/3/19) diff --git a/scripture/kjv/02/27/25/scripture.tg b/scripture/kjv/02/27/25/scripture.tg new file mode 100644 index 00000000..ac93b4b8 --- /dev/null +++ b/scripture/kjv/02/27/25/scripture.tg @@ -0,0 +1,4 @@ +Colossians 3:19 +19 Husbands, love your wives, and be not bitter against them. + +Thursday 27-February, 2025 diff --git a/scripture/kjv/02/27/25/scripture.tg.id b/scripture/kjv/02/27/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/27/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/27/25/scripture.today b/scripture/kjv/02/27/25/scripture.today new file mode 100644 index 00000000..f2a06776 --- /dev/null +++ b/scripture/kjv/02/27/25/scripture.today @@ -0,0 +1 @@ +51 3:19 diff --git a/scripture/kjv/02/27/26/scripture.html b/scripture/kjv/02/27/26/scripture.html new file mode 100644 index 00000000..da5a4dbe --- /dev/null +++ b/scripture/kjv/02/27/26/scripture.html @@ -0,0 +1,3 @@ +Isaiah 66:13-14
+13 As one whom his mother comforteth, so will I comfort you; and ye shall be comforted in Jerusalem. 14 And when ye see this, your heart shall rejoice, and your bones shall flourish like an herb: and the hand of the Lord shall be known toward his servants, and his indignation toward his enemies.

+Friday 27-February, 2026 diff --git a/scripture/kjv/02/27/26/scripture.json b/scripture/kjv/02/27/26/scripture.json new file mode 100644 index 00000000..9bf7d639 --- /dev/null +++ b/scripture/kjv/02/27/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Isaiah", + "chapter": "66", + "date": "Friday 27-February, 2026", + "getbible": "https://getbible.life/kjv/Isaiah/66/13-14", + "name": "Isaiah 66:13-14", + "scripture": [ + { + "nr": "13", + "text": "As one whom his mother comforteth, so will I comfort you; and ye shall be comforted in Jerusalem." + }, + { + "nr": "14", + "text": "And when ye see this, your heart shall rejoice, and your bones shall flourish like an herb: and the hand of the Lord shall be known toward his servants, and his indignation toward his enemies." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13-14", + "version": "kjv" +} diff --git a/scripture/kjv/02/27/26/scripture.md b/scripture/kjv/02/27/26/scripture.md new file mode 100644 index 00000000..23e501e6 --- /dev/null +++ b/scripture/kjv/02/27/26/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 66:13-14** + +13 As one whom his mother comforteth, so will I comfort you; and ye shall be comforted in Jerusalem. 14 And when ye see this, your heart shall rejoice, and your bones shall flourish like an herb: and the hand of the Lord shall be known toward his servants, and his indignation toward his enemies. + +[Friday 27-February, 2026](https://getbible.life/kjv/Isaiah/66/13-14) diff --git a/scripture/kjv/02/27/26/scripture.tg b/scripture/kjv/02/27/26/scripture.tg new file mode 100644 index 00000000..3f441b9b --- /dev/null +++ b/scripture/kjv/02/27/26/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 66:13-14 +13 As one whom his mother comforteth, so will I comfort you; and ye shall be comforted in Jerusalem. 14 And when ye see this, your heart shall rejoice, and your bones shall flourish like an herb: and the hand of the Lord shall be known toward his servants, and his indignation toward his enemies. + +Friday 27-February, 2026 diff --git a/scripture/kjv/02/27/26/scripture.tg.id b/scripture/kjv/02/27/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/27/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/27/26/scripture.today b/scripture/kjv/02/27/26/scripture.today new file mode 100644 index 00000000..b35f5e24 --- /dev/null +++ b/scripture/kjv/02/27/26/scripture.today @@ -0,0 +1 @@ +23 66:13-14 diff --git a/scripture/kjv/02/28/23/scripture.html b/scripture/kjv/02/28/23/scripture.html new file mode 100644 index 00000000..9d3072fc --- /dev/null +++ b/scripture/kjv/02/28/23/scripture.html @@ -0,0 +1,3 @@ +Luke 22:44
+44 And being in an agony he prayed more earnestly: and his sweat was as it were great drops of blood falling down to the ground.

+Tuesday 28-February, 2023 diff --git a/scripture/kjv/02/28/23/scripture.json b/scripture/kjv/02/28/23/scripture.json new file mode 100644 index 00000000..a4701e7a --- /dev/null +++ b/scripture/kjv/02/28/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Tuesday 28-February, 2023", + "name": "Luke 22:44", + "scripture": [ + { + "nr": "44", + "text": "And being in an agony he prayed more earnestly: and his sweat was as it were great drops of blood falling down to the ground." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/02/28/23/scripture.md b/scripture/kjv/02/28/23/scripture.md new file mode 100644 index 00000000..e8630d21 --- /dev/null +++ b/scripture/kjv/02/28/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 22:44** + +44 And being in an agony he prayed more earnestly: and his sweat was as it were great drops of blood falling down to the ground. + +[Tuesday 28-February, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/02/28/23/scripture.tg b/scripture/kjv/02/28/23/scripture.tg new file mode 100644 index 00000000..793f6f6b --- /dev/null +++ b/scripture/kjv/02/28/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 22:44 +44 And being in an agony he prayed more earnestly: and his sweat was as it were great drops of blood falling down to the ground. + +Tuesday 28-February, 2023 diff --git a/scripture/kjv/02/28/23/scripture.today b/scripture/kjv/02/28/23/scripture.today new file mode 100644 index 00000000..b1390e2a --- /dev/null +++ b/scripture/kjv/02/28/23/scripture.today @@ -0,0 +1 @@ +42 22:44 diff --git a/scripture/kjv/02/28/24/scripture.html b/scripture/kjv/02/28/24/scripture.html new file mode 100644 index 00000000..28939be2 --- /dev/null +++ b/scripture/kjv/02/28/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 26:4-5
+4 I have not sat with vain persons, neither will I go in with dissemblers. 5 I have hated the congregation of evil doers; and will not sit with the wicked.

+Wednesday 28-February, 2024 diff --git a/scripture/kjv/02/28/24/scripture.json b/scripture/kjv/02/28/24/scripture.json new file mode 100644 index 00000000..9b28ecde --- /dev/null +++ b/scripture/kjv/02/28/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Psalms", + "chapter": "26", + "date": "Wednesday 28-February, 2024", + "getbible": "https://getbible.life/kjv/Psalms/26/4-5", + "name": "Psalms 26:4-5", + "scripture": [ + { + "nr": "4", + "text": "I have not sat with vain persons, neither will I go in with dissemblers." + }, + { + "nr": "5", + "text": "I have hated the congregation of evil doers; and will not sit with the wicked." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4-5", + "version": "kjv" +} diff --git a/scripture/kjv/02/28/24/scripture.md b/scripture/kjv/02/28/24/scripture.md new file mode 100644 index 00000000..4a6cf498 --- /dev/null +++ b/scripture/kjv/02/28/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 26:4-5** + +4 I have not sat with vain persons, neither will I go in with dissemblers. 5 I have hated the congregation of evil doers; and will not sit with the wicked. + +[Wednesday 28-February, 2024](https://getbible.life/kjv/Psalms/26/4-5) diff --git a/scripture/kjv/02/28/24/scripture.tg b/scripture/kjv/02/28/24/scripture.tg new file mode 100644 index 00000000..e042c51f --- /dev/null +++ b/scripture/kjv/02/28/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 26:4-5 +4 I have not sat with vain persons, neither will I go in with dissemblers. 5 I have hated the congregation of evil doers; and will not sit with the wicked. + +Wednesday 28-February, 2024 diff --git a/scripture/kjv/02/28/24/scripture.tg.id b/scripture/kjv/02/28/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/28/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/28/24/scripture.today b/scripture/kjv/02/28/24/scripture.today new file mode 100644 index 00000000..88c1c184 --- /dev/null +++ b/scripture/kjv/02/28/24/scripture.today @@ -0,0 +1 @@ +19 26:4-5 diff --git a/scripture/kjv/02/28/25/scripture.html b/scripture/kjv/02/28/25/scripture.html new file mode 100644 index 00000000..68b6ce7e --- /dev/null +++ b/scripture/kjv/02/28/25/scripture.html @@ -0,0 +1,3 @@ +James 2:1
+1 My brethren, have not the faith of our Lord Jesus Christ, the Lord of glory, with respect of persons.

+Friday 28-February, 2025 diff --git a/scripture/kjv/02/28/25/scripture.json b/scripture/kjv/02/28/25/scripture.json new file mode 100644 index 00000000..95730c30 --- /dev/null +++ b/scripture/kjv/02/28/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "James", + "chapter": "2", + "date": "Friday 28-February, 2025", + "getbible": "https://getbible.life/kjv/James/2/1", + "name": "James 2:1", + "scripture": [ + { + "nr": "1", + "text": "My brethren, have not the faith of our Lord Jesus Christ, the Lord of glory, with respect of persons." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1", + "version": "kjv" +} diff --git a/scripture/kjv/02/28/25/scripture.md b/scripture/kjv/02/28/25/scripture.md new file mode 100644 index 00000000..b5a6cceb --- /dev/null +++ b/scripture/kjv/02/28/25/scripture.md @@ -0,0 +1,5 @@ +**James 2:1** + +1 My brethren, have not the faith of our Lord Jesus Christ, the Lord of glory, with respect of persons. + +[Friday 28-February, 2025](https://getbible.life/kjv/James/2/1) diff --git a/scripture/kjv/02/28/25/scripture.tg b/scripture/kjv/02/28/25/scripture.tg new file mode 100644 index 00000000..ca008bb0 --- /dev/null +++ b/scripture/kjv/02/28/25/scripture.tg @@ -0,0 +1,4 @@ +James 2:1 +1 My brethren, have not the faith of our Lord Jesus Christ, the Lord of glory, with respect of persons. + +Friday 28-February, 2025 diff --git a/scripture/kjv/02/28/25/scripture.tg.id b/scripture/kjv/02/28/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/28/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/28/25/scripture.today b/scripture/kjv/02/28/25/scripture.today new file mode 100644 index 00000000..cc000cd2 --- /dev/null +++ b/scripture/kjv/02/28/25/scripture.today @@ -0,0 +1 @@ +59 2:1 diff --git a/scripture/kjv/02/28/26/scripture.html b/scripture/kjv/02/28/26/scripture.html new file mode 100644 index 00000000..70fc88c8 --- /dev/null +++ b/scripture/kjv/02/28/26/scripture.html @@ -0,0 +1,3 @@ +Leviticus 19:15
+15 Ye shall do no unrighteousness in judgment: thou shalt not respect the person of the poor, nor honour the person of the mighty: but in righteousness shalt thou judge thy neighbour.

+Saturday 28-February, 2026 diff --git a/scripture/kjv/02/28/26/scripture.json b/scripture/kjv/02/28/26/scripture.json new file mode 100644 index 00000000..7d6d593a --- /dev/null +++ b/scripture/kjv/02/28/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Leviticus", + "chapter": "19", + "date": "Saturday 28-February, 2026", + "getbible": "https://getbible.life/kjv/Leviticus/19/15", + "name": "Leviticus 19:15", + "scripture": [ + { + "nr": "15", + "text": "Ye shall do no unrighteousness in judgment: thou shalt not respect the person of the poor, nor honour the person of the mighty: but in righteousness shalt thou judge thy neighbour." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15", + "version": "kjv" +} diff --git a/scripture/kjv/02/28/26/scripture.md b/scripture/kjv/02/28/26/scripture.md new file mode 100644 index 00000000..7c6e2800 --- /dev/null +++ b/scripture/kjv/02/28/26/scripture.md @@ -0,0 +1,5 @@ +**Leviticus 19:15** + +15 Ye shall do no unrighteousness in judgment: thou shalt not respect the person of the poor, nor honour the person of the mighty: but in righteousness shalt thou judge thy neighbour. + +[Saturday 28-February, 2026](https://getbible.life/kjv/Leviticus/19/15) diff --git a/scripture/kjv/02/28/26/scripture.tg b/scripture/kjv/02/28/26/scripture.tg new file mode 100644 index 00000000..a5027294 --- /dev/null +++ b/scripture/kjv/02/28/26/scripture.tg @@ -0,0 +1,4 @@ +Leviticus 19:15 +15 Ye shall do no unrighteousness in judgment: thou shalt not respect the person of the poor, nor honour the person of the mighty: but in righteousness shalt thou judge thy neighbour. + +Saturday 28-February, 2026 diff --git a/scripture/kjv/02/28/26/scripture.tg.id b/scripture/kjv/02/28/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/28/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/28/26/scripture.today b/scripture/kjv/02/28/26/scripture.today new file mode 100644 index 00000000..23b4556b --- /dev/null +++ b/scripture/kjv/02/28/26/scripture.today @@ -0,0 +1 @@ +3 19:15 diff --git a/scripture/kjv/02/29/24/scripture.html b/scripture/kjv/02/29/24/scripture.html new file mode 100644 index 00000000..888f72e4 --- /dev/null +++ b/scripture/kjv/02/29/24/scripture.html @@ -0,0 +1,3 @@ +Daniel 4:30-31
+30 The king spake, and said, Is not this great Babylon, that I have built for the house of the kingdom by the might of my power, and for the honour of my majesty? 31 While the word was in the king’s mouth, there fell a voice from heaven, saying, O king Nebuchadnezzar, to thee it is spoken; The kingdom is departed from thee.

+Thursday 29-February, 2024 diff --git a/scripture/kjv/02/29/24/scripture.json b/scripture/kjv/02/29/24/scripture.json new file mode 100644 index 00000000..5dd6076e --- /dev/null +++ b/scripture/kjv/02/29/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Daniel", + "chapter": "4", + "date": "Thursday 29-February, 2024", + "getbible": "https://getbible.life/kjv/Daniel/4/30-31", + "name": "Daniel 4:30-31", + "scripture": [ + { + "nr": "30", + "text": "The king spake, and said, Is not this great Babylon, that I have built for the house of the kingdom by the might of my power, and for the honour of my majesty?" + }, + { + "nr": "31", + "text": "While the word was in the king’s mouth, there fell a voice from heaven, saying, O king Nebuchadnezzar, to thee it is spoken; The kingdom is departed from thee." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "30-31", + "version": "kjv" +} diff --git a/scripture/kjv/02/29/24/scripture.md b/scripture/kjv/02/29/24/scripture.md new file mode 100644 index 00000000..8e7fc0ea --- /dev/null +++ b/scripture/kjv/02/29/24/scripture.md @@ -0,0 +1,5 @@ +**Daniel 4:30-31** + +30 The king spake, and said, Is not this great Babylon, that I have built for the house of the kingdom by the might of my power, and for the honour of my majesty? 31 While the word was in the king’s mouth, there fell a voice from heaven, saying, O king Nebuchadnezzar, to thee it is spoken; The kingdom is departed from thee. + +[Thursday 29-February, 2024](https://getbible.life/kjv/Daniel/4/30-31) diff --git a/scripture/kjv/02/29/24/scripture.tg b/scripture/kjv/02/29/24/scripture.tg new file mode 100644 index 00000000..c5136411 --- /dev/null +++ b/scripture/kjv/02/29/24/scripture.tg @@ -0,0 +1,4 @@ +Daniel 4:30-31 +30 The king spake, and said, Is not this great Babylon, that I have built for the house of the kingdom by the might of my power, and for the honour of my majesty? 31 While the word was in the king’s mouth, there fell a voice from heaven, saying, O king Nebuchadnezzar, to thee it is spoken; The kingdom is departed from thee. + +Thursday 29-February, 2024 diff --git a/scripture/kjv/02/29/24/scripture.tg.id b/scripture/kjv/02/29/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/02/29/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/02/29/24/scripture.today b/scripture/kjv/02/29/24/scripture.today new file mode 100644 index 00000000..2803a26b --- /dev/null +++ b/scripture/kjv/02/29/24/scripture.today @@ -0,0 +1 @@ +27 4:30-31 diff --git a/scripture/kjv/03/01/23/scripture.html b/scripture/kjv/03/01/23/scripture.html new file mode 100644 index 00000000..ed14b8e5 --- /dev/null +++ b/scripture/kjv/03/01/23/scripture.html @@ -0,0 +1,3 @@ +Isaiah 2:12
+12 For the day of the Lord of hosts shall be upon every one that is proud and lofty, and upon every one that is lifted up; and he shall be brought low:

+Wednesday 01-March, 2023 diff --git a/scripture/kjv/03/01/23/scripture.json b/scripture/kjv/03/01/23/scripture.json new file mode 100644 index 00000000..0204a2f9 --- /dev/null +++ b/scripture/kjv/03/01/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Wednesday 01-March, 2023", + "name": "Isaiah 2:12", + "scripture": [ + { + "nr": "12", + "text": "For the day of the Lord of hosts shall be upon every one that is proud and lofty, and upon every one that is lifted up; and he shall be brought low:" + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/01/23/scripture.md b/scripture/kjv/03/01/23/scripture.md new file mode 100644 index 00000000..c229eaa5 --- /dev/null +++ b/scripture/kjv/03/01/23/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 2:12** + +12 For the day of the Lord of hosts shall be upon every one that is proud and lofty, and upon every one that is lifted up; and he shall be brought low: + +[Wednesday 01-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/01/23/scripture.tg b/scripture/kjv/03/01/23/scripture.tg new file mode 100644 index 00000000..2d6b1b92 --- /dev/null +++ b/scripture/kjv/03/01/23/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 2:12 +12 For the day of the Lord of hosts shall be upon every one that is proud and lofty, and upon every one that is lifted up; and he shall be brought low: + +Wednesday 01-March, 2023 diff --git a/scripture/kjv/03/01/23/scripture.today b/scripture/kjv/03/01/23/scripture.today new file mode 100644 index 00000000..8a96f5e9 --- /dev/null +++ b/scripture/kjv/03/01/23/scripture.today @@ -0,0 +1 @@ +23 2:12 diff --git a/scripture/kjv/03/01/24/scripture.html b/scripture/kjv/03/01/24/scripture.html new file mode 100644 index 00000000..ae81cb56 --- /dev/null +++ b/scripture/kjv/03/01/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 30:5
+5 For his anger endureth but a moment; in his favour is life: weeping may endure for a night, but joy cometh in the morning.

+Friday 01-March, 2024 diff --git a/scripture/kjv/03/01/24/scripture.json b/scripture/kjv/03/01/24/scripture.json new file mode 100644 index 00000000..b5804e12 --- /dev/null +++ b/scripture/kjv/03/01/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "30", + "date": "Friday 01-March, 2024", + "getbible": "https://getbible.life/kjv/Psalms/30/5", + "name": "Psalms 30:5", + "scripture": [ + { + "nr": "5", + "text": "For his anger endureth but a moment; in his favour is life: weeping may endure for a night, but joy cometh in the morning." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5", + "version": "kjv" +} diff --git a/scripture/kjv/03/01/24/scripture.md b/scripture/kjv/03/01/24/scripture.md new file mode 100644 index 00000000..b5bf3cf8 --- /dev/null +++ b/scripture/kjv/03/01/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 30:5** + +5 For his anger endureth but a moment; in his favour is life: weeping may endure for a night, but joy cometh in the morning. + +[Friday 01-March, 2024](https://getbible.life/kjv/Psalms/30/5) diff --git a/scripture/kjv/03/01/24/scripture.tg b/scripture/kjv/03/01/24/scripture.tg new file mode 100644 index 00000000..84829e31 --- /dev/null +++ b/scripture/kjv/03/01/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 30:5 +5 For his anger endureth but a moment; in his favour is life: weeping may endure for a night, but joy cometh in the morning. + +Friday 01-March, 2024 diff --git a/scripture/kjv/03/01/24/scripture.tg.id b/scripture/kjv/03/01/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/01/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/01/24/scripture.today b/scripture/kjv/03/01/24/scripture.today new file mode 100644 index 00000000..028da500 --- /dev/null +++ b/scripture/kjv/03/01/24/scripture.today @@ -0,0 +1 @@ +19 30:5 diff --git a/scripture/kjv/03/01/25/scripture.html b/scripture/kjv/03/01/25/scripture.html new file mode 100644 index 00000000..fa1f073a --- /dev/null +++ b/scripture/kjv/03/01/25/scripture.html @@ -0,0 +1,3 @@ +Luke 22:68
+68 And if I also ask you, ye will not answer me, nor let me go.

+Saturday 01-March, 2025 diff --git a/scripture/kjv/03/01/25/scripture.json b/scripture/kjv/03/01/25/scripture.json new file mode 100644 index 00000000..1329e391 --- /dev/null +++ b/scripture/kjv/03/01/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "22", + "date": "Saturday 01-March, 2025", + "getbible": "https://getbible.life/kjv/Luke/22/68", + "name": "Luke 22:68", + "scripture": [ + { + "nr": "68", + "text": "And if I also ask you, ye will not answer me, nor let me go." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "68", + "version": "kjv" +} diff --git a/scripture/kjv/03/01/25/scripture.md b/scripture/kjv/03/01/25/scripture.md new file mode 100644 index 00000000..13c67cf8 --- /dev/null +++ b/scripture/kjv/03/01/25/scripture.md @@ -0,0 +1,5 @@ +**Luke 22:68** + +68 And if I also ask you, ye will not answer me, nor let me go. + +[Saturday 01-March, 2025](https://getbible.life/kjv/Luke/22/68) diff --git a/scripture/kjv/03/01/25/scripture.tg b/scripture/kjv/03/01/25/scripture.tg new file mode 100644 index 00000000..5632647b --- /dev/null +++ b/scripture/kjv/03/01/25/scripture.tg @@ -0,0 +1,4 @@ +Luke 22:68 +68 And if I also ask you, ye will not answer me, nor let me go. + +Saturday 01-March, 2025 diff --git a/scripture/kjv/03/01/25/scripture.tg.id b/scripture/kjv/03/01/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/01/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/01/25/scripture.today b/scripture/kjv/03/01/25/scripture.today new file mode 100644 index 00000000..2333ce39 --- /dev/null +++ b/scripture/kjv/03/01/25/scripture.today @@ -0,0 +1 @@ +42 22:68 diff --git a/scripture/kjv/03/01/26/scripture.html b/scripture/kjv/03/01/26/scripture.html new file mode 100644 index 00000000..52169beb --- /dev/null +++ b/scripture/kjv/03/01/26/scripture.html @@ -0,0 +1,3 @@ +Zephaniah 3:17
+17 The Lord thy God in the midst of thee is mighty; he will save, he will rejoice over thee with joy; he will rest in his love, he will joy over thee with singing.

+Sunday 01-March, 2026 diff --git a/scripture/kjv/03/01/26/scripture.json b/scripture/kjv/03/01/26/scripture.json new file mode 100644 index 00000000..1ce3a260 --- /dev/null +++ b/scripture/kjv/03/01/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Zephaniah", + "chapter": "3", + "date": "Sunday 01-March, 2026", + "getbible": "https://getbible.life/kjv/Zephaniah/3/17", + "name": "Zephaniah 3:17", + "scripture": [ + { + "nr": "17", + "text": "The Lord thy God in the midst of thee is mighty; he will save, he will rejoice over thee with joy; he will rest in his love, he will joy over thee with singing." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17", + "version": "kjv" +} diff --git a/scripture/kjv/03/01/26/scripture.md b/scripture/kjv/03/01/26/scripture.md new file mode 100644 index 00000000..d7125e8c --- /dev/null +++ b/scripture/kjv/03/01/26/scripture.md @@ -0,0 +1,5 @@ +**Zephaniah 3:17** + +17 The Lord thy God in the midst of thee is mighty; he will save, he will rejoice over thee with joy; he will rest in his love, he will joy over thee with singing. + +[Sunday 01-March, 2026](https://getbible.life/kjv/Zephaniah/3/17) diff --git a/scripture/kjv/03/01/26/scripture.tg b/scripture/kjv/03/01/26/scripture.tg new file mode 100644 index 00000000..f4426be1 --- /dev/null +++ b/scripture/kjv/03/01/26/scripture.tg @@ -0,0 +1,4 @@ +Zephaniah 3:17 +17 The Lord thy God in the midst of thee is mighty; he will save, he will rejoice over thee with joy; he will rest in his love, he will joy over thee with singing. + +Sunday 01-March, 2026 diff --git a/scripture/kjv/03/01/26/scripture.tg.id b/scripture/kjv/03/01/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/01/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/01/26/scripture.today b/scripture/kjv/03/01/26/scripture.today new file mode 100644 index 00000000..f2e98230 --- /dev/null +++ b/scripture/kjv/03/01/26/scripture.today @@ -0,0 +1 @@ +36 3:17 diff --git a/scripture/kjv/03/02/23/scripture.html b/scripture/kjv/03/02/23/scripture.html new file mode 100644 index 00000000..966842d1 --- /dev/null +++ b/scripture/kjv/03/02/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 21:23
+23 Whoso keepeth his mouth and his tongue keepeth his soul from troubles.

+Thursday 02-March, 2023 diff --git a/scripture/kjv/03/02/23/scripture.json b/scripture/kjv/03/02/23/scripture.json new file mode 100644 index 00000000..ae3c0b2d --- /dev/null +++ b/scripture/kjv/03/02/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Thursday 02-March, 2023", + "name": "Proverbs 21:23", + "scripture": [ + { + "nr": "23", + "text": "Whoso keepeth his mouth and his tongue keepeth his soul from troubles." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/02/23/scripture.md b/scripture/kjv/03/02/23/scripture.md new file mode 100644 index 00000000..67512c57 --- /dev/null +++ b/scripture/kjv/03/02/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 21:23** + +23 Whoso keepeth his mouth and his tongue keepeth his soul from troubles. + +[Thursday 02-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/02/23/scripture.tg b/scripture/kjv/03/02/23/scripture.tg new file mode 100644 index 00000000..07b316d4 --- /dev/null +++ b/scripture/kjv/03/02/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 21:23 +23 Whoso keepeth his mouth and his tongue keepeth his soul from troubles. + +Thursday 02-March, 2023 diff --git a/scripture/kjv/03/02/23/scripture.today b/scripture/kjv/03/02/23/scripture.today new file mode 100644 index 00000000..212d3d17 --- /dev/null +++ b/scripture/kjv/03/02/23/scripture.today @@ -0,0 +1 @@ +20 21:23 diff --git a/scripture/kjv/03/02/24/scripture.html b/scripture/kjv/03/02/24/scripture.html new file mode 100644 index 00000000..72936b5b --- /dev/null +++ b/scripture/kjv/03/02/24/scripture.html @@ -0,0 +1,3 @@ +Daniel 10:12-13
+12 Then said he unto me, Fear not, Daniel: for from the first day that thou didst set thine heart to understand, and to chasten thyself before thy God, thy words were heard, and I am come for thy words. 13 But the prince of the kingdom of Persia withstood me one and twenty days: but, lo, Michael, one of the chief princes, came to help me; and I remained there with the kings of Persia.

+Saturday 02-March, 2024 diff --git a/scripture/kjv/03/02/24/scripture.json b/scripture/kjv/03/02/24/scripture.json new file mode 100644 index 00000000..655e090f --- /dev/null +++ b/scripture/kjv/03/02/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Daniel", + "chapter": "10", + "date": "Saturday 02-March, 2024", + "getbible": "https://getbible.life/kjv/Daniel/10/12-13", + "name": "Daniel 10:12-13", + "scripture": [ + { + "nr": "12", + "text": "Then said he unto me, Fear not, Daniel: for from the first day that thou didst set thine heart to understand, and to chasten thyself before thy God, thy words were heard, and I am come for thy words." + }, + { + "nr": "13", + "text": "But the prince of the kingdom of Persia withstood me one and twenty days: but, lo, Michael, one of the chief princes, came to help me; and I remained there with the kings of Persia." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12-13", + "version": "kjv" +} diff --git a/scripture/kjv/03/02/24/scripture.md b/scripture/kjv/03/02/24/scripture.md new file mode 100644 index 00000000..e689c184 --- /dev/null +++ b/scripture/kjv/03/02/24/scripture.md @@ -0,0 +1,5 @@ +**Daniel 10:12-13** + +12 Then said he unto me, Fear not, Daniel: for from the first day that thou didst set thine heart to understand, and to chasten thyself before thy God, thy words were heard, and I am come for thy words. 13 But the prince of the kingdom of Persia withstood me one and twenty days: but, lo, Michael, one of the chief princes, came to help me; and I remained there with the kings of Persia. + +[Saturday 02-March, 2024](https://getbible.life/kjv/Daniel/10/12-13) diff --git a/scripture/kjv/03/02/24/scripture.tg b/scripture/kjv/03/02/24/scripture.tg new file mode 100644 index 00000000..6446aac6 --- /dev/null +++ b/scripture/kjv/03/02/24/scripture.tg @@ -0,0 +1,4 @@ +Daniel 10:12-13 +12 Then said he unto me, Fear not, Daniel: for from the first day that thou didst set thine heart to understand, and to chasten thyself before thy God, thy words were heard, and I am come for thy words. 13 But the prince of the kingdom of Persia withstood me one and twenty days: but, lo, Michael, one of the chief princes, came to help me; and I remained there with the kings of Persia. + +Saturday 02-March, 2024 diff --git a/scripture/kjv/03/02/24/scripture.tg.id b/scripture/kjv/03/02/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/02/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/02/24/scripture.today b/scripture/kjv/03/02/24/scripture.today new file mode 100644 index 00000000..4e16b282 --- /dev/null +++ b/scripture/kjv/03/02/24/scripture.today @@ -0,0 +1 @@ +27 10:12-13 diff --git a/scripture/kjv/03/02/25/scripture.html b/scripture/kjv/03/02/25/scripture.html new file mode 100644 index 00000000..1f8753a2 --- /dev/null +++ b/scripture/kjv/03/02/25/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 34:3-4
+3 Ye eat the fat, and ye clothe you with the wool, ye kill them that are fed: but ye feed not the flock. 4 The diseased have ye not strengthened, neither have ye healed that which was sick, neither have ye bound up that which was broken, neither have ye brought again that which was driven away, neither have ye sought that which was lost; but with force and with cruelty have ye ruled them.

+Sunday 02-March, 2025 diff --git a/scripture/kjv/03/02/25/scripture.json b/scripture/kjv/03/02/25/scripture.json new file mode 100644 index 00000000..e4fefcd6 --- /dev/null +++ b/scripture/kjv/03/02/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Ezekiel", + "chapter": "34", + "date": "Sunday 02-March, 2025", + "getbible": "https://getbible.life/kjv/Ezekiel/34/3-4", + "name": "Ezekiel 34:3-4", + "scripture": [ + { + "nr": "3", + "text": "Ye eat the fat, and ye clothe you with the wool, ye kill them that are fed: but ye feed not the flock." + }, + { + "nr": "4", + "text": "The diseased have ye not strengthened, neither have ye healed that which was sick, neither have ye bound up that which was broken, neither have ye brought again that which was driven away, neither have ye sought that which was lost; but with force and with cruelty have ye ruled them." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3-4", + "version": "kjv" +} diff --git a/scripture/kjv/03/02/25/scripture.md b/scripture/kjv/03/02/25/scripture.md new file mode 100644 index 00000000..f0590648 --- /dev/null +++ b/scripture/kjv/03/02/25/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 34:3-4** + +3 Ye eat the fat, and ye clothe you with the wool, ye kill them that are fed: but ye feed not the flock. 4 The diseased have ye not strengthened, neither have ye healed that which was sick, neither have ye bound up that which was broken, neither have ye brought again that which was driven away, neither have ye sought that which was lost; but with force and with cruelty have ye ruled them. + +[Sunday 02-March, 2025](https://getbible.life/kjv/Ezekiel/34/3-4) diff --git a/scripture/kjv/03/02/25/scripture.tg b/scripture/kjv/03/02/25/scripture.tg new file mode 100644 index 00000000..aa237a51 --- /dev/null +++ b/scripture/kjv/03/02/25/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 34:3-4 +3 Ye eat the fat, and ye clothe you with the wool, ye kill them that are fed: but ye feed not the flock. 4 The diseased have ye not strengthened, neither have ye healed that which was sick, neither have ye bound up that which was broken, neither have ye brought again that which was driven away, neither have ye sought that which was lost; but with force and with cruelty have ye ruled them. + +Sunday 02-March, 2025 diff --git a/scripture/kjv/03/02/25/scripture.tg.id b/scripture/kjv/03/02/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/02/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/02/25/scripture.today b/scripture/kjv/03/02/25/scripture.today new file mode 100644 index 00000000..684d75a1 --- /dev/null +++ b/scripture/kjv/03/02/25/scripture.today @@ -0,0 +1 @@ +26 34:3-4 diff --git a/scripture/kjv/03/02/26/scripture.html b/scripture/kjv/03/02/26/scripture.html new file mode 100644 index 00000000..56fef7d7 --- /dev/null +++ b/scripture/kjv/03/02/26/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 12:24
+24 For our comely parts have no need: but God hath tempered the body together, having given more abundant honour to that part which lacked:

+Monday 02-March, 2026 diff --git a/scripture/kjv/03/02/26/scripture.json b/scripture/kjv/03/02/26/scripture.json new file mode 100644 index 00000000..0b3acd17 --- /dev/null +++ b/scripture/kjv/03/02/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "12", + "date": "Monday 02-March, 2026", + "getbible": "https://getbible.life/kjv/1 Corinthians/12/24", + "name": "1 Corinthians 12:24", + "scripture": [ + { + "nr": "24", + "text": "For our comely parts have no need: but God hath tempered the body together, having given more abundant honour to that part which lacked:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "24", + "version": "kjv" +} diff --git a/scripture/kjv/03/02/26/scripture.md b/scripture/kjv/03/02/26/scripture.md new file mode 100644 index 00000000..4816966e --- /dev/null +++ b/scripture/kjv/03/02/26/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 12:24** + +24 For our comely parts have no need: but God hath tempered the body together, having given more abundant honour to that part which lacked: + +[Monday 02-March, 2026](https://getbible.life/kjv/1 Corinthians/12/24) diff --git a/scripture/kjv/03/02/26/scripture.tg b/scripture/kjv/03/02/26/scripture.tg new file mode 100644 index 00000000..54fd059f --- /dev/null +++ b/scripture/kjv/03/02/26/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 12:24 +24 For our comely parts have no need: but God hath tempered the body together, having given more abundant honour to that part which lacked: + +Monday 02-March, 2026 diff --git a/scripture/kjv/03/02/26/scripture.today b/scripture/kjv/03/02/26/scripture.today new file mode 100644 index 00000000..937578d1 --- /dev/null +++ b/scripture/kjv/03/02/26/scripture.today @@ -0,0 +1 @@ +46 12:24 diff --git a/scripture/kjv/03/03/23/scripture.html b/scripture/kjv/03/03/23/scripture.html new file mode 100644 index 00000000..8f1747a5 --- /dev/null +++ b/scripture/kjv/03/03/23/scripture.html @@ -0,0 +1,3 @@ +1 Thessalonians 4:1
+1 Furthermore then we beseech you, brethren, and exhort you by the Lord Jesus, that as ye have received of us how ye ought to walk and to please God, so ye would abound more and more.

+Friday 03-March, 2023 diff --git a/scripture/kjv/03/03/23/scripture.json b/scripture/kjv/03/03/23/scripture.json new file mode 100644 index 00000000..e47e5a9e --- /dev/null +++ b/scripture/kjv/03/03/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Friday 03-March, 2023", + "name": "1 Thessalonians 4:1", + "scripture": [ + { + "nr": "1", + "text": "Furthermore then we beseech you, brethren, and exhort you by the Lord Jesus, that as ye have received of us how ye ought to walk and to please God, so ye would abound more and more." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/03/23/scripture.md b/scripture/kjv/03/03/23/scripture.md new file mode 100644 index 00000000..f9389bb3 --- /dev/null +++ b/scripture/kjv/03/03/23/scripture.md @@ -0,0 +1,5 @@ +**1 Thessalonians 4:1** + +1 Furthermore then we beseech you, brethren, and exhort you by the Lord Jesus, that as ye have received of us how ye ought to walk and to please God, so ye would abound more and more. + +[Friday 03-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/03/23/scripture.tg b/scripture/kjv/03/03/23/scripture.tg new file mode 100644 index 00000000..e1b15663 --- /dev/null +++ b/scripture/kjv/03/03/23/scripture.tg @@ -0,0 +1,4 @@ +1 Thessalonians 4:1 +1 Furthermore then we beseech you, brethren, and exhort you by the Lord Jesus, that as ye have received of us how ye ought to walk and to please God, so ye would abound more and more. + +Friday 03-March, 2023 diff --git a/scripture/kjv/03/03/23/scripture.today b/scripture/kjv/03/03/23/scripture.today new file mode 100644 index 00000000..2e1c561c --- /dev/null +++ b/scripture/kjv/03/03/23/scripture.today @@ -0,0 +1 @@ +52 4:1 diff --git a/scripture/kjv/03/03/24/scripture.html b/scripture/kjv/03/03/24/scripture.html new file mode 100644 index 00000000..f02208ab --- /dev/null +++ b/scripture/kjv/03/03/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 31:20
+20 She stretcheth out her hand to the poor; yea, she reacheth forth her hands to the needy.

+Sunday 03-March, 2024 diff --git a/scripture/kjv/03/03/24/scripture.json b/scripture/kjv/03/03/24/scripture.json new file mode 100644 index 00000000..7b5c1d36 --- /dev/null +++ b/scripture/kjv/03/03/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "31", + "date": "Sunday 03-March, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/31/20", + "name": "Proverbs 31:20", + "scripture": [ + { + "nr": "20", + "text": "She stretcheth out her hand to the poor; yea, she reacheth forth her hands to the needy." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20", + "version": "kjv" +} diff --git a/scripture/kjv/03/03/24/scripture.md b/scripture/kjv/03/03/24/scripture.md new file mode 100644 index 00000000..e0a60474 --- /dev/null +++ b/scripture/kjv/03/03/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 31:20** + +20 She stretcheth out her hand to the poor; yea, she reacheth forth her hands to the needy. + +[Sunday 03-March, 2024](https://getbible.life/kjv/Proverbs/31/20) diff --git a/scripture/kjv/03/03/24/scripture.tg b/scripture/kjv/03/03/24/scripture.tg new file mode 100644 index 00000000..e661eb1a --- /dev/null +++ b/scripture/kjv/03/03/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 31:20 +20 She stretcheth out her hand to the poor; yea, she reacheth forth her hands to the needy. + +Sunday 03-March, 2024 diff --git a/scripture/kjv/03/03/24/scripture.tg.id b/scripture/kjv/03/03/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/03/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/03/24/scripture.today b/scripture/kjv/03/03/24/scripture.today new file mode 100644 index 00000000..813d00cb --- /dev/null +++ b/scripture/kjv/03/03/24/scripture.today @@ -0,0 +1 @@ +20 31:20 diff --git a/scripture/kjv/03/03/25/scripture.html b/scripture/kjv/03/03/25/scripture.html new file mode 100644 index 00000000..556dc625 --- /dev/null +++ b/scripture/kjv/03/03/25/scripture.html @@ -0,0 +1,3 @@ +Isaiah 35:10
+10 And the ransomed of the Lord shall return, and come to Zion with songs and everlasting joy upon their heads: they shall obtain joy and gladness, and sorrow and sighing shall flee away.

+Monday 03-March, 2025 diff --git a/scripture/kjv/03/03/25/scripture.json b/scripture/kjv/03/03/25/scripture.json new file mode 100644 index 00000000..527dfcca --- /dev/null +++ b/scripture/kjv/03/03/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "35", + "date": "Monday 03-March, 2025", + "getbible": "https://getbible.life/kjv/Isaiah/35/10", + "name": "Isaiah 35:10", + "scripture": [ + { + "nr": "10", + "text": "And the ransomed of the Lord shall return, and come to Zion with songs and everlasting joy upon their heads: they shall obtain joy and gladness, and sorrow and sighing shall flee away. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/03/03/25/scripture.md b/scripture/kjv/03/03/25/scripture.md new file mode 100644 index 00000000..59e1f06b --- /dev/null +++ b/scripture/kjv/03/03/25/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 35:10** + +10 And the ransomed of the Lord shall return, and come to Zion with songs and everlasting joy upon their heads: they shall obtain joy and gladness, and sorrow and sighing shall flee away. + +[Monday 03-March, 2025](https://getbible.life/kjv/Isaiah/35/10) diff --git a/scripture/kjv/03/03/25/scripture.tg b/scripture/kjv/03/03/25/scripture.tg new file mode 100644 index 00000000..2e3d0407 --- /dev/null +++ b/scripture/kjv/03/03/25/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 35:10 +10 And the ransomed of the Lord shall return, and come to Zion with songs and everlasting joy upon their heads: they shall obtain joy and gladness, and sorrow and sighing shall flee away. + +Monday 03-March, 2025 diff --git a/scripture/kjv/03/03/25/scripture.tg.id b/scripture/kjv/03/03/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/03/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/03/25/scripture.today b/scripture/kjv/03/03/25/scripture.today new file mode 100644 index 00000000..8190b3dd --- /dev/null +++ b/scripture/kjv/03/03/25/scripture.today @@ -0,0 +1 @@ +23 35:10 diff --git a/scripture/kjv/03/03/26/scripture.html b/scripture/kjv/03/03/26/scripture.html new file mode 100644 index 00000000..9b85537c --- /dev/null +++ b/scripture/kjv/03/03/26/scripture.html @@ -0,0 +1,3 @@ +Psalms 39:11
+11 When thou with rebukes dost correct man for iniquity, thou makest his beauty to consume away like a moth: surely every man is vanity. Selah.

+Tuesday 03-March, 2026 diff --git a/scripture/kjv/03/03/26/scripture.json b/scripture/kjv/03/03/26/scripture.json new file mode 100644 index 00000000..5b525c93 --- /dev/null +++ b/scripture/kjv/03/03/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "39", + "date": "Tuesday 03-March, 2026", + "getbible": "https://getbible.life/kjv/Psalms/39/11", + "name": "Psalms 39:11", + "scripture": [ + { + "nr": "11", + "text": "When thou with rebukes dost correct man for iniquity, thou makest his beauty to consume away like a moth: surely every man is vanity. Selah." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/03/03/26/scripture.md b/scripture/kjv/03/03/26/scripture.md new file mode 100644 index 00000000..97ed094c --- /dev/null +++ b/scripture/kjv/03/03/26/scripture.md @@ -0,0 +1,5 @@ +**Psalms 39:11** + +11 When thou with rebukes dost correct man for iniquity, thou makest his beauty to consume away like a moth: surely every man is vanity. Selah. + +[Tuesday 03-March, 2026](https://getbible.life/kjv/Psalms/39/11) diff --git a/scripture/kjv/03/03/26/scripture.tg b/scripture/kjv/03/03/26/scripture.tg new file mode 100644 index 00000000..6e42b3c5 --- /dev/null +++ b/scripture/kjv/03/03/26/scripture.tg @@ -0,0 +1,4 @@ +Psalms 39:11 +11 When thou with rebukes dost correct man for iniquity, thou makest his beauty to consume away like a moth: surely every man is vanity. Selah. + +Tuesday 03-March, 2026 diff --git a/scripture/kjv/03/03/26/scripture.tg.id b/scripture/kjv/03/03/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/03/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/03/26/scripture.today b/scripture/kjv/03/03/26/scripture.today new file mode 100644 index 00000000..3b30fc02 --- /dev/null +++ b/scripture/kjv/03/03/26/scripture.today @@ -0,0 +1 @@ +19 39:11 diff --git a/scripture/kjv/03/04/23/scripture.html b/scripture/kjv/03/04/23/scripture.html new file mode 100644 index 00000000..c03c3f24 --- /dev/null +++ b/scripture/kjv/03/04/23/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 8:9
+9 For ye know the grace of our Lord Jesus Christ, that, though he was rich, yet for your sakes he became poor, that ye through his poverty might be rich.

+Saturday 04-March, 2023 diff --git a/scripture/kjv/03/04/23/scripture.json b/scripture/kjv/03/04/23/scripture.json new file mode 100644 index 00000000..714d4c7d --- /dev/null +++ b/scripture/kjv/03/04/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Saturday 04-March, 2023", + "name": "2 Corinthians 8:9", + "scripture": [ + { + "nr": "9", + "text": "For ye know the grace of our Lord Jesus Christ, that, though he was rich, yet for your sakes he became poor, that ye through his poverty might be rich." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/04/23/scripture.md b/scripture/kjv/03/04/23/scripture.md new file mode 100644 index 00000000..577adbcc --- /dev/null +++ b/scripture/kjv/03/04/23/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 8:9** + +9 For ye know the grace of our Lord Jesus Christ, that, though he was rich, yet for your sakes he became poor, that ye through his poverty might be rich. + +[Saturday 04-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/04/23/scripture.tg b/scripture/kjv/03/04/23/scripture.tg new file mode 100644 index 00000000..656142ca --- /dev/null +++ b/scripture/kjv/03/04/23/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 8:9 +9 For ye know the grace of our Lord Jesus Christ, that, though he was rich, yet for your sakes he became poor, that ye through his poverty might be rich. + +Saturday 04-March, 2023 diff --git a/scripture/kjv/03/04/23/scripture.today b/scripture/kjv/03/04/23/scripture.today new file mode 100644 index 00000000..42d46e3d --- /dev/null +++ b/scripture/kjv/03/04/23/scripture.today @@ -0,0 +1 @@ +47 8:9 diff --git a/scripture/kjv/03/04/24/scripture.html b/scripture/kjv/03/04/24/scripture.html new file mode 100644 index 00000000..09ef6458 --- /dev/null +++ b/scripture/kjv/03/04/24/scripture.html @@ -0,0 +1,3 @@ +Daniel 9:20-22
+20 And whiles I was speaking, and praying, and confessing my sin and the sin of my people Israel, and presenting my supplication before the Lord my God for the holy mountain of my God; 21 Yea, whiles I was speaking in prayer, even the man Gabriel, whom I had seen in the vision at the beginning, being caused to fly swiftly, touched me about the time of the evening oblation. 22 And he informed me, and talked with me, and said, O Daniel, I am now come forth to give thee skill and understanding.

+Monday 04-March, 2024 diff --git a/scripture/kjv/03/04/24/scripture.json b/scripture/kjv/03/04/24/scripture.json new file mode 100644 index 00000000..8a53a8ed --- /dev/null +++ b/scripture/kjv/03/04/24/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Daniel", + "chapter": "9", + "date": "Monday 04-March, 2024", + "getbible": "https://getbible.life/kjv/Daniel/9/20-22", + "name": "Daniel 9:20-22", + "scripture": [ + { + "nr": "20", + "text": "And whiles I was speaking, and praying, and confessing my sin and the sin of my people Israel, and presenting my supplication before the Lord my God for the holy mountain of my God;" + }, + { + "nr": "21", + "text": "Yea, whiles I was speaking in prayer, even the man Gabriel, whom I had seen in the vision at the beginning, being caused to fly swiftly, touched me about the time of the evening oblation." + }, + { + "nr": "22", + "text": "And he informed me, and talked with me, and said, O Daniel, I am now come forth to give thee skill and understanding." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20-22", + "version": "kjv" +} diff --git a/scripture/kjv/03/04/24/scripture.md b/scripture/kjv/03/04/24/scripture.md new file mode 100644 index 00000000..05de053f --- /dev/null +++ b/scripture/kjv/03/04/24/scripture.md @@ -0,0 +1,5 @@ +**Daniel 9:20-22** + +20 And whiles I was speaking, and praying, and confessing my sin and the sin of my people Israel, and presenting my supplication before the Lord my God for the holy mountain of my God; 21 Yea, whiles I was speaking in prayer, even the man Gabriel, whom I had seen in the vision at the beginning, being caused to fly swiftly, touched me about the time of the evening oblation. 22 And he informed me, and talked with me, and said, O Daniel, I am now come forth to give thee skill and understanding. + +[Monday 04-March, 2024](https://getbible.life/kjv/Daniel/9/20-22) diff --git a/scripture/kjv/03/04/24/scripture.tg b/scripture/kjv/03/04/24/scripture.tg new file mode 100644 index 00000000..7c5917cb --- /dev/null +++ b/scripture/kjv/03/04/24/scripture.tg @@ -0,0 +1,4 @@ +Daniel 9:20-22 +20 And whiles I was speaking, and praying, and confessing my sin and the sin of my people Israel, and presenting my supplication before the Lord my God for the holy mountain of my God; 21 Yea, whiles I was speaking in prayer, even the man Gabriel, whom I had seen in the vision at the beginning, being caused to fly swiftly, touched me about the time of the evening oblation. 22 And he informed me, and talked with me, and said, O Daniel, I am now come forth to give thee skill and understanding. + +Monday 04-March, 2024 diff --git a/scripture/kjv/03/04/24/scripture.tg.id b/scripture/kjv/03/04/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/04/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/04/24/scripture.today b/scripture/kjv/03/04/24/scripture.today new file mode 100644 index 00000000..f229f9a0 --- /dev/null +++ b/scripture/kjv/03/04/24/scripture.today @@ -0,0 +1 @@ +27 9:20-22 diff --git a/scripture/kjv/03/04/25/scripture.html b/scripture/kjv/03/04/25/scripture.html new file mode 100644 index 00000000..8ec60c52 --- /dev/null +++ b/scripture/kjv/03/04/25/scripture.html @@ -0,0 +1,3 @@ +Romans 15:14
+14 And I myself also am persuaded of you, my brethren, that ye also are full of goodness, filled with all knowledge, able also to admonish one another.

+Tuesday 04-March, 2025 diff --git a/scripture/kjv/03/04/25/scripture.json b/scripture/kjv/03/04/25/scripture.json new file mode 100644 index 00000000..e4463215 --- /dev/null +++ b/scripture/kjv/03/04/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Romans", + "chapter": "15", + "date": "Tuesday 04-March, 2025", + "getbible": "https://getbible.life/kjv/Romans/15/14", + "name": "Romans 15:14", + "scripture": [ + { + "nr": "14", + "text": "And I myself also am persuaded of you, my brethren, that ye also are full of goodness, filled with all knowledge, able also to admonish one another." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/03/04/25/scripture.md b/scripture/kjv/03/04/25/scripture.md new file mode 100644 index 00000000..ed2a6029 --- /dev/null +++ b/scripture/kjv/03/04/25/scripture.md @@ -0,0 +1,5 @@ +**Romans 15:14** + +14 And I myself also am persuaded of you, my brethren, that ye also are full of goodness, filled with all knowledge, able also to admonish one another. + +[Tuesday 04-March, 2025](https://getbible.life/kjv/Romans/15/14) diff --git a/scripture/kjv/03/04/25/scripture.tg b/scripture/kjv/03/04/25/scripture.tg new file mode 100644 index 00000000..291a8345 --- /dev/null +++ b/scripture/kjv/03/04/25/scripture.tg @@ -0,0 +1,4 @@ +Romans 15:14 +14 And I myself also am persuaded of you, my brethren, that ye also are full of goodness, filled with all knowledge, able also to admonish one another. + +Tuesday 04-March, 2025 diff --git a/scripture/kjv/03/04/25/scripture.tg.id b/scripture/kjv/03/04/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/04/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/04/25/scripture.today b/scripture/kjv/03/04/25/scripture.today new file mode 100644 index 00000000..2081c795 --- /dev/null +++ b/scripture/kjv/03/04/25/scripture.today @@ -0,0 +1 @@ +45 15:14 diff --git a/scripture/kjv/03/04/26/scripture.html b/scripture/kjv/03/04/26/scripture.html new file mode 100644 index 00000000..eee4572f --- /dev/null +++ b/scripture/kjv/03/04/26/scripture.html @@ -0,0 +1,3 @@ +Proverbs 19:2
+2 Also, that the soul be without knowledge, it is not good; and he that hasteth with his feet sinneth.

+Wednesday 04-March, 2026 diff --git a/scripture/kjv/03/04/26/scripture.json b/scripture/kjv/03/04/26/scripture.json new file mode 100644 index 00000000..66a0af19 --- /dev/null +++ b/scripture/kjv/03/04/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "19", + "date": "Wednesday 04-March, 2026", + "getbible": "https://getbible.life/kjv/Proverbs/19/2", + "name": "Proverbs 19:2", + "scripture": [ + { + "nr": "2", + "text": "Also, that the soul be without knowledge, it is not good; and he that hasteth with his feet sinneth." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "2", + "version": "kjv" +} diff --git a/scripture/kjv/03/04/26/scripture.md b/scripture/kjv/03/04/26/scripture.md new file mode 100644 index 00000000..f6d27074 --- /dev/null +++ b/scripture/kjv/03/04/26/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 19:2** + +2 Also, that the soul be without knowledge, it is not good; and he that hasteth with his feet sinneth. + +[Wednesday 04-March, 2026](https://getbible.life/kjv/Proverbs/19/2) diff --git a/scripture/kjv/03/04/26/scripture.tg b/scripture/kjv/03/04/26/scripture.tg new file mode 100644 index 00000000..49777a74 --- /dev/null +++ b/scripture/kjv/03/04/26/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 19:2 +2 Also, that the soul be without knowledge, it is not good; and he that hasteth with his feet sinneth. + +Wednesday 04-March, 2026 diff --git a/scripture/kjv/03/04/26/scripture.tg.id b/scripture/kjv/03/04/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/04/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/04/26/scripture.today b/scripture/kjv/03/04/26/scripture.today new file mode 100644 index 00000000..46fbf78a --- /dev/null +++ b/scripture/kjv/03/04/26/scripture.today @@ -0,0 +1 @@ +20 19:2 diff --git a/scripture/kjv/03/05/23/scripture.html b/scripture/kjv/03/05/23/scripture.html new file mode 100644 index 00000000..b43ff5f3 --- /dev/null +++ b/scripture/kjv/03/05/23/scripture.html @@ -0,0 +1,3 @@ +Ephesians 6:24
+24 Grace be with all them that love our Lord Jesus Christ in sincerity. Amen. Written from Rome unto the Ephesians by Tychicus.

+Sunday 05-March, 2023 diff --git a/scripture/kjv/03/05/23/scripture.json b/scripture/kjv/03/05/23/scripture.json new file mode 100644 index 00000000..abb8abc3 --- /dev/null +++ b/scripture/kjv/03/05/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Sunday 05-March, 2023", + "name": "Ephesians 6:24", + "scripture": [ + { + "nr": "24", + "text": "Grace be with all them that love our Lord Jesus Christ in sincerity. Amen. Written from Rome unto the Ephesians by Tychicus. " + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/05/23/scripture.md b/scripture/kjv/03/05/23/scripture.md new file mode 100644 index 00000000..40a61c4c --- /dev/null +++ b/scripture/kjv/03/05/23/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 6:24** + +24 Grace be with all them that love our Lord Jesus Christ in sincerity. Amen. Written from Rome unto the Ephesians by Tychicus. + +[Sunday 05-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/05/23/scripture.tg b/scripture/kjv/03/05/23/scripture.tg new file mode 100644 index 00000000..053c291f --- /dev/null +++ b/scripture/kjv/03/05/23/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 6:24 +24 Grace be with all them that love our Lord Jesus Christ in sincerity. Amen. Written from Rome unto the Ephesians by Tychicus. + +Sunday 05-March, 2023 diff --git a/scripture/kjv/03/05/23/scripture.today b/scripture/kjv/03/05/23/scripture.today new file mode 100644 index 00000000..8f82b7ca --- /dev/null +++ b/scripture/kjv/03/05/23/scripture.today @@ -0,0 +1 @@ +49 6:24 diff --git a/scripture/kjv/03/05/24/scripture.html b/scripture/kjv/03/05/24/scripture.html new file mode 100644 index 00000000..d0d8b456 --- /dev/null +++ b/scripture/kjv/03/05/24/scripture.html @@ -0,0 +1,3 @@ +Philippians 1:27
+27 Only let your conversation be as it becometh the gospel of Christ: that whether I come and see you, or else be absent, I may hear of your affairs, that ye stand fast in one spirit, with one mind striving together for the faith of the gospel;

+Tuesday 05-March, 2024 diff --git a/scripture/kjv/03/05/24/scripture.json b/scripture/kjv/03/05/24/scripture.json new file mode 100644 index 00000000..5d29ad99 --- /dev/null +++ b/scripture/kjv/03/05/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Philippians", + "chapter": "1", + "date": "Tuesday 05-March, 2024", + "getbible": "https://getbible.life/kjv/Philippians/1/27", + "name": "Philippians 1:27", + "scripture": [ + { + "nr": "27", + "text": "Only let your conversation be as it becometh the gospel of Christ: that whether I come and see you, or else be absent, I may hear of your affairs, that ye stand fast in one spirit, with one mind striving together for the faith of the gospel;" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "27", + "version": "kjv" +} diff --git a/scripture/kjv/03/05/24/scripture.md b/scripture/kjv/03/05/24/scripture.md new file mode 100644 index 00000000..0533dc86 --- /dev/null +++ b/scripture/kjv/03/05/24/scripture.md @@ -0,0 +1,5 @@ +**Philippians 1:27** + +27 Only let your conversation be as it becometh the gospel of Christ: that whether I come and see you, or else be absent, I may hear of your affairs, that ye stand fast in one spirit, with one mind striving together for the faith of the gospel; + +[Tuesday 05-March, 2024](https://getbible.life/kjv/Philippians/1/27) diff --git a/scripture/kjv/03/05/24/scripture.tg b/scripture/kjv/03/05/24/scripture.tg new file mode 100644 index 00000000..6d91748f --- /dev/null +++ b/scripture/kjv/03/05/24/scripture.tg @@ -0,0 +1,4 @@ +Philippians 1:27 +27 Only let your conversation be as it becometh the gospel of Christ: that whether I come and see you, or else be absent, I may hear of your affairs, that ye stand fast in one spirit, with one mind striving together for the faith of the gospel; + +Tuesday 05-March, 2024 diff --git a/scripture/kjv/03/05/24/scripture.tg.id b/scripture/kjv/03/05/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/05/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/05/24/scripture.today b/scripture/kjv/03/05/24/scripture.today new file mode 100644 index 00000000..f711dd64 --- /dev/null +++ b/scripture/kjv/03/05/24/scripture.today @@ -0,0 +1 @@ +50 1:27 diff --git a/scripture/kjv/03/05/25/scripture.html b/scripture/kjv/03/05/25/scripture.html new file mode 100644 index 00000000..74523536 --- /dev/null +++ b/scripture/kjv/03/05/25/scripture.html @@ -0,0 +1,3 @@ +2 Thessalonians 3:16
+16 Now the Lord of peace himself give you peace always by all means. The Lord be with you all.

+Wednesday 05-March, 2025 diff --git a/scripture/kjv/03/05/25/scripture.json b/scripture/kjv/03/05/25/scripture.json new file mode 100644 index 00000000..52b27e75 --- /dev/null +++ b/scripture/kjv/03/05/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Thessalonians", + "chapter": "3", + "date": "Wednesday 05-March, 2025", + "getbible": "https://getbible.life/kjv/2 Thessalonians/3/16", + "name": "2 Thessalonians 3:16", + "scripture": [ + { + "nr": "16", + "text": "Now the Lord of peace himself give you peace always by all means. The Lord be with you all." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16", + "version": "kjv" +} diff --git a/scripture/kjv/03/05/25/scripture.md b/scripture/kjv/03/05/25/scripture.md new file mode 100644 index 00000000..aee7cc0e --- /dev/null +++ b/scripture/kjv/03/05/25/scripture.md @@ -0,0 +1,5 @@ +**2 Thessalonians 3:16** + +16 Now the Lord of peace himself give you peace always by all means. The Lord be with you all. + +[Wednesday 05-March, 2025](https://getbible.life/kjv/2 Thessalonians/3/16) diff --git a/scripture/kjv/03/05/25/scripture.tg b/scripture/kjv/03/05/25/scripture.tg new file mode 100644 index 00000000..275e76c3 --- /dev/null +++ b/scripture/kjv/03/05/25/scripture.tg @@ -0,0 +1,4 @@ +2 Thessalonians 3:16 +16 Now the Lord of peace himself give you peace always by all means. The Lord be with you all. + +Wednesday 05-March, 2025 diff --git a/scripture/kjv/03/05/25/scripture.tg.id b/scripture/kjv/03/05/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/05/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/05/25/scripture.today b/scripture/kjv/03/05/25/scripture.today new file mode 100644 index 00000000..34ca3dbd --- /dev/null +++ b/scripture/kjv/03/05/25/scripture.today @@ -0,0 +1 @@ +53 3:16 diff --git a/scripture/kjv/03/05/26/scripture.html b/scripture/kjv/03/05/26/scripture.html new file mode 100644 index 00000000..777ce63a --- /dev/null +++ b/scripture/kjv/03/05/26/scripture.html @@ -0,0 +1,3 @@ +Jeremiah 4:3
+3 For thus saith the Lord to the men of Judah and Jerusalem, Break up your fallow ground, and sow not among thorns.

+Thursday 05-March, 2026 diff --git a/scripture/kjv/03/05/26/scripture.json b/scripture/kjv/03/05/26/scripture.json new file mode 100644 index 00000000..138e1688 --- /dev/null +++ b/scripture/kjv/03/05/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Jeremiah", + "chapter": "4", + "date": "Thursday 05-March, 2026", + "getbible": "https://getbible.life/kjv/Jeremiah/4/3", + "name": "Jeremiah 4:3", + "scripture": [ + { + "nr": "3", + "text": "For thus saith the Lord to the men of Judah and Jerusalem, Break up your fallow ground, and sow not among thorns." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3", + "version": "kjv" +} diff --git a/scripture/kjv/03/05/26/scripture.md b/scripture/kjv/03/05/26/scripture.md new file mode 100644 index 00000000..73efb302 --- /dev/null +++ b/scripture/kjv/03/05/26/scripture.md @@ -0,0 +1,5 @@ +**Jeremiah 4:3** + +3 For thus saith the Lord to the men of Judah and Jerusalem, Break up your fallow ground, and sow not among thorns. + +[Thursday 05-March, 2026](https://getbible.life/kjv/Jeremiah/4/3) diff --git a/scripture/kjv/03/05/26/scripture.tg b/scripture/kjv/03/05/26/scripture.tg new file mode 100644 index 00000000..c5e8010d --- /dev/null +++ b/scripture/kjv/03/05/26/scripture.tg @@ -0,0 +1,4 @@ +Jeremiah 4:3 +3 For thus saith the Lord to the men of Judah and Jerusalem, Break up your fallow ground, and sow not among thorns. + +Thursday 05-March, 2026 diff --git a/scripture/kjv/03/05/26/scripture.today b/scripture/kjv/03/05/26/scripture.today new file mode 100644 index 00000000..ccfb0adb --- /dev/null +++ b/scripture/kjv/03/05/26/scripture.today @@ -0,0 +1 @@ +24 4:3 diff --git a/scripture/kjv/03/06/23/scripture.html b/scripture/kjv/03/06/23/scripture.html new file mode 100644 index 00000000..45d36aea --- /dev/null +++ b/scripture/kjv/03/06/23/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 7:29-31
+29 But this I say, brethren, the time is short: it remaineth, that both they that have wives be as though they had none; 30 And they that weep, as though they wept not; and they that rejoice, as though they rejoiced not; and they that buy, as though they possessed not; 31 And they that use this world, as not abusing it: for the fashion of this world passeth away.

+Monday 06-March, 2023 diff --git a/scripture/kjv/03/06/23/scripture.json b/scripture/kjv/03/06/23/scripture.json new file mode 100644 index 00000000..9df17cd5 --- /dev/null +++ b/scripture/kjv/03/06/23/scripture.json @@ -0,0 +1,21 @@ +{ + "date": "Monday 06-March, 2023", + "name": "1 Corinthians 7:29-31", + "scripture": [ + { + "nr": "29", + "text": "But this I say, brethren, the time is short: it remaineth, that both they that have wives be as though they had none;" + }, + { + "nr": "30", + "text": "And they that weep, as though they wept not; and they that rejoice, as though they rejoiced not; and they that buy, as though they possessed not;" + }, + { + "nr": "31", + "text": "And they that use this world, as not abusing it: for the fashion of this world passeth away." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/06/23/scripture.md b/scripture/kjv/03/06/23/scripture.md new file mode 100644 index 00000000..8267e5d5 --- /dev/null +++ b/scripture/kjv/03/06/23/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 7:29-31** + +29 But this I say, brethren, the time is short: it remaineth, that both they that have wives be as though they had none; 30 And they that weep, as though they wept not; and they that rejoice, as though they rejoiced not; and they that buy, as though they possessed not; 31 And they that use this world, as not abusing it: for the fashion of this world passeth away. + +[Monday 06-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/06/23/scripture.tg b/scripture/kjv/03/06/23/scripture.tg new file mode 100644 index 00000000..009a1d0b --- /dev/null +++ b/scripture/kjv/03/06/23/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 7:29-31 +29 But this I say, brethren, the time is short: it remaineth, that both they that have wives be as though they had none; 30 And they that weep, as though they wept not; and they that rejoice, as though they rejoiced not; and they that buy, as though they possessed not; 31 And they that use this world, as not abusing it: for the fashion of this world passeth away. + +Monday 06-March, 2023 diff --git a/scripture/kjv/03/06/23/scripture.today b/scripture/kjv/03/06/23/scripture.today new file mode 100644 index 00000000..1d5ede5b --- /dev/null +++ b/scripture/kjv/03/06/23/scripture.today @@ -0,0 +1 @@ +46 7:29-31 diff --git a/scripture/kjv/03/06/24/scripture.html b/scripture/kjv/03/06/24/scripture.html new file mode 100644 index 00000000..21a1b53b --- /dev/null +++ b/scripture/kjv/03/06/24/scripture.html @@ -0,0 +1,3 @@ +1 Timothy 4:13
+13 Till I come, give attendance to reading, to exhortation, to doctrine.

+Wednesday 06-March, 2024 diff --git a/scripture/kjv/03/06/24/scripture.json b/scripture/kjv/03/06/24/scripture.json new file mode 100644 index 00000000..aa0fcad2 --- /dev/null +++ b/scripture/kjv/03/06/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Timothy", + "chapter": "4", + "date": "Wednesday 06-March, 2024", + "getbible": "https://getbible.life/kjv/1 Timothy/4/13", + "name": "1 Timothy 4:13", + "scripture": [ + { + "nr": "13", + "text": "Till I come, give attendance to reading, to exhortation, to doctrine." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13", + "version": "kjv" +} diff --git a/scripture/kjv/03/06/24/scripture.md b/scripture/kjv/03/06/24/scripture.md new file mode 100644 index 00000000..d33e58cd --- /dev/null +++ b/scripture/kjv/03/06/24/scripture.md @@ -0,0 +1,5 @@ +**1 Timothy 4:13** + +13 Till I come, give attendance to reading, to exhortation, to doctrine. + +[Wednesday 06-March, 2024](https://getbible.life/kjv/1 Timothy/4/13) diff --git a/scripture/kjv/03/06/24/scripture.tg b/scripture/kjv/03/06/24/scripture.tg new file mode 100644 index 00000000..79745a60 --- /dev/null +++ b/scripture/kjv/03/06/24/scripture.tg @@ -0,0 +1,4 @@ +1 Timothy 4:13 +13 Till I come, give attendance to reading, to exhortation, to doctrine. + +Wednesday 06-March, 2024 diff --git a/scripture/kjv/03/06/24/scripture.tg.id b/scripture/kjv/03/06/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/06/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/06/24/scripture.today b/scripture/kjv/03/06/24/scripture.today new file mode 100644 index 00000000..ec5816aa --- /dev/null +++ b/scripture/kjv/03/06/24/scripture.today @@ -0,0 +1 @@ +54 4:13 diff --git a/scripture/kjv/03/06/25/scripture.html b/scripture/kjv/03/06/25/scripture.html new file mode 100644 index 00000000..dcaa73fd --- /dev/null +++ b/scripture/kjv/03/06/25/scripture.html @@ -0,0 +1,3 @@ +1 Timothy 2:8
+8 I will therefore that men pray every where, lifting up holy hands, without wrath and doubting.

+Thursday 06-March, 2025 diff --git a/scripture/kjv/03/06/25/scripture.json b/scripture/kjv/03/06/25/scripture.json new file mode 100644 index 00000000..3e2f6f1a --- /dev/null +++ b/scripture/kjv/03/06/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Timothy", + "chapter": "2", + "date": "Thursday 06-March, 2025", + "getbible": "https://getbible.life/kjv/1 Timothy/2/8", + "name": "1 Timothy 2:8", + "scripture": [ + { + "nr": "8", + "text": "I will therefore that men pray every where, lifting up holy hands, without wrath and doubting." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8", + "version": "kjv" +} diff --git a/scripture/kjv/03/06/25/scripture.md b/scripture/kjv/03/06/25/scripture.md new file mode 100644 index 00000000..187f25f6 --- /dev/null +++ b/scripture/kjv/03/06/25/scripture.md @@ -0,0 +1,5 @@ +**1 Timothy 2:8** + +8 I will therefore that men pray every where, lifting up holy hands, without wrath and doubting. + +[Thursday 06-March, 2025](https://getbible.life/kjv/1 Timothy/2/8) diff --git a/scripture/kjv/03/06/25/scripture.tg b/scripture/kjv/03/06/25/scripture.tg new file mode 100644 index 00000000..a2eaf2bf --- /dev/null +++ b/scripture/kjv/03/06/25/scripture.tg @@ -0,0 +1,4 @@ +1 Timothy 2:8 +8 I will therefore that men pray every where, lifting up holy hands, without wrath and doubting. + +Thursday 06-March, 2025 diff --git a/scripture/kjv/03/06/25/scripture.tg.id b/scripture/kjv/03/06/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/06/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/06/25/scripture.today b/scripture/kjv/03/06/25/scripture.today new file mode 100644 index 00000000..f8d2a0e5 --- /dev/null +++ b/scripture/kjv/03/06/25/scripture.today @@ -0,0 +1 @@ +54 2:8 diff --git a/scripture/kjv/03/06/26/scripture.html b/scripture/kjv/03/06/26/scripture.html new file mode 100644 index 00000000..e7e00620 --- /dev/null +++ b/scripture/kjv/03/06/26/scripture.html @@ -0,0 +1,3 @@ +Psalms 36:7-9
+7 How excellent is thy lovingkindness, O God! therefore the children of men put their trust under the shadow of thy wings. 8 They shall be abundantly satisfied with the fatness of thy house; and thou shalt make them drink of the river of thy pleasures. 9 For with thee is the fountain of life: in thy light shall we see light.

+Friday 06-March, 2026 diff --git a/scripture/kjv/03/06/26/scripture.json b/scripture/kjv/03/06/26/scripture.json new file mode 100644 index 00000000..35ebf358 --- /dev/null +++ b/scripture/kjv/03/06/26/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Psalms", + "chapter": "36", + "date": "Friday 06-March, 2026", + "getbible": "https://getbible.life/kjv/Psalms/36/7-9", + "name": "Psalms 36:7-9", + "scripture": [ + { + "nr": "7", + "text": "How excellent is thy lovingkindness, O God! therefore the children of men put their trust under the shadow of thy wings." + }, + { + "nr": "8", + "text": "They shall be abundantly satisfied with the fatness of thy house; and thou shalt make them drink of the river of thy pleasures." + }, + { + "nr": "9", + "text": "For with thee is the fountain of life: in thy light shall we see light." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7-9", + "version": "kjv" +} diff --git a/scripture/kjv/03/06/26/scripture.md b/scripture/kjv/03/06/26/scripture.md new file mode 100644 index 00000000..2c694f2b --- /dev/null +++ b/scripture/kjv/03/06/26/scripture.md @@ -0,0 +1,5 @@ +**Psalms 36:7-9** + +7 How excellent is thy lovingkindness, O God! therefore the children of men put their trust under the shadow of thy wings. 8 They shall be abundantly satisfied with the fatness of thy house; and thou shalt make them drink of the river of thy pleasures. 9 For with thee is the fountain of life: in thy light shall we see light. + +[Friday 06-March, 2026](https://getbible.life/kjv/Psalms/36/7-9) diff --git a/scripture/kjv/03/06/26/scripture.tg b/scripture/kjv/03/06/26/scripture.tg new file mode 100644 index 00000000..ca772597 --- /dev/null +++ b/scripture/kjv/03/06/26/scripture.tg @@ -0,0 +1,4 @@ +Psalms 36:7-9 +7 How excellent is thy lovingkindness, O God! therefore the children of men put their trust under the shadow of thy wings. 8 They shall be abundantly satisfied with the fatness of thy house; and thou shalt make them drink of the river of thy pleasures. 9 For with thee is the fountain of life: in thy light shall we see light. + +Friday 06-March, 2026 diff --git a/scripture/kjv/03/06/26/scripture.tg.id b/scripture/kjv/03/06/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/06/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/06/26/scripture.today b/scripture/kjv/03/06/26/scripture.today new file mode 100644 index 00000000..8c67e565 --- /dev/null +++ b/scripture/kjv/03/06/26/scripture.today @@ -0,0 +1 @@ +19 36:7-9 diff --git a/scripture/kjv/03/07/23/scripture.html b/scripture/kjv/03/07/23/scripture.html new file mode 100644 index 00000000..921a4a03 --- /dev/null +++ b/scripture/kjv/03/07/23/scripture.html @@ -0,0 +1,3 @@ +Acts 20:20
+20 And how I kept back nothing that was profitable unto you, but have shewed you, and have taught you publickly, and from house to house,

+Tuesday 07-March, 2023 diff --git a/scripture/kjv/03/07/23/scripture.json b/scripture/kjv/03/07/23/scripture.json new file mode 100644 index 00000000..1b32c81e --- /dev/null +++ b/scripture/kjv/03/07/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Tuesday 07-March, 2023", + "name": "Acts 20:20", + "scripture": [ + { + "nr": "20", + "text": "And how I kept back nothing that was profitable unto you, but have shewed you, and have taught you publickly, and from house to house," + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/07/23/scripture.md b/scripture/kjv/03/07/23/scripture.md new file mode 100644 index 00000000..744779c5 --- /dev/null +++ b/scripture/kjv/03/07/23/scripture.md @@ -0,0 +1,5 @@ +**Acts 20:20** + +20 And how I kept back nothing that was profitable unto you, but have shewed you, and have taught you publickly, and from house to house, + +[Tuesday 07-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/07/23/scripture.tg b/scripture/kjv/03/07/23/scripture.tg new file mode 100644 index 00000000..2a660434 --- /dev/null +++ b/scripture/kjv/03/07/23/scripture.tg @@ -0,0 +1,4 @@ +Acts 20:20 +20 And how I kept back nothing that was profitable unto you, but have shewed you, and have taught you publickly, and from house to house, + +Tuesday 07-March, 2023 diff --git a/scripture/kjv/03/07/23/scripture.today b/scripture/kjv/03/07/23/scripture.today new file mode 100644 index 00000000..e4e47edb --- /dev/null +++ b/scripture/kjv/03/07/23/scripture.today @@ -0,0 +1 @@ +44 20:20 diff --git a/scripture/kjv/03/07/24/scripture.html b/scripture/kjv/03/07/24/scripture.html new file mode 100644 index 00000000..7627753c --- /dev/null +++ b/scripture/kjv/03/07/24/scripture.html @@ -0,0 +1,3 @@ +Acts 1:8
+8 But ye shall receive power, after that the Holy Ghost is come upon you: and ye shall be witnesses unto me both in Jerusalem, and in all Judea, and in Samaria, and unto the uttermost part of the earth.

+Thursday 07-March, 2024 diff --git a/scripture/kjv/03/07/24/scripture.json b/scripture/kjv/03/07/24/scripture.json new file mode 100644 index 00000000..e19b8bc1 --- /dev/null +++ b/scripture/kjv/03/07/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Acts", + "chapter": "1", + "date": "Thursday 07-March, 2024", + "getbible": "https://getbible.life/kjv/Acts/1/8", + "name": "Acts 1:8", + "scripture": [ + { + "nr": "8", + "text": "But ye shall receive power, after that the Holy Ghost is come upon you: and ye shall be witnesses unto me both in Jerusalem, and in all Judea, and in Samaria, and unto the uttermost part of the earth." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8", + "version": "kjv" +} diff --git a/scripture/kjv/03/07/24/scripture.md b/scripture/kjv/03/07/24/scripture.md new file mode 100644 index 00000000..7276f0bd --- /dev/null +++ b/scripture/kjv/03/07/24/scripture.md @@ -0,0 +1,5 @@ +**Acts 1:8** + +8 But ye shall receive power, after that the Holy Ghost is come upon you: and ye shall be witnesses unto me both in Jerusalem, and in all Judea, and in Samaria, and unto the uttermost part of the earth. + +[Thursday 07-March, 2024](https://getbible.life/kjv/Acts/1/8) diff --git a/scripture/kjv/03/07/24/scripture.tg b/scripture/kjv/03/07/24/scripture.tg new file mode 100644 index 00000000..c7e65186 --- /dev/null +++ b/scripture/kjv/03/07/24/scripture.tg @@ -0,0 +1,4 @@ +Acts 1:8 +8 But ye shall receive power, after that the Holy Ghost is come upon you: and ye shall be witnesses unto me both in Jerusalem, and in all Judea, and in Samaria, and unto the uttermost part of the earth. + +Thursday 07-March, 2024 diff --git a/scripture/kjv/03/07/24/scripture.tg.id b/scripture/kjv/03/07/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/07/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/07/24/scripture.today b/scripture/kjv/03/07/24/scripture.today new file mode 100644 index 00000000..08e432a1 --- /dev/null +++ b/scripture/kjv/03/07/24/scripture.today @@ -0,0 +1 @@ +44 1:8 diff --git a/scripture/kjv/03/07/25/scripture.html b/scripture/kjv/03/07/25/scripture.html new file mode 100644 index 00000000..69573b4b --- /dev/null +++ b/scripture/kjv/03/07/25/scripture.html @@ -0,0 +1,3 @@ +Isaiah 61:11
+11 For as the earth bringeth forth her bud, and as the garden causeth the things that are sown in it to spring forth; so the Lord God will cause righteousness and praise to spring forth before all the nations.

+Friday 07-March, 2025 diff --git a/scripture/kjv/03/07/25/scripture.json b/scripture/kjv/03/07/25/scripture.json new file mode 100644 index 00000000..d7f00340 --- /dev/null +++ b/scripture/kjv/03/07/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "61", + "date": "Friday 07-March, 2025", + "getbible": "https://getbible.life/kjv/Isaiah/61/11", + "name": "Isaiah 61:11", + "scripture": [ + { + "nr": "11", + "text": "For as the earth bringeth forth her bud, and as the garden causeth the things that are sown in it to spring forth; so the Lord God will cause righteousness and praise to spring forth before all the nations. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/03/07/25/scripture.md b/scripture/kjv/03/07/25/scripture.md new file mode 100644 index 00000000..09ccc20f --- /dev/null +++ b/scripture/kjv/03/07/25/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 61:11** + +11 For as the earth bringeth forth her bud, and as the garden causeth the things that are sown in it to spring forth; so the Lord God will cause righteousness and praise to spring forth before all the nations. + +[Friday 07-March, 2025](https://getbible.life/kjv/Isaiah/61/11) diff --git a/scripture/kjv/03/07/25/scripture.tg b/scripture/kjv/03/07/25/scripture.tg new file mode 100644 index 00000000..3d6cd4ae --- /dev/null +++ b/scripture/kjv/03/07/25/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 61:11 +11 For as the earth bringeth forth her bud, and as the garden causeth the things that are sown in it to spring forth; so the Lord God will cause righteousness and praise to spring forth before all the nations. + +Friday 07-March, 2025 diff --git a/scripture/kjv/03/07/25/scripture.tg.id b/scripture/kjv/03/07/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/07/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/07/25/scripture.today b/scripture/kjv/03/07/25/scripture.today new file mode 100644 index 00000000..3a78cea7 --- /dev/null +++ b/scripture/kjv/03/07/25/scripture.today @@ -0,0 +1 @@ +23 61:11 diff --git a/scripture/kjv/03/07/26/scripture.html b/scripture/kjv/03/07/26/scripture.html new file mode 100644 index 00000000..1eb2eb89 --- /dev/null +++ b/scripture/kjv/03/07/26/scripture.html @@ -0,0 +1,3 @@ +Proverbs 19:18
+18 Chasten thy son while there is hope, and let not thy soul spare for his crying.

+Saturday 07-March, 2026 diff --git a/scripture/kjv/03/07/26/scripture.json b/scripture/kjv/03/07/26/scripture.json new file mode 100644 index 00000000..6df8f1e4 --- /dev/null +++ b/scripture/kjv/03/07/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "19", + "date": "Saturday 07-March, 2026", + "getbible": "https://getbible.life/kjv/Proverbs/19/18", + "name": "Proverbs 19:18", + "scripture": [ + { + "nr": "18", + "text": "Chasten thy son while there is hope, and let not thy soul spare for his crying." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18", + "version": "kjv" +} diff --git a/scripture/kjv/03/07/26/scripture.md b/scripture/kjv/03/07/26/scripture.md new file mode 100644 index 00000000..f58cfbb8 --- /dev/null +++ b/scripture/kjv/03/07/26/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 19:18** + +18 Chasten thy son while there is hope, and let not thy soul spare for his crying. + +[Saturday 07-March, 2026](https://getbible.life/kjv/Proverbs/19/18) diff --git a/scripture/kjv/03/07/26/scripture.tg b/scripture/kjv/03/07/26/scripture.tg new file mode 100644 index 00000000..1b02c26b --- /dev/null +++ b/scripture/kjv/03/07/26/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 19:18 +18 Chasten thy son while there is hope, and let not thy soul spare for his crying. + +Saturday 07-March, 2026 diff --git a/scripture/kjv/03/07/26/scripture.tg.id b/scripture/kjv/03/07/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/07/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/07/26/scripture.today b/scripture/kjv/03/07/26/scripture.today new file mode 100644 index 00000000..bd226b59 --- /dev/null +++ b/scripture/kjv/03/07/26/scripture.today @@ -0,0 +1 @@ +20 19:18 diff --git a/scripture/kjv/03/08/23/scripture.html b/scripture/kjv/03/08/23/scripture.html new file mode 100644 index 00000000..ab995930 --- /dev/null +++ b/scripture/kjv/03/08/23/scripture.html @@ -0,0 +1,3 @@ +Malachi 3:1-3
+1 Behold, I will send my messenger, and he shall prepare the way before me: and the Lord, whom ye seek, shall suddenly come to his temple, even the messenger of the covenant, whom ye delight in: behold, he shall come, saith the Lord of hosts. 2 But who may abide the day of his coming? and who shall stand when he appeareth? for he is like a refiner’s fire, and like fullers’ soap: 3 And he shall sit as a refiner and purifier of silver: and he shall purify the sons of Levi, and purge them as gold and silver, that they may offer unto the Lord an offering in righteousness.

+Wednesday 08-March, 2023 diff --git a/scripture/kjv/03/08/23/scripture.json b/scripture/kjv/03/08/23/scripture.json new file mode 100644 index 00000000..f7ba7dee --- /dev/null +++ b/scripture/kjv/03/08/23/scripture.json @@ -0,0 +1,21 @@ +{ + "date": "Wednesday 08-March, 2023", + "name": "Malachi 3:1-3", + "scripture": [ + { + "nr": "1", + "text": "Behold, I will send my messenger, and he shall prepare the way before me: and the Lord, whom ye seek, shall suddenly come to his temple, even the messenger of the covenant, whom ye delight in: behold, he shall come, saith the Lord of hosts." + }, + { + "nr": "2", + "text": "But who may abide the day of his coming? and who shall stand when he appeareth? for he is like a refiner’s fire, and like fullers’ soap:" + }, + { + "nr": "3", + "text": "And he shall sit as a refiner and purifier of silver: and he shall purify the sons of Levi, and purge them as gold and silver, that they may offer unto the Lord an offering in righteousness." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/08/23/scripture.md b/scripture/kjv/03/08/23/scripture.md new file mode 100644 index 00000000..d8b8b421 --- /dev/null +++ b/scripture/kjv/03/08/23/scripture.md @@ -0,0 +1,5 @@ +**Malachi 3:1-3** + +1 Behold, I will send my messenger, and he shall prepare the way before me: and the Lord, whom ye seek, shall suddenly come to his temple, even the messenger of the covenant, whom ye delight in: behold, he shall come, saith the Lord of hosts. 2 But who may abide the day of his coming? and who shall stand when he appeareth? for he is like a refiner’s fire, and like fullers’ soap: 3 And he shall sit as a refiner and purifier of silver: and he shall purify the sons of Levi, and purge them as gold and silver, that they may offer unto the Lord an offering in righteousness. + +[Wednesday 08-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/08/23/scripture.tg b/scripture/kjv/03/08/23/scripture.tg new file mode 100644 index 00000000..4841558c --- /dev/null +++ b/scripture/kjv/03/08/23/scripture.tg @@ -0,0 +1,4 @@ +Malachi 3:1-3 +1 Behold, I will send my messenger, and he shall prepare the way before me: and the Lord, whom ye seek, shall suddenly come to his temple, even the messenger of the covenant, whom ye delight in: behold, he shall come, saith the Lord of hosts. 2 But who may abide the day of his coming? and who shall stand when he appeareth? for he is like a refiner’s fire, and like fullers’ soap: 3 And he shall sit as a refiner and purifier of silver: and he shall purify the sons of Levi, and purge them as gold and silver, that they may offer unto the Lord an offering in righteousness. + +Wednesday 08-March, 2023 diff --git a/scripture/kjv/03/08/23/scripture.today b/scripture/kjv/03/08/23/scripture.today new file mode 100644 index 00000000..7ad6bf92 --- /dev/null +++ b/scripture/kjv/03/08/23/scripture.today @@ -0,0 +1 @@ +39 3:1-3 diff --git a/scripture/kjv/03/08/24/scripture.html b/scripture/kjv/03/08/24/scripture.html new file mode 100644 index 00000000..2828f608 --- /dev/null +++ b/scripture/kjv/03/08/24/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 9:20-22
+20 And unto the Jews I became as a Jew, that I might gain the Jews; to them that are under the law, as under the law, that I might gain them that are under the law; 21 To them that are without law, as without law, (being not without law to God, but under the law to Christ,) that I might gain them that are without law. 22 To the weak became I as weak, that I might gain the weak: I am made all things to all men, that I might by all means save some.

+Friday 08-March, 2024 diff --git a/scripture/kjv/03/08/24/scripture.json b/scripture/kjv/03/08/24/scripture.json new file mode 100644 index 00000000..df5f5fe0 --- /dev/null +++ b/scripture/kjv/03/08/24/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "1 Corinthians", + "chapter": "9", + "date": "Friday 08-March, 2024", + "getbible": "https://getbible.life/kjv/1 Corinthians/9/20-22", + "name": "1 Corinthians 9:20-22", + "scripture": [ + { + "nr": "20", + "text": "And unto the Jews I became as a Jew, that I might gain the Jews; to them that are under the law, as under the law, that I might gain them that are under the law;" + }, + { + "nr": "21", + "text": "To them that are without law, as without law, (being not without law to God, but under the law to Christ,) that I might gain them that are without law." + }, + { + "nr": "22", + "text": "To the weak became I as weak, that I might gain the weak: I am made all things to all men, that I might by all means save some." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20-22", + "version": "kjv" +} diff --git a/scripture/kjv/03/08/24/scripture.md b/scripture/kjv/03/08/24/scripture.md new file mode 100644 index 00000000..4d26451d --- /dev/null +++ b/scripture/kjv/03/08/24/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 9:20-22** + +20 And unto the Jews I became as a Jew, that I might gain the Jews; to them that are under the law, as under the law, that I might gain them that are under the law; 21 To them that are without law, as without law, (being not without law to God, but under the law to Christ,) that I might gain them that are without law. 22 To the weak became I as weak, that I might gain the weak: I am made all things to all men, that I might by all means save some. + +[Friday 08-March, 2024](https://getbible.life/kjv/1 Corinthians/9/20-22) diff --git a/scripture/kjv/03/08/24/scripture.tg b/scripture/kjv/03/08/24/scripture.tg new file mode 100644 index 00000000..11ef59ab --- /dev/null +++ b/scripture/kjv/03/08/24/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 9:20-22 +20 And unto the Jews I became as a Jew, that I might gain the Jews; to them that are under the law, as under the law, that I might gain them that are under the law; 21 To them that are without law, as without law, (being not without law to God, but under the law to Christ,) that I might gain them that are without law. 22 To the weak became I as weak, that I might gain the weak: I am made all things to all men, that I might by all means save some. + +Friday 08-March, 2024 diff --git a/scripture/kjv/03/08/24/scripture.tg.id b/scripture/kjv/03/08/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/08/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/08/24/scripture.today b/scripture/kjv/03/08/24/scripture.today new file mode 100644 index 00000000..0a3df1f1 --- /dev/null +++ b/scripture/kjv/03/08/24/scripture.today @@ -0,0 +1 @@ +46 9:20-22 diff --git a/scripture/kjv/03/08/25/scripture.html b/scripture/kjv/03/08/25/scripture.html new file mode 100644 index 00000000..21930f4d --- /dev/null +++ b/scripture/kjv/03/08/25/scripture.html @@ -0,0 +1,3 @@ +Matthew 13:16-17
+16 But blessed are your eyes, for they see: and your ears, for they hear. 17 For verily I say unto you, That many prophets and righteous men have desired to see those things which ye see, and have not seen them; and to hear those things which ye hear, and have not heard them.

+Saturday 08-March, 2025 diff --git a/scripture/kjv/03/08/25/scripture.json b/scripture/kjv/03/08/25/scripture.json new file mode 100644 index 00000000..57cd8d03 --- /dev/null +++ b/scripture/kjv/03/08/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Matthew", + "chapter": "13", + "date": "Saturday 08-March, 2025", + "getbible": "https://getbible.life/kjv/Matthew/13/16-17", + "name": "Matthew 13:16-17", + "scripture": [ + { + "nr": "16", + "text": "But blessed are your eyes, for they see: and your ears, for they hear." + }, + { + "nr": "17", + "text": "For verily I say unto you, That many prophets and righteous men have desired to see those things which ye see, and have not seen them; and to hear those things which ye hear, and have not heard them." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16-17", + "version": "kjv" +} diff --git a/scripture/kjv/03/08/25/scripture.md b/scripture/kjv/03/08/25/scripture.md new file mode 100644 index 00000000..f850e9ed --- /dev/null +++ b/scripture/kjv/03/08/25/scripture.md @@ -0,0 +1,5 @@ +**Matthew 13:16-17** + +16 But blessed are your eyes, for they see: and your ears, for they hear. 17 For verily I say unto you, That many prophets and righteous men have desired to see those things which ye see, and have not seen them; and to hear those things which ye hear, and have not heard them. + +[Saturday 08-March, 2025](https://getbible.life/kjv/Matthew/13/16-17) diff --git a/scripture/kjv/03/08/25/scripture.tg b/scripture/kjv/03/08/25/scripture.tg new file mode 100644 index 00000000..a686cd7e --- /dev/null +++ b/scripture/kjv/03/08/25/scripture.tg @@ -0,0 +1,4 @@ +Matthew 13:16-17 +16 But blessed are your eyes, for they see: and your ears, for they hear. 17 For verily I say unto you, That many prophets and righteous men have desired to see those things which ye see, and have not seen them; and to hear those things which ye hear, and have not heard them. + +Saturday 08-March, 2025 diff --git a/scripture/kjv/03/08/25/scripture.tg.id b/scripture/kjv/03/08/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/08/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/08/25/scripture.today b/scripture/kjv/03/08/25/scripture.today new file mode 100644 index 00000000..419a8d46 --- /dev/null +++ b/scripture/kjv/03/08/25/scripture.today @@ -0,0 +1 @@ +40 13:16-17 diff --git a/scripture/kjv/03/08/26/scripture.html b/scripture/kjv/03/08/26/scripture.html new file mode 100644 index 00000000..89457d90 --- /dev/null +++ b/scripture/kjv/03/08/26/scripture.html @@ -0,0 +1,3 @@ +Matthew 4:19-20
+19 And he saith unto them, Follow me, and I will make you fishers of men. 20 And they straightway left their nets, and followed him.

+Sunday 08-March, 2026 diff --git a/scripture/kjv/03/08/26/scripture.json b/scripture/kjv/03/08/26/scripture.json new file mode 100644 index 00000000..b833c6f4 --- /dev/null +++ b/scripture/kjv/03/08/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Matthew", + "chapter": "4", + "date": "Sunday 08-March, 2026", + "getbible": "https://getbible.life/kjv/Matthew/4/19-20", + "name": "Matthew 4:19-20", + "scripture": [ + { + "nr": "19", + "text": "And he saith unto them, Follow me, and I will make you fishers of men." + }, + { + "nr": "20", + "text": "And they straightway left their nets, and followed him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "19-20", + "version": "kjv" +} diff --git a/scripture/kjv/03/08/26/scripture.md b/scripture/kjv/03/08/26/scripture.md new file mode 100644 index 00000000..2cba3f3c --- /dev/null +++ b/scripture/kjv/03/08/26/scripture.md @@ -0,0 +1,5 @@ +**Matthew 4:19-20** + +19 And he saith unto them, Follow me, and I will make you fishers of men. 20 And they straightway left their nets, and followed him. + +[Sunday 08-March, 2026](https://getbible.life/kjv/Matthew/4/19-20) diff --git a/scripture/kjv/03/08/26/scripture.tg b/scripture/kjv/03/08/26/scripture.tg new file mode 100644 index 00000000..038bd08d --- /dev/null +++ b/scripture/kjv/03/08/26/scripture.tg @@ -0,0 +1,4 @@ +Matthew 4:19-20 +19 And he saith unto them, Follow me, and I will make you fishers of men. 20 And they straightway left their nets, and followed him. + +Sunday 08-March, 2026 diff --git a/scripture/kjv/03/08/26/scripture.tg.id b/scripture/kjv/03/08/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/08/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/08/26/scripture.today b/scripture/kjv/03/08/26/scripture.today new file mode 100644 index 00000000..1f1608fc --- /dev/null +++ b/scripture/kjv/03/08/26/scripture.today @@ -0,0 +1 @@ +40 4:19-20 diff --git a/scripture/kjv/03/09/23/scripture.html b/scripture/kjv/03/09/23/scripture.html new file mode 100644 index 00000000..14f5e692 --- /dev/null +++ b/scripture/kjv/03/09/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 18:1
+1 I will love thee, O Lord, my strength.

+Thursday 09-March, 2023 diff --git a/scripture/kjv/03/09/23/scripture.json b/scripture/kjv/03/09/23/scripture.json new file mode 100644 index 00000000..c84478e2 --- /dev/null +++ b/scripture/kjv/03/09/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Thursday 09-March, 2023", + "name": "Psalms 18:1", + "scripture": [ + { + "nr": "1", + "text": "I will love thee, O Lord, my strength." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/09/23/scripture.md b/scripture/kjv/03/09/23/scripture.md new file mode 100644 index 00000000..b512c199 --- /dev/null +++ b/scripture/kjv/03/09/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 18:1** + +1 I will love thee, O Lord, my strength. + +[Thursday 09-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/09/23/scripture.tg b/scripture/kjv/03/09/23/scripture.tg new file mode 100644 index 00000000..13e17fec --- /dev/null +++ b/scripture/kjv/03/09/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 18:1 +1 I will love thee, O Lord, my strength. + +Thursday 09-March, 2023 diff --git a/scripture/kjv/03/09/23/scripture.today b/scripture/kjv/03/09/23/scripture.today new file mode 100644 index 00000000..67b3a0b2 --- /dev/null +++ b/scripture/kjv/03/09/23/scripture.today @@ -0,0 +1 @@ +19 18:1 diff --git a/scripture/kjv/03/09/24/scripture.html b/scripture/kjv/03/09/24/scripture.html new file mode 100644 index 00000000..a3aeaf32 --- /dev/null +++ b/scripture/kjv/03/09/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 27:4
+4 One thing have I desired of the Lord, that will I seek after; that I may dwell in the house of the Lord all the days of my life, to behold the beauty of the Lord, and to enquire in his temple.

+Saturday 09-March, 2024 diff --git a/scripture/kjv/03/09/24/scripture.json b/scripture/kjv/03/09/24/scripture.json new file mode 100644 index 00000000..30ae5689 --- /dev/null +++ b/scripture/kjv/03/09/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "27", + "date": "Saturday 09-March, 2024", + "getbible": "https://getbible.life/kjv/Psalms/27/4", + "name": "Psalms 27:4", + "scripture": [ + { + "nr": "4", + "text": "One thing have I desired of the Lord, that will I seek after; that I may dwell in the house of the Lord all the days of my life, to behold the beauty of the Lord, and to enquire in his temple." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4", + "version": "kjv" +} diff --git a/scripture/kjv/03/09/24/scripture.md b/scripture/kjv/03/09/24/scripture.md new file mode 100644 index 00000000..94161e3d --- /dev/null +++ b/scripture/kjv/03/09/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 27:4** + +4 One thing have I desired of the Lord, that will I seek after; that I may dwell in the house of the Lord all the days of my life, to behold the beauty of the Lord, and to enquire in his temple. + +[Saturday 09-March, 2024](https://getbible.life/kjv/Psalms/27/4) diff --git a/scripture/kjv/03/09/24/scripture.tg b/scripture/kjv/03/09/24/scripture.tg new file mode 100644 index 00000000..a7eb25f8 --- /dev/null +++ b/scripture/kjv/03/09/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 27:4 +4 One thing have I desired of the Lord, that will I seek after; that I may dwell in the house of the Lord all the days of my life, to behold the beauty of the Lord, and to enquire in his temple. + +Saturday 09-March, 2024 diff --git a/scripture/kjv/03/09/24/scripture.tg.id b/scripture/kjv/03/09/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/09/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/09/24/scripture.today b/scripture/kjv/03/09/24/scripture.today new file mode 100644 index 00000000..51701a3e --- /dev/null +++ b/scripture/kjv/03/09/24/scripture.today @@ -0,0 +1 @@ +19 27:4 diff --git a/scripture/kjv/03/09/25/scripture.html b/scripture/kjv/03/09/25/scripture.html new file mode 100644 index 00000000..0999a924 --- /dev/null +++ b/scripture/kjv/03/09/25/scripture.html @@ -0,0 +1,3 @@ +Hebrews 12:1
+1 Wherefore seeing we also are compassed about with so great a cloud of witnesses, let us lay aside every weight, and the sin which doth so easily beset us, and let us run with patience the race that is set before us,

+Sunday 09-March, 2025 diff --git a/scripture/kjv/03/09/25/scripture.json b/scripture/kjv/03/09/25/scripture.json new file mode 100644 index 00000000..757064ac --- /dev/null +++ b/scripture/kjv/03/09/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Hebrews", + "chapter": "12", + "date": "Sunday 09-March, 2025", + "getbible": "https://getbible.life/kjv/Hebrews/12/1", + "name": "Hebrews 12:1", + "scripture": [ + { + "nr": "1", + "text": "Wherefore seeing we also are compassed about with so great a cloud of witnesses, let us lay aside every weight, and the sin which doth so easily beset us, and let us run with patience the race that is set before us," + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1", + "version": "kjv" +} diff --git a/scripture/kjv/03/09/25/scripture.md b/scripture/kjv/03/09/25/scripture.md new file mode 100644 index 00000000..63f44939 --- /dev/null +++ b/scripture/kjv/03/09/25/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 12:1** + +1 Wherefore seeing we also are compassed about with so great a cloud of witnesses, let us lay aside every weight, and the sin which doth so easily beset us, and let us run with patience the race that is set before us, + +[Sunday 09-March, 2025](https://getbible.life/kjv/Hebrews/12/1) diff --git a/scripture/kjv/03/09/25/scripture.tg b/scripture/kjv/03/09/25/scripture.tg new file mode 100644 index 00000000..075a7be3 --- /dev/null +++ b/scripture/kjv/03/09/25/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 12:1 +1 Wherefore seeing we also are compassed about with so great a cloud of witnesses, let us lay aside every weight, and the sin which doth so easily beset us, and let us run with patience the race that is set before us, + +Sunday 09-March, 2025 diff --git a/scripture/kjv/03/09/25/scripture.tg.id b/scripture/kjv/03/09/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/09/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/09/25/scripture.today b/scripture/kjv/03/09/25/scripture.today new file mode 100644 index 00000000..e815cd03 --- /dev/null +++ b/scripture/kjv/03/09/25/scripture.today @@ -0,0 +1 @@ +58 12:1 diff --git a/scripture/kjv/03/09/26/scripture.html b/scripture/kjv/03/09/26/scripture.html new file mode 100644 index 00000000..8fa36317 --- /dev/null +++ b/scripture/kjv/03/09/26/scripture.html @@ -0,0 +1,3 @@ +John 11:6-7
+6 When he had heard therefore that he was sick, he abode two days still in the same place where he was. 7 Then after that saith he to his disciples, Let us go into Judea again.

+Monday 09-March, 2026 diff --git a/scripture/kjv/03/09/26/scripture.json b/scripture/kjv/03/09/26/scripture.json new file mode 100644 index 00000000..3ba560f3 --- /dev/null +++ b/scripture/kjv/03/09/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "John", + "chapter": "11", + "date": "Monday 09-March, 2026", + "getbible": "https://getbible.life/kjv/John/11/6-7", + "name": "John 11:6-7", + "scripture": [ + { + "nr": "6", + "text": "When he had heard therefore that he was sick, he abode two days still in the same place where he was." + }, + { + "nr": "7", + "text": "Then after that saith he to his disciples, Let us go into Judea again." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6-7", + "version": "kjv" +} diff --git a/scripture/kjv/03/09/26/scripture.md b/scripture/kjv/03/09/26/scripture.md new file mode 100644 index 00000000..ed38b55a --- /dev/null +++ b/scripture/kjv/03/09/26/scripture.md @@ -0,0 +1,5 @@ +**John 11:6-7** + +6 When he had heard therefore that he was sick, he abode two days still in the same place where he was. 7 Then after that saith he to his disciples, Let us go into Judea again. + +[Monday 09-March, 2026](https://getbible.life/kjv/John/11/6-7) diff --git a/scripture/kjv/03/09/26/scripture.tg b/scripture/kjv/03/09/26/scripture.tg new file mode 100644 index 00000000..c6341fb7 --- /dev/null +++ b/scripture/kjv/03/09/26/scripture.tg @@ -0,0 +1,4 @@ +John 11:6-7 +6 When he had heard therefore that he was sick, he abode two days still in the same place where he was. 7 Then after that saith he to his disciples, Let us go into Judea again. + +Monday 09-March, 2026 diff --git a/scripture/kjv/03/09/26/scripture.tg.id b/scripture/kjv/03/09/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/09/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/09/26/scripture.today b/scripture/kjv/03/09/26/scripture.today new file mode 100644 index 00000000..d8396249 --- /dev/null +++ b/scripture/kjv/03/09/26/scripture.today @@ -0,0 +1 @@ +43 11:6-7 diff --git a/scripture/kjv/03/10/23/scripture.html b/scripture/kjv/03/10/23/scripture.html new file mode 100644 index 00000000..9a02e98e --- /dev/null +++ b/scripture/kjv/03/10/23/scripture.html @@ -0,0 +1,3 @@ +Genesis 17:1
+1 And when Abram was ninety years old and nine, the Lord appeared to Abram, and said unto him, I am the Almighty God; walk before me, and be thou perfect.

+Friday 10-March, 2023 diff --git a/scripture/kjv/03/10/23/scripture.json b/scripture/kjv/03/10/23/scripture.json new file mode 100644 index 00000000..6fc55a4c --- /dev/null +++ b/scripture/kjv/03/10/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Friday 10-March, 2023", + "name": "Genesis 17:1", + "scripture": [ + { + "nr": "1", + "text": "And when Abram was ninety years old and nine, the Lord appeared to Abram, and said unto him, I am the Almighty God; walk before me, and be thou perfect." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/10/23/scripture.md b/scripture/kjv/03/10/23/scripture.md new file mode 100644 index 00000000..624afa76 --- /dev/null +++ b/scripture/kjv/03/10/23/scripture.md @@ -0,0 +1,5 @@ +**Genesis 17:1** + +1 And when Abram was ninety years old and nine, the Lord appeared to Abram, and said unto him, I am the Almighty God; walk before me, and be thou perfect. + +[Friday 10-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/10/23/scripture.tg b/scripture/kjv/03/10/23/scripture.tg new file mode 100644 index 00000000..308a073d --- /dev/null +++ b/scripture/kjv/03/10/23/scripture.tg @@ -0,0 +1,4 @@ +Genesis 17:1 +1 And when Abram was ninety years old and nine, the Lord appeared to Abram, and said unto him, I am the Almighty God; walk before me, and be thou perfect. + +Friday 10-March, 2023 diff --git a/scripture/kjv/03/10/23/scripture.today b/scripture/kjv/03/10/23/scripture.today new file mode 100644 index 00000000..56503ce1 --- /dev/null +++ b/scripture/kjv/03/10/23/scripture.today @@ -0,0 +1 @@ +1 17:1 diff --git a/scripture/kjv/03/10/24/scripture.html b/scripture/kjv/03/10/24/scripture.html new file mode 100644 index 00000000..dca5f7f5 --- /dev/null +++ b/scripture/kjv/03/10/24/scripture.html @@ -0,0 +1,3 @@ +Daniel 6:4
+4 Then the presidents and princes sought to find occasion against Daniel concerning the kingdom; but they could find none occasion nor fault; forasmuch as he was faithful, neither was there any error or fault found in him.

+Sunday 10-March, 2024 diff --git a/scripture/kjv/03/10/24/scripture.json b/scripture/kjv/03/10/24/scripture.json new file mode 100644 index 00000000..d34f47a0 --- /dev/null +++ b/scripture/kjv/03/10/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Daniel", + "chapter": "6", + "date": "Sunday 10-March, 2024", + "getbible": "https://getbible.life/kjv/Daniel/6/4", + "name": "Daniel 6:4", + "scripture": [ + { + "nr": "4", + "text": "Then the presidents and princes sought to find occasion against Daniel concerning the kingdom; but they could find none occasion nor fault; forasmuch as he was faithful, neither was there any error or fault found in him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4", + "version": "kjv" +} diff --git a/scripture/kjv/03/10/24/scripture.md b/scripture/kjv/03/10/24/scripture.md new file mode 100644 index 00000000..abde3076 --- /dev/null +++ b/scripture/kjv/03/10/24/scripture.md @@ -0,0 +1,5 @@ +**Daniel 6:4** + +4 Then the presidents and princes sought to find occasion against Daniel concerning the kingdom; but they could find none occasion nor fault; forasmuch as he was faithful, neither was there any error or fault found in him. + +[Sunday 10-March, 2024](https://getbible.life/kjv/Daniel/6/4) diff --git a/scripture/kjv/03/10/24/scripture.tg b/scripture/kjv/03/10/24/scripture.tg new file mode 100644 index 00000000..247d7e5a --- /dev/null +++ b/scripture/kjv/03/10/24/scripture.tg @@ -0,0 +1,4 @@ +Daniel 6:4 +4 Then the presidents and princes sought to find occasion against Daniel concerning the kingdom; but they could find none occasion nor fault; forasmuch as he was faithful, neither was there any error or fault found in him. + +Sunday 10-March, 2024 diff --git a/scripture/kjv/03/10/24/scripture.tg.id b/scripture/kjv/03/10/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/10/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/10/24/scripture.today b/scripture/kjv/03/10/24/scripture.today new file mode 100644 index 00000000..6b0a2822 --- /dev/null +++ b/scripture/kjv/03/10/24/scripture.today @@ -0,0 +1 @@ +27 6:4 diff --git a/scripture/kjv/03/10/25/scripture.html b/scripture/kjv/03/10/25/scripture.html new file mode 100644 index 00000000..a3c2503b --- /dev/null +++ b/scripture/kjv/03/10/25/scripture.html @@ -0,0 +1,3 @@ +Luke 22:52-53
+52 Then Jesus said unto the chief priests, and captains of the temple, and the elders, which were come to him, Be ye come out, as against a thief, with swords and staves? 53 When I was daily with you in the temple, ye stretched forth no hands against me: but this is your hour, and the power of darkness.

+Monday 10-March, 2025 diff --git a/scripture/kjv/03/10/25/scripture.json b/scripture/kjv/03/10/25/scripture.json new file mode 100644 index 00000000..d564e34e --- /dev/null +++ b/scripture/kjv/03/10/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Luke", + "chapter": "22", + "date": "Monday 10-March, 2025", + "getbible": "https://getbible.life/kjv/Luke/22/52-53", + "name": "Luke 22:52-53", + "scripture": [ + { + "nr": "52", + "text": "Then Jesus said unto the chief priests, and captains of the temple, and the elders, which were come to him, Be ye come out, as against a thief, with swords and staves?" + }, + { + "nr": "53", + "text": "When I was daily with you in the temple, ye stretched forth no hands against me: but this is your hour, and the power of darkness." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "52-53", + "version": "kjv" +} diff --git a/scripture/kjv/03/10/25/scripture.md b/scripture/kjv/03/10/25/scripture.md new file mode 100644 index 00000000..34a08e8d --- /dev/null +++ b/scripture/kjv/03/10/25/scripture.md @@ -0,0 +1,5 @@ +**Luke 22:52-53** + +52 Then Jesus said unto the chief priests, and captains of the temple, and the elders, which were come to him, Be ye come out, as against a thief, with swords and staves? 53 When I was daily with you in the temple, ye stretched forth no hands against me: but this is your hour, and the power of darkness. + +[Monday 10-March, 2025](https://getbible.life/kjv/Luke/22/52-53) diff --git a/scripture/kjv/03/10/25/scripture.tg b/scripture/kjv/03/10/25/scripture.tg new file mode 100644 index 00000000..ca81ddbc --- /dev/null +++ b/scripture/kjv/03/10/25/scripture.tg @@ -0,0 +1,4 @@ +Luke 22:52-53 +52 Then Jesus said unto the chief priests, and captains of the temple, and the elders, which were come to him, Be ye come out, as against a thief, with swords and staves? 53 When I was daily with you in the temple, ye stretched forth no hands against me: but this is your hour, and the power of darkness. + +Monday 10-March, 2025 diff --git a/scripture/kjv/03/10/25/scripture.tg.id b/scripture/kjv/03/10/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/10/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/10/25/scripture.today b/scripture/kjv/03/10/25/scripture.today new file mode 100644 index 00000000..5495a244 --- /dev/null +++ b/scripture/kjv/03/10/25/scripture.today @@ -0,0 +1 @@ +42 22:52-53 diff --git a/scripture/kjv/03/10/26/scripture.html b/scripture/kjv/03/10/26/scripture.html new file mode 100644 index 00000000..78238ac4 --- /dev/null +++ b/scripture/kjv/03/10/26/scripture.html @@ -0,0 +1,3 @@ +2 Thessalonians 3:13
+13 But ye, brethren, be not weary in well doing.

+Tuesday 10-March, 2026 diff --git a/scripture/kjv/03/10/26/scripture.json b/scripture/kjv/03/10/26/scripture.json new file mode 100644 index 00000000..9f1e80d6 --- /dev/null +++ b/scripture/kjv/03/10/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Thessalonians", + "chapter": "3", + "date": "Tuesday 10-March, 2026", + "getbible": "https://getbible.life/kjv/2 Thessalonians/3/13", + "name": "2 Thessalonians 3:13", + "scripture": [ + { + "nr": "13", + "text": "But ye, brethren, be not weary in well doing." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13", + "version": "kjv" +} diff --git a/scripture/kjv/03/10/26/scripture.md b/scripture/kjv/03/10/26/scripture.md new file mode 100644 index 00000000..1ed4f660 --- /dev/null +++ b/scripture/kjv/03/10/26/scripture.md @@ -0,0 +1,5 @@ +**2 Thessalonians 3:13** + +13 But ye, brethren, be not weary in well doing. + +[Tuesday 10-March, 2026](https://getbible.life/kjv/2 Thessalonians/3/13) diff --git a/scripture/kjv/03/10/26/scripture.tg b/scripture/kjv/03/10/26/scripture.tg new file mode 100644 index 00000000..f79aca0b --- /dev/null +++ b/scripture/kjv/03/10/26/scripture.tg @@ -0,0 +1,4 @@ +2 Thessalonians 3:13 +13 But ye, brethren, be not weary in well doing. + +Tuesday 10-March, 2026 diff --git a/scripture/kjv/03/10/26/scripture.tg.id b/scripture/kjv/03/10/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/10/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/10/26/scripture.today b/scripture/kjv/03/10/26/scripture.today new file mode 100644 index 00000000..b5f76c44 --- /dev/null +++ b/scripture/kjv/03/10/26/scripture.today @@ -0,0 +1 @@ +53 3:13 diff --git a/scripture/kjv/03/11/23/scripture.html b/scripture/kjv/03/11/23/scripture.html new file mode 100644 index 00000000..69b1a401 --- /dev/null +++ b/scripture/kjv/03/11/23/scripture.html @@ -0,0 +1,3 @@ +Hebrews 13:2
+2 Be not forgetful to entertain strangers: for thereby some have entertained angels unawares.

+Saturday 11-March, 2023 diff --git a/scripture/kjv/03/11/23/scripture.json b/scripture/kjv/03/11/23/scripture.json new file mode 100644 index 00000000..a3491877 --- /dev/null +++ b/scripture/kjv/03/11/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Saturday 11-March, 2023", + "name": "Hebrews 13:2", + "scripture": [ + { + "nr": "2", + "text": "Be not forgetful to entertain strangers: for thereby some have entertained angels unawares." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/11/23/scripture.md b/scripture/kjv/03/11/23/scripture.md new file mode 100644 index 00000000..fa8efdfd --- /dev/null +++ b/scripture/kjv/03/11/23/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 13:2** + +2 Be not forgetful to entertain strangers: for thereby some have entertained angels unawares. + +[Saturday 11-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/11/23/scripture.tg b/scripture/kjv/03/11/23/scripture.tg new file mode 100644 index 00000000..bcd6f1c8 --- /dev/null +++ b/scripture/kjv/03/11/23/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 13:2 +2 Be not forgetful to entertain strangers: for thereby some have entertained angels unawares. + +Saturday 11-March, 2023 diff --git a/scripture/kjv/03/11/23/scripture.today b/scripture/kjv/03/11/23/scripture.today new file mode 100644 index 00000000..dbd599d3 --- /dev/null +++ b/scripture/kjv/03/11/23/scripture.today @@ -0,0 +1 @@ +58 13:2 diff --git a/scripture/kjv/03/11/24/scripture.html b/scripture/kjv/03/11/24/scripture.html new file mode 100644 index 00000000..1eb30f46 --- /dev/null +++ b/scripture/kjv/03/11/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 16:3
+3 Commit thy works unto the Lord, and thy thoughts shall be established.

+Monday 11-March, 2024 diff --git a/scripture/kjv/03/11/24/scripture.json b/scripture/kjv/03/11/24/scripture.json new file mode 100644 index 00000000..d15bf1b9 --- /dev/null +++ b/scripture/kjv/03/11/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "16", + "date": "Monday 11-March, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/16/3", + "name": "Proverbs 16:3", + "scripture": [ + { + "nr": "3", + "text": "Commit thy works unto the Lord, and thy thoughts shall be established." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3", + "version": "kjv" +} diff --git a/scripture/kjv/03/11/24/scripture.md b/scripture/kjv/03/11/24/scripture.md new file mode 100644 index 00000000..11738fa3 --- /dev/null +++ b/scripture/kjv/03/11/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 16:3** + +3 Commit thy works unto the Lord, and thy thoughts shall be established. + +[Monday 11-March, 2024](https://getbible.life/kjv/Proverbs/16/3) diff --git a/scripture/kjv/03/11/24/scripture.tg b/scripture/kjv/03/11/24/scripture.tg new file mode 100644 index 00000000..2e920982 --- /dev/null +++ b/scripture/kjv/03/11/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 16:3 +3 Commit thy works unto the Lord, and thy thoughts shall be established. + +Monday 11-March, 2024 diff --git a/scripture/kjv/03/11/24/scripture.tg.id b/scripture/kjv/03/11/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/11/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/11/24/scripture.today b/scripture/kjv/03/11/24/scripture.today new file mode 100644 index 00000000..fa17f375 --- /dev/null +++ b/scripture/kjv/03/11/24/scripture.today @@ -0,0 +1 @@ +20 16:3 diff --git a/scripture/kjv/03/11/25/scripture.html b/scripture/kjv/03/11/25/scripture.html new file mode 100644 index 00000000..21797389 --- /dev/null +++ b/scripture/kjv/03/11/25/scripture.html @@ -0,0 +1,3 @@ +Matthew 5:6
+6 Blessed are they which do hunger and thirst after righteousness: for they shall be filled.

+Tuesday 11-March, 2025 diff --git a/scripture/kjv/03/11/25/scripture.json b/scripture/kjv/03/11/25/scripture.json new file mode 100644 index 00000000..0cedb843 --- /dev/null +++ b/scripture/kjv/03/11/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Matthew", + "chapter": "5", + "date": "Tuesday 11-March, 2025", + "getbible": "https://getbible.life/kjv/Matthew/5/6", + "name": "Matthew 5:6", + "scripture": [ + { + "nr": "6", + "text": "Blessed are they which do hunger and thirst after righteousness: for they shall be filled." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6", + "version": "kjv" +} diff --git a/scripture/kjv/03/11/25/scripture.md b/scripture/kjv/03/11/25/scripture.md new file mode 100644 index 00000000..50697274 --- /dev/null +++ b/scripture/kjv/03/11/25/scripture.md @@ -0,0 +1,5 @@ +**Matthew 5:6** + +6 Blessed are they which do hunger and thirst after righteousness: for they shall be filled. + +[Tuesday 11-March, 2025](https://getbible.life/kjv/Matthew/5/6) diff --git a/scripture/kjv/03/11/25/scripture.tg b/scripture/kjv/03/11/25/scripture.tg new file mode 100644 index 00000000..720f4d3a --- /dev/null +++ b/scripture/kjv/03/11/25/scripture.tg @@ -0,0 +1,4 @@ +Matthew 5:6 +6 Blessed are they which do hunger and thirst after righteousness: for they shall be filled. + +Tuesday 11-March, 2025 diff --git a/scripture/kjv/03/11/25/scripture.tg.id b/scripture/kjv/03/11/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/11/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/11/25/scripture.today b/scripture/kjv/03/11/25/scripture.today new file mode 100644 index 00000000..7165a004 --- /dev/null +++ b/scripture/kjv/03/11/25/scripture.today @@ -0,0 +1 @@ +40 5:6 diff --git a/scripture/kjv/03/11/26/scripture.html b/scripture/kjv/03/11/26/scripture.html new file mode 100644 index 00000000..ee30c846 --- /dev/null +++ b/scripture/kjv/03/11/26/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 37:7-10
+7 So I prophesied as I was commanded: and as I prophesied, there was a noise, and behold a shaking, and the bones came together, bone to his bone. 8 And when I beheld, lo, the sinews and the flesh came up upon them, and the skin covered them above: but there was no breath in them. 9 Then said he unto me, Prophesy unto the wind, prophesy, son of man, and say to the wind, Thus saith the Lord God; Come from the four winds, O breath, and breathe upon these slain, that they may live. 10 So I prophesied as he commanded me, and the breath came into them, and they lived, and stood up upon their feet, an exceeding great army.

+Wednesday 11-March, 2026 diff --git a/scripture/kjv/03/11/26/scripture.json b/scripture/kjv/03/11/26/scripture.json new file mode 100644 index 00000000..ff4c41d6 --- /dev/null +++ b/scripture/kjv/03/11/26/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "Ezekiel", + "chapter": "37", + "date": "Wednesday 11-March, 2026", + "getbible": "https://getbible.life/kjv/Ezekiel/37/7-10", + "name": "Ezekiel 37:7-10", + "scripture": [ + { + "nr": "7", + "text": "So I prophesied as I was commanded: and as I prophesied, there was a noise, and behold a shaking, and the bones came together, bone to his bone." + }, + { + "nr": "8", + "text": "And when I beheld, lo, the sinews and the flesh came up upon them, and the skin covered them above: but there was no breath in them." + }, + { + "nr": "9", + "text": "Then said he unto me, Prophesy unto the wind, prophesy, son of man, and say to the wind, Thus saith the Lord God; Come from the four winds, O breath, and breathe upon these slain, that they may live." + }, + { + "nr": "10", + "text": "So I prophesied as he commanded me, and the breath came into them, and they lived, and stood up upon their feet, an exceeding great army." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7-10", + "version": "kjv" +} diff --git a/scripture/kjv/03/11/26/scripture.md b/scripture/kjv/03/11/26/scripture.md new file mode 100644 index 00000000..632aa5ec --- /dev/null +++ b/scripture/kjv/03/11/26/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 37:7-10** + +7 So I prophesied as I was commanded: and as I prophesied, there was a noise, and behold a shaking, and the bones came together, bone to his bone. 8 And when I beheld, lo, the sinews and the flesh came up upon them, and the skin covered them above: but there was no breath in them. 9 Then said he unto me, Prophesy unto the wind, prophesy, son of man, and say to the wind, Thus saith the Lord God; Come from the four winds, O breath, and breathe upon these slain, that they may live. 10 So I prophesied as he commanded me, and the breath came into them, and they lived, and stood up upon their feet, an exceeding great army. + +[Wednesday 11-March, 2026](https://getbible.life/kjv/Ezekiel/37/7-10) diff --git a/scripture/kjv/03/11/26/scripture.tg b/scripture/kjv/03/11/26/scripture.tg new file mode 100644 index 00000000..652b2a4b --- /dev/null +++ b/scripture/kjv/03/11/26/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 37:7-10 +7 So I prophesied as I was commanded: and as I prophesied, there was a noise, and behold a shaking, and the bones came together, bone to his bone. 8 And when I beheld, lo, the sinews and the flesh came up upon them, and the skin covered them above: but there was no breath in them. 9 Then said he unto me, Prophesy unto the wind, prophesy, son of man, and say to the wind, Thus saith the Lord God; Come from the four winds, O breath, and breathe upon these slain, that they may live. 10 So I prophesied as he commanded me, and the breath came into them, and they lived, and stood up upon their feet, an exceeding great army. + +Wednesday 11-March, 2026 diff --git a/scripture/kjv/03/11/26/scripture.tg.id b/scripture/kjv/03/11/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/11/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/11/26/scripture.today b/scripture/kjv/03/11/26/scripture.today new file mode 100644 index 00000000..1843a273 --- /dev/null +++ b/scripture/kjv/03/11/26/scripture.today @@ -0,0 +1 @@ +26 37:7-10 diff --git a/scripture/kjv/03/12/23/scripture.html b/scripture/kjv/03/12/23/scripture.html new file mode 100644 index 00000000..fae79250 --- /dev/null +++ b/scripture/kjv/03/12/23/scripture.html @@ -0,0 +1,3 @@ +Romans 3:23-24
+23 For all have sinned, and come short of the glory of God; 24 Being justified freely by his grace through the redemption that is in Christ Jesus:

+Sunday 12-March, 2023 diff --git a/scripture/kjv/03/12/23/scripture.json b/scripture/kjv/03/12/23/scripture.json new file mode 100644 index 00000000..14e3f5f9 --- /dev/null +++ b/scripture/kjv/03/12/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Sunday 12-March, 2023", + "name": "Romans 3:23-24", + "scripture": [ + { + "nr": "23", + "text": "For all have sinned, and come short of the glory of God;" + }, + { + "nr": "24", + "text": "Being justified freely by his grace through the redemption that is in Christ Jesus:" + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/12/23/scripture.md b/scripture/kjv/03/12/23/scripture.md new file mode 100644 index 00000000..bf5f94d0 --- /dev/null +++ b/scripture/kjv/03/12/23/scripture.md @@ -0,0 +1,5 @@ +**Romans 3:23-24** + +23 For all have sinned, and come short of the glory of God; 24 Being justified freely by his grace through the redemption that is in Christ Jesus: + +[Sunday 12-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/12/23/scripture.tg b/scripture/kjv/03/12/23/scripture.tg new file mode 100644 index 00000000..fb364221 --- /dev/null +++ b/scripture/kjv/03/12/23/scripture.tg @@ -0,0 +1,4 @@ +Romans 3:23-24 +23 For all have sinned, and come short of the glory of God; 24 Being justified freely by his grace through the redemption that is in Christ Jesus: + +Sunday 12-March, 2023 diff --git a/scripture/kjv/03/12/23/scripture.today b/scripture/kjv/03/12/23/scripture.today new file mode 100644 index 00000000..c903de1f --- /dev/null +++ b/scripture/kjv/03/12/23/scripture.today @@ -0,0 +1 @@ +45 3:23-24 diff --git a/scripture/kjv/03/12/24/scripture.html b/scripture/kjv/03/12/24/scripture.html new file mode 100644 index 00000000..d4e6af8c --- /dev/null +++ b/scripture/kjv/03/12/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 119:25-28
+25 My soul cleaveth unto the dust: quicken thou me according to thy word. 26 I have declared my ways, and thou heardest me: teach me thy statutes. 27 Make me to understand the way of thy precepts: so shall I talk of thy wondrous works. 28 My soul melteth for heaviness: strengthen thou me according unto thy word.

+Tuesday 12-March, 2024 diff --git a/scripture/kjv/03/12/24/scripture.json b/scripture/kjv/03/12/24/scripture.json new file mode 100644 index 00000000..78cc1fee --- /dev/null +++ b/scripture/kjv/03/12/24/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "Psalms", + "chapter": "119", + "date": "Tuesday 12-March, 2024", + "getbible": "https://getbible.life/kjv/Psalms/119/25-28", + "name": "Psalms 119:25-28", + "scripture": [ + { + "nr": "25", + "text": " My soul cleaveth unto the dust: quicken thou me according to thy word." + }, + { + "nr": "26", + "text": "I have declared my ways, and thou heardest me: teach me thy statutes." + }, + { + "nr": "27", + "text": "Make me to understand the way of thy precepts: so shall I talk of thy wondrous works." + }, + { + "nr": "28", + "text": "My soul melteth for heaviness: strengthen thou me according unto thy word." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "25-28", + "version": "kjv" +} diff --git a/scripture/kjv/03/12/24/scripture.md b/scripture/kjv/03/12/24/scripture.md new file mode 100644 index 00000000..f4ef2941 --- /dev/null +++ b/scripture/kjv/03/12/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 119:25-28** + +25 My soul cleaveth unto the dust: quicken thou me according to thy word. 26 I have declared my ways, and thou heardest me: teach me thy statutes. 27 Make me to understand the way of thy precepts: so shall I talk of thy wondrous works. 28 My soul melteth for heaviness: strengthen thou me according unto thy word. + +[Tuesday 12-March, 2024](https://getbible.life/kjv/Psalms/119/25-28) diff --git a/scripture/kjv/03/12/24/scripture.tg b/scripture/kjv/03/12/24/scripture.tg new file mode 100644 index 00000000..554484e8 --- /dev/null +++ b/scripture/kjv/03/12/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 119:25-28 +25 My soul cleaveth unto the dust: quicken thou me according to thy word. 26 I have declared my ways, and thou heardest me: teach me thy statutes. 27 Make me to understand the way of thy precepts: so shall I talk of thy wondrous works. 28 My soul melteth for heaviness: strengthen thou me according unto thy word. + +Tuesday 12-March, 2024 diff --git a/scripture/kjv/03/12/24/scripture.tg.id b/scripture/kjv/03/12/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/12/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/12/24/scripture.today b/scripture/kjv/03/12/24/scripture.today new file mode 100644 index 00000000..cfd4cf6b --- /dev/null +++ b/scripture/kjv/03/12/24/scripture.today @@ -0,0 +1 @@ +19 119:25-28 diff --git a/scripture/kjv/03/12/25/scripture.html b/scripture/kjv/03/12/25/scripture.html new file mode 100644 index 00000000..56578a77 --- /dev/null +++ b/scripture/kjv/03/12/25/scripture.html @@ -0,0 +1,3 @@ +Acts 9:35
+35 And all that dwelt at Lydda and Saron saw him, and turned to the Lord.

+Wednesday 12-March, 2025 diff --git a/scripture/kjv/03/12/25/scripture.json b/scripture/kjv/03/12/25/scripture.json new file mode 100644 index 00000000..07cebdbb --- /dev/null +++ b/scripture/kjv/03/12/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Acts", + "chapter": "9", + "date": "Wednesday 12-March, 2025", + "getbible": "https://getbible.life/kjv/Acts/9/35", + "name": "Acts 9:35", + "scripture": [ + { + "nr": "35", + "text": "And all that dwelt at Lydda and Saron saw him, and turned to the Lord." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "35", + "version": "kjv" +} diff --git a/scripture/kjv/03/12/25/scripture.md b/scripture/kjv/03/12/25/scripture.md new file mode 100644 index 00000000..67e0cb6f --- /dev/null +++ b/scripture/kjv/03/12/25/scripture.md @@ -0,0 +1,5 @@ +**Acts 9:35** + +35 And all that dwelt at Lydda and Saron saw him, and turned to the Lord. + +[Wednesday 12-March, 2025](https://getbible.life/kjv/Acts/9/35) diff --git a/scripture/kjv/03/12/25/scripture.tg b/scripture/kjv/03/12/25/scripture.tg new file mode 100644 index 00000000..3667b639 --- /dev/null +++ b/scripture/kjv/03/12/25/scripture.tg @@ -0,0 +1,4 @@ +Acts 9:35 +35 And all that dwelt at Lydda and Saron saw him, and turned to the Lord. + +Wednesday 12-March, 2025 diff --git a/scripture/kjv/03/12/25/scripture.tg.id b/scripture/kjv/03/12/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/12/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/12/25/scripture.today b/scripture/kjv/03/12/25/scripture.today new file mode 100644 index 00000000..1839b2ac --- /dev/null +++ b/scripture/kjv/03/12/25/scripture.today @@ -0,0 +1 @@ +44 9:35 diff --git a/scripture/kjv/03/12/26/scripture.html b/scripture/kjv/03/12/26/scripture.html new file mode 100644 index 00000000..e2f251e9 --- /dev/null +++ b/scripture/kjv/03/12/26/scripture.html @@ -0,0 +1,3 @@ +Romans 9:27
+27 Esaias also crieth concerning Israel, Though the number of the children of Israel be as the sand of the sea, a remnant shall be saved:

+Thursday 12-March, 2026 diff --git a/scripture/kjv/03/12/26/scripture.json b/scripture/kjv/03/12/26/scripture.json new file mode 100644 index 00000000..b26c3ce9 --- /dev/null +++ b/scripture/kjv/03/12/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Romans", + "chapter": "9", + "date": "Thursday 12-March, 2026", + "getbible": "https://getbible.life/kjv/Romans/9/27", + "name": "Romans 9:27", + "scripture": [ + { + "nr": "27", + "text": "Esaias also crieth concerning Israel, Though the number of the children of Israel be as the sand of the sea, a remnant shall be saved:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "27", + "version": "kjv" +} diff --git a/scripture/kjv/03/12/26/scripture.md b/scripture/kjv/03/12/26/scripture.md new file mode 100644 index 00000000..1d48758e --- /dev/null +++ b/scripture/kjv/03/12/26/scripture.md @@ -0,0 +1,5 @@ +**Romans 9:27** + +27 Esaias also crieth concerning Israel, Though the number of the children of Israel be as the sand of the sea, a remnant shall be saved: + +[Thursday 12-March, 2026](https://getbible.life/kjv/Romans/9/27) diff --git a/scripture/kjv/03/12/26/scripture.tg b/scripture/kjv/03/12/26/scripture.tg new file mode 100644 index 00000000..56b5534e --- /dev/null +++ b/scripture/kjv/03/12/26/scripture.tg @@ -0,0 +1,4 @@ +Romans 9:27 +27 Esaias also crieth concerning Israel, Though the number of the children of Israel be as the sand of the sea, a remnant shall be saved: + +Thursday 12-March, 2026 diff --git a/scripture/kjv/03/12/26/scripture.tg.id b/scripture/kjv/03/12/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/12/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/12/26/scripture.today b/scripture/kjv/03/12/26/scripture.today new file mode 100644 index 00000000..281fae08 --- /dev/null +++ b/scripture/kjv/03/12/26/scripture.today @@ -0,0 +1 @@ +45 9:27 diff --git a/scripture/kjv/03/13/23/scripture.html b/scripture/kjv/03/13/23/scripture.html new file mode 100644 index 00000000..a7ed3113 --- /dev/null +++ b/scripture/kjv/03/13/23/scripture.html @@ -0,0 +1,3 @@ +Isaiah 32:8
+8 But the liberal deviseth liberal things; and by liberal things shall he stand.

+Monday 13-March, 2023 diff --git a/scripture/kjv/03/13/23/scripture.json b/scripture/kjv/03/13/23/scripture.json new file mode 100644 index 00000000..182235e4 --- /dev/null +++ b/scripture/kjv/03/13/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Monday 13-March, 2023", + "name": "Isaiah 32:8", + "scripture": [ + { + "nr": "8", + "text": "But the liberal deviseth liberal things; and by liberal things shall he stand." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/13/23/scripture.md b/scripture/kjv/03/13/23/scripture.md new file mode 100644 index 00000000..beed7271 --- /dev/null +++ b/scripture/kjv/03/13/23/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 32:8** + +8 But the liberal deviseth liberal things; and by liberal things shall he stand. + +[Monday 13-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/13/23/scripture.tg b/scripture/kjv/03/13/23/scripture.tg new file mode 100644 index 00000000..89a7f00a --- /dev/null +++ b/scripture/kjv/03/13/23/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 32:8 +8 But the liberal deviseth liberal things; and by liberal things shall he stand. + +Monday 13-March, 2023 diff --git a/scripture/kjv/03/13/23/scripture.today b/scripture/kjv/03/13/23/scripture.today new file mode 100644 index 00000000..de925b48 --- /dev/null +++ b/scripture/kjv/03/13/23/scripture.today @@ -0,0 +1 @@ +23 32:8 diff --git a/scripture/kjv/03/13/24/scripture.html b/scripture/kjv/03/13/24/scripture.html new file mode 100644 index 00000000..0041e370 --- /dev/null +++ b/scripture/kjv/03/13/24/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 8:8
+8 I speak not by commandment, but by occasion of the forwardness of others, and to prove the sincerity of your love.

+Wednesday 13-March, 2024 diff --git a/scripture/kjv/03/13/24/scripture.json b/scripture/kjv/03/13/24/scripture.json new file mode 100644 index 00000000..9a8fc347 --- /dev/null +++ b/scripture/kjv/03/13/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "8", + "date": "Wednesday 13-March, 2024", + "getbible": "https://getbible.life/kjv/2 Corinthians/8/8", + "name": "2 Corinthians 8:8", + "scripture": [ + { + "nr": "8", + "text": "I speak not by commandment, but by occasion of the forwardness of others, and to prove the sincerity of your love." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8", + "version": "kjv" +} diff --git a/scripture/kjv/03/13/24/scripture.md b/scripture/kjv/03/13/24/scripture.md new file mode 100644 index 00000000..eac1e7a7 --- /dev/null +++ b/scripture/kjv/03/13/24/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 8:8** + +8 I speak not by commandment, but by occasion of the forwardness of others, and to prove the sincerity of your love. + +[Wednesday 13-March, 2024](https://getbible.life/kjv/2 Corinthians/8/8) diff --git a/scripture/kjv/03/13/24/scripture.tg b/scripture/kjv/03/13/24/scripture.tg new file mode 100644 index 00000000..6f044138 --- /dev/null +++ b/scripture/kjv/03/13/24/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 8:8 +8 I speak not by commandment, but by occasion of the forwardness of others, and to prove the sincerity of your love. + +Wednesday 13-March, 2024 diff --git a/scripture/kjv/03/13/24/scripture.tg.id b/scripture/kjv/03/13/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/13/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/13/24/scripture.today b/scripture/kjv/03/13/24/scripture.today new file mode 100644 index 00000000..a45e1a8f --- /dev/null +++ b/scripture/kjv/03/13/24/scripture.today @@ -0,0 +1 @@ +47 8:8 diff --git a/scripture/kjv/03/13/25/scripture.html b/scripture/kjv/03/13/25/scripture.html new file mode 100644 index 00000000..5b077e6a --- /dev/null +++ b/scripture/kjv/03/13/25/scripture.html @@ -0,0 +1,3 @@ +Hosea 7:8-9
+8 Ephraim, he hath mixed himself among the people; Ephraim is a cake not turned. 9 Strangers have devoured his strength, and he knoweth it not: yea, gray hairs are here and there upon him, yet he knoweth not.

+Thursday 13-March, 2025 diff --git a/scripture/kjv/03/13/25/scripture.json b/scripture/kjv/03/13/25/scripture.json new file mode 100644 index 00000000..33a6c418 --- /dev/null +++ b/scripture/kjv/03/13/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Hosea", + "chapter": "7", + "date": "Thursday 13-March, 2025", + "getbible": "https://getbible.life/kjv/Hosea/7/8-9", + "name": "Hosea 7:8-9", + "scripture": [ + { + "nr": "8", + "text": "Ephraim, he hath mixed himself among the people; Ephraim is a cake not turned." + }, + { + "nr": "9", + "text": "Strangers have devoured his strength, and he knoweth it not: yea, gray hairs are here and there upon him, yet he knoweth not." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8-9", + "version": "kjv" +} diff --git a/scripture/kjv/03/13/25/scripture.md b/scripture/kjv/03/13/25/scripture.md new file mode 100644 index 00000000..93a829ef --- /dev/null +++ b/scripture/kjv/03/13/25/scripture.md @@ -0,0 +1,5 @@ +**Hosea 7:8-9** + +8 Ephraim, he hath mixed himself among the people; Ephraim is a cake not turned. 9 Strangers have devoured his strength, and he knoweth it not: yea, gray hairs are here and there upon him, yet he knoweth not. + +[Thursday 13-March, 2025](https://getbible.life/kjv/Hosea/7/8-9) diff --git a/scripture/kjv/03/13/25/scripture.tg b/scripture/kjv/03/13/25/scripture.tg new file mode 100644 index 00000000..a5e06c33 --- /dev/null +++ b/scripture/kjv/03/13/25/scripture.tg @@ -0,0 +1,4 @@ +Hosea 7:8-9 +8 Ephraim, he hath mixed himself among the people; Ephraim is a cake not turned. 9 Strangers have devoured his strength, and he knoweth it not: yea, gray hairs are here and there upon him, yet he knoweth not. + +Thursday 13-March, 2025 diff --git a/scripture/kjv/03/13/25/scripture.tg.id b/scripture/kjv/03/13/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/13/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/13/25/scripture.today b/scripture/kjv/03/13/25/scripture.today new file mode 100644 index 00000000..1bb73191 --- /dev/null +++ b/scripture/kjv/03/13/25/scripture.today @@ -0,0 +1 @@ +28 7:8-9 diff --git a/scripture/kjv/03/13/26/scripture.html b/scripture/kjv/03/13/26/scripture.html new file mode 100644 index 00000000..54e4b2e7 --- /dev/null +++ b/scripture/kjv/03/13/26/scripture.html @@ -0,0 +1,3 @@ +Philippians 2:1-2
+1 If there be therefore any consolation in Christ, if any comfort of love, if any fellowship of the Spirit, if any bowels and mercies, 2 Fulfil ye my joy, that ye be likeminded, having the same love, being of one accord, of one mind.

+Friday 13-March, 2026 diff --git a/scripture/kjv/03/13/26/scripture.json b/scripture/kjv/03/13/26/scripture.json new file mode 100644 index 00000000..541530c8 --- /dev/null +++ b/scripture/kjv/03/13/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Philippians", + "chapter": "2", + "date": "Friday 13-March, 2026", + "getbible": "https://getbible.life/kjv/Philippians/2/1-2", + "name": "Philippians 2:1-2", + "scripture": [ + { + "nr": "1", + "text": "If there be therefore any consolation in Christ, if any comfort of love, if any fellowship of the Spirit, if any bowels and mercies," + }, + { + "nr": "2", + "text": "Fulfil ye my joy, that ye be likeminded, having the same love, being of one accord, of one mind." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-2", + "version": "kjv" +} diff --git a/scripture/kjv/03/13/26/scripture.md b/scripture/kjv/03/13/26/scripture.md new file mode 100644 index 00000000..086013f8 --- /dev/null +++ b/scripture/kjv/03/13/26/scripture.md @@ -0,0 +1,5 @@ +**Philippians 2:1-2** + +1 If there be therefore any consolation in Christ, if any comfort of love, if any fellowship of the Spirit, if any bowels and mercies, 2 Fulfil ye my joy, that ye be likeminded, having the same love, being of one accord, of one mind. + +[Friday 13-March, 2026](https://getbible.life/kjv/Philippians/2/1-2) diff --git a/scripture/kjv/03/13/26/scripture.tg b/scripture/kjv/03/13/26/scripture.tg new file mode 100644 index 00000000..7ee65824 --- /dev/null +++ b/scripture/kjv/03/13/26/scripture.tg @@ -0,0 +1,4 @@ +Philippians 2:1-2 +1 If there be therefore any consolation in Christ, if any comfort of love, if any fellowship of the Spirit, if any bowels and mercies, 2 Fulfil ye my joy, that ye be likeminded, having the same love, being of one accord, of one mind. + +Friday 13-March, 2026 diff --git a/scripture/kjv/03/13/26/scripture.today b/scripture/kjv/03/13/26/scripture.today new file mode 100644 index 00000000..1a8894f6 --- /dev/null +++ b/scripture/kjv/03/13/26/scripture.today @@ -0,0 +1 @@ +50 2:1-2 diff --git a/scripture/kjv/03/14/23/scripture.html b/scripture/kjv/03/14/23/scripture.html new file mode 100644 index 00000000..03f8a5de --- /dev/null +++ b/scripture/kjv/03/14/23/scripture.html @@ -0,0 +1,3 @@ +Matthew 23:23-24
+23 Woe unto you, scribes and Pharisees, hypocrites! for ye pay tithe of mint and anise and cummin, and have omitted the weightier matters of the law, judgment, mercy, and faith: these ought ye to have done, and not to leave the other undone. 24 Ye blind guides, which strain at a gnat, and swallow a camel.

+Tuesday 14-March, 2023 diff --git a/scripture/kjv/03/14/23/scripture.json b/scripture/kjv/03/14/23/scripture.json new file mode 100644 index 00000000..a15b6417 --- /dev/null +++ b/scripture/kjv/03/14/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Tuesday 14-March, 2023", + "name": "Matthew 23:23-24", + "scripture": [ + { + "nr": "23", + "text": "Woe unto you, scribes and Pharisees, hypocrites! for ye pay tithe of mint and anise and cummin, and have omitted the weightier matters of the law, judgment, mercy, and faith: these ought ye to have done, and not to leave the other undone." + }, + { + "nr": "24", + "text": "Ye blind guides, which strain at a gnat, and swallow a camel." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/14/23/scripture.md b/scripture/kjv/03/14/23/scripture.md new file mode 100644 index 00000000..32195949 --- /dev/null +++ b/scripture/kjv/03/14/23/scripture.md @@ -0,0 +1,5 @@ +**Matthew 23:23-24** + +23 Woe unto you, scribes and Pharisees, hypocrites! for ye pay tithe of mint and anise and cummin, and have omitted the weightier matters of the law, judgment, mercy, and faith: these ought ye to have done, and not to leave the other undone. 24 Ye blind guides, which strain at a gnat, and swallow a camel. + +[Tuesday 14-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/14/23/scripture.tg b/scripture/kjv/03/14/23/scripture.tg new file mode 100644 index 00000000..6e5aae4d --- /dev/null +++ b/scripture/kjv/03/14/23/scripture.tg @@ -0,0 +1,4 @@ +Matthew 23:23-24 +23 Woe unto you, scribes and Pharisees, hypocrites! for ye pay tithe of mint and anise and cummin, and have omitted the weightier matters of the law, judgment, mercy, and faith: these ought ye to have done, and not to leave the other undone. 24 Ye blind guides, which strain at a gnat, and swallow a camel. + +Tuesday 14-March, 2023 diff --git a/scripture/kjv/03/14/23/scripture.today b/scripture/kjv/03/14/23/scripture.today new file mode 100644 index 00000000..41d0a3a2 --- /dev/null +++ b/scripture/kjv/03/14/23/scripture.today @@ -0,0 +1 @@ +40 23:23-24 diff --git a/scripture/kjv/03/14/24/scripture.html b/scripture/kjv/03/14/24/scripture.html new file mode 100644 index 00000000..56bd735a --- /dev/null +++ b/scripture/kjv/03/14/24/scripture.html @@ -0,0 +1,3 @@ +1 Thessalonians 3:12-13
+12 And the Lord make you to increase and abound in love one toward another, and toward all men, even as we do toward you: 13 To the end he may stablish your hearts unblameable in holiness before God, even our Father, at the coming of our Lord Jesus Christ with all his saints.

+Thursday 14-March, 2024 diff --git a/scripture/kjv/03/14/24/scripture.json b/scripture/kjv/03/14/24/scripture.json new file mode 100644 index 00000000..a7e7fa63 --- /dev/null +++ b/scripture/kjv/03/14/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "1 Thessalonians", + "chapter": "3", + "date": "Thursday 14-March, 2024", + "getbible": "https://getbible.life/kjv/1 Thessalonians/3/12-13", + "name": "1 Thessalonians 3:12-13", + "scripture": [ + { + "nr": "12", + "text": "And the Lord make you to increase and abound in love one toward another, and toward all men, even as we do toward you:" + }, + { + "nr": "13", + "text": "To the end he may stablish your hearts unblameable in holiness before God, even our Father, at the coming of our Lord Jesus Christ with all his saints. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12-13", + "version": "kjv" +} diff --git a/scripture/kjv/03/14/24/scripture.md b/scripture/kjv/03/14/24/scripture.md new file mode 100644 index 00000000..0bfc26f0 --- /dev/null +++ b/scripture/kjv/03/14/24/scripture.md @@ -0,0 +1,5 @@ +**1 Thessalonians 3:12-13** + +12 And the Lord make you to increase and abound in love one toward another, and toward all men, even as we do toward you: 13 To the end he may stablish your hearts unblameable in holiness before God, even our Father, at the coming of our Lord Jesus Christ with all his saints. + +[Thursday 14-March, 2024](https://getbible.life/kjv/1 Thessalonians/3/12-13) diff --git a/scripture/kjv/03/14/24/scripture.tg b/scripture/kjv/03/14/24/scripture.tg new file mode 100644 index 00000000..86ba2877 --- /dev/null +++ b/scripture/kjv/03/14/24/scripture.tg @@ -0,0 +1,4 @@ +1 Thessalonians 3:12-13 +12 And the Lord make you to increase and abound in love one toward another, and toward all men, even as we do toward you: 13 To the end he may stablish your hearts unblameable in holiness before God, even our Father, at the coming of our Lord Jesus Christ with all his saints. + +Thursday 14-March, 2024 diff --git a/scripture/kjv/03/14/24/scripture.tg.id b/scripture/kjv/03/14/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/14/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/14/24/scripture.today b/scripture/kjv/03/14/24/scripture.today new file mode 100644 index 00000000..c5d4693d --- /dev/null +++ b/scripture/kjv/03/14/24/scripture.today @@ -0,0 +1 @@ +52 3:12-13 diff --git a/scripture/kjv/03/14/25/scripture.html b/scripture/kjv/03/14/25/scripture.html new file mode 100644 index 00000000..7835b3a4 --- /dev/null +++ b/scripture/kjv/03/14/25/scripture.html @@ -0,0 +1,3 @@ +Isaiah 1:18-20
+18 Come now, and let us reason together, saith the Lord: though your sins be as scarlet, they shall be as white as snow; though they be red like crimson, they shall be as wool. 19 If ye be willing and obedient, ye shall eat the good of the land: 20 But if ye refuse and rebel, ye shall be devoured with the sword: for the mouth of the Lord hath spoken it.

+Friday 14-March, 2025 diff --git a/scripture/kjv/03/14/25/scripture.json b/scripture/kjv/03/14/25/scripture.json new file mode 100644 index 00000000..a5e36e7e --- /dev/null +++ b/scripture/kjv/03/14/25/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Isaiah", + "chapter": "1", + "date": "Friday 14-March, 2025", + "getbible": "https://getbible.life/kjv/Isaiah/1/18-20", + "name": "Isaiah 1:18-20", + "scripture": [ + { + "nr": "18", + "text": "Come now, and let us reason together, saith the Lord: though your sins be as scarlet, they shall be as white as snow; though they be red like crimson, they shall be as wool." + }, + { + "nr": "19", + "text": "If ye be willing and obedient, ye shall eat the good of the land:" + }, + { + "nr": "20", + "text": "But if ye refuse and rebel, ye shall be devoured with the sword: for the mouth of the Lord hath spoken it." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18-20", + "version": "kjv" +} diff --git a/scripture/kjv/03/14/25/scripture.md b/scripture/kjv/03/14/25/scripture.md new file mode 100644 index 00000000..1bf98040 --- /dev/null +++ b/scripture/kjv/03/14/25/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 1:18-20** + +18 Come now, and let us reason together, saith the Lord: though your sins be as scarlet, they shall be as white as snow; though they be red like crimson, they shall be as wool. 19 If ye be willing and obedient, ye shall eat the good of the land: 20 But if ye refuse and rebel, ye shall be devoured with the sword: for the mouth of the Lord hath spoken it. + +[Friday 14-March, 2025](https://getbible.life/kjv/Isaiah/1/18-20) diff --git a/scripture/kjv/03/14/25/scripture.tg b/scripture/kjv/03/14/25/scripture.tg new file mode 100644 index 00000000..a7641c9d --- /dev/null +++ b/scripture/kjv/03/14/25/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 1:18-20 +18 Come now, and let us reason together, saith the Lord: though your sins be as scarlet, they shall be as white as snow; though they be red like crimson, they shall be as wool. 19 If ye be willing and obedient, ye shall eat the good of the land: 20 But if ye refuse and rebel, ye shall be devoured with the sword: for the mouth of the Lord hath spoken it. + +Friday 14-March, 2025 diff --git a/scripture/kjv/03/14/25/scripture.tg.id b/scripture/kjv/03/14/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/14/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/14/25/scripture.today b/scripture/kjv/03/14/25/scripture.today new file mode 100644 index 00000000..876df7c1 --- /dev/null +++ b/scripture/kjv/03/14/25/scripture.today @@ -0,0 +1 @@ +23 1:18-20 diff --git a/scripture/kjv/03/14/26/scripture.html b/scripture/kjv/03/14/26/scripture.html new file mode 100644 index 00000000..db4b64a3 --- /dev/null +++ b/scripture/kjv/03/14/26/scripture.html @@ -0,0 +1,3 @@ +Hebrews 11:24-26
+24 By faith Moses, when he was come to years, refused to be called the son of Pharaoh’s daughter; 25 Choosing rather to suffer affliction with the people of God, than to enjoy the pleasures of sin for a season; 26 Esteeming the reproach of Christ greater riches than the treasures in Egypt: for he had respect unto the recompence of the reward.

+Saturday 14-March, 2026 diff --git a/scripture/kjv/03/14/26/scripture.json b/scripture/kjv/03/14/26/scripture.json new file mode 100644 index 00000000..fe26cc6d --- /dev/null +++ b/scripture/kjv/03/14/26/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Hebrews", + "chapter": "11", + "date": "Saturday 14-March, 2026", + "getbible": "https://getbible.life/kjv/Hebrews/11/24-26", + "name": "Hebrews 11:24-26", + "scripture": [ + { + "nr": "24", + "text": "By faith Moses, when he was come to years, refused to be called the son of Pharaoh’s daughter;" + }, + { + "nr": "25", + "text": "Choosing rather to suffer affliction with the people of God, than to enjoy the pleasures of sin for a season;" + }, + { + "nr": "26", + "text": "Esteeming the reproach of Christ greater riches than the treasures in Egypt: for he had respect unto the recompence of the reward." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "24-26", + "version": "kjv" +} diff --git a/scripture/kjv/03/14/26/scripture.md b/scripture/kjv/03/14/26/scripture.md new file mode 100644 index 00000000..a4346f06 --- /dev/null +++ b/scripture/kjv/03/14/26/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 11:24-26** + +24 By faith Moses, when he was come to years, refused to be called the son of Pharaoh’s daughter; 25 Choosing rather to suffer affliction with the people of God, than to enjoy the pleasures of sin for a season; 26 Esteeming the reproach of Christ greater riches than the treasures in Egypt: for he had respect unto the recompence of the reward. + +[Saturday 14-March, 2026](https://getbible.life/kjv/Hebrews/11/24-26) diff --git a/scripture/kjv/03/14/26/scripture.tg b/scripture/kjv/03/14/26/scripture.tg new file mode 100644 index 00000000..6872e443 --- /dev/null +++ b/scripture/kjv/03/14/26/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 11:24-26 +24 By faith Moses, when he was come to years, refused to be called the son of Pharaoh’s daughter; 25 Choosing rather to suffer affliction with the people of God, than to enjoy the pleasures of sin for a season; 26 Esteeming the reproach of Christ greater riches than the treasures in Egypt: for he had respect unto the recompence of the reward. + +Saturday 14-March, 2026 diff --git a/scripture/kjv/03/14/26/scripture.tg.id b/scripture/kjv/03/14/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/14/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/14/26/scripture.today b/scripture/kjv/03/14/26/scripture.today new file mode 100644 index 00000000..496bc08e --- /dev/null +++ b/scripture/kjv/03/14/26/scripture.today @@ -0,0 +1 @@ +58 11:24-26 diff --git a/scripture/kjv/03/15/23/scripture.html b/scripture/kjv/03/15/23/scripture.html new file mode 100644 index 00000000..391b5057 --- /dev/null +++ b/scripture/kjv/03/15/23/scripture.html @@ -0,0 +1,3 @@ +Colossians 3:2
+2 Set your affection on things above, not on things on the earth.

+Wednesday 15-March, 2023 diff --git a/scripture/kjv/03/15/23/scripture.json b/scripture/kjv/03/15/23/scripture.json new file mode 100644 index 00000000..b0427395 --- /dev/null +++ b/scripture/kjv/03/15/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Wednesday 15-March, 2023", + "name": "Colossians 3:2", + "scripture": [ + { + "nr": "2", + "text": "Set your affection on things above, not on things on the earth." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/15/23/scripture.md b/scripture/kjv/03/15/23/scripture.md new file mode 100644 index 00000000..62ed44f4 --- /dev/null +++ b/scripture/kjv/03/15/23/scripture.md @@ -0,0 +1,5 @@ +**Colossians 3:2** + +2 Set your affection on things above, not on things on the earth. + +[Wednesday 15-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/15/23/scripture.tg b/scripture/kjv/03/15/23/scripture.tg new file mode 100644 index 00000000..8dcdfe17 --- /dev/null +++ b/scripture/kjv/03/15/23/scripture.tg @@ -0,0 +1,4 @@ +Colossians 3:2 +2 Set your affection on things above, not on things on the earth. + +Wednesday 15-March, 2023 diff --git a/scripture/kjv/03/15/23/scripture.today b/scripture/kjv/03/15/23/scripture.today new file mode 100644 index 00000000..4f701019 --- /dev/null +++ b/scripture/kjv/03/15/23/scripture.today @@ -0,0 +1 @@ +51 3:2 diff --git a/scripture/kjv/03/15/24/scripture.html b/scripture/kjv/03/15/24/scripture.html new file mode 100644 index 00000000..07ec8f6d --- /dev/null +++ b/scripture/kjv/03/15/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 3:3-4
+3 Let not mercy and truth forsake thee: bind them about thy neck; write them upon the table of thine heart: 4 So shalt thou find favour and good understanding in the sight of God and man.

+Friday 15-March, 2024 diff --git a/scripture/kjv/03/15/24/scripture.json b/scripture/kjv/03/15/24/scripture.json new file mode 100644 index 00000000..149bac5a --- /dev/null +++ b/scripture/kjv/03/15/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Proverbs", + "chapter": "3", + "date": "Friday 15-March, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/3/3-4", + "name": "Proverbs 3:3-4", + "scripture": [ + { + "nr": "3", + "text": "Let not mercy and truth forsake thee: bind them about thy neck; write them upon the table of thine heart:" + }, + { + "nr": "4", + "text": "So shalt thou find favour and good understanding in the sight of God and man." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3-4", + "version": "kjv" +} diff --git a/scripture/kjv/03/15/24/scripture.md b/scripture/kjv/03/15/24/scripture.md new file mode 100644 index 00000000..068edc3e --- /dev/null +++ b/scripture/kjv/03/15/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 3:3-4** + +3 Let not mercy and truth forsake thee: bind them about thy neck; write them upon the table of thine heart: 4 So shalt thou find favour and good understanding in the sight of God and man. + +[Friday 15-March, 2024](https://getbible.life/kjv/Proverbs/3/3-4) diff --git a/scripture/kjv/03/15/24/scripture.tg b/scripture/kjv/03/15/24/scripture.tg new file mode 100644 index 00000000..f796a4fe --- /dev/null +++ b/scripture/kjv/03/15/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 3:3-4 +3 Let not mercy and truth forsake thee: bind them about thy neck; write them upon the table of thine heart: 4 So shalt thou find favour and good understanding in the sight of God and man. + +Friday 15-March, 2024 diff --git a/scripture/kjv/03/15/24/scripture.tg.id b/scripture/kjv/03/15/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/15/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/15/24/scripture.today b/scripture/kjv/03/15/24/scripture.today new file mode 100644 index 00000000..115fa914 --- /dev/null +++ b/scripture/kjv/03/15/24/scripture.today @@ -0,0 +1 @@ +20 3:3-4 diff --git a/scripture/kjv/03/15/25/scripture.html b/scripture/kjv/03/15/25/scripture.html new file mode 100644 index 00000000..b9bd4701 --- /dev/null +++ b/scripture/kjv/03/15/25/scripture.html @@ -0,0 +1,3 @@ +John 6:20
+20 But he saith unto them, It is I; be not afraid.

+Saturday 15-March, 2025 diff --git a/scripture/kjv/03/15/25/scripture.json b/scripture/kjv/03/15/25/scripture.json new file mode 100644 index 00000000..6637b18d --- /dev/null +++ b/scripture/kjv/03/15/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "6", + "date": "Saturday 15-March, 2025", + "getbible": "https://getbible.life/kjv/John/6/20", + "name": "John 6:20", + "scripture": [ + { + "nr": "20", + "text": "But he saith unto them, It is I; be not afraid." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20", + "version": "kjv" +} diff --git a/scripture/kjv/03/15/25/scripture.md b/scripture/kjv/03/15/25/scripture.md new file mode 100644 index 00000000..78422a73 --- /dev/null +++ b/scripture/kjv/03/15/25/scripture.md @@ -0,0 +1,5 @@ +**John 6:20** + +20 But he saith unto them, It is I; be not afraid. + +[Saturday 15-March, 2025](https://getbible.life/kjv/John/6/20) diff --git a/scripture/kjv/03/15/25/scripture.tg b/scripture/kjv/03/15/25/scripture.tg new file mode 100644 index 00000000..d289f538 --- /dev/null +++ b/scripture/kjv/03/15/25/scripture.tg @@ -0,0 +1,4 @@ +John 6:20 +20 But he saith unto them, It is I; be not afraid. + +Saturday 15-March, 2025 diff --git a/scripture/kjv/03/15/25/scripture.tg.id b/scripture/kjv/03/15/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/15/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/15/25/scripture.today b/scripture/kjv/03/15/25/scripture.today new file mode 100644 index 00000000..47b1405b --- /dev/null +++ b/scripture/kjv/03/15/25/scripture.today @@ -0,0 +1 @@ +43 6:20 diff --git a/scripture/kjv/03/15/26/scripture.html b/scripture/kjv/03/15/26/scripture.html new file mode 100644 index 00000000..4a39acb7 --- /dev/null +++ b/scripture/kjv/03/15/26/scripture.html @@ -0,0 +1,3 @@ +Psalms 119:59-60
+59 I thought on my ways, and turned my feet unto thy testimonies. 60 I made haste, and delayed not to keep thy commandments.

+Sunday 15-March, 2026 diff --git a/scripture/kjv/03/15/26/scripture.json b/scripture/kjv/03/15/26/scripture.json new file mode 100644 index 00000000..648a0ef4 --- /dev/null +++ b/scripture/kjv/03/15/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Psalms", + "chapter": "119", + "date": "Sunday 15-March, 2026", + "getbible": "https://getbible.life/kjv/Psalms/119/59-60", + "name": "Psalms 119:59-60", + "scripture": [ + { + "nr": "59", + "text": "I thought on my ways, and turned my feet unto thy testimonies." + }, + { + "nr": "60", + "text": "I made haste, and delayed not to keep thy commandments." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "59-60", + "version": "kjv" +} diff --git a/scripture/kjv/03/15/26/scripture.md b/scripture/kjv/03/15/26/scripture.md new file mode 100644 index 00000000..54d92f61 --- /dev/null +++ b/scripture/kjv/03/15/26/scripture.md @@ -0,0 +1,5 @@ +**Psalms 119:59-60** + +59 I thought on my ways, and turned my feet unto thy testimonies. 60 I made haste, and delayed not to keep thy commandments. + +[Sunday 15-March, 2026](https://getbible.life/kjv/Psalms/119/59-60) diff --git a/scripture/kjv/03/15/26/scripture.tg b/scripture/kjv/03/15/26/scripture.tg new file mode 100644 index 00000000..d58fc5ba --- /dev/null +++ b/scripture/kjv/03/15/26/scripture.tg @@ -0,0 +1,4 @@ +Psalms 119:59-60 +59 I thought on my ways, and turned my feet unto thy testimonies. 60 I made haste, and delayed not to keep thy commandments. + +Sunday 15-March, 2026 diff --git a/scripture/kjv/03/15/26/scripture.today b/scripture/kjv/03/15/26/scripture.today new file mode 100644 index 00000000..0dffa601 --- /dev/null +++ b/scripture/kjv/03/15/26/scripture.today @@ -0,0 +1 @@ +19 119:59-60 diff --git a/scripture/kjv/03/16/23/scripture.html b/scripture/kjv/03/16/23/scripture.html new file mode 100644 index 00000000..90dc94c6 --- /dev/null +++ b/scripture/kjv/03/16/23/scripture.html @@ -0,0 +1,3 @@ +Daniel 9:9-10
+9 To the Lord our God belong mercies and forgivenesses, though we have rebelled against him; 10 Neither have we obeyed the voice of the Lord our God, to walk in his laws, which he set before us by his servants the prophets.

+Thursday 16-March, 2023 diff --git a/scripture/kjv/03/16/23/scripture.json b/scripture/kjv/03/16/23/scripture.json new file mode 100644 index 00000000..3be972e2 --- /dev/null +++ b/scripture/kjv/03/16/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Thursday 16-March, 2023", + "name": "Daniel 9:9-10", + "scripture": [ + { + "nr": "9", + "text": "To the Lord our God belong mercies and forgivenesses, though we have rebelled against him;" + }, + { + "nr": "10", + "text": "Neither have we obeyed the voice of the Lord our God, to walk in his laws, which he set before us by his servants the prophets." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/16/23/scripture.md b/scripture/kjv/03/16/23/scripture.md new file mode 100644 index 00000000..aed675b0 --- /dev/null +++ b/scripture/kjv/03/16/23/scripture.md @@ -0,0 +1,5 @@ +**Daniel 9:9-10** + +9 To the Lord our God belong mercies and forgivenesses, though we have rebelled against him; 10 Neither have we obeyed the voice of the Lord our God, to walk in his laws, which he set before us by his servants the prophets. + +[Thursday 16-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/16/23/scripture.tg b/scripture/kjv/03/16/23/scripture.tg new file mode 100644 index 00000000..08e4b8b0 --- /dev/null +++ b/scripture/kjv/03/16/23/scripture.tg @@ -0,0 +1,4 @@ +Daniel 9:9-10 +9 To the Lord our God belong mercies and forgivenesses, though we have rebelled against him; 10 Neither have we obeyed the voice of the Lord our God, to walk in his laws, which he set before us by his servants the prophets. + +Thursday 16-March, 2023 diff --git a/scripture/kjv/03/16/23/scripture.today b/scripture/kjv/03/16/23/scripture.today new file mode 100644 index 00000000..3ff5b6f9 --- /dev/null +++ b/scripture/kjv/03/16/23/scripture.today @@ -0,0 +1 @@ +27 9:9-10 diff --git a/scripture/kjv/03/16/24/scripture.html b/scripture/kjv/03/16/24/scripture.html new file mode 100644 index 00000000..4243d5cd --- /dev/null +++ b/scripture/kjv/03/16/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 68:6
+6 God setteth the solitary in families: he bringeth out those which are bound with chains: but the rebellious dwell in a dry land.

+Saturday 16-March, 2024 diff --git a/scripture/kjv/03/16/24/scripture.json b/scripture/kjv/03/16/24/scripture.json new file mode 100644 index 00000000..eb035d33 --- /dev/null +++ b/scripture/kjv/03/16/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "68", + "date": "Saturday 16-March, 2024", + "getbible": "https://getbible.life/kjv/Psalms/68/6", + "name": "Psalms 68:6", + "scripture": [ + { + "nr": "6", + "text": "God setteth the solitary in families: he bringeth out those which are bound with chains: but the rebellious dwell in a dry land." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6", + "version": "kjv" +} diff --git a/scripture/kjv/03/16/24/scripture.md b/scripture/kjv/03/16/24/scripture.md new file mode 100644 index 00000000..4d1ad6e5 --- /dev/null +++ b/scripture/kjv/03/16/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 68:6** + +6 God setteth the solitary in families: he bringeth out those which are bound with chains: but the rebellious dwell in a dry land. + +[Saturday 16-March, 2024](https://getbible.life/kjv/Psalms/68/6) diff --git a/scripture/kjv/03/16/24/scripture.tg b/scripture/kjv/03/16/24/scripture.tg new file mode 100644 index 00000000..ee777b4f --- /dev/null +++ b/scripture/kjv/03/16/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 68:6 +6 God setteth the solitary in families: he bringeth out those which are bound with chains: but the rebellious dwell in a dry land. + +Saturday 16-March, 2024 diff --git a/scripture/kjv/03/16/24/scripture.tg.id b/scripture/kjv/03/16/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/16/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/16/24/scripture.today b/scripture/kjv/03/16/24/scripture.today new file mode 100644 index 00000000..1e2fe2d8 --- /dev/null +++ b/scripture/kjv/03/16/24/scripture.today @@ -0,0 +1 @@ +19 68:6 diff --git a/scripture/kjv/03/16/25/scripture.html b/scripture/kjv/03/16/25/scripture.html new file mode 100644 index 00000000..a023deab --- /dev/null +++ b/scripture/kjv/03/16/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 5:3
+3 My voice shalt thou hear in the morning, O Lord; in the morning will I direct my prayer unto thee, and will look up.

+Sunday 16-March, 2025 diff --git a/scripture/kjv/03/16/25/scripture.json b/scripture/kjv/03/16/25/scripture.json new file mode 100644 index 00000000..f1b72282 --- /dev/null +++ b/scripture/kjv/03/16/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "5", + "date": "Sunday 16-March, 2025", + "getbible": "https://getbible.life/kjv/Psalms/5/3", + "name": "Psalms 5:3", + "scripture": [ + { + "nr": "3", + "text": "My voice shalt thou hear in the morning, O Lord; in the morning will I direct my prayer unto thee, and will look up." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3", + "version": "kjv" +} diff --git a/scripture/kjv/03/16/25/scripture.md b/scripture/kjv/03/16/25/scripture.md new file mode 100644 index 00000000..00078d72 --- /dev/null +++ b/scripture/kjv/03/16/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 5:3** + +3 My voice shalt thou hear in the morning, O Lord; in the morning will I direct my prayer unto thee, and will look up. + +[Sunday 16-March, 2025](https://getbible.life/kjv/Psalms/5/3) diff --git a/scripture/kjv/03/16/25/scripture.tg b/scripture/kjv/03/16/25/scripture.tg new file mode 100644 index 00000000..c5a3cf5e --- /dev/null +++ b/scripture/kjv/03/16/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 5:3 +3 My voice shalt thou hear in the morning, O Lord; in the morning will I direct my prayer unto thee, and will look up. + +Sunday 16-March, 2025 diff --git a/scripture/kjv/03/16/25/scripture.tg.id b/scripture/kjv/03/16/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/16/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/16/25/scripture.today b/scripture/kjv/03/16/25/scripture.today new file mode 100644 index 00000000..56b72dfb --- /dev/null +++ b/scripture/kjv/03/16/25/scripture.today @@ -0,0 +1 @@ +19 5:3 diff --git a/scripture/kjv/03/16/26/scripture.html b/scripture/kjv/03/16/26/scripture.html new file mode 100644 index 00000000..99d58d2c --- /dev/null +++ b/scripture/kjv/03/16/26/scripture.html @@ -0,0 +1,3 @@ +Psalms 128:1-6
+1 Blessed is every one that feareth the Lord; that walketh in his ways. 2 For thou shalt eat the labour of thine hands: happy shalt thou be, and it shall be well with thee. 3 Thy wife shall be as a fruitful vine by the sides of thine house: thy children like olive plants round about thy table. 4 Behold, that thus shall the man be blessed that feareth the Lord. 5 The Lord shall bless thee out of Zion: and thou shalt see the good of Jerusalem all the days of thy life. 6 Yea, thou shalt see thy children’s children, and peace upon Israel.

+Monday 16-March, 2026 diff --git a/scripture/kjv/03/16/26/scripture.json b/scripture/kjv/03/16/26/scripture.json new file mode 100644 index 00000000..930dffb6 --- /dev/null +++ b/scripture/kjv/03/16/26/scripture.json @@ -0,0 +1,37 @@ +{ + "book": "Psalms", + "chapter": "128", + "date": "Monday 16-March, 2026", + "getbible": "https://getbible.life/kjv/Psalms/128/1-6", + "name": "Psalms 128:1-6", + "scripture": [ + { + "nr": "1", + "text": "Blessed is every one that feareth the Lord; that walketh in his ways." + }, + { + "nr": "2", + "text": "For thou shalt eat the labour of thine hands: happy shalt thou be, and it shall be well with thee." + }, + { + "nr": "3", + "text": "Thy wife shall be as a fruitful vine by the sides of thine house: thy children like olive plants round about thy table." + }, + { + "nr": "4", + "text": "Behold, that thus shall the man be blessed that feareth the Lord." + }, + { + "nr": "5", + "text": "The Lord shall bless thee out of Zion: and thou shalt see the good of Jerusalem all the days of thy life." + }, + { + "nr": "6", + "text": "Yea, thou shalt see thy children’s children, and peace upon Israel. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-6", + "version": "kjv" +} diff --git a/scripture/kjv/03/16/26/scripture.md b/scripture/kjv/03/16/26/scripture.md new file mode 100644 index 00000000..9f14cf2a --- /dev/null +++ b/scripture/kjv/03/16/26/scripture.md @@ -0,0 +1,5 @@ +**Psalms 128:1-6** + +1 Blessed is every one that feareth the Lord; that walketh in his ways. 2 For thou shalt eat the labour of thine hands: happy shalt thou be, and it shall be well with thee. 3 Thy wife shall be as a fruitful vine by the sides of thine house: thy children like olive plants round about thy table. 4 Behold, that thus shall the man be blessed that feareth the Lord. 5 The Lord shall bless thee out of Zion: and thou shalt see the good of Jerusalem all the days of thy life. 6 Yea, thou shalt see thy children’s children, and peace upon Israel. + +[Monday 16-March, 2026](https://getbible.life/kjv/Psalms/128/1-6) diff --git a/scripture/kjv/03/16/26/scripture.tg b/scripture/kjv/03/16/26/scripture.tg new file mode 100644 index 00000000..048a8c4a --- /dev/null +++ b/scripture/kjv/03/16/26/scripture.tg @@ -0,0 +1,4 @@ +Psalms 128:1-6 +1 Blessed is every one that feareth the Lord; that walketh in his ways. 2 For thou shalt eat the labour of thine hands: happy shalt thou be, and it shall be well with thee. 3 Thy wife shall be as a fruitful vine by the sides of thine house: thy children like olive plants round about thy table. 4 Behold, that thus shall the man be blessed that feareth the Lord. 5 The Lord shall bless thee out of Zion: and thou shalt see the good of Jerusalem all the days of thy life. 6 Yea, thou shalt see thy children’s children, and peace upon Israel. + +Monday 16-March, 2026 diff --git a/scripture/kjv/03/16/26/scripture.tg.id b/scripture/kjv/03/16/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/16/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/16/26/scripture.today b/scripture/kjv/03/16/26/scripture.today new file mode 100644 index 00000000..f76b20f2 --- /dev/null +++ b/scripture/kjv/03/16/26/scripture.today @@ -0,0 +1 @@ +19 128:1-6 diff --git a/scripture/kjv/03/17/23/scripture.html b/scripture/kjv/03/17/23/scripture.html new file mode 100644 index 00000000..b54bac9e --- /dev/null +++ b/scripture/kjv/03/17/23/scripture.html @@ -0,0 +1,3 @@ +Haggai 2:3-5
+3 Who is left among you that saw this house in her first glory? and how do ye see it now? is it not in your eyes in comparison of it as nothing? 4 Yet now be strong, O Zerubbabel, saith the Lord; and be strong, O Joshua, son of Josedech, the high priest; and be strong, all ye people of the land, saith the Lord, and work: for I am with you, saith the Lord of hosts: 5 According to the word that I covenanted with you when ye came out of Egypt, so my spirit remaineth among you: fear ye not.

+Friday 17-March, 2023 diff --git a/scripture/kjv/03/17/23/scripture.json b/scripture/kjv/03/17/23/scripture.json new file mode 100644 index 00000000..74dc9187 --- /dev/null +++ b/scripture/kjv/03/17/23/scripture.json @@ -0,0 +1,21 @@ +{ + "date": "Friday 17-March, 2023", + "name": "Haggai 2:3-5", + "scripture": [ + { + "nr": "3", + "text": "Who is left among you that saw this house in her first glory? and how do ye see it now? is it not in your eyes in comparison of it as nothing?" + }, + { + "nr": "4", + "text": "Yet now be strong, O Zerubbabel, saith the Lord; and be strong, O Joshua, son of Josedech, the high priest; and be strong, all ye people of the land, saith the Lord, and work: for I am with you, saith the Lord of hosts:" + }, + { + "nr": "5", + "text": "According to the word that I covenanted with you when ye came out of Egypt, so my spirit remaineth among you: fear ye not." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/17/23/scripture.md b/scripture/kjv/03/17/23/scripture.md new file mode 100644 index 00000000..5d7e65d1 --- /dev/null +++ b/scripture/kjv/03/17/23/scripture.md @@ -0,0 +1,5 @@ +**Haggai 2:3-5** + +3 Who is left among you that saw this house in her first glory? and how do ye see it now? is it not in your eyes in comparison of it as nothing? 4 Yet now be strong, O Zerubbabel, saith the Lord; and be strong, O Joshua, son of Josedech, the high priest; and be strong, all ye people of the land, saith the Lord, and work: for I am with you, saith the Lord of hosts: 5 According to the word that I covenanted with you when ye came out of Egypt, so my spirit remaineth among you: fear ye not. + +[Friday 17-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/17/23/scripture.tg b/scripture/kjv/03/17/23/scripture.tg new file mode 100644 index 00000000..c5dceafe --- /dev/null +++ b/scripture/kjv/03/17/23/scripture.tg @@ -0,0 +1,4 @@ +Haggai 2:3-5 +3 Who is left among you that saw this house in her first glory? and how do ye see it now? is it not in your eyes in comparison of it as nothing? 4 Yet now be strong, O Zerubbabel, saith the Lord; and be strong, O Joshua, son of Josedech, the high priest; and be strong, all ye people of the land, saith the Lord, and work: for I am with you, saith the Lord of hosts: 5 According to the word that I covenanted with you when ye came out of Egypt, so my spirit remaineth among you: fear ye not. + +Friday 17-March, 2023 diff --git a/scripture/kjv/03/17/23/scripture.today b/scripture/kjv/03/17/23/scripture.today new file mode 100644 index 00000000..5254df7b --- /dev/null +++ b/scripture/kjv/03/17/23/scripture.today @@ -0,0 +1 @@ +37 2:3-5 diff --git a/scripture/kjv/03/17/24/scripture.html b/scripture/kjv/03/17/24/scripture.html new file mode 100644 index 00000000..660f37f0 --- /dev/null +++ b/scripture/kjv/03/17/24/scripture.html @@ -0,0 +1,3 @@ +Romans 14:5
+5 One man esteemeth one day above another: another esteemeth every day alike. Let every man be fully persuaded in his own mind.

+Sunday 17-March, 2024 diff --git a/scripture/kjv/03/17/24/scripture.json b/scripture/kjv/03/17/24/scripture.json new file mode 100644 index 00000000..27a10a17 --- /dev/null +++ b/scripture/kjv/03/17/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Romans", + "chapter": "14", + "date": "Sunday 17-March, 2024", + "getbible": "https://getbible.life/kjv/Romans/14/5", + "name": "Romans 14:5", + "scripture": [ + { + "nr": "5", + "text": "One man esteemeth one day above another: another esteemeth every day alike. Let every man be fully persuaded in his own mind." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5", + "version": "kjv" +} diff --git a/scripture/kjv/03/17/24/scripture.md b/scripture/kjv/03/17/24/scripture.md new file mode 100644 index 00000000..f0fb0d02 --- /dev/null +++ b/scripture/kjv/03/17/24/scripture.md @@ -0,0 +1,5 @@ +**Romans 14:5** + +5 One man esteemeth one day above another: another esteemeth every day alike. Let every man be fully persuaded in his own mind. + +[Sunday 17-March, 2024](https://getbible.life/kjv/Romans/14/5) diff --git a/scripture/kjv/03/17/24/scripture.tg b/scripture/kjv/03/17/24/scripture.tg new file mode 100644 index 00000000..df5d67fd --- /dev/null +++ b/scripture/kjv/03/17/24/scripture.tg @@ -0,0 +1,4 @@ +Romans 14:5 +5 One man esteemeth one day above another: another esteemeth every day alike. Let every man be fully persuaded in his own mind. + +Sunday 17-March, 2024 diff --git a/scripture/kjv/03/17/24/scripture.tg.id b/scripture/kjv/03/17/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/17/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/17/24/scripture.today b/scripture/kjv/03/17/24/scripture.today new file mode 100644 index 00000000..a38731f1 --- /dev/null +++ b/scripture/kjv/03/17/24/scripture.today @@ -0,0 +1 @@ +45 14:5 diff --git a/scripture/kjv/03/17/25/scripture.html b/scripture/kjv/03/17/25/scripture.html new file mode 100644 index 00000000..5ae03b13 --- /dev/null +++ b/scripture/kjv/03/17/25/scripture.html @@ -0,0 +1,3 @@ +John 6:40
+40 And this is the will of him that sent me, that every one which seeth the Son, and believeth on him, may have everlasting life: and I will raise him up at the last day.

+Monday 17-March, 2025 diff --git a/scripture/kjv/03/17/25/scripture.json b/scripture/kjv/03/17/25/scripture.json new file mode 100644 index 00000000..588f48d8 --- /dev/null +++ b/scripture/kjv/03/17/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "6", + "date": "Monday 17-March, 2025", + "getbible": "https://getbible.life/kjv/John/6/40", + "name": "John 6:40", + "scripture": [ + { + "nr": "40", + "text": "And this is the will of him that sent me, that every one which seeth the Son, and believeth on him, may have everlasting life: and I will raise him up at the last day." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "40", + "version": "kjv" +} diff --git a/scripture/kjv/03/17/25/scripture.md b/scripture/kjv/03/17/25/scripture.md new file mode 100644 index 00000000..5f133ec7 --- /dev/null +++ b/scripture/kjv/03/17/25/scripture.md @@ -0,0 +1,5 @@ +**John 6:40** + +40 And this is the will of him that sent me, that every one which seeth the Son, and believeth on him, may have everlasting life: and I will raise him up at the last day. + +[Monday 17-March, 2025](https://getbible.life/kjv/John/6/40) diff --git a/scripture/kjv/03/17/25/scripture.tg b/scripture/kjv/03/17/25/scripture.tg new file mode 100644 index 00000000..b85fa1c6 --- /dev/null +++ b/scripture/kjv/03/17/25/scripture.tg @@ -0,0 +1,4 @@ +John 6:40 +40 And this is the will of him that sent me, that every one which seeth the Son, and believeth on him, may have everlasting life: and I will raise him up at the last day. + +Monday 17-March, 2025 diff --git a/scripture/kjv/03/17/25/scripture.tg.id b/scripture/kjv/03/17/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/17/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/17/25/scripture.today b/scripture/kjv/03/17/25/scripture.today new file mode 100644 index 00000000..bbe7f72f --- /dev/null +++ b/scripture/kjv/03/17/25/scripture.today @@ -0,0 +1 @@ +43 6:40 diff --git a/scripture/kjv/03/17/26/scripture.html b/scripture/kjv/03/17/26/scripture.html new file mode 100644 index 00000000..f59660f4 --- /dev/null +++ b/scripture/kjv/03/17/26/scripture.html @@ -0,0 +1,3 @@ +John 10:19-21
+19 There was a division therefore again among the Jews for these sayings. 20 And many of them said, He hath a devil, and is mad; why hear ye him? 21 Others said, These are not the words of him that hath a devil. Can a devil open the eyes of the blind?

+Tuesday 17-March, 2026 diff --git a/scripture/kjv/03/17/26/scripture.json b/scripture/kjv/03/17/26/scripture.json new file mode 100644 index 00000000..6e5551a4 --- /dev/null +++ b/scripture/kjv/03/17/26/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "John", + "chapter": "10", + "date": "Tuesday 17-March, 2026", + "getbible": "https://getbible.life/kjv/John/10/19-21", + "name": "John 10:19-21", + "scripture": [ + { + "nr": "19", + "text": "There was a division therefore again among the Jews for these sayings." + }, + { + "nr": "20", + "text": "And many of them said, He hath a devil, and is mad; why hear ye him?" + }, + { + "nr": "21", + "text": "Others said, These are not the words of him that hath a devil. Can a devil open the eyes of the blind?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "19-21", + "version": "kjv" +} diff --git a/scripture/kjv/03/17/26/scripture.md b/scripture/kjv/03/17/26/scripture.md new file mode 100644 index 00000000..99289ef2 --- /dev/null +++ b/scripture/kjv/03/17/26/scripture.md @@ -0,0 +1,5 @@ +**John 10:19-21** + +19 There was a division therefore again among the Jews for these sayings. 20 And many of them said, He hath a devil, and is mad; why hear ye him? 21 Others said, These are not the words of him that hath a devil. Can a devil open the eyes of the blind? + +[Tuesday 17-March, 2026](https://getbible.life/kjv/John/10/19-21) diff --git a/scripture/kjv/03/17/26/scripture.tg b/scripture/kjv/03/17/26/scripture.tg new file mode 100644 index 00000000..1ae5043c --- /dev/null +++ b/scripture/kjv/03/17/26/scripture.tg @@ -0,0 +1,4 @@ +John 10:19-21 +19 There was a division therefore again among the Jews for these sayings. 20 And many of them said, He hath a devil, and is mad; why hear ye him? 21 Others said, These are not the words of him that hath a devil. Can a devil open the eyes of the blind? + +Tuesday 17-March, 2026 diff --git a/scripture/kjv/03/17/26/scripture.today b/scripture/kjv/03/17/26/scripture.today new file mode 100644 index 00000000..3e1e0049 --- /dev/null +++ b/scripture/kjv/03/17/26/scripture.today @@ -0,0 +1 @@ +43 10:19-21 diff --git a/scripture/kjv/03/18/23/scripture.html b/scripture/kjv/03/18/23/scripture.html new file mode 100644 index 00000000..7b33b449 --- /dev/null +++ b/scripture/kjv/03/18/23/scripture.html @@ -0,0 +1,3 @@ +John 12:31
+31 Now is the judgment of this world: now shall the prince of this world be cast out.

+Saturday 18-March, 2023 diff --git a/scripture/kjv/03/18/23/scripture.json b/scripture/kjv/03/18/23/scripture.json new file mode 100644 index 00000000..41952648 --- /dev/null +++ b/scripture/kjv/03/18/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Saturday 18-March, 2023", + "name": "John 12:31", + "scripture": [ + { + "nr": "31", + "text": "Now is the judgment of this world: now shall the prince of this world be cast out." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/18/23/scripture.md b/scripture/kjv/03/18/23/scripture.md new file mode 100644 index 00000000..9138e080 --- /dev/null +++ b/scripture/kjv/03/18/23/scripture.md @@ -0,0 +1,5 @@ +**John 12:31** + +31 Now is the judgment of this world: now shall the prince of this world be cast out. + +[Saturday 18-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/18/23/scripture.tg b/scripture/kjv/03/18/23/scripture.tg new file mode 100644 index 00000000..f84c29e0 --- /dev/null +++ b/scripture/kjv/03/18/23/scripture.tg @@ -0,0 +1,4 @@ +John 12:31 +31 Now is the judgment of this world: now shall the prince of this world be cast out. + +Saturday 18-March, 2023 diff --git a/scripture/kjv/03/18/23/scripture.today b/scripture/kjv/03/18/23/scripture.today new file mode 100644 index 00000000..9b821185 --- /dev/null +++ b/scripture/kjv/03/18/23/scripture.today @@ -0,0 +1 @@ +43 12:31 diff --git a/scripture/kjv/03/18/24/scripture.html b/scripture/kjv/03/18/24/scripture.html new file mode 100644 index 00000000..269932fb --- /dev/null +++ b/scripture/kjv/03/18/24/scripture.html @@ -0,0 +1,3 @@ +Hebrews 13:20-21
+20 Now the God of peace, that brought again from the dead our Lord Jesus, that great shepherd of the sheep, through the blood of the everlasting covenant, 21 Make you perfect in every good work to do his will, working in you that which is wellpleasing in his sight, through Jesus Christ; to whom be glory for ever and ever. Amen.

+Monday 18-March, 2024 diff --git a/scripture/kjv/03/18/24/scripture.json b/scripture/kjv/03/18/24/scripture.json new file mode 100644 index 00000000..a00d6364 --- /dev/null +++ b/scripture/kjv/03/18/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Hebrews", + "chapter": "13", + "date": "Monday 18-March, 2024", + "getbible": "https://getbible.life/kjv/Hebrews/13/20-21", + "name": "Hebrews 13:20-21", + "scripture": [ + { + "nr": "20", + "text": "Now the God of peace, that brought again from the dead our Lord Jesus, that great shepherd of the sheep, through the blood of the everlasting covenant," + }, + { + "nr": "21", + "text": "Make you perfect in every good work to do his will, working in you that which is wellpleasing in his sight, through Jesus Christ; to whom be glory for ever and ever. Amen." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20-21", + "version": "kjv" +} diff --git a/scripture/kjv/03/18/24/scripture.md b/scripture/kjv/03/18/24/scripture.md new file mode 100644 index 00000000..f7ec570a --- /dev/null +++ b/scripture/kjv/03/18/24/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 13:20-21** + +20 Now the God of peace, that brought again from the dead our Lord Jesus, that great shepherd of the sheep, through the blood of the everlasting covenant, 21 Make you perfect in every good work to do his will, working in you that which is wellpleasing in his sight, through Jesus Christ; to whom be glory for ever and ever. Amen. + +[Monday 18-March, 2024](https://getbible.life/kjv/Hebrews/13/20-21) diff --git a/scripture/kjv/03/18/24/scripture.tg b/scripture/kjv/03/18/24/scripture.tg new file mode 100644 index 00000000..ec82cfb2 --- /dev/null +++ b/scripture/kjv/03/18/24/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 13:20-21 +20 Now the God of peace, that brought again from the dead our Lord Jesus, that great shepherd of the sheep, through the blood of the everlasting covenant, 21 Make you perfect in every good work to do his will, working in you that which is wellpleasing in his sight, through Jesus Christ; to whom be glory for ever and ever. Amen. + +Monday 18-March, 2024 diff --git a/scripture/kjv/03/18/24/scripture.tg.id b/scripture/kjv/03/18/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/18/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/18/24/scripture.today b/scripture/kjv/03/18/24/scripture.today new file mode 100644 index 00000000..33f38abd --- /dev/null +++ b/scripture/kjv/03/18/24/scripture.today @@ -0,0 +1 @@ +58 13:20-21 diff --git a/scripture/kjv/03/18/25/scripture.html b/scripture/kjv/03/18/25/scripture.html new file mode 100644 index 00000000..4bf08a23 --- /dev/null +++ b/scripture/kjv/03/18/25/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 4:16
+16 Wherefore I beseech you, be ye followers of me.

+Tuesday 18-March, 2025 diff --git a/scripture/kjv/03/18/25/scripture.json b/scripture/kjv/03/18/25/scripture.json new file mode 100644 index 00000000..38c0d909 --- /dev/null +++ b/scripture/kjv/03/18/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "4", + "date": "Tuesday 18-March, 2025", + "getbible": "https://getbible.life/kjv/1 Corinthians/4/16", + "name": "1 Corinthians 4:16", + "scripture": [ + { + "nr": "16", + "text": "Wherefore I beseech you, be ye followers of me." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16", + "version": "kjv" +} diff --git a/scripture/kjv/03/18/25/scripture.md b/scripture/kjv/03/18/25/scripture.md new file mode 100644 index 00000000..30e89150 --- /dev/null +++ b/scripture/kjv/03/18/25/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 4:16** + +16 Wherefore I beseech you, be ye followers of me. + +[Tuesday 18-March, 2025](https://getbible.life/kjv/1 Corinthians/4/16) diff --git a/scripture/kjv/03/18/25/scripture.tg b/scripture/kjv/03/18/25/scripture.tg new file mode 100644 index 00000000..1f1a4e77 --- /dev/null +++ b/scripture/kjv/03/18/25/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 4:16 +16 Wherefore I beseech you, be ye followers of me. + +Tuesday 18-March, 2025 diff --git a/scripture/kjv/03/18/25/scripture.tg.id b/scripture/kjv/03/18/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/18/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/18/25/scripture.today b/scripture/kjv/03/18/25/scripture.today new file mode 100644 index 00000000..ed89cfbc --- /dev/null +++ b/scripture/kjv/03/18/25/scripture.today @@ -0,0 +1 @@ +46 4:16 diff --git a/scripture/kjv/03/18/26/scripture.html b/scripture/kjv/03/18/26/scripture.html new file mode 100644 index 00000000..ae8d7c2f --- /dev/null +++ b/scripture/kjv/03/18/26/scripture.html @@ -0,0 +1,3 @@ +John 4:48
+48 Then said Jesus unto him, Except ye see signs and wonders, ye will not believe.

+Wednesday 18-March, 2026 diff --git a/scripture/kjv/03/18/26/scripture.json b/scripture/kjv/03/18/26/scripture.json new file mode 100644 index 00000000..207579bc --- /dev/null +++ b/scripture/kjv/03/18/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "4", + "date": "Wednesday 18-March, 2026", + "getbible": "https://getbible.life/kjv/John/4/48", + "name": "John 4:48", + "scripture": [ + { + "nr": "48", + "text": "Then said Jesus unto him, Except ye see signs and wonders, ye will not believe." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "48", + "version": "kjv" +} diff --git a/scripture/kjv/03/18/26/scripture.md b/scripture/kjv/03/18/26/scripture.md new file mode 100644 index 00000000..a86c7e31 --- /dev/null +++ b/scripture/kjv/03/18/26/scripture.md @@ -0,0 +1,5 @@ +**John 4:48** + +48 Then said Jesus unto him, Except ye see signs and wonders, ye will not believe. + +[Wednesday 18-March, 2026](https://getbible.life/kjv/John/4/48) diff --git a/scripture/kjv/03/18/26/scripture.tg b/scripture/kjv/03/18/26/scripture.tg new file mode 100644 index 00000000..2266971d --- /dev/null +++ b/scripture/kjv/03/18/26/scripture.tg @@ -0,0 +1,4 @@ +John 4:48 +48 Then said Jesus unto him, Except ye see signs and wonders, ye will not believe. + +Wednesday 18-March, 2026 diff --git a/scripture/kjv/03/18/26/scripture.tg.id b/scripture/kjv/03/18/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/18/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/18/26/scripture.today b/scripture/kjv/03/18/26/scripture.today new file mode 100644 index 00000000..fea3530e --- /dev/null +++ b/scripture/kjv/03/18/26/scripture.today @@ -0,0 +1 @@ +43 4:48 diff --git a/scripture/kjv/03/19/23/scripture.html b/scripture/kjv/03/19/23/scripture.html new file mode 100644 index 00000000..55a9e3a7 --- /dev/null +++ b/scripture/kjv/03/19/23/scripture.html @@ -0,0 +1,3 @@ +Zechariah 13:1
+1 In that day there shall be a fountain opened to the house of David and to the inhabitants of Jerusalem for sin and for uncleanness.

+Sunday 19-March, 2023 diff --git a/scripture/kjv/03/19/23/scripture.json b/scripture/kjv/03/19/23/scripture.json new file mode 100644 index 00000000..b262a2fe --- /dev/null +++ b/scripture/kjv/03/19/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Sunday 19-March, 2023", + "name": "Zechariah 13:1", + "scripture": [ + { + "nr": "1", + "text": "In that day there shall be a fountain opened to the house of David and to the inhabitants of Jerusalem for sin and for uncleanness." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/19/23/scripture.md b/scripture/kjv/03/19/23/scripture.md new file mode 100644 index 00000000..9ebd81b8 --- /dev/null +++ b/scripture/kjv/03/19/23/scripture.md @@ -0,0 +1,5 @@ +**Zechariah 13:1** + +1 In that day there shall be a fountain opened to the house of David and to the inhabitants of Jerusalem for sin and for uncleanness. + +[Sunday 19-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/19/23/scripture.tg b/scripture/kjv/03/19/23/scripture.tg new file mode 100644 index 00000000..8ba1f120 --- /dev/null +++ b/scripture/kjv/03/19/23/scripture.tg @@ -0,0 +1,4 @@ +Zechariah 13:1 +1 In that day there shall be a fountain opened to the house of David and to the inhabitants of Jerusalem for sin and for uncleanness. + +Sunday 19-March, 2023 diff --git a/scripture/kjv/03/19/23/scripture.today b/scripture/kjv/03/19/23/scripture.today new file mode 100644 index 00000000..52df2c88 --- /dev/null +++ b/scripture/kjv/03/19/23/scripture.today @@ -0,0 +1 @@ +38 13:1 diff --git a/scripture/kjv/03/19/24/scripture.html b/scripture/kjv/03/19/24/scripture.html new file mode 100644 index 00000000..00563616 --- /dev/null +++ b/scripture/kjv/03/19/24/scripture.html @@ -0,0 +1,3 @@ +Isaiah 64:1-2
+1 Oh that thou wouldest rend the heavens, that thou wouldest come down, that the mountains might flow down at thy presence, 2 As when the melting fire burneth, the fire causeth the waters to boil, to make thy name known to thine adversaries, that the nations may tremble at thy presence!

+Tuesday 19-March, 2024 diff --git a/scripture/kjv/03/19/24/scripture.json b/scripture/kjv/03/19/24/scripture.json new file mode 100644 index 00000000..dc01947d --- /dev/null +++ b/scripture/kjv/03/19/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Isaiah", + "chapter": "64", + "date": "Tuesday 19-March, 2024", + "getbible": "https://getbible.life/kjv/Isaiah/64/1-2", + "name": "Isaiah 64:1-2", + "scripture": [ + { + "nr": "1", + "text": "Oh that thou wouldest rend the heavens, that thou wouldest come down, that the mountains might flow down at thy presence," + }, + { + "nr": "2", + "text": "As when the melting fire burneth, the fire causeth the waters to boil, to make thy name known to thine adversaries, that the nations may tremble at thy presence!" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-2", + "version": "kjv" +} diff --git a/scripture/kjv/03/19/24/scripture.md b/scripture/kjv/03/19/24/scripture.md new file mode 100644 index 00000000..0e8b0b85 --- /dev/null +++ b/scripture/kjv/03/19/24/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 64:1-2** + +1 Oh that thou wouldest rend the heavens, that thou wouldest come down, that the mountains might flow down at thy presence, 2 As when the melting fire burneth, the fire causeth the waters to boil, to make thy name known to thine adversaries, that the nations may tremble at thy presence! + +[Tuesday 19-March, 2024](https://getbible.life/kjv/Isaiah/64/1-2) diff --git a/scripture/kjv/03/19/24/scripture.tg b/scripture/kjv/03/19/24/scripture.tg new file mode 100644 index 00000000..89127ae1 --- /dev/null +++ b/scripture/kjv/03/19/24/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 64:1-2 +1 Oh that thou wouldest rend the heavens, that thou wouldest come down, that the mountains might flow down at thy presence, 2 As when the melting fire burneth, the fire causeth the waters to boil, to make thy name known to thine adversaries, that the nations may tremble at thy presence! + +Tuesday 19-March, 2024 diff --git a/scripture/kjv/03/19/24/scripture.tg.id b/scripture/kjv/03/19/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/19/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/19/24/scripture.today b/scripture/kjv/03/19/24/scripture.today new file mode 100644 index 00000000..05a2e16c --- /dev/null +++ b/scripture/kjv/03/19/24/scripture.today @@ -0,0 +1 @@ +23 64:1-2 diff --git a/scripture/kjv/03/19/25/scripture.html b/scripture/kjv/03/19/25/scripture.html new file mode 100644 index 00000000..6df52cc7 --- /dev/null +++ b/scripture/kjv/03/19/25/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 12:17
+17 If the whole body were an eye, where were the hearing? If the whole were hearing, where were the smelling?

+Wednesday 19-March, 2025 diff --git a/scripture/kjv/03/19/25/scripture.json b/scripture/kjv/03/19/25/scripture.json new file mode 100644 index 00000000..2235042c --- /dev/null +++ b/scripture/kjv/03/19/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "12", + "date": "Wednesday 19-March, 2025", + "getbible": "https://getbible.life/kjv/1 Corinthians/12/17", + "name": "1 Corinthians 12:17", + "scripture": [ + { + "nr": "17", + "text": "If the whole body were an eye, where were the hearing? If the whole were hearing, where were the smelling?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17", + "version": "kjv" +} diff --git a/scripture/kjv/03/19/25/scripture.md b/scripture/kjv/03/19/25/scripture.md new file mode 100644 index 00000000..6406c6f1 --- /dev/null +++ b/scripture/kjv/03/19/25/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 12:17** + +17 If the whole body were an eye, where were the hearing? If the whole were hearing, where were the smelling? + +[Wednesday 19-March, 2025](https://getbible.life/kjv/1 Corinthians/12/17) diff --git a/scripture/kjv/03/19/25/scripture.tg b/scripture/kjv/03/19/25/scripture.tg new file mode 100644 index 00000000..7676c969 --- /dev/null +++ b/scripture/kjv/03/19/25/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 12:17 +17 If the whole body were an eye, where were the hearing? If the whole were hearing, where were the smelling? + +Wednesday 19-March, 2025 diff --git a/scripture/kjv/03/19/25/scripture.tg.id b/scripture/kjv/03/19/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/19/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/19/25/scripture.today b/scripture/kjv/03/19/25/scripture.today new file mode 100644 index 00000000..6edd01db --- /dev/null +++ b/scripture/kjv/03/19/25/scripture.today @@ -0,0 +1 @@ +46 12:17 diff --git a/scripture/kjv/03/19/26/scripture.html b/scripture/kjv/03/19/26/scripture.html new file mode 100644 index 00000000..6251f6da --- /dev/null +++ b/scripture/kjv/03/19/26/scripture.html @@ -0,0 +1,3 @@ +Proverbs 12:18
+18 There is that speaketh like the piercings of a sword: but the tongue of the wise is health.

+Thursday 19-March, 2026 diff --git a/scripture/kjv/03/19/26/scripture.json b/scripture/kjv/03/19/26/scripture.json new file mode 100644 index 00000000..9386abd0 --- /dev/null +++ b/scripture/kjv/03/19/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "12", + "date": "Thursday 19-March, 2026", + "getbible": "https://getbible.life/kjv/Proverbs/12/18", + "name": "Proverbs 12:18", + "scripture": [ + { + "nr": "18", + "text": "There is that speaketh like the piercings of a sword: but the tongue of the wise is health." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18", + "version": "kjv" +} diff --git a/scripture/kjv/03/19/26/scripture.md b/scripture/kjv/03/19/26/scripture.md new file mode 100644 index 00000000..b02f9273 --- /dev/null +++ b/scripture/kjv/03/19/26/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 12:18** + +18 There is that speaketh like the piercings of a sword: but the tongue of the wise is health. + +[Thursday 19-March, 2026](https://getbible.life/kjv/Proverbs/12/18) diff --git a/scripture/kjv/03/19/26/scripture.tg b/scripture/kjv/03/19/26/scripture.tg new file mode 100644 index 00000000..151a5da2 --- /dev/null +++ b/scripture/kjv/03/19/26/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 12:18 +18 There is that speaketh like the piercings of a sword: but the tongue of the wise is health. + +Thursday 19-March, 2026 diff --git a/scripture/kjv/03/19/26/scripture.today b/scripture/kjv/03/19/26/scripture.today new file mode 100644 index 00000000..b261beb2 --- /dev/null +++ b/scripture/kjv/03/19/26/scripture.today @@ -0,0 +1 @@ +20 12:18 diff --git a/scripture/kjv/03/20/23/scripture.html b/scripture/kjv/03/20/23/scripture.html new file mode 100644 index 00000000..5ecd9815 --- /dev/null +++ b/scripture/kjv/03/20/23/scripture.html @@ -0,0 +1,3 @@ +Isaiah 44:8
+8 Fear ye not, neither be afraid: have not I told thee from that time, and have declared it? ye are even my witnesses. Is there a God beside me? yea, there is no God; I know not any.

+Monday 20-March, 2023 diff --git a/scripture/kjv/03/20/23/scripture.json b/scripture/kjv/03/20/23/scripture.json new file mode 100644 index 00000000..dd39787e --- /dev/null +++ b/scripture/kjv/03/20/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Monday 20-March, 2023", + "name": "Isaiah 44:8", + "scripture": [ + { + "nr": "8", + "text": "Fear ye not, neither be afraid: have not I told thee from that time, and have declared it? ye are even my witnesses. Is there a God beside me? yea, there is no God; I know not any." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/20/23/scripture.md b/scripture/kjv/03/20/23/scripture.md new file mode 100644 index 00000000..2eb519be --- /dev/null +++ b/scripture/kjv/03/20/23/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 44:8** + +8 Fear ye not, neither be afraid: have not I told thee from that time, and have declared it? ye are even my witnesses. Is there a God beside me? yea, there is no God; I know not any. + +[Monday 20-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/20/23/scripture.tg b/scripture/kjv/03/20/23/scripture.tg new file mode 100644 index 00000000..d1fdd402 --- /dev/null +++ b/scripture/kjv/03/20/23/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 44:8 +8 Fear ye not, neither be afraid: have not I told thee from that time, and have declared it? ye are even my witnesses. Is there a God beside me? yea, there is no God; I know not any. + +Monday 20-March, 2023 diff --git a/scripture/kjv/03/20/23/scripture.today b/scripture/kjv/03/20/23/scripture.today new file mode 100644 index 00000000..cdc1d444 --- /dev/null +++ b/scripture/kjv/03/20/23/scripture.today @@ -0,0 +1 @@ +23 44:8 diff --git a/scripture/kjv/03/20/24/scripture.html b/scripture/kjv/03/20/24/scripture.html new file mode 100644 index 00000000..058bc87e --- /dev/null +++ b/scripture/kjv/03/20/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 39:4-6
+4 Lord, make me to know mine end, and the measure of my days, what it is; that I may know how frail I am. 5 Behold, thou hast made my days as an handbreadth; and mine age is as nothing before thee: verily every man at his best state is altogether vanity. Selah. 6 Surely every man walketh in a vain shew: surely they are disquieted in vain: he heapeth up riches, and knoweth not who shall gather them.

+Wednesday 20-March, 2024 diff --git a/scripture/kjv/03/20/24/scripture.json b/scripture/kjv/03/20/24/scripture.json new file mode 100644 index 00000000..55731207 --- /dev/null +++ b/scripture/kjv/03/20/24/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Psalms", + "chapter": "39", + "date": "Wednesday 20-March, 2024", + "getbible": "https://getbible.life/kjv/Psalms/39/4-6", + "name": "Psalms 39:4-6", + "scripture": [ + { + "nr": "4", + "text": "Lord, make me to know mine end, and the measure of my days, what it is; that I may know how frail I am." + }, + { + "nr": "5", + "text": "Behold, thou hast made my days as an handbreadth; and mine age is as nothing before thee: verily every man at his best state is altogether vanity. Selah." + }, + { + "nr": "6", + "text": "Surely every man walketh in a vain shew: surely they are disquieted in vain: he heapeth up riches, and knoweth not who shall gather them." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4-6", + "version": "kjv" +} diff --git a/scripture/kjv/03/20/24/scripture.md b/scripture/kjv/03/20/24/scripture.md new file mode 100644 index 00000000..e2877952 --- /dev/null +++ b/scripture/kjv/03/20/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 39:4-6** + +4 Lord, make me to know mine end, and the measure of my days, what it is; that I may know how frail I am. 5 Behold, thou hast made my days as an handbreadth; and mine age is as nothing before thee: verily every man at his best state is altogether vanity. Selah. 6 Surely every man walketh in a vain shew: surely they are disquieted in vain: he heapeth up riches, and knoweth not who shall gather them. + +[Wednesday 20-March, 2024](https://getbible.life/kjv/Psalms/39/4-6) diff --git a/scripture/kjv/03/20/24/scripture.tg b/scripture/kjv/03/20/24/scripture.tg new file mode 100644 index 00000000..b8b05139 --- /dev/null +++ b/scripture/kjv/03/20/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 39:4-6 +4 Lord, make me to know mine end, and the measure of my days, what it is; that I may know how frail I am. 5 Behold, thou hast made my days as an handbreadth; and mine age is as nothing before thee: verily every man at his best state is altogether vanity. Selah. 6 Surely every man walketh in a vain shew: surely they are disquieted in vain: he heapeth up riches, and knoweth not who shall gather them. + +Wednesday 20-March, 2024 diff --git a/scripture/kjv/03/20/24/scripture.tg.id b/scripture/kjv/03/20/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/20/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/20/24/scripture.today b/scripture/kjv/03/20/24/scripture.today new file mode 100644 index 00000000..d92b248d --- /dev/null +++ b/scripture/kjv/03/20/24/scripture.today @@ -0,0 +1 @@ +19 39:4-6 diff --git a/scripture/kjv/03/20/25/scripture.html b/scripture/kjv/03/20/25/scripture.html new file mode 100644 index 00000000..f35890e5 --- /dev/null +++ b/scripture/kjv/03/20/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 94:15
+15 But judgment shall return unto righteousness: and all the upright in heart shall follow it.

+Thursday 20-March, 2025 diff --git a/scripture/kjv/03/20/25/scripture.json b/scripture/kjv/03/20/25/scripture.json new file mode 100644 index 00000000..04ed87a9 --- /dev/null +++ b/scripture/kjv/03/20/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "94", + "date": "Thursday 20-March, 2025", + "getbible": "https://getbible.life/kjv/Psalms/94/15", + "name": "Psalms 94:15", + "scripture": [ + { + "nr": "15", + "text": "But judgment shall return unto righteousness: and all the upright in heart shall follow it." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15", + "version": "kjv" +} diff --git a/scripture/kjv/03/20/25/scripture.md b/scripture/kjv/03/20/25/scripture.md new file mode 100644 index 00000000..841a63a4 --- /dev/null +++ b/scripture/kjv/03/20/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 94:15** + +15 But judgment shall return unto righteousness: and all the upright in heart shall follow it. + +[Thursday 20-March, 2025](https://getbible.life/kjv/Psalms/94/15) diff --git a/scripture/kjv/03/20/25/scripture.tg b/scripture/kjv/03/20/25/scripture.tg new file mode 100644 index 00000000..5f6603d4 --- /dev/null +++ b/scripture/kjv/03/20/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 94:15 +15 But judgment shall return unto righteousness: and all the upright in heart shall follow it. + +Thursday 20-March, 2025 diff --git a/scripture/kjv/03/20/25/scripture.tg.id b/scripture/kjv/03/20/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/20/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/20/25/scripture.today b/scripture/kjv/03/20/25/scripture.today new file mode 100644 index 00000000..6d1215fa --- /dev/null +++ b/scripture/kjv/03/20/25/scripture.today @@ -0,0 +1 @@ +19 94:15 diff --git a/scripture/kjv/03/20/26/scripture.html b/scripture/kjv/03/20/26/scripture.html new file mode 100644 index 00000000..c93d3747 --- /dev/null +++ b/scripture/kjv/03/20/26/scripture.html @@ -0,0 +1,3 @@ +1 John 2:29
+29 If ye know that he is righteous, ye know that every one that doeth righteousness is born of him.

+Friday 20-March, 2026 diff --git a/scripture/kjv/03/20/26/scripture.json b/scripture/kjv/03/20/26/scripture.json new file mode 100644 index 00000000..2b79239d --- /dev/null +++ b/scripture/kjv/03/20/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 John", + "chapter": "2", + "date": "Friday 20-March, 2026", + "getbible": "https://getbible.life/kjv/1 John/2/29", + "name": "1 John 2:29", + "scripture": [ + { + "nr": "29", + "text": "If ye know that he is righteous, ye know that every one that doeth righteousness is born of him. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "29", + "version": "kjv" +} diff --git a/scripture/kjv/03/20/26/scripture.md b/scripture/kjv/03/20/26/scripture.md new file mode 100644 index 00000000..a5697121 --- /dev/null +++ b/scripture/kjv/03/20/26/scripture.md @@ -0,0 +1,5 @@ +**1 John 2:29** + +29 If ye know that he is righteous, ye know that every one that doeth righteousness is born of him. + +[Friday 20-March, 2026](https://getbible.life/kjv/1 John/2/29) diff --git a/scripture/kjv/03/20/26/scripture.tg b/scripture/kjv/03/20/26/scripture.tg new file mode 100644 index 00000000..df0bd9e9 --- /dev/null +++ b/scripture/kjv/03/20/26/scripture.tg @@ -0,0 +1,4 @@ +1 John 2:29 +29 If ye know that he is righteous, ye know that every one that doeth righteousness is born of him. + +Friday 20-March, 2026 diff --git a/scripture/kjv/03/20/26/scripture.tg.id b/scripture/kjv/03/20/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/20/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/20/26/scripture.today b/scripture/kjv/03/20/26/scripture.today new file mode 100644 index 00000000..32f34803 --- /dev/null +++ b/scripture/kjv/03/20/26/scripture.today @@ -0,0 +1 @@ +62 2:29 diff --git a/scripture/kjv/03/21/23/scripture.html b/scripture/kjv/03/21/23/scripture.html new file mode 100644 index 00000000..8df5aaae --- /dev/null +++ b/scripture/kjv/03/21/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 27:4
+4 One thing have I desired of the Lord, that will I seek after; that I may dwell in the house of the Lord all the days of my life, to behold the beauty of the Lord, and to enquire in his temple.

+Tuesday 21-March, 2023 diff --git a/scripture/kjv/03/21/23/scripture.json b/scripture/kjv/03/21/23/scripture.json new file mode 100644 index 00000000..0cf6f320 --- /dev/null +++ b/scripture/kjv/03/21/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Tuesday 21-March, 2023", + "name": "Psalms 27:4", + "scripture": [ + { + "nr": "4", + "text": "One thing have I desired of the Lord, that will I seek after; that I may dwell in the house of the Lord all the days of my life, to behold the beauty of the Lord, and to enquire in his temple." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/21/23/scripture.md b/scripture/kjv/03/21/23/scripture.md new file mode 100644 index 00000000..88d0b44c --- /dev/null +++ b/scripture/kjv/03/21/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 27:4** + +4 One thing have I desired of the Lord, that will I seek after; that I may dwell in the house of the Lord all the days of my life, to behold the beauty of the Lord, and to enquire in his temple. + +[Tuesday 21-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/21/23/scripture.tg b/scripture/kjv/03/21/23/scripture.tg new file mode 100644 index 00000000..32066323 --- /dev/null +++ b/scripture/kjv/03/21/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 27:4 +4 One thing have I desired of the Lord, that will I seek after; that I may dwell in the house of the Lord all the days of my life, to behold the beauty of the Lord, and to enquire in his temple. + +Tuesday 21-March, 2023 diff --git a/scripture/kjv/03/21/23/scripture.today b/scripture/kjv/03/21/23/scripture.today new file mode 100644 index 00000000..51701a3e --- /dev/null +++ b/scripture/kjv/03/21/23/scripture.today @@ -0,0 +1 @@ +19 27:4 diff --git a/scripture/kjv/03/21/24/scripture.html b/scripture/kjv/03/21/24/scripture.html new file mode 100644 index 00000000..ab293a85 --- /dev/null +++ b/scripture/kjv/03/21/24/scripture.html @@ -0,0 +1,3 @@ +John 13:5
+5 After that he poureth water into a bason, and began to wash the disciples’ feet, and to wipe them with the towel wherewith he was girded.

+Thursday 21-March, 2024 diff --git a/scripture/kjv/03/21/24/scripture.json b/scripture/kjv/03/21/24/scripture.json new file mode 100644 index 00000000..1443c5d2 --- /dev/null +++ b/scripture/kjv/03/21/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "13", + "date": "Thursday 21-March, 2024", + "getbible": "https://getbible.life/kjv/John/13/5", + "name": "John 13:5", + "scripture": [ + { + "nr": "5", + "text": "After that he poureth water into a bason, and began to wash the disciples’ feet, and to wipe them with the towel wherewith he was girded." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5", + "version": "kjv" +} diff --git a/scripture/kjv/03/21/24/scripture.md b/scripture/kjv/03/21/24/scripture.md new file mode 100644 index 00000000..e36e513e --- /dev/null +++ b/scripture/kjv/03/21/24/scripture.md @@ -0,0 +1,5 @@ +**John 13:5** + +5 After that he poureth water into a bason, and began to wash the disciples’ feet, and to wipe them with the towel wherewith he was girded. + +[Thursday 21-March, 2024](https://getbible.life/kjv/John/13/5) diff --git a/scripture/kjv/03/21/24/scripture.tg b/scripture/kjv/03/21/24/scripture.tg new file mode 100644 index 00000000..4a8b5afa --- /dev/null +++ b/scripture/kjv/03/21/24/scripture.tg @@ -0,0 +1,4 @@ +John 13:5 +5 After that he poureth water into a bason, and began to wash the disciples’ feet, and to wipe them with the towel wherewith he was girded. + +Thursday 21-March, 2024 diff --git a/scripture/kjv/03/21/24/scripture.tg.id b/scripture/kjv/03/21/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/21/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/21/24/scripture.today b/scripture/kjv/03/21/24/scripture.today new file mode 100644 index 00000000..e7241177 --- /dev/null +++ b/scripture/kjv/03/21/24/scripture.today @@ -0,0 +1 @@ +43 13:5 diff --git a/scripture/kjv/03/21/25/scripture.html b/scripture/kjv/03/21/25/scripture.html new file mode 100644 index 00000000..d400def6 --- /dev/null +++ b/scripture/kjv/03/21/25/scripture.html @@ -0,0 +1,3 @@ +Acts 20:16
+16 For Paul had determined to sail by Ephesus, because he would not spend the time in Asia: for he hasted, if it were possible for him, to be at Jerusalem the day of Pentecost.

+Friday 21-March, 2025 diff --git a/scripture/kjv/03/21/25/scripture.json b/scripture/kjv/03/21/25/scripture.json new file mode 100644 index 00000000..39ade8c1 --- /dev/null +++ b/scripture/kjv/03/21/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Acts", + "chapter": "20", + "date": "Friday 21-March, 2025", + "getbible": "https://getbible.life/kjv/Acts/20/16", + "name": "Acts 20:16", + "scripture": [ + { + "nr": "16", + "text": "For Paul had determined to sail by Ephesus, because he would not spend the time in Asia: for he hasted, if it were possible for him, to be at Jerusalem the day of Pentecost." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16", + "version": "kjv" +} diff --git a/scripture/kjv/03/21/25/scripture.md b/scripture/kjv/03/21/25/scripture.md new file mode 100644 index 00000000..01f475b7 --- /dev/null +++ b/scripture/kjv/03/21/25/scripture.md @@ -0,0 +1,5 @@ +**Acts 20:16** + +16 For Paul had determined to sail by Ephesus, because he would not spend the time in Asia: for he hasted, if it were possible for him, to be at Jerusalem the day of Pentecost. + +[Friday 21-March, 2025](https://getbible.life/kjv/Acts/20/16) diff --git a/scripture/kjv/03/21/25/scripture.tg b/scripture/kjv/03/21/25/scripture.tg new file mode 100644 index 00000000..28a0cfa1 --- /dev/null +++ b/scripture/kjv/03/21/25/scripture.tg @@ -0,0 +1,4 @@ +Acts 20:16 +16 For Paul had determined to sail by Ephesus, because he would not spend the time in Asia: for he hasted, if it were possible for him, to be at Jerusalem the day of Pentecost. + +Friday 21-March, 2025 diff --git a/scripture/kjv/03/21/25/scripture.tg.id b/scripture/kjv/03/21/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/21/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/21/25/scripture.today b/scripture/kjv/03/21/25/scripture.today new file mode 100644 index 00000000..95b5180c --- /dev/null +++ b/scripture/kjv/03/21/25/scripture.today @@ -0,0 +1 @@ +44 20:16 diff --git a/scripture/kjv/03/21/26/scripture.html b/scripture/kjv/03/21/26/scripture.html new file mode 100644 index 00000000..fd9df37a --- /dev/null +++ b/scripture/kjv/03/21/26/scripture.html @@ -0,0 +1,3 @@ +2 Timothy 2:24-26
+24 And the servant of the Lord must not strive; but be gentle unto all men, apt to teach, patient, 25 In meekness instructing those that oppose themselves; if God peradventure will give them repentance to the acknowledging of the truth; 26 And that they may recover themselves out of the snare of the devil, who are taken captive by him at his will.

+Saturday 21-March, 2026 diff --git a/scripture/kjv/03/21/26/scripture.json b/scripture/kjv/03/21/26/scripture.json new file mode 100644 index 00000000..1a8f1a7d --- /dev/null +++ b/scripture/kjv/03/21/26/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "2 Timothy", + "chapter": "2", + "date": "Saturday 21-March, 2026", + "getbible": "https://getbible.life/kjv/2 Timothy/2/24-26", + "name": "2 Timothy 2:24-26", + "scripture": [ + { + "nr": "24", + "text": "And the servant of the Lord must not strive; but be gentle unto all men, apt to teach, patient," + }, + { + "nr": "25", + "text": "In meekness instructing those that oppose themselves; if God peradventure will give them repentance to the acknowledging of the truth;" + }, + { + "nr": "26", + "text": "And that they may recover themselves out of the snare of the devil, who are taken captive by him at his will. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "24-26", + "version": "kjv" +} diff --git a/scripture/kjv/03/21/26/scripture.md b/scripture/kjv/03/21/26/scripture.md new file mode 100644 index 00000000..2fd65901 --- /dev/null +++ b/scripture/kjv/03/21/26/scripture.md @@ -0,0 +1,5 @@ +**2 Timothy 2:24-26** + +24 And the servant of the Lord must not strive; but be gentle unto all men, apt to teach, patient, 25 In meekness instructing those that oppose themselves; if God peradventure will give them repentance to the acknowledging of the truth; 26 And that they may recover themselves out of the snare of the devil, who are taken captive by him at his will. + +[Saturday 21-March, 2026](https://getbible.life/kjv/2 Timothy/2/24-26) diff --git a/scripture/kjv/03/21/26/scripture.tg b/scripture/kjv/03/21/26/scripture.tg new file mode 100644 index 00000000..fbecd4bb --- /dev/null +++ b/scripture/kjv/03/21/26/scripture.tg @@ -0,0 +1,4 @@ +2 Timothy 2:24-26 +24 And the servant of the Lord must not strive; but be gentle unto all men, apt to teach, patient, 25 In meekness instructing those that oppose themselves; if God peradventure will give them repentance to the acknowledging of the truth; 26 And that they may recover themselves out of the snare of the devil, who are taken captive by him at his will. + +Saturday 21-March, 2026 diff --git a/scripture/kjv/03/21/26/scripture.tg.id b/scripture/kjv/03/21/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/21/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/21/26/scripture.today b/scripture/kjv/03/21/26/scripture.today new file mode 100644 index 00000000..78a116a9 --- /dev/null +++ b/scripture/kjv/03/21/26/scripture.today @@ -0,0 +1 @@ +55 2:24-26 diff --git a/scripture/kjv/03/22/23/scripture.html b/scripture/kjv/03/22/23/scripture.html new file mode 100644 index 00000000..1e372a86 --- /dev/null +++ b/scripture/kjv/03/22/23/scripture.html @@ -0,0 +1,3 @@ +1 Timothy 6:9-10
+9 But they that will be rich fall into temptation and a snare, and into many foolish and hurtful lusts, which drown men in destruction and perdition. 10 For the love of money is the root of all evil: which while some coveted after, they have erred from the faith, and pierced themselves through with many sorrows.

+Wednesday 22-March, 2023 diff --git a/scripture/kjv/03/22/23/scripture.json b/scripture/kjv/03/22/23/scripture.json new file mode 100644 index 00000000..28ff6a99 --- /dev/null +++ b/scripture/kjv/03/22/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Wednesday 22-March, 2023", + "name": "1 Timothy 6:9-10", + "scripture": [ + { + "nr": "9", + "text": "But they that will be rich fall into temptation and a snare, and into many foolish and hurtful lusts, which drown men in destruction and perdition." + }, + { + "nr": "10", + "text": "For the love of money is the root of all evil: which while some coveted after, they have erred from the faith, and pierced themselves through with many sorrows." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/22/23/scripture.md b/scripture/kjv/03/22/23/scripture.md new file mode 100644 index 00000000..c7d19739 --- /dev/null +++ b/scripture/kjv/03/22/23/scripture.md @@ -0,0 +1,5 @@ +**1 Timothy 6:9-10** + +9 But they that will be rich fall into temptation and a snare, and into many foolish and hurtful lusts, which drown men in destruction and perdition. 10 For the love of money is the root of all evil: which while some coveted after, they have erred from the faith, and pierced themselves through with many sorrows. + +[Wednesday 22-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/22/23/scripture.tg b/scripture/kjv/03/22/23/scripture.tg new file mode 100644 index 00000000..b6790661 --- /dev/null +++ b/scripture/kjv/03/22/23/scripture.tg @@ -0,0 +1,4 @@ +1 Timothy 6:9-10 +9 But they that will be rich fall into temptation and a snare, and into many foolish and hurtful lusts, which drown men in destruction and perdition. 10 For the love of money is the root of all evil: which while some coveted after, they have erred from the faith, and pierced themselves through with many sorrows. + +Wednesday 22-March, 2023 diff --git a/scripture/kjv/03/22/23/scripture.today b/scripture/kjv/03/22/23/scripture.today new file mode 100644 index 00000000..6083122b --- /dev/null +++ b/scripture/kjv/03/22/23/scripture.today @@ -0,0 +1 @@ +54 6:9-10 diff --git a/scripture/kjv/03/22/24/scripture.html b/scripture/kjv/03/22/24/scripture.html new file mode 100644 index 00000000..afa4e959 --- /dev/null +++ b/scripture/kjv/03/22/24/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 15:58
+58 Therefore, my beloved brethren, be ye stedfast, unmoveable, always abounding in the work of the Lord, forasmuch as ye know that your labour is not in vain in the Lord.

+Friday 22-March, 2024 diff --git a/scripture/kjv/03/22/24/scripture.json b/scripture/kjv/03/22/24/scripture.json new file mode 100644 index 00000000..d65e2b76 --- /dev/null +++ b/scripture/kjv/03/22/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "15", + "date": "Friday 22-March, 2024", + "getbible": "https://getbible.life/kjv/1 Corinthians/15/58", + "name": "1 Corinthians 15:58", + "scripture": [ + { + "nr": "58", + "text": "Therefore, my beloved brethren, be ye stedfast, unmoveable, always abounding in the work of the Lord, forasmuch as ye know that your labour is not in vain in the Lord. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "58", + "version": "kjv" +} diff --git a/scripture/kjv/03/22/24/scripture.md b/scripture/kjv/03/22/24/scripture.md new file mode 100644 index 00000000..e73517a1 --- /dev/null +++ b/scripture/kjv/03/22/24/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 15:58** + +58 Therefore, my beloved brethren, be ye stedfast, unmoveable, always abounding in the work of the Lord, forasmuch as ye know that your labour is not in vain in the Lord. + +[Friday 22-March, 2024](https://getbible.life/kjv/1 Corinthians/15/58) diff --git a/scripture/kjv/03/22/24/scripture.tg b/scripture/kjv/03/22/24/scripture.tg new file mode 100644 index 00000000..0731f8dc --- /dev/null +++ b/scripture/kjv/03/22/24/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 15:58 +58 Therefore, my beloved brethren, be ye stedfast, unmoveable, always abounding in the work of the Lord, forasmuch as ye know that your labour is not in vain in the Lord. + +Friday 22-March, 2024 diff --git a/scripture/kjv/03/22/24/scripture.tg.id b/scripture/kjv/03/22/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/22/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/22/24/scripture.today b/scripture/kjv/03/22/24/scripture.today new file mode 100644 index 00000000..53cf9c21 --- /dev/null +++ b/scripture/kjv/03/22/24/scripture.today @@ -0,0 +1 @@ +46 15:58 diff --git a/scripture/kjv/03/22/25/scripture.html b/scripture/kjv/03/22/25/scripture.html new file mode 100644 index 00000000..84f91c68 --- /dev/null +++ b/scripture/kjv/03/22/25/scripture.html @@ -0,0 +1,3 @@ +Daniel 9:13-15
+13 As it is written in the law of Moses, all this evil is come upon us: yet made we not our prayer before the Lord our God, that we might turn from our iniquities, and understand thy truth. 14 Therefore hath the Lord watched upon the evil, and brought it upon us: for the Lord our God is righteous in all his works which he doeth: for we obeyed not his voice. 15 And now, O Lord our God, that hast brought thy people forth out of the land of Egypt with a mighty hand, and hast gotten thee renown, as at this day; we have sinned, we have done wickedly.

+Saturday 22-March, 2025 diff --git a/scripture/kjv/03/22/25/scripture.json b/scripture/kjv/03/22/25/scripture.json new file mode 100644 index 00000000..e902839b --- /dev/null +++ b/scripture/kjv/03/22/25/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Daniel", + "chapter": "9", + "date": "Saturday 22-March, 2025", + "getbible": "https://getbible.life/kjv/Daniel/9/13-15", + "name": "Daniel 9:13-15", + "scripture": [ + { + "nr": "13", + "text": "As it is written in the law of Moses, all this evil is come upon us: yet made we not our prayer before the Lord our God, that we might turn from our iniquities, and understand thy truth." + }, + { + "nr": "14", + "text": "Therefore hath the Lord watched upon the evil, and brought it upon us: for the Lord our God is righteous in all his works which he doeth: for we obeyed not his voice." + }, + { + "nr": "15", + "text": "And now, O Lord our God, that hast brought thy people forth out of the land of Egypt with a mighty hand, and hast gotten thee renown, as at this day; we have sinned, we have done wickedly." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13-15", + "version": "kjv" +} diff --git a/scripture/kjv/03/22/25/scripture.md b/scripture/kjv/03/22/25/scripture.md new file mode 100644 index 00000000..8cc18392 --- /dev/null +++ b/scripture/kjv/03/22/25/scripture.md @@ -0,0 +1,5 @@ +**Daniel 9:13-15** + +13 As it is written in the law of Moses, all this evil is come upon us: yet made we not our prayer before the Lord our God, that we might turn from our iniquities, and understand thy truth. 14 Therefore hath the Lord watched upon the evil, and brought it upon us: for the Lord our God is righteous in all his works which he doeth: for we obeyed not his voice. 15 And now, O Lord our God, that hast brought thy people forth out of the land of Egypt with a mighty hand, and hast gotten thee renown, as at this day; we have sinned, we have done wickedly. + +[Saturday 22-March, 2025](https://getbible.life/kjv/Daniel/9/13-15) diff --git a/scripture/kjv/03/22/25/scripture.tg b/scripture/kjv/03/22/25/scripture.tg new file mode 100644 index 00000000..aeaea09b --- /dev/null +++ b/scripture/kjv/03/22/25/scripture.tg @@ -0,0 +1,4 @@ +Daniel 9:13-15 +13 As it is written in the law of Moses, all this evil is come upon us: yet made we not our prayer before the Lord our God, that we might turn from our iniquities, and understand thy truth. 14 Therefore hath the Lord watched upon the evil, and brought it upon us: for the Lord our God is righteous in all his works which he doeth: for we obeyed not his voice. 15 And now, O Lord our God, that hast brought thy people forth out of the land of Egypt with a mighty hand, and hast gotten thee renown, as at this day; we have sinned, we have done wickedly. + +Saturday 22-March, 2025 diff --git a/scripture/kjv/03/22/25/scripture.tg.id b/scripture/kjv/03/22/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/22/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/22/25/scripture.today b/scripture/kjv/03/22/25/scripture.today new file mode 100644 index 00000000..0fd647af --- /dev/null +++ b/scripture/kjv/03/22/25/scripture.today @@ -0,0 +1 @@ +27 9:13-15 diff --git a/scripture/kjv/03/22/26/scripture.html b/scripture/kjv/03/22/26/scripture.html new file mode 100644 index 00000000..9b093f04 --- /dev/null +++ b/scripture/kjv/03/22/26/scripture.html @@ -0,0 +1,3 @@ +Psalms 46:1-2
+1 God is our refuge and strength, a very present help in trouble. 2 Therefore will not we fear, though the earth be removed, and though the mountains be carried into the midst of the sea;

+Sunday 22-March, 2026 diff --git a/scripture/kjv/03/22/26/scripture.json b/scripture/kjv/03/22/26/scripture.json new file mode 100644 index 00000000..d2b7cdf0 --- /dev/null +++ b/scripture/kjv/03/22/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Psalms", + "chapter": "46", + "date": "Sunday 22-March, 2026", + "getbible": "https://getbible.life/kjv/Psalms/46/1-2", + "name": "Psalms 46:1-2", + "scripture": [ + { + "nr": "1", + "text": "God is our refuge and strength, a very present help in trouble." + }, + { + "nr": "2", + "text": "Therefore will not we fear, though the earth be removed, and though the mountains be carried into the midst of the sea;" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-2", + "version": "kjv" +} diff --git a/scripture/kjv/03/22/26/scripture.md b/scripture/kjv/03/22/26/scripture.md new file mode 100644 index 00000000..5fd0064a --- /dev/null +++ b/scripture/kjv/03/22/26/scripture.md @@ -0,0 +1,5 @@ +**Psalms 46:1-2** + +1 God is our refuge and strength, a very present help in trouble. 2 Therefore will not we fear, though the earth be removed, and though the mountains be carried into the midst of the sea; + +[Sunday 22-March, 2026](https://getbible.life/kjv/Psalms/46/1-2) diff --git a/scripture/kjv/03/22/26/scripture.tg b/scripture/kjv/03/22/26/scripture.tg new file mode 100644 index 00000000..ae48a163 --- /dev/null +++ b/scripture/kjv/03/22/26/scripture.tg @@ -0,0 +1,4 @@ +Psalms 46:1-2 +1 God is our refuge and strength, a very present help in trouble. 2 Therefore will not we fear, though the earth be removed, and though the mountains be carried into the midst of the sea; + +Sunday 22-March, 2026 diff --git a/scripture/kjv/03/22/26/scripture.today b/scripture/kjv/03/22/26/scripture.today new file mode 100644 index 00000000..66cfc038 --- /dev/null +++ b/scripture/kjv/03/22/26/scripture.today @@ -0,0 +1 @@ +19 46:1-2 diff --git a/scripture/kjv/03/23/23/scripture.html b/scripture/kjv/03/23/23/scripture.html new file mode 100644 index 00000000..91d169c6 --- /dev/null +++ b/scripture/kjv/03/23/23/scripture.html @@ -0,0 +1,3 @@ +Luke 21:34
+34 And take heed to yourselves, lest at any time your hearts be overcharged with surfeiting, and drunkenness, and cares of this life, and so that day come upon you unawares.

+Thursday 23-March, 2023 diff --git a/scripture/kjv/03/23/23/scripture.json b/scripture/kjv/03/23/23/scripture.json new file mode 100644 index 00000000..6f0e776e --- /dev/null +++ b/scripture/kjv/03/23/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Thursday 23-March, 2023", + "name": "Luke 21:34", + "scripture": [ + { + "nr": "34", + "text": "And take heed to yourselves, lest at any time your hearts be overcharged with surfeiting, and drunkenness, and cares of this life, and so that day come upon you unawares." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/23/23/scripture.md b/scripture/kjv/03/23/23/scripture.md new file mode 100644 index 00000000..c11de838 --- /dev/null +++ b/scripture/kjv/03/23/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 21:34** + +34 And take heed to yourselves, lest at any time your hearts be overcharged with surfeiting, and drunkenness, and cares of this life, and so that day come upon you unawares. + +[Thursday 23-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/23/23/scripture.tg b/scripture/kjv/03/23/23/scripture.tg new file mode 100644 index 00000000..64178f49 --- /dev/null +++ b/scripture/kjv/03/23/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 21:34 +34 And take heed to yourselves, lest at any time your hearts be overcharged with surfeiting, and drunkenness, and cares of this life, and so that day come upon you unawares. + +Thursday 23-March, 2023 diff --git a/scripture/kjv/03/23/23/scripture.today b/scripture/kjv/03/23/23/scripture.today new file mode 100644 index 00000000..8ea7f464 --- /dev/null +++ b/scripture/kjv/03/23/23/scripture.today @@ -0,0 +1 @@ +42 21:34 diff --git a/scripture/kjv/03/23/24/scripture.html b/scripture/kjv/03/23/24/scripture.html new file mode 100644 index 00000000..40cf92a5 --- /dev/null +++ b/scripture/kjv/03/23/24/scripture.html @@ -0,0 +1,3 @@ +Revelation 22:14
+14 Blessed are they that do his commandments, that they may have right to the tree of life, and may enter in through the gates into the city.

+Saturday 23-March, 2024 diff --git a/scripture/kjv/03/23/24/scripture.json b/scripture/kjv/03/23/24/scripture.json new file mode 100644 index 00000000..0560f5ae --- /dev/null +++ b/scripture/kjv/03/23/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Revelation", + "chapter": "22", + "date": "Saturday 23-March, 2024", + "getbible": "https://getbible.life/kjv/Revelation/22/14", + "name": "Revelation 22:14", + "scripture": [ + { + "nr": "14", + "text": "Blessed are they that do his commandments, that they may have right to the tree of life, and may enter in through the gates into the city." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/03/23/24/scripture.md b/scripture/kjv/03/23/24/scripture.md new file mode 100644 index 00000000..80559e58 --- /dev/null +++ b/scripture/kjv/03/23/24/scripture.md @@ -0,0 +1,5 @@ +**Revelation 22:14** + +14 Blessed are they that do his commandments, that they may have right to the tree of life, and may enter in through the gates into the city. + +[Saturday 23-March, 2024](https://getbible.life/kjv/Revelation/22/14) diff --git a/scripture/kjv/03/23/24/scripture.tg b/scripture/kjv/03/23/24/scripture.tg new file mode 100644 index 00000000..1eb523ae --- /dev/null +++ b/scripture/kjv/03/23/24/scripture.tg @@ -0,0 +1,4 @@ +Revelation 22:14 +14 Blessed are they that do his commandments, that they may have right to the tree of life, and may enter in through the gates into the city. + +Saturday 23-March, 2024 diff --git a/scripture/kjv/03/23/24/scripture.tg.id b/scripture/kjv/03/23/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/23/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/23/24/scripture.today b/scripture/kjv/03/23/24/scripture.today new file mode 100644 index 00000000..d964c482 --- /dev/null +++ b/scripture/kjv/03/23/24/scripture.today @@ -0,0 +1 @@ +66 22:14 diff --git a/scripture/kjv/03/23/25/scripture.html b/scripture/kjv/03/23/25/scripture.html new file mode 100644 index 00000000..0f662eae --- /dev/null +++ b/scripture/kjv/03/23/25/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 9:25
+25 And every man that striveth for the mastery is temperate in all things. Now they do it to obtain a corruptible crown; but we an incorruptible.

+Sunday 23-March, 2025 diff --git a/scripture/kjv/03/23/25/scripture.json b/scripture/kjv/03/23/25/scripture.json new file mode 100644 index 00000000..0c97ee1b --- /dev/null +++ b/scripture/kjv/03/23/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "9", + "date": "Sunday 23-March, 2025", + "getbible": "https://getbible.life/kjv/1 Corinthians/9/25", + "name": "1 Corinthians 9:25", + "scripture": [ + { + "nr": "25", + "text": "And every man that striveth for the mastery is temperate in all things. Now they do it to obtain a corruptible crown; but we an incorruptible." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "25", + "version": "kjv" +} diff --git a/scripture/kjv/03/23/25/scripture.md b/scripture/kjv/03/23/25/scripture.md new file mode 100644 index 00000000..d1b713e4 --- /dev/null +++ b/scripture/kjv/03/23/25/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 9:25** + +25 And every man that striveth for the mastery is temperate in all things. Now they do it to obtain a corruptible crown; but we an incorruptible. + +[Sunday 23-March, 2025](https://getbible.life/kjv/1 Corinthians/9/25) diff --git a/scripture/kjv/03/23/25/scripture.tg b/scripture/kjv/03/23/25/scripture.tg new file mode 100644 index 00000000..fe695d4d --- /dev/null +++ b/scripture/kjv/03/23/25/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 9:25 +25 And every man that striveth for the mastery is temperate in all things. Now they do it to obtain a corruptible crown; but we an incorruptible. + +Sunday 23-March, 2025 diff --git a/scripture/kjv/03/23/25/scripture.tg.id b/scripture/kjv/03/23/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/23/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/23/25/scripture.today b/scripture/kjv/03/23/25/scripture.today new file mode 100644 index 00000000..423c53cf --- /dev/null +++ b/scripture/kjv/03/23/25/scripture.today @@ -0,0 +1 @@ +46 9:25 diff --git a/scripture/kjv/03/23/26/scripture.html b/scripture/kjv/03/23/26/scripture.html new file mode 100644 index 00000000..299fb78e --- /dev/null +++ b/scripture/kjv/03/23/26/scripture.html @@ -0,0 +1,3 @@ +Proverbs 12:15
+15 The way of a fool is right in his own eyes: but he that hearkeneth unto counsel is wise.

+Monday 23-March, 2026 diff --git a/scripture/kjv/03/23/26/scripture.json b/scripture/kjv/03/23/26/scripture.json new file mode 100644 index 00000000..43d019a7 --- /dev/null +++ b/scripture/kjv/03/23/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "12", + "date": "Monday 23-March, 2026", + "getbible": "https://getbible.life/kjv/Proverbs/12/15", + "name": "Proverbs 12:15", + "scripture": [ + { + "nr": "15", + "text": "The way of a fool is right in his own eyes: but he that hearkeneth unto counsel is wise." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15", + "version": "kjv" +} diff --git a/scripture/kjv/03/23/26/scripture.md b/scripture/kjv/03/23/26/scripture.md new file mode 100644 index 00000000..51241908 --- /dev/null +++ b/scripture/kjv/03/23/26/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 12:15** + +15 The way of a fool is right in his own eyes: but he that hearkeneth unto counsel is wise. + +[Monday 23-March, 2026](https://getbible.life/kjv/Proverbs/12/15) diff --git a/scripture/kjv/03/23/26/scripture.tg b/scripture/kjv/03/23/26/scripture.tg new file mode 100644 index 00000000..39b823de --- /dev/null +++ b/scripture/kjv/03/23/26/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 12:15 +15 The way of a fool is right in his own eyes: but he that hearkeneth unto counsel is wise. + +Monday 23-March, 2026 diff --git a/scripture/kjv/03/23/26/scripture.tg.id b/scripture/kjv/03/23/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/23/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/23/26/scripture.today b/scripture/kjv/03/23/26/scripture.today new file mode 100644 index 00000000..7c3af296 --- /dev/null +++ b/scripture/kjv/03/23/26/scripture.today @@ -0,0 +1 @@ +20 12:15 diff --git a/scripture/kjv/03/24/23/scripture.html b/scripture/kjv/03/24/23/scripture.html new file mode 100644 index 00000000..8734aa7e --- /dev/null +++ b/scripture/kjv/03/24/23/scripture.html @@ -0,0 +1,3 @@ +Ezra 7:23
+23 Whatsoever is commanded by the God of heaven, let it be diligently done for the house of the God of heaven: for why should there be wrath against the realm of the king and his sons?

+Friday 24-March, 2023 diff --git a/scripture/kjv/03/24/23/scripture.json b/scripture/kjv/03/24/23/scripture.json new file mode 100644 index 00000000..face7ae3 --- /dev/null +++ b/scripture/kjv/03/24/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Friday 24-March, 2023", + "name": "Ezra 7:23", + "scripture": [ + { + "nr": "23", + "text": "Whatsoever is commanded by the God of heaven, let it be diligently done for the house of the God of heaven: for why should there be wrath against the realm of the king and his sons?" + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/24/23/scripture.md b/scripture/kjv/03/24/23/scripture.md new file mode 100644 index 00000000..808ebb55 --- /dev/null +++ b/scripture/kjv/03/24/23/scripture.md @@ -0,0 +1,5 @@ +**Ezra 7:23** + +23 Whatsoever is commanded by the God of heaven, let it be diligently done for the house of the God of heaven: for why should there be wrath against the realm of the king and his sons? + +[Friday 24-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/24/23/scripture.tg b/scripture/kjv/03/24/23/scripture.tg new file mode 100644 index 00000000..72467329 --- /dev/null +++ b/scripture/kjv/03/24/23/scripture.tg @@ -0,0 +1,4 @@ +Ezra 7:23 +23 Whatsoever is commanded by the God of heaven, let it be diligently done for the house of the God of heaven: for why should there be wrath against the realm of the king and his sons? + +Friday 24-March, 2023 diff --git a/scripture/kjv/03/24/23/scripture.today b/scripture/kjv/03/24/23/scripture.today new file mode 100644 index 00000000..aa5eea95 --- /dev/null +++ b/scripture/kjv/03/24/23/scripture.today @@ -0,0 +1 @@ +15 7:23 diff --git a/scripture/kjv/03/24/24/scripture.html b/scripture/kjv/03/24/24/scripture.html new file mode 100644 index 00000000..43e4a001 --- /dev/null +++ b/scripture/kjv/03/24/24/scripture.html @@ -0,0 +1,3 @@ +Romans 10:21
+21 But to Israel he saith, All day long I have stretched forth my hands unto a disobedient and gainsaying people.

+Sunday 24-March, 2024 diff --git a/scripture/kjv/03/24/24/scripture.json b/scripture/kjv/03/24/24/scripture.json new file mode 100644 index 00000000..17e6f9f9 --- /dev/null +++ b/scripture/kjv/03/24/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Romans", + "chapter": "10", + "date": "Sunday 24-March, 2024", + "getbible": "https://getbible.life/kjv/Romans/10/21", + "name": "Romans 10:21", + "scripture": [ + { + "nr": "21", + "text": "But to Israel he saith, All day long I have stretched forth my hands unto a disobedient and gainsaying people. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "21", + "version": "kjv" +} diff --git a/scripture/kjv/03/24/24/scripture.md b/scripture/kjv/03/24/24/scripture.md new file mode 100644 index 00000000..a3e2f45b --- /dev/null +++ b/scripture/kjv/03/24/24/scripture.md @@ -0,0 +1,5 @@ +**Romans 10:21** + +21 But to Israel he saith, All day long I have stretched forth my hands unto a disobedient and gainsaying people. + +[Sunday 24-March, 2024](https://getbible.life/kjv/Romans/10/21) diff --git a/scripture/kjv/03/24/24/scripture.tg b/scripture/kjv/03/24/24/scripture.tg new file mode 100644 index 00000000..dc3f7ec5 --- /dev/null +++ b/scripture/kjv/03/24/24/scripture.tg @@ -0,0 +1,4 @@ +Romans 10:21 +21 But to Israel he saith, All day long I have stretched forth my hands unto a disobedient and gainsaying people. + +Sunday 24-March, 2024 diff --git a/scripture/kjv/03/24/24/scripture.tg.id b/scripture/kjv/03/24/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/24/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/24/24/scripture.today b/scripture/kjv/03/24/24/scripture.today new file mode 100644 index 00000000..d01ed1a7 --- /dev/null +++ b/scripture/kjv/03/24/24/scripture.today @@ -0,0 +1 @@ +45 10:21 diff --git a/scripture/kjv/03/24/25/scripture.html b/scripture/kjv/03/24/25/scripture.html new file mode 100644 index 00000000..24040482 --- /dev/null +++ b/scripture/kjv/03/24/25/scripture.html @@ -0,0 +1,3 @@ +Revelation 3:19
+19 As many as I love, I rebuke and chasten: be zealous therefore, and repent.

+Monday 24-March, 2025 diff --git a/scripture/kjv/03/24/25/scripture.json b/scripture/kjv/03/24/25/scripture.json new file mode 100644 index 00000000..e910608e --- /dev/null +++ b/scripture/kjv/03/24/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Revelation", + "chapter": "3", + "date": "Monday 24-March, 2025", + "getbible": "https://getbible.life/kjv/Revelation/3/19", + "name": "Revelation 3:19", + "scripture": [ + { + "nr": "19", + "text": "As many as I love, I rebuke and chasten: be zealous therefore, and repent." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "19", + "version": "kjv" +} diff --git a/scripture/kjv/03/24/25/scripture.md b/scripture/kjv/03/24/25/scripture.md new file mode 100644 index 00000000..aa005a72 --- /dev/null +++ b/scripture/kjv/03/24/25/scripture.md @@ -0,0 +1,5 @@ +**Revelation 3:19** + +19 As many as I love, I rebuke and chasten: be zealous therefore, and repent. + +[Monday 24-March, 2025](https://getbible.life/kjv/Revelation/3/19) diff --git a/scripture/kjv/03/24/25/scripture.tg b/scripture/kjv/03/24/25/scripture.tg new file mode 100644 index 00000000..86ce8409 --- /dev/null +++ b/scripture/kjv/03/24/25/scripture.tg @@ -0,0 +1,4 @@ +Revelation 3:19 +19 As many as I love, I rebuke and chasten: be zealous therefore, and repent. + +Monday 24-March, 2025 diff --git a/scripture/kjv/03/24/25/scripture.tg.id b/scripture/kjv/03/24/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/24/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/24/25/scripture.today b/scripture/kjv/03/24/25/scripture.today new file mode 100644 index 00000000..93aba530 --- /dev/null +++ b/scripture/kjv/03/24/25/scripture.today @@ -0,0 +1 @@ +66 3:19 diff --git a/scripture/kjv/03/24/26/scripture.html b/scripture/kjv/03/24/26/scripture.html new file mode 100644 index 00000000..e86ea98c --- /dev/null +++ b/scripture/kjv/03/24/26/scripture.html @@ -0,0 +1,3 @@ +Proverbs 17:26
+26 Also to punish the just is not good, nor to strike princes for equity.

+Tuesday 24-March, 2026 diff --git a/scripture/kjv/03/24/26/scripture.json b/scripture/kjv/03/24/26/scripture.json new file mode 100644 index 00000000..bdb3a961 --- /dev/null +++ b/scripture/kjv/03/24/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "17", + "date": "Tuesday 24-March, 2026", + "getbible": "https://getbible.life/kjv/Proverbs/17/26", + "name": "Proverbs 17:26", + "scripture": [ + { + "nr": "26", + "text": "Also to punish the just is not good, nor to strike princes for equity." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "26", + "version": "kjv" +} diff --git a/scripture/kjv/03/24/26/scripture.md b/scripture/kjv/03/24/26/scripture.md new file mode 100644 index 00000000..82821d5e --- /dev/null +++ b/scripture/kjv/03/24/26/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 17:26** + +26 Also to punish the just is not good, nor to strike princes for equity. + +[Tuesday 24-March, 2026](https://getbible.life/kjv/Proverbs/17/26) diff --git a/scripture/kjv/03/24/26/scripture.tg b/scripture/kjv/03/24/26/scripture.tg new file mode 100644 index 00000000..4a47d8d0 --- /dev/null +++ b/scripture/kjv/03/24/26/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 17:26 +26 Also to punish the just is not good, nor to strike princes for equity. + +Tuesday 24-March, 2026 diff --git a/scripture/kjv/03/24/26/scripture.tg.id b/scripture/kjv/03/24/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/24/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/24/26/scripture.today b/scripture/kjv/03/24/26/scripture.today new file mode 100644 index 00000000..23e2e779 --- /dev/null +++ b/scripture/kjv/03/24/26/scripture.today @@ -0,0 +1 @@ +20 17:26 diff --git a/scripture/kjv/03/25/23/scripture.html b/scripture/kjv/03/25/23/scripture.html new file mode 100644 index 00000000..1bdc8e9c --- /dev/null +++ b/scripture/kjv/03/25/23/scripture.html @@ -0,0 +1,3 @@ +Matthew 10:34-39
+34 Think not that I am come to send peace on earth: I came not to send peace, but a sword. 35 For I am come to set a man at variance against his father, and the daughter against her mother, and the daughter in law against her mother in law. 36 And a man’s foes shall be they of his own household. 37 He that loveth father or mother more than me is not worthy of me: and he that loveth son or daughter more than me is not worthy of me. 38 And he that taketh not his cross, and followeth after me, is not worthy of me. 39 He that findeth his life shall lose it: and he that loseth his life for my sake shall find it.

+Saturday 25-March, 2023 diff --git a/scripture/kjv/03/25/23/scripture.json b/scripture/kjv/03/25/23/scripture.json new file mode 100644 index 00000000..db69b659 --- /dev/null +++ b/scripture/kjv/03/25/23/scripture.json @@ -0,0 +1,33 @@ +{ + "date": "Saturday 25-March, 2023", + "name": "Matthew 10:34-39", + "scripture": [ + { + "nr": "34", + "text": "Think not that I am come to send peace on earth: I came not to send peace, but a sword." + }, + { + "nr": "35", + "text": "For I am come to set a man at variance against his father, and the daughter against her mother, and the daughter in law against her mother in law." + }, + { + "nr": "36", + "text": "And a man’s foes shall be they of his own household." + }, + { + "nr": "37", + "text": "He that loveth father or mother more than me is not worthy of me: and he that loveth son or daughter more than me is not worthy of me." + }, + { + "nr": "38", + "text": "And he that taketh not his cross, and followeth after me, is not worthy of me." + }, + { + "nr": "39", + "text": "He that findeth his life shall lose it: and he that loseth his life for my sake shall find it." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/25/23/scripture.md b/scripture/kjv/03/25/23/scripture.md new file mode 100644 index 00000000..54e2aa85 --- /dev/null +++ b/scripture/kjv/03/25/23/scripture.md @@ -0,0 +1,5 @@ +**Matthew 10:34-39** + +34 Think not that I am come to send peace on earth: I came not to send peace, but a sword. 35 For I am come to set a man at variance against his father, and the daughter against her mother, and the daughter in law against her mother in law. 36 And a man’s foes shall be they of his own household. 37 He that loveth father or mother more than me is not worthy of me: and he that loveth son or daughter more than me is not worthy of me. 38 And he that taketh not his cross, and followeth after me, is not worthy of me. 39 He that findeth his life shall lose it: and he that loseth his life for my sake shall find it. + +[Saturday 25-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/25/23/scripture.tg b/scripture/kjv/03/25/23/scripture.tg new file mode 100644 index 00000000..5766786f --- /dev/null +++ b/scripture/kjv/03/25/23/scripture.tg @@ -0,0 +1,4 @@ +Matthew 10:34-39 +34 Think not that I am come to send peace on earth: I came not to send peace, but a sword. 35 For I am come to set a man at variance against his father, and the daughter against her mother, and the daughter in law against her mother in law. 36 And a man’s foes shall be they of his own household. 37 He that loveth father or mother more than me is not worthy of me: and he that loveth son or daughter more than me is not worthy of me. 38 And he that taketh not his cross, and followeth after me, is not worthy of me. 39 He that findeth his life shall lose it: and he that loseth his life for my sake shall find it. + +Saturday 25-March, 2023 diff --git a/scripture/kjv/03/25/23/scripture.today b/scripture/kjv/03/25/23/scripture.today new file mode 100644 index 00000000..8744ecbb --- /dev/null +++ b/scripture/kjv/03/25/23/scripture.today @@ -0,0 +1 @@ +40 10:34-39 diff --git a/scripture/kjv/03/25/24/scripture.html b/scripture/kjv/03/25/24/scripture.html new file mode 100644 index 00000000..efa047d1 --- /dev/null +++ b/scripture/kjv/03/25/24/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 8:21
+21 Providing for honest things, not only in the sight of the Lord, but also in the sight of men.

+Monday 25-March, 2024 diff --git a/scripture/kjv/03/25/24/scripture.json b/scripture/kjv/03/25/24/scripture.json new file mode 100644 index 00000000..cf2bed96 --- /dev/null +++ b/scripture/kjv/03/25/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "8", + "date": "Monday 25-March, 2024", + "getbible": "https://getbible.life/kjv/2 Corinthians/8/21", + "name": "2 Corinthians 8:21", + "scripture": [ + { + "nr": "21", + "text": "Providing for honest things, not only in the sight of the Lord, but also in the sight of men." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "21", + "version": "kjv" +} diff --git a/scripture/kjv/03/25/24/scripture.md b/scripture/kjv/03/25/24/scripture.md new file mode 100644 index 00000000..10ab9690 --- /dev/null +++ b/scripture/kjv/03/25/24/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 8:21** + +21 Providing for honest things, not only in the sight of the Lord, but also in the sight of men. + +[Monday 25-March, 2024](https://getbible.life/kjv/2 Corinthians/8/21) diff --git a/scripture/kjv/03/25/24/scripture.tg b/scripture/kjv/03/25/24/scripture.tg new file mode 100644 index 00000000..f23ca372 --- /dev/null +++ b/scripture/kjv/03/25/24/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 8:21 +21 Providing for honest things, not only in the sight of the Lord, but also in the sight of men. + +Monday 25-March, 2024 diff --git a/scripture/kjv/03/25/24/scripture.tg.id b/scripture/kjv/03/25/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/25/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/25/24/scripture.today b/scripture/kjv/03/25/24/scripture.today new file mode 100644 index 00000000..d587ef35 --- /dev/null +++ b/scripture/kjv/03/25/24/scripture.today @@ -0,0 +1 @@ +47 8:21 diff --git a/scripture/kjv/03/25/25/scripture.html b/scripture/kjv/03/25/25/scripture.html new file mode 100644 index 00000000..c987e017 --- /dev/null +++ b/scripture/kjv/03/25/25/scripture.html @@ -0,0 +1,3 @@ +Deuteronomy 33:13-16
+13 And of Joseph he said, Blessed of the Lord be his land, for the precious things of heaven, for the dew, and for the deep that coucheth beneath, 14 And for the precious fruits brought forth by the sun, and for the precious things put forth by the moon, 15 And for the chief things of the ancient mountains, and for the precious things of the lasting hills, 16 And for the precious things of the earth and fulness thereof, and for the good will of him that dwelt in the bush: let the blessing come upon the head of Joseph, and upon the top of the head of him that was separated from his brethren.

+Tuesday 25-March, 2025 diff --git a/scripture/kjv/03/25/25/scripture.json b/scripture/kjv/03/25/25/scripture.json new file mode 100644 index 00000000..639e2146 --- /dev/null +++ b/scripture/kjv/03/25/25/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "Deuteronomy", + "chapter": "33", + "date": "Tuesday 25-March, 2025", + "getbible": "https://getbible.life/kjv/Deuteronomy/33/13-16", + "name": "Deuteronomy 33:13-16", + "scripture": [ + { + "nr": "13", + "text": "And of Joseph he said, Blessed of the Lord be his land, for the precious things of heaven, for the dew, and for the deep that coucheth beneath," + }, + { + "nr": "14", + "text": "And for the precious fruits brought forth by the sun, and for the precious things put forth by the moon," + }, + { + "nr": "15", + "text": "And for the chief things of the ancient mountains, and for the precious things of the lasting hills," + }, + { + "nr": "16", + "text": "And for the precious things of the earth and fulness thereof, and for the good will of him that dwelt in the bush: let the blessing come upon the head of Joseph, and upon the top of the head of him that was separated from his brethren." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13-16", + "version": "kjv" +} diff --git a/scripture/kjv/03/25/25/scripture.md b/scripture/kjv/03/25/25/scripture.md new file mode 100644 index 00000000..77aa935c --- /dev/null +++ b/scripture/kjv/03/25/25/scripture.md @@ -0,0 +1,5 @@ +**Deuteronomy 33:13-16** + +13 And of Joseph he said, Blessed of the Lord be his land, for the precious things of heaven, for the dew, and for the deep that coucheth beneath, 14 And for the precious fruits brought forth by the sun, and for the precious things put forth by the moon, 15 And for the chief things of the ancient mountains, and for the precious things of the lasting hills, 16 And for the precious things of the earth and fulness thereof, and for the good will of him that dwelt in the bush: let the blessing come upon the head of Joseph, and upon the top of the head of him that was separated from his brethren. + +[Tuesday 25-March, 2025](https://getbible.life/kjv/Deuteronomy/33/13-16) diff --git a/scripture/kjv/03/25/25/scripture.tg b/scripture/kjv/03/25/25/scripture.tg new file mode 100644 index 00000000..69021da3 --- /dev/null +++ b/scripture/kjv/03/25/25/scripture.tg @@ -0,0 +1,4 @@ +Deuteronomy 33:13-16 +13 And of Joseph he said, Blessed of the Lord be his land, for the precious things of heaven, for the dew, and for the deep that coucheth beneath, 14 And for the precious fruits brought forth by the sun, and for the precious things put forth by the moon, 15 And for the chief things of the ancient mountains, and for the precious things of the lasting hills, 16 And for the precious things of the earth and fulness thereof, and for the good will of him that dwelt in the bush: let the blessing come upon the head of Joseph, and upon the top of the head of him that was separated from his brethren. + +Tuesday 25-March, 2025 diff --git a/scripture/kjv/03/25/25/scripture.tg.id b/scripture/kjv/03/25/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/25/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/25/25/scripture.today b/scripture/kjv/03/25/25/scripture.today new file mode 100644 index 00000000..c27c1bcf --- /dev/null +++ b/scripture/kjv/03/25/25/scripture.today @@ -0,0 +1 @@ +5 33:13-16 diff --git a/scripture/kjv/03/25/26/scripture.html b/scripture/kjv/03/25/26/scripture.html new file mode 100644 index 00000000..b8a458a0 --- /dev/null +++ b/scripture/kjv/03/25/26/scripture.html @@ -0,0 +1,3 @@ +Jonah 3:2
+2 Arise, go unto Nineveh, that great city, and preach unto it the preaching that I bid thee.

+Wednesday 25-March, 2026 diff --git a/scripture/kjv/03/25/26/scripture.json b/scripture/kjv/03/25/26/scripture.json new file mode 100644 index 00000000..be81d642 --- /dev/null +++ b/scripture/kjv/03/25/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Jonah", + "chapter": "3", + "date": "Wednesday 25-March, 2026", + "getbible": "https://getbible.life/kjv/Jonah/3/2", + "name": "Jonah 3:2", + "scripture": [ + { + "nr": "2", + "text": "Arise, go unto Nineveh, that great city, and preach unto it the preaching that I bid thee." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "2", + "version": "kjv" +} diff --git a/scripture/kjv/03/25/26/scripture.md b/scripture/kjv/03/25/26/scripture.md new file mode 100644 index 00000000..58422969 --- /dev/null +++ b/scripture/kjv/03/25/26/scripture.md @@ -0,0 +1,5 @@ +**Jonah 3:2** + +2 Arise, go unto Nineveh, that great city, and preach unto it the preaching that I bid thee. + +[Wednesday 25-March, 2026](https://getbible.life/kjv/Jonah/3/2) diff --git a/scripture/kjv/03/25/26/scripture.tg b/scripture/kjv/03/25/26/scripture.tg new file mode 100644 index 00000000..15eeb909 --- /dev/null +++ b/scripture/kjv/03/25/26/scripture.tg @@ -0,0 +1,4 @@ +Jonah 3:2 +2 Arise, go unto Nineveh, that great city, and preach unto it the preaching that I bid thee. + +Wednesday 25-March, 2026 diff --git a/scripture/kjv/03/25/26/scripture.tg.id b/scripture/kjv/03/25/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/25/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/25/26/scripture.today b/scripture/kjv/03/25/26/scripture.today new file mode 100644 index 00000000..d8b7b169 --- /dev/null +++ b/scripture/kjv/03/25/26/scripture.today @@ -0,0 +1 @@ +32 3:2 diff --git a/scripture/kjv/03/26/23/scripture.html b/scripture/kjv/03/26/23/scripture.html new file mode 100644 index 00000000..9435e1e1 --- /dev/null +++ b/scripture/kjv/03/26/23/scripture.html @@ -0,0 +1,3 @@ +Romans 11:29
+29 For the gifts and calling of God are without repentance.

+Sunday 26-March, 2023 diff --git a/scripture/kjv/03/26/23/scripture.json b/scripture/kjv/03/26/23/scripture.json new file mode 100644 index 00000000..cdbcbf04 --- /dev/null +++ b/scripture/kjv/03/26/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Sunday 26-March, 2023", + "name": "Romans 11:29", + "scripture": [ + { + "nr": "29", + "text": "For the gifts and calling of God are without repentance." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/26/23/scripture.md b/scripture/kjv/03/26/23/scripture.md new file mode 100644 index 00000000..613a8995 --- /dev/null +++ b/scripture/kjv/03/26/23/scripture.md @@ -0,0 +1,5 @@ +**Romans 11:29** + +29 For the gifts and calling of God are without repentance. + +[Sunday 26-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/26/23/scripture.tg b/scripture/kjv/03/26/23/scripture.tg new file mode 100644 index 00000000..d40db8b0 --- /dev/null +++ b/scripture/kjv/03/26/23/scripture.tg @@ -0,0 +1,4 @@ +Romans 11:29 +29 For the gifts and calling of God are without repentance. + +Sunday 26-March, 2023 diff --git a/scripture/kjv/03/26/23/scripture.today b/scripture/kjv/03/26/23/scripture.today new file mode 100644 index 00000000..645dfad7 --- /dev/null +++ b/scripture/kjv/03/26/23/scripture.today @@ -0,0 +1 @@ +45 11:29 diff --git a/scripture/kjv/03/26/24/scripture.html b/scripture/kjv/03/26/24/scripture.html new file mode 100644 index 00000000..539f997c --- /dev/null +++ b/scripture/kjv/03/26/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 23:5
+5 Thou preparest a table before me in the presence of mine enemies: thou anointest my head with oil; my cup runneth over.

+Tuesday 26-March, 2024 diff --git a/scripture/kjv/03/26/24/scripture.json b/scripture/kjv/03/26/24/scripture.json new file mode 100644 index 00000000..e69f4cc1 --- /dev/null +++ b/scripture/kjv/03/26/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "23", + "date": "Tuesday 26-March, 2024", + "getbible": "https://getbible.life/kjv/Psalms/23/5", + "name": "Psalms 23:5", + "scripture": [ + { + "nr": "5", + "text": "Thou preparest a table before me in the presence of mine enemies: thou anointest my head with oil; my cup runneth over." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5", + "version": "kjv" +} diff --git a/scripture/kjv/03/26/24/scripture.md b/scripture/kjv/03/26/24/scripture.md new file mode 100644 index 00000000..e86044e2 --- /dev/null +++ b/scripture/kjv/03/26/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 23:5** + +5 Thou preparest a table before me in the presence of mine enemies: thou anointest my head with oil; my cup runneth over. + +[Tuesday 26-March, 2024](https://getbible.life/kjv/Psalms/23/5) diff --git a/scripture/kjv/03/26/24/scripture.tg b/scripture/kjv/03/26/24/scripture.tg new file mode 100644 index 00000000..65cb7eab --- /dev/null +++ b/scripture/kjv/03/26/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 23:5 +5 Thou preparest a table before me in the presence of mine enemies: thou anointest my head with oil; my cup runneth over. + +Tuesday 26-March, 2024 diff --git a/scripture/kjv/03/26/24/scripture.tg.id b/scripture/kjv/03/26/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/26/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/26/24/scripture.today b/scripture/kjv/03/26/24/scripture.today new file mode 100644 index 00000000..eb6394e4 --- /dev/null +++ b/scripture/kjv/03/26/24/scripture.today @@ -0,0 +1 @@ +19 23:5 diff --git a/scripture/kjv/03/26/25/scripture.html b/scripture/kjv/03/26/25/scripture.html new file mode 100644 index 00000000..61bcf1bb --- /dev/null +++ b/scripture/kjv/03/26/25/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 11:6
+6 But though I be rude in speech, yet not in knowledge; but we have been throughly made manifest among you in all things.

+Wednesday 26-March, 2025 diff --git a/scripture/kjv/03/26/25/scripture.json b/scripture/kjv/03/26/25/scripture.json new file mode 100644 index 00000000..19cadacb --- /dev/null +++ b/scripture/kjv/03/26/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "11", + "date": "Wednesday 26-March, 2025", + "getbible": "https://getbible.life/kjv/2 Corinthians/11/6", + "name": "2 Corinthians 11:6", + "scripture": [ + { + "nr": "6", + "text": "But though I be rude in speech, yet not in knowledge; but we have been throughly made manifest among you in all things." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6", + "version": "kjv" +} diff --git a/scripture/kjv/03/26/25/scripture.md b/scripture/kjv/03/26/25/scripture.md new file mode 100644 index 00000000..efce5006 --- /dev/null +++ b/scripture/kjv/03/26/25/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 11:6** + +6 But though I be rude in speech, yet not in knowledge; but we have been throughly made manifest among you in all things. + +[Wednesday 26-March, 2025](https://getbible.life/kjv/2 Corinthians/11/6) diff --git a/scripture/kjv/03/26/25/scripture.tg b/scripture/kjv/03/26/25/scripture.tg new file mode 100644 index 00000000..ca674e03 --- /dev/null +++ b/scripture/kjv/03/26/25/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 11:6 +6 But though I be rude in speech, yet not in knowledge; but we have been throughly made manifest among you in all things. + +Wednesday 26-March, 2025 diff --git a/scripture/kjv/03/26/25/scripture.tg.id b/scripture/kjv/03/26/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/26/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/26/25/scripture.today b/scripture/kjv/03/26/25/scripture.today new file mode 100644 index 00000000..9a124bcb --- /dev/null +++ b/scripture/kjv/03/26/25/scripture.today @@ -0,0 +1 @@ +47 11:6 diff --git a/scripture/kjv/03/26/26/scripture.html b/scripture/kjv/03/26/26/scripture.html new file mode 100644 index 00000000..f4d52a32 --- /dev/null +++ b/scripture/kjv/03/26/26/scripture.html @@ -0,0 +1,3 @@ +Proverbs 18:14
+14 The spirit of a man will sustain his infirmity; but a wounded spirit who can bear?

+Thursday 26-March, 2026 diff --git a/scripture/kjv/03/26/26/scripture.json b/scripture/kjv/03/26/26/scripture.json new file mode 100644 index 00000000..726bbe3c --- /dev/null +++ b/scripture/kjv/03/26/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "18", + "date": "Thursday 26-March, 2026", + "getbible": "https://getbible.life/kjv/Proverbs/18/14", + "name": "Proverbs 18:14", + "scripture": [ + { + "nr": "14", + "text": "The spirit of a man will sustain his infirmity; but a wounded spirit who can bear?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/03/26/26/scripture.md b/scripture/kjv/03/26/26/scripture.md new file mode 100644 index 00000000..1d0571bb --- /dev/null +++ b/scripture/kjv/03/26/26/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 18:14** + +14 The spirit of a man will sustain his infirmity; but a wounded spirit who can bear? + +[Thursday 26-March, 2026](https://getbible.life/kjv/Proverbs/18/14) diff --git a/scripture/kjv/03/26/26/scripture.tg b/scripture/kjv/03/26/26/scripture.tg new file mode 100644 index 00000000..dfdbed69 --- /dev/null +++ b/scripture/kjv/03/26/26/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 18:14 +14 The spirit of a man will sustain his infirmity; but a wounded spirit who can bear? + +Thursday 26-March, 2026 diff --git a/scripture/kjv/03/26/26/scripture.tg.id b/scripture/kjv/03/26/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/26/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/26/26/scripture.today b/scripture/kjv/03/26/26/scripture.today new file mode 100644 index 00000000..b8fcb094 --- /dev/null +++ b/scripture/kjv/03/26/26/scripture.today @@ -0,0 +1 @@ +20 18:14 diff --git a/scripture/kjv/03/27/23/scripture.html b/scripture/kjv/03/27/23/scripture.html new file mode 100644 index 00000000..e9418aea --- /dev/null +++ b/scripture/kjv/03/27/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 16:11
+11 Thou wilt shew me the path of life: in thy presence is fulness of joy; at thy right hand there are pleasures for evermore.

+Monday 27-March, 2023 diff --git a/scripture/kjv/03/27/23/scripture.json b/scripture/kjv/03/27/23/scripture.json new file mode 100644 index 00000000..dc910c65 --- /dev/null +++ b/scripture/kjv/03/27/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Monday 27-March, 2023", + "name": "Psalms 16:11", + "scripture": [ + { + "nr": "11", + "text": "Thou wilt shew me the path of life: in thy presence is fulness of joy; at thy right hand there are pleasures for evermore. " + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/27/23/scripture.md b/scripture/kjv/03/27/23/scripture.md new file mode 100644 index 00000000..a234bc03 --- /dev/null +++ b/scripture/kjv/03/27/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 16:11** + +11 Thou wilt shew me the path of life: in thy presence is fulness of joy; at thy right hand there are pleasures for evermore. + +[Monday 27-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/27/23/scripture.tg b/scripture/kjv/03/27/23/scripture.tg new file mode 100644 index 00000000..2ea8b3c5 --- /dev/null +++ b/scripture/kjv/03/27/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 16:11 +11 Thou wilt shew me the path of life: in thy presence is fulness of joy; at thy right hand there are pleasures for evermore. + +Monday 27-March, 2023 diff --git a/scripture/kjv/03/27/23/scripture.today b/scripture/kjv/03/27/23/scripture.today new file mode 100644 index 00000000..0472607f --- /dev/null +++ b/scripture/kjv/03/27/23/scripture.today @@ -0,0 +1 @@ +19 16:11 diff --git a/scripture/kjv/03/27/24/scripture.html b/scripture/kjv/03/27/24/scripture.html new file mode 100644 index 00000000..56d18d6f --- /dev/null +++ b/scripture/kjv/03/27/24/scripture.html @@ -0,0 +1,3 @@ +John 19:6
+6 When the chief priests therefore and officers saw him, they cried out, saying, Crucify him, crucify him. Pilate saith unto them, Take ye him, and crucify him: for I find no fault in him.

+Wednesday 27-March, 2024 diff --git a/scripture/kjv/03/27/24/scripture.json b/scripture/kjv/03/27/24/scripture.json new file mode 100644 index 00000000..85893b6f --- /dev/null +++ b/scripture/kjv/03/27/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "19", + "date": "Wednesday 27-March, 2024", + "getbible": "https://getbible.life/kjv/John/19/6", + "name": "John 19:6", + "scripture": [ + { + "nr": "6", + "text": "When the chief priests therefore and officers saw him, they cried out, saying, Crucify him, crucify him. Pilate saith unto them, Take ye him, and crucify him: for I find no fault in him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6", + "version": "kjv" +} diff --git a/scripture/kjv/03/27/24/scripture.md b/scripture/kjv/03/27/24/scripture.md new file mode 100644 index 00000000..2f9a7859 --- /dev/null +++ b/scripture/kjv/03/27/24/scripture.md @@ -0,0 +1,5 @@ +**John 19:6** + +6 When the chief priests therefore and officers saw him, they cried out, saying, Crucify him, crucify him. Pilate saith unto them, Take ye him, and crucify him: for I find no fault in him. + +[Wednesday 27-March, 2024](https://getbible.life/kjv/John/19/6) diff --git a/scripture/kjv/03/27/24/scripture.tg b/scripture/kjv/03/27/24/scripture.tg new file mode 100644 index 00000000..0a1fb964 --- /dev/null +++ b/scripture/kjv/03/27/24/scripture.tg @@ -0,0 +1,4 @@ +John 19:6 +6 When the chief priests therefore and officers saw him, they cried out, saying, Crucify him, crucify him. Pilate saith unto them, Take ye him, and crucify him: for I find no fault in him. + +Wednesday 27-March, 2024 diff --git a/scripture/kjv/03/27/24/scripture.tg.id b/scripture/kjv/03/27/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/27/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/27/24/scripture.today b/scripture/kjv/03/27/24/scripture.today new file mode 100644 index 00000000..35b3bf96 --- /dev/null +++ b/scripture/kjv/03/27/24/scripture.today @@ -0,0 +1 @@ +43 19:6 diff --git a/scripture/kjv/03/27/25/scripture.html b/scripture/kjv/03/27/25/scripture.html new file mode 100644 index 00000000..eb86a90f --- /dev/null +++ b/scripture/kjv/03/27/25/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 12:24
+24 For there shall be no more any vain vision nor flattering divination within the house of Israel.

+Thursday 27-March, 2025 diff --git a/scripture/kjv/03/27/25/scripture.json b/scripture/kjv/03/27/25/scripture.json new file mode 100644 index 00000000..1d608718 --- /dev/null +++ b/scripture/kjv/03/27/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ezekiel", + "chapter": "12", + "date": "Thursday 27-March, 2025", + "getbible": "https://getbible.life/kjv/Ezekiel/12/24", + "name": "Ezekiel 12:24", + "scripture": [ + { + "nr": "24", + "text": "For there shall be no more any vain vision nor flattering divination within the house of Israel." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "24", + "version": "kjv" +} diff --git a/scripture/kjv/03/27/25/scripture.md b/scripture/kjv/03/27/25/scripture.md new file mode 100644 index 00000000..d97cd23b --- /dev/null +++ b/scripture/kjv/03/27/25/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 12:24** + +24 For there shall be no more any vain vision nor flattering divination within the house of Israel. + +[Thursday 27-March, 2025](https://getbible.life/kjv/Ezekiel/12/24) diff --git a/scripture/kjv/03/27/25/scripture.tg b/scripture/kjv/03/27/25/scripture.tg new file mode 100644 index 00000000..c7ca3c09 --- /dev/null +++ b/scripture/kjv/03/27/25/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 12:24 +24 For there shall be no more any vain vision nor flattering divination within the house of Israel. + +Thursday 27-March, 2025 diff --git a/scripture/kjv/03/27/25/scripture.tg.id b/scripture/kjv/03/27/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/27/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/27/25/scripture.today b/scripture/kjv/03/27/25/scripture.today new file mode 100644 index 00000000..071ff3a2 --- /dev/null +++ b/scripture/kjv/03/27/25/scripture.today @@ -0,0 +1 @@ +26 12:24 diff --git a/scripture/kjv/03/27/26/scripture.html b/scripture/kjv/03/27/26/scripture.html new file mode 100644 index 00000000..10e1ff5d --- /dev/null +++ b/scripture/kjv/03/27/26/scripture.html @@ -0,0 +1,3 @@ +Proverbs 11:25
+25 The liberal soul shall be made fat: and he that watereth shall be watered also himself.

+Friday 27-March, 2026 diff --git a/scripture/kjv/03/27/26/scripture.json b/scripture/kjv/03/27/26/scripture.json new file mode 100644 index 00000000..92d42f8b --- /dev/null +++ b/scripture/kjv/03/27/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "11", + "date": "Friday 27-March, 2026", + "getbible": "https://getbible.life/kjv/Proverbs/11/25", + "name": "Proverbs 11:25", + "scripture": [ + { + "nr": "25", + "text": "The liberal soul shall be made fat: and he that watereth shall be watered also himself." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "25", + "version": "kjv" +} diff --git a/scripture/kjv/03/27/26/scripture.md b/scripture/kjv/03/27/26/scripture.md new file mode 100644 index 00000000..8cf30b46 --- /dev/null +++ b/scripture/kjv/03/27/26/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 11:25** + +25 The liberal soul shall be made fat: and he that watereth shall be watered also himself. + +[Friday 27-March, 2026](https://getbible.life/kjv/Proverbs/11/25) diff --git a/scripture/kjv/03/27/26/scripture.tg b/scripture/kjv/03/27/26/scripture.tg new file mode 100644 index 00000000..0775abe7 --- /dev/null +++ b/scripture/kjv/03/27/26/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 11:25 +25 The liberal soul shall be made fat: and he that watereth shall be watered also himself. + +Friday 27-March, 2026 diff --git a/scripture/kjv/03/27/26/scripture.tg.id b/scripture/kjv/03/27/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/27/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/27/26/scripture.today b/scripture/kjv/03/27/26/scripture.today new file mode 100644 index 00000000..f86054cb --- /dev/null +++ b/scripture/kjv/03/27/26/scripture.today @@ -0,0 +1 @@ +20 11:25 diff --git a/scripture/kjv/03/28/23/scripture.html b/scripture/kjv/03/28/23/scripture.html new file mode 100644 index 00000000..d7004c06 --- /dev/null +++ b/scripture/kjv/03/28/23/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 16:4-6
+4 And as for thy nativity, in the day thou wast born thy navel was not cut, neither wast thou washed in water to supple thee; thou wast not salted at all, nor swaddled at all. 5 None eye pitied thee, to do any of these unto thee, to have compassion upon thee; but thou wast cast out in the open field, to the lothing of thy person, in the day that thou wast born. 6 And when I passed by thee, and saw thee polluted in thine own blood, I said unto thee when thou wast in thy blood, Live; yea, I said unto thee when thou wast in thy blood, Live.

+Tuesday 28-March, 2023 diff --git a/scripture/kjv/03/28/23/scripture.json b/scripture/kjv/03/28/23/scripture.json new file mode 100644 index 00000000..0dde3795 --- /dev/null +++ b/scripture/kjv/03/28/23/scripture.json @@ -0,0 +1,21 @@ +{ + "date": "Tuesday 28-March, 2023", + "name": "Ezekiel 16:4-6", + "scripture": [ + { + "nr": "4", + "text": "And as for thy nativity, in the day thou wast born thy navel was not cut, neither wast thou washed in water to supple thee; thou wast not salted at all, nor swaddled at all." + }, + { + "nr": "5", + "text": "None eye pitied thee, to do any of these unto thee, to have compassion upon thee; but thou wast cast out in the open field, to the lothing of thy person, in the day that thou wast born." + }, + { + "nr": "6", + "text": "And when I passed by thee, and saw thee polluted in thine own blood, I said unto thee when thou wast in thy blood, Live; yea, I said unto thee when thou wast in thy blood, Live." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/28/23/scripture.md b/scripture/kjv/03/28/23/scripture.md new file mode 100644 index 00000000..472cf8f4 --- /dev/null +++ b/scripture/kjv/03/28/23/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 16:4-6** + +4 And as for thy nativity, in the day thou wast born thy navel was not cut, neither wast thou washed in water to supple thee; thou wast not salted at all, nor swaddled at all. 5 None eye pitied thee, to do any of these unto thee, to have compassion upon thee; but thou wast cast out in the open field, to the lothing of thy person, in the day that thou wast born. 6 And when I passed by thee, and saw thee polluted in thine own blood, I said unto thee when thou wast in thy blood, Live; yea, I said unto thee when thou wast in thy blood, Live. + +[Tuesday 28-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/28/23/scripture.tg b/scripture/kjv/03/28/23/scripture.tg new file mode 100644 index 00000000..e92de258 --- /dev/null +++ b/scripture/kjv/03/28/23/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 16:4-6 +4 And as for thy nativity, in the day thou wast born thy navel was not cut, neither wast thou washed in water to supple thee; thou wast not salted at all, nor swaddled at all. 5 None eye pitied thee, to do any of these unto thee, to have compassion upon thee; but thou wast cast out in the open field, to the lothing of thy person, in the day that thou wast born. 6 And when I passed by thee, and saw thee polluted in thine own blood, I said unto thee when thou wast in thy blood, Live; yea, I said unto thee when thou wast in thy blood, Live. + +Tuesday 28-March, 2023 diff --git a/scripture/kjv/03/28/23/scripture.today b/scripture/kjv/03/28/23/scripture.today new file mode 100644 index 00000000..b7b032b3 --- /dev/null +++ b/scripture/kjv/03/28/23/scripture.today @@ -0,0 +1 @@ +26 16:4-6 diff --git a/scripture/kjv/03/28/24/scripture.html b/scripture/kjv/03/28/24/scripture.html new file mode 100644 index 00000000..03ae94f0 --- /dev/null +++ b/scripture/kjv/03/28/24/scripture.html @@ -0,0 +1,3 @@ +Luke 20:23
+23 But he perceived their craftiness, and said unto them, Why tempt ye me?

+Thursday 28-March, 2024 diff --git a/scripture/kjv/03/28/24/scripture.json b/scripture/kjv/03/28/24/scripture.json new file mode 100644 index 00000000..a023c230 --- /dev/null +++ b/scripture/kjv/03/28/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "20", + "date": "Thursday 28-March, 2024", + "getbible": "https://getbible.life/kjv/Luke/20/23", + "name": "Luke 20:23", + "scripture": [ + { + "nr": "23", + "text": "But he perceived their craftiness, and said unto them, Why tempt ye me?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "23", + "version": "kjv" +} diff --git a/scripture/kjv/03/28/24/scripture.md b/scripture/kjv/03/28/24/scripture.md new file mode 100644 index 00000000..200ca4d4 --- /dev/null +++ b/scripture/kjv/03/28/24/scripture.md @@ -0,0 +1,5 @@ +**Luke 20:23** + +23 But he perceived their craftiness, and said unto them, Why tempt ye me? + +[Thursday 28-March, 2024](https://getbible.life/kjv/Luke/20/23) diff --git a/scripture/kjv/03/28/24/scripture.tg b/scripture/kjv/03/28/24/scripture.tg new file mode 100644 index 00000000..a6d95c45 --- /dev/null +++ b/scripture/kjv/03/28/24/scripture.tg @@ -0,0 +1,4 @@ +Luke 20:23 +23 But he perceived their craftiness, and said unto them, Why tempt ye me? + +Thursday 28-March, 2024 diff --git a/scripture/kjv/03/28/24/scripture.tg.id b/scripture/kjv/03/28/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/28/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/28/24/scripture.today b/scripture/kjv/03/28/24/scripture.today new file mode 100644 index 00000000..888602c9 --- /dev/null +++ b/scripture/kjv/03/28/24/scripture.today @@ -0,0 +1 @@ +42 20:23 diff --git a/scripture/kjv/03/28/25/scripture.html b/scripture/kjv/03/28/25/scripture.html new file mode 100644 index 00000000..ef292ec0 --- /dev/null +++ b/scripture/kjv/03/28/25/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 6:1
+1 And the word of the Lord came unto me, saying,

+Friday 28-March, 2025 diff --git a/scripture/kjv/03/28/25/scripture.json b/scripture/kjv/03/28/25/scripture.json new file mode 100644 index 00000000..bc88cdd3 --- /dev/null +++ b/scripture/kjv/03/28/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ezekiel", + "chapter": "6", + "date": "Friday 28-March, 2025", + "getbible": "https://getbible.life/kjv/Ezekiel/6/1", + "name": "Ezekiel 6:1", + "scripture": [ + { + "nr": "1", + "text": "And the word of the Lord came unto me, saying," + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1", + "version": "kjv" +} diff --git a/scripture/kjv/03/28/25/scripture.md b/scripture/kjv/03/28/25/scripture.md new file mode 100644 index 00000000..5764509d --- /dev/null +++ b/scripture/kjv/03/28/25/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 6:1** + +1 And the word of the Lord came unto me, saying, + +[Friday 28-March, 2025](https://getbible.life/kjv/Ezekiel/6/1) diff --git a/scripture/kjv/03/28/25/scripture.tg b/scripture/kjv/03/28/25/scripture.tg new file mode 100644 index 00000000..d58ab1bb --- /dev/null +++ b/scripture/kjv/03/28/25/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 6:1 +1 And the word of the Lord came unto me, saying, + +Friday 28-March, 2025 diff --git a/scripture/kjv/03/28/25/scripture.tg.id b/scripture/kjv/03/28/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/28/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/28/25/scripture.today b/scripture/kjv/03/28/25/scripture.today new file mode 100644 index 00000000..09e3632d --- /dev/null +++ b/scripture/kjv/03/28/25/scripture.today @@ -0,0 +1 @@ +26 6:1 diff --git a/scripture/kjv/03/28/26/scripture.html b/scripture/kjv/03/28/26/scripture.html new file mode 100644 index 00000000..ecbf3868 --- /dev/null +++ b/scripture/kjv/03/28/26/scripture.html @@ -0,0 +1,3 @@ +Isaiah 33:17
+17 Thine eyes shall see the king in his beauty: they shall behold the land that is very far off.

+Saturday 28-March, 2026 diff --git a/scripture/kjv/03/28/26/scripture.json b/scripture/kjv/03/28/26/scripture.json new file mode 100644 index 00000000..37e70fd7 --- /dev/null +++ b/scripture/kjv/03/28/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "33", + "date": "Saturday 28-March, 2026", + "getbible": "https://getbible.life/kjv/Isaiah/33/17", + "name": "Isaiah 33:17", + "scripture": [ + { + "nr": "17", + "text": "Thine eyes shall see the king in his beauty: they shall behold the land that is very far off." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17", + "version": "kjv" +} diff --git a/scripture/kjv/03/28/26/scripture.md b/scripture/kjv/03/28/26/scripture.md new file mode 100644 index 00000000..158a7476 --- /dev/null +++ b/scripture/kjv/03/28/26/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 33:17** + +17 Thine eyes shall see the king in his beauty: they shall behold the land that is very far off. + +[Saturday 28-March, 2026](https://getbible.life/kjv/Isaiah/33/17) diff --git a/scripture/kjv/03/28/26/scripture.tg b/scripture/kjv/03/28/26/scripture.tg new file mode 100644 index 00000000..e6b37df0 --- /dev/null +++ b/scripture/kjv/03/28/26/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 33:17 +17 Thine eyes shall see the king in his beauty: they shall behold the land that is very far off. + +Saturday 28-March, 2026 diff --git a/scripture/kjv/03/28/26/scripture.tg.id b/scripture/kjv/03/28/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/28/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/28/26/scripture.today b/scripture/kjv/03/28/26/scripture.today new file mode 100644 index 00000000..28147da7 --- /dev/null +++ b/scripture/kjv/03/28/26/scripture.today @@ -0,0 +1 @@ +23 33:17 diff --git a/scripture/kjv/03/29/23/scripture.html b/scripture/kjv/03/29/23/scripture.html new file mode 100644 index 00000000..ba334d64 --- /dev/null +++ b/scripture/kjv/03/29/23/scripture.html @@ -0,0 +1,3 @@ +Ephesians 4:29-30
+29 Let no corrupt communication proceed out of your mouth, but that which is good to the use of edifying, that it may minister grace unto the hearers. 30 And grieve not the holy Spirit of God, whereby ye are sealed unto the day of redemption.

+Wednesday 29-March, 2023 diff --git a/scripture/kjv/03/29/23/scripture.json b/scripture/kjv/03/29/23/scripture.json new file mode 100644 index 00000000..0304a5c1 --- /dev/null +++ b/scripture/kjv/03/29/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Wednesday 29-March, 2023", + "name": "Ephesians 4:29-30", + "scripture": [ + { + "nr": "29", + "text": "Let no corrupt communication proceed out of your mouth, but that which is good to the use of edifying, that it may minister grace unto the hearers." + }, + { + "nr": "30", + "text": "And grieve not the holy Spirit of God, whereby ye are sealed unto the day of redemption." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/29/23/scripture.md b/scripture/kjv/03/29/23/scripture.md new file mode 100644 index 00000000..93bee575 --- /dev/null +++ b/scripture/kjv/03/29/23/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 4:29-30** + +29 Let no corrupt communication proceed out of your mouth, but that which is good to the use of edifying, that it may minister grace unto the hearers. 30 And grieve not the holy Spirit of God, whereby ye are sealed unto the day of redemption. + +[Wednesday 29-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/29/23/scripture.tg b/scripture/kjv/03/29/23/scripture.tg new file mode 100644 index 00000000..ff607222 --- /dev/null +++ b/scripture/kjv/03/29/23/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 4:29-30 +29 Let no corrupt communication proceed out of your mouth, but that which is good to the use of edifying, that it may minister grace unto the hearers. 30 And grieve not the holy Spirit of God, whereby ye are sealed unto the day of redemption. + +Wednesday 29-March, 2023 diff --git a/scripture/kjv/03/29/23/scripture.today b/scripture/kjv/03/29/23/scripture.today new file mode 100644 index 00000000..fb8552f7 --- /dev/null +++ b/scripture/kjv/03/29/23/scripture.today @@ -0,0 +1 @@ +49 4:29-30 diff --git a/scripture/kjv/03/29/24/scripture.html b/scripture/kjv/03/29/24/scripture.html new file mode 100644 index 00000000..1721d6a5 --- /dev/null +++ b/scripture/kjv/03/29/24/scripture.html @@ -0,0 +1,3 @@ +John 16:21
+21 A woman when she is in travail hath sorrow, because her hour is come: but as soon as she is delivered of the child, she remembereth no more the anguish, for joy that a man is born into the world.

+Friday 29-March, 2024 diff --git a/scripture/kjv/03/29/24/scripture.json b/scripture/kjv/03/29/24/scripture.json new file mode 100644 index 00000000..ebf4bbdf --- /dev/null +++ b/scripture/kjv/03/29/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "16", + "date": "Friday 29-March, 2024", + "getbible": "https://getbible.life/kjv/John/16/21", + "name": "John 16:21", + "scripture": [ + { + "nr": "21", + "text": "A woman when she is in travail hath sorrow, because her hour is come: but as soon as she is delivered of the child, she remembereth no more the anguish, for joy that a man is born into the world." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "21", + "version": "kjv" +} diff --git a/scripture/kjv/03/29/24/scripture.md b/scripture/kjv/03/29/24/scripture.md new file mode 100644 index 00000000..ac8747a5 --- /dev/null +++ b/scripture/kjv/03/29/24/scripture.md @@ -0,0 +1,5 @@ +**John 16:21** + +21 A woman when she is in travail hath sorrow, because her hour is come: but as soon as she is delivered of the child, she remembereth no more the anguish, for joy that a man is born into the world. + +[Friday 29-March, 2024](https://getbible.life/kjv/John/16/21) diff --git a/scripture/kjv/03/29/24/scripture.tg b/scripture/kjv/03/29/24/scripture.tg new file mode 100644 index 00000000..3f5f4210 --- /dev/null +++ b/scripture/kjv/03/29/24/scripture.tg @@ -0,0 +1,4 @@ +John 16:21 +21 A woman when she is in travail hath sorrow, because her hour is come: but as soon as she is delivered of the child, she remembereth no more the anguish, for joy that a man is born into the world. + +Friday 29-March, 2024 diff --git a/scripture/kjv/03/29/24/scripture.tg.id b/scripture/kjv/03/29/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/29/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/29/24/scripture.today b/scripture/kjv/03/29/24/scripture.today new file mode 100644 index 00000000..aa020807 --- /dev/null +++ b/scripture/kjv/03/29/24/scripture.today @@ -0,0 +1 @@ +43 16:21 diff --git a/scripture/kjv/03/29/25/scripture.html b/scripture/kjv/03/29/25/scripture.html new file mode 100644 index 00000000..62b8b97b --- /dev/null +++ b/scripture/kjv/03/29/25/scripture.html @@ -0,0 +1,3 @@ +Genesis 22:18
+18 And in thy seed shall all the nations of the earth be blessed; because thou hast obeyed my voice.

+Saturday 29-March, 2025 diff --git a/scripture/kjv/03/29/25/scripture.json b/scripture/kjv/03/29/25/scripture.json new file mode 100644 index 00000000..c4207bb0 --- /dev/null +++ b/scripture/kjv/03/29/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Genesis", + "chapter": "22", + "date": "Saturday 29-March, 2025", + "getbible": "https://getbible.life/kjv/Genesis/22/18", + "name": "Genesis 22:18", + "scripture": [ + { + "nr": "18", + "text": "And in thy seed shall all the nations of the earth be blessed; because thou hast obeyed my voice." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18", + "version": "kjv" +} diff --git a/scripture/kjv/03/29/25/scripture.md b/scripture/kjv/03/29/25/scripture.md new file mode 100644 index 00000000..d38596fc --- /dev/null +++ b/scripture/kjv/03/29/25/scripture.md @@ -0,0 +1,5 @@ +**Genesis 22:18** + +18 And in thy seed shall all the nations of the earth be blessed; because thou hast obeyed my voice. + +[Saturday 29-March, 2025](https://getbible.life/kjv/Genesis/22/18) diff --git a/scripture/kjv/03/29/25/scripture.tg b/scripture/kjv/03/29/25/scripture.tg new file mode 100644 index 00000000..acdc4455 --- /dev/null +++ b/scripture/kjv/03/29/25/scripture.tg @@ -0,0 +1,4 @@ +Genesis 22:18 +18 And in thy seed shall all the nations of the earth be blessed; because thou hast obeyed my voice. + +Saturday 29-March, 2025 diff --git a/scripture/kjv/03/29/25/scripture.tg.id b/scripture/kjv/03/29/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/29/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/29/25/scripture.today b/scripture/kjv/03/29/25/scripture.today new file mode 100644 index 00000000..35fca5a4 --- /dev/null +++ b/scripture/kjv/03/29/25/scripture.today @@ -0,0 +1 @@ +1 22:18 diff --git a/scripture/kjv/03/29/26/scripture.html b/scripture/kjv/03/29/26/scripture.html new file mode 100644 index 00000000..c30cbee9 --- /dev/null +++ b/scripture/kjv/03/29/26/scripture.html @@ -0,0 +1,3 @@ +Matthew 24:12-13
+12 And because iniquity shall abound, the love of many shall wax cold. 13 But he that shall endure unto the end, the same shall be saved.

+Sunday 29-March, 2026 diff --git a/scripture/kjv/03/29/26/scripture.json b/scripture/kjv/03/29/26/scripture.json new file mode 100644 index 00000000..30497c89 --- /dev/null +++ b/scripture/kjv/03/29/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Matthew", + "chapter": "24", + "date": "Sunday 29-March, 2026", + "getbible": "https://getbible.life/kjv/Matthew/24/12-13", + "name": "Matthew 24:12-13", + "scripture": [ + { + "nr": "12", + "text": "And because iniquity shall abound, the love of many shall wax cold." + }, + { + "nr": "13", + "text": "But he that shall endure unto the end, the same shall be saved." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12-13", + "version": "kjv" +} diff --git a/scripture/kjv/03/29/26/scripture.md b/scripture/kjv/03/29/26/scripture.md new file mode 100644 index 00000000..90c005ee --- /dev/null +++ b/scripture/kjv/03/29/26/scripture.md @@ -0,0 +1,5 @@ +**Matthew 24:12-13** + +12 And because iniquity shall abound, the love of many shall wax cold. 13 But he that shall endure unto the end, the same shall be saved. + +[Sunday 29-March, 2026](https://getbible.life/kjv/Matthew/24/12-13) diff --git a/scripture/kjv/03/29/26/scripture.tg b/scripture/kjv/03/29/26/scripture.tg new file mode 100644 index 00000000..af49bd53 --- /dev/null +++ b/scripture/kjv/03/29/26/scripture.tg @@ -0,0 +1,4 @@ +Matthew 24:12-13 +12 And because iniquity shall abound, the love of many shall wax cold. 13 But he that shall endure unto the end, the same shall be saved. + +Sunday 29-March, 2026 diff --git a/scripture/kjv/03/29/26/scripture.today b/scripture/kjv/03/29/26/scripture.today new file mode 100644 index 00000000..e21d189e --- /dev/null +++ b/scripture/kjv/03/29/26/scripture.today @@ -0,0 +1 @@ +40 24:12-13 diff --git a/scripture/kjv/03/30/23/scripture.html b/scripture/kjv/03/30/23/scripture.html new file mode 100644 index 00000000..e58eddad --- /dev/null +++ b/scripture/kjv/03/30/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 41:4
+4 I said, Lord, be merciful unto me: heal my soul; for I have sinned against thee.

+Thursday 30-March, 2023 diff --git a/scripture/kjv/03/30/23/scripture.json b/scripture/kjv/03/30/23/scripture.json new file mode 100644 index 00000000..e96535f6 --- /dev/null +++ b/scripture/kjv/03/30/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Thursday 30-March, 2023", + "name": "Psalms 41:4", + "scripture": [ + { + "nr": "4", + "text": "I said, Lord, be merciful unto me: heal my soul; for I have sinned against thee." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/30/23/scripture.md b/scripture/kjv/03/30/23/scripture.md new file mode 100644 index 00000000..8b4288a7 --- /dev/null +++ b/scripture/kjv/03/30/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 41:4** + +4 I said, Lord, be merciful unto me: heal my soul; for I have sinned against thee. + +[Thursday 30-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/30/23/scripture.tg b/scripture/kjv/03/30/23/scripture.tg new file mode 100644 index 00000000..ac04fc22 --- /dev/null +++ b/scripture/kjv/03/30/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 41:4 +4 I said, Lord, be merciful unto me: heal my soul; for I have sinned against thee. + +Thursday 30-March, 2023 diff --git a/scripture/kjv/03/30/23/scripture.today b/scripture/kjv/03/30/23/scripture.today new file mode 100644 index 00000000..95906551 --- /dev/null +++ b/scripture/kjv/03/30/23/scripture.today @@ -0,0 +1 @@ +19 41:4 diff --git a/scripture/kjv/03/30/24/scripture.html b/scripture/kjv/03/30/24/scripture.html new file mode 100644 index 00000000..13f73316 --- /dev/null +++ b/scripture/kjv/03/30/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 12:15
+15 The way of a fool is right in his own eyes: but he that hearkeneth unto counsel is wise.

+Saturday 30-March, 2024 diff --git a/scripture/kjv/03/30/24/scripture.json b/scripture/kjv/03/30/24/scripture.json new file mode 100644 index 00000000..70502e40 --- /dev/null +++ b/scripture/kjv/03/30/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "12", + "date": "Saturday 30-March, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/12/15", + "name": "Proverbs 12:15", + "scripture": [ + { + "nr": "15", + "text": "The way of a fool is right in his own eyes: but he that hearkeneth unto counsel is wise." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15", + "version": "kjv" +} diff --git a/scripture/kjv/03/30/24/scripture.md b/scripture/kjv/03/30/24/scripture.md new file mode 100644 index 00000000..7a0de5db --- /dev/null +++ b/scripture/kjv/03/30/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 12:15** + +15 The way of a fool is right in his own eyes: but he that hearkeneth unto counsel is wise. + +[Saturday 30-March, 2024](https://getbible.life/kjv/Proverbs/12/15) diff --git a/scripture/kjv/03/30/24/scripture.tg b/scripture/kjv/03/30/24/scripture.tg new file mode 100644 index 00000000..19330217 --- /dev/null +++ b/scripture/kjv/03/30/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 12:15 +15 The way of a fool is right in his own eyes: but he that hearkeneth unto counsel is wise. + +Saturday 30-March, 2024 diff --git a/scripture/kjv/03/30/24/scripture.tg.id b/scripture/kjv/03/30/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/30/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/30/24/scripture.today b/scripture/kjv/03/30/24/scripture.today new file mode 100644 index 00000000..7c3af296 --- /dev/null +++ b/scripture/kjv/03/30/24/scripture.today @@ -0,0 +1 @@ +20 12:15 diff --git a/scripture/kjv/03/30/25/scripture.html b/scripture/kjv/03/30/25/scripture.html new file mode 100644 index 00000000..0cd980f4 --- /dev/null +++ b/scripture/kjv/03/30/25/scripture.html @@ -0,0 +1,3 @@ +1 John 3:10
+10 In this the children of God are manifest, and the children of the devil: whosoever doeth not righteousness is not of God, neither he that loveth not his brother.

+Sunday 30-March, 2025 diff --git a/scripture/kjv/03/30/25/scripture.json b/scripture/kjv/03/30/25/scripture.json new file mode 100644 index 00000000..ae243fdb --- /dev/null +++ b/scripture/kjv/03/30/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 John", + "chapter": "3", + "date": "Sunday 30-March, 2025", + "getbible": "https://getbible.life/kjv/1 John/3/10", + "name": "1 John 3:10", + "scripture": [ + { + "nr": "10", + "text": "In this the children of God are manifest, and the children of the devil: whosoever doeth not righteousness is not of God, neither he that loveth not his brother." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/03/30/25/scripture.md b/scripture/kjv/03/30/25/scripture.md new file mode 100644 index 00000000..df1aa923 --- /dev/null +++ b/scripture/kjv/03/30/25/scripture.md @@ -0,0 +1,5 @@ +**1 John 3:10** + +10 In this the children of God are manifest, and the children of the devil: whosoever doeth not righteousness is not of God, neither he that loveth not his brother. + +[Sunday 30-March, 2025](https://getbible.life/kjv/1 John/3/10) diff --git a/scripture/kjv/03/30/25/scripture.tg b/scripture/kjv/03/30/25/scripture.tg new file mode 100644 index 00000000..6f2e901f --- /dev/null +++ b/scripture/kjv/03/30/25/scripture.tg @@ -0,0 +1,4 @@ +1 John 3:10 +10 In this the children of God are manifest, and the children of the devil: whosoever doeth not righteousness is not of God, neither he that loveth not his brother. + +Sunday 30-March, 2025 diff --git a/scripture/kjv/03/30/25/scripture.tg.id b/scripture/kjv/03/30/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/30/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/30/25/scripture.today b/scripture/kjv/03/30/25/scripture.today new file mode 100644 index 00000000..8a58c3bc --- /dev/null +++ b/scripture/kjv/03/30/25/scripture.today @@ -0,0 +1 @@ +62 3:10 diff --git a/scripture/kjv/03/30/26/scripture.html b/scripture/kjv/03/30/26/scripture.html new file mode 100644 index 00000000..527807b1 --- /dev/null +++ b/scripture/kjv/03/30/26/scripture.html @@ -0,0 +1,3 @@ +Isaiah 61:11
+11 For as the earth bringeth forth her bud, and as the garden causeth the things that are sown in it to spring forth; so the Lord God will cause righteousness and praise to spring forth before all the nations.

+Monday 30-March, 2026 diff --git a/scripture/kjv/03/30/26/scripture.json b/scripture/kjv/03/30/26/scripture.json new file mode 100644 index 00000000..381f4ad0 --- /dev/null +++ b/scripture/kjv/03/30/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "61", + "date": "Monday 30-March, 2026", + "getbible": "https://getbible.life/kjv/Isaiah/61/11", + "name": "Isaiah 61:11", + "scripture": [ + { + "nr": "11", + "text": "For as the earth bringeth forth her bud, and as the garden causeth the things that are sown in it to spring forth; so the Lord God will cause righteousness and praise to spring forth before all the nations. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/03/30/26/scripture.md b/scripture/kjv/03/30/26/scripture.md new file mode 100644 index 00000000..1d713d2f --- /dev/null +++ b/scripture/kjv/03/30/26/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 61:11** + +11 For as the earth bringeth forth her bud, and as the garden causeth the things that are sown in it to spring forth; so the Lord God will cause righteousness and praise to spring forth before all the nations. + +[Monday 30-March, 2026](https://getbible.life/kjv/Isaiah/61/11) diff --git a/scripture/kjv/03/30/26/scripture.tg b/scripture/kjv/03/30/26/scripture.tg new file mode 100644 index 00000000..0929264a --- /dev/null +++ b/scripture/kjv/03/30/26/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 61:11 +11 For as the earth bringeth forth her bud, and as the garden causeth the things that are sown in it to spring forth; so the Lord God will cause righteousness and praise to spring forth before all the nations. + +Monday 30-March, 2026 diff --git a/scripture/kjv/03/30/26/scripture.tg.id b/scripture/kjv/03/30/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/30/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/30/26/scripture.today b/scripture/kjv/03/30/26/scripture.today new file mode 100644 index 00000000..3a78cea7 --- /dev/null +++ b/scripture/kjv/03/30/26/scripture.today @@ -0,0 +1 @@ +23 61:11 diff --git a/scripture/kjv/03/31/23/scripture.html b/scripture/kjv/03/31/23/scripture.html new file mode 100644 index 00000000..dbdd88b9 --- /dev/null +++ b/scripture/kjv/03/31/23/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 8:15
+15 As it is written, He that had gathered much had nothing over; and he that had gathered little had no lack.

+Friday 31-March, 2023 diff --git a/scripture/kjv/03/31/23/scripture.json b/scripture/kjv/03/31/23/scripture.json new file mode 100644 index 00000000..e923dcb4 --- /dev/null +++ b/scripture/kjv/03/31/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Friday 31-March, 2023", + "name": "2 Corinthians 8:15", + "scripture": [ + { + "nr": "15", + "text": "As it is written, He that had gathered much had nothing over; and he that had gathered little had no lack." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/03/31/23/scripture.md b/scripture/kjv/03/31/23/scripture.md new file mode 100644 index 00000000..0e4e6994 --- /dev/null +++ b/scripture/kjv/03/31/23/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 8:15** + +15 As it is written, He that had gathered much had nothing over; and he that had gathered little had no lack. + +[Friday 31-March, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/03/31/23/scripture.tg b/scripture/kjv/03/31/23/scripture.tg new file mode 100644 index 00000000..068c8b27 --- /dev/null +++ b/scripture/kjv/03/31/23/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 8:15 +15 As it is written, He that had gathered much had nothing over; and he that had gathered little had no lack. + +Friday 31-March, 2023 diff --git a/scripture/kjv/03/31/23/scripture.today b/scripture/kjv/03/31/23/scripture.today new file mode 100644 index 00000000..2abe5341 --- /dev/null +++ b/scripture/kjv/03/31/23/scripture.today @@ -0,0 +1 @@ +47 8:15 diff --git a/scripture/kjv/03/31/24/scripture.html b/scripture/kjv/03/31/24/scripture.html new file mode 100644 index 00000000..6871ac4b --- /dev/null +++ b/scripture/kjv/03/31/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 60:11
+11 Give us help from trouble: for vain is the help of man.

+Sunday 31-March, 2024 diff --git a/scripture/kjv/03/31/24/scripture.json b/scripture/kjv/03/31/24/scripture.json new file mode 100644 index 00000000..d8da26aa --- /dev/null +++ b/scripture/kjv/03/31/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "60", + "date": "Sunday 31-March, 2024", + "getbible": "https://getbible.life/kjv/Psalms/60/11", + "name": "Psalms 60:11", + "scripture": [ + { + "nr": "11", + "text": "Give us help from trouble: for vain is the help of man." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/03/31/24/scripture.md b/scripture/kjv/03/31/24/scripture.md new file mode 100644 index 00000000..9c0ce50b --- /dev/null +++ b/scripture/kjv/03/31/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 60:11** + +11 Give us help from trouble: for vain is the help of man. + +[Sunday 31-March, 2024](https://getbible.life/kjv/Psalms/60/11) diff --git a/scripture/kjv/03/31/24/scripture.tg b/scripture/kjv/03/31/24/scripture.tg new file mode 100644 index 00000000..76b5e208 --- /dev/null +++ b/scripture/kjv/03/31/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 60:11 +11 Give us help from trouble: for vain is the help of man. + +Sunday 31-March, 2024 diff --git a/scripture/kjv/03/31/24/scripture.tg.id b/scripture/kjv/03/31/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/31/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/31/24/scripture.today b/scripture/kjv/03/31/24/scripture.today new file mode 100644 index 00000000..3a6161e0 --- /dev/null +++ b/scripture/kjv/03/31/24/scripture.today @@ -0,0 +1 @@ +19 60:11 diff --git a/scripture/kjv/03/31/25/scripture.html b/scripture/kjv/03/31/25/scripture.html new file mode 100644 index 00000000..db8e0a34 --- /dev/null +++ b/scripture/kjv/03/31/25/scripture.html @@ -0,0 +1,3 @@ +Acts 4:10
+10 Be it known unto you all, and to all the people of Israel, that by the name of Jesus Christ of Nazareth, whom ye crucified, whom God raised from the dead, even by him doth this man stand here before you whole.

+Monday 31-March, 2025 diff --git a/scripture/kjv/03/31/25/scripture.json b/scripture/kjv/03/31/25/scripture.json new file mode 100644 index 00000000..218bbf47 --- /dev/null +++ b/scripture/kjv/03/31/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Acts", + "chapter": "4", + "date": "Monday 31-March, 2025", + "getbible": "https://getbible.life/kjv/Acts/4/10", + "name": "Acts 4:10", + "scripture": [ + { + "nr": "10", + "text": "Be it known unto you all, and to all the people of Israel, that by the name of Jesus Christ of Nazareth, whom ye crucified, whom God raised from the dead, even by him doth this man stand here before you whole." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/03/31/25/scripture.md b/scripture/kjv/03/31/25/scripture.md new file mode 100644 index 00000000..c29a6e0c --- /dev/null +++ b/scripture/kjv/03/31/25/scripture.md @@ -0,0 +1,5 @@ +**Acts 4:10** + +10 Be it known unto you all, and to all the people of Israel, that by the name of Jesus Christ of Nazareth, whom ye crucified, whom God raised from the dead, even by him doth this man stand here before you whole. + +[Monday 31-March, 2025](https://getbible.life/kjv/Acts/4/10) diff --git a/scripture/kjv/03/31/25/scripture.tg b/scripture/kjv/03/31/25/scripture.tg new file mode 100644 index 00000000..69ef367b --- /dev/null +++ b/scripture/kjv/03/31/25/scripture.tg @@ -0,0 +1,4 @@ +Acts 4:10 +10 Be it known unto you all, and to all the people of Israel, that by the name of Jesus Christ of Nazareth, whom ye crucified, whom God raised from the dead, even by him doth this man stand here before you whole. + +Monday 31-March, 2025 diff --git a/scripture/kjv/03/31/25/scripture.tg.id b/scripture/kjv/03/31/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/31/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/31/25/scripture.today b/scripture/kjv/03/31/25/scripture.today new file mode 100644 index 00000000..7f76d3b3 --- /dev/null +++ b/scripture/kjv/03/31/25/scripture.today @@ -0,0 +1 @@ +44 4:10 diff --git a/scripture/kjv/03/31/26/scripture.html b/scripture/kjv/03/31/26/scripture.html new file mode 100644 index 00000000..e48433bd --- /dev/null +++ b/scripture/kjv/03/31/26/scripture.html @@ -0,0 +1,3 @@ +Psalms 69:19
+19 Thou hast known my reproach, and my shame, and my dishonour: mine adversaries are all before thee.

+Tuesday 31-March, 2026 diff --git a/scripture/kjv/03/31/26/scripture.json b/scripture/kjv/03/31/26/scripture.json new file mode 100644 index 00000000..daa9553c --- /dev/null +++ b/scripture/kjv/03/31/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "69", + "date": "Tuesday 31-March, 2026", + "getbible": "https://getbible.life/kjv/Psalms/69/19", + "name": "Psalms 69:19", + "scripture": [ + { + "nr": "19", + "text": "Thou hast known my reproach, and my shame, and my dishonour: mine adversaries are all before thee." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "19", + "version": "kjv" +} diff --git a/scripture/kjv/03/31/26/scripture.md b/scripture/kjv/03/31/26/scripture.md new file mode 100644 index 00000000..d02ff8f0 --- /dev/null +++ b/scripture/kjv/03/31/26/scripture.md @@ -0,0 +1,5 @@ +**Psalms 69:19** + +19 Thou hast known my reproach, and my shame, and my dishonour: mine adversaries are all before thee. + +[Tuesday 31-March, 2026](https://getbible.life/kjv/Psalms/69/19) diff --git a/scripture/kjv/03/31/26/scripture.tg b/scripture/kjv/03/31/26/scripture.tg new file mode 100644 index 00000000..8745c409 --- /dev/null +++ b/scripture/kjv/03/31/26/scripture.tg @@ -0,0 +1,4 @@ +Psalms 69:19 +19 Thou hast known my reproach, and my shame, and my dishonour: mine adversaries are all before thee. + +Tuesday 31-March, 2026 diff --git a/scripture/kjv/03/31/26/scripture.tg.id b/scripture/kjv/03/31/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/03/31/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/03/31/26/scripture.today b/scripture/kjv/03/31/26/scripture.today new file mode 100644 index 00000000..52a05ca9 --- /dev/null +++ b/scripture/kjv/03/31/26/scripture.today @@ -0,0 +1 @@ +19 69:19 diff --git a/scripture/kjv/04/01/23/scripture.html b/scripture/kjv/04/01/23/scripture.html new file mode 100644 index 00000000..8f2b62d5 --- /dev/null +++ b/scripture/kjv/04/01/23/scripture.html @@ -0,0 +1,3 @@ +Matthew 15:27-28
+27 And she said, Truth, Lord: yet the dogs eat of the crumbs which fall from their masters’ table. 28 Then Jesus answered and said unto her, O woman, great is thy faith: be it unto thee even as thou wilt. And her daughter was made whole from that very hour.

+Saturday 01-April, 2023 diff --git a/scripture/kjv/04/01/23/scripture.json b/scripture/kjv/04/01/23/scripture.json new file mode 100644 index 00000000..d740add9 --- /dev/null +++ b/scripture/kjv/04/01/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Saturday 01-April, 2023", + "name": "Matthew 15:27-28", + "scripture": [ + { + "nr": "27", + "text": "And she said, Truth, Lord: yet the dogs eat of the crumbs which fall from their masters’ table." + }, + { + "nr": "28", + "text": "Then Jesus answered and said unto her, O woman, great is thy faith: be it unto thee even as thou wilt. And her daughter was made whole from that very hour." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/01/23/scripture.md b/scripture/kjv/04/01/23/scripture.md new file mode 100644 index 00000000..f25795a5 --- /dev/null +++ b/scripture/kjv/04/01/23/scripture.md @@ -0,0 +1,5 @@ +**Matthew 15:27-28** + +27 And she said, Truth, Lord: yet the dogs eat of the crumbs which fall from their masters’ table. 28 Then Jesus answered and said unto her, O woman, great is thy faith: be it unto thee even as thou wilt. And her daughter was made whole from that very hour. + +[Saturday 01-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/01/23/scripture.tg b/scripture/kjv/04/01/23/scripture.tg new file mode 100644 index 00000000..8dde92d8 --- /dev/null +++ b/scripture/kjv/04/01/23/scripture.tg @@ -0,0 +1,4 @@ +Matthew 15:27-28 +27 And she said, Truth, Lord: yet the dogs eat of the crumbs which fall from their masters’ table. 28 Then Jesus answered and said unto her, O woman, great is thy faith: be it unto thee even as thou wilt. And her daughter was made whole from that very hour. + +Saturday 01-April, 2023 diff --git a/scripture/kjv/04/01/23/scripture.today b/scripture/kjv/04/01/23/scripture.today new file mode 100644 index 00000000..67e3a464 --- /dev/null +++ b/scripture/kjv/04/01/23/scripture.today @@ -0,0 +1 @@ +40 15:27-28 diff --git a/scripture/kjv/04/01/24/scripture.html b/scripture/kjv/04/01/24/scripture.html new file mode 100644 index 00000000..05fce396 --- /dev/null +++ b/scripture/kjv/04/01/24/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 11:13
+13 And it came to pass, when I prophesied, that Pelatiah the son of Benaiah died. Then fell I down upon my face, and cried with a loud voice, and said, Ah Lord God! wilt thou make a full end of the remnant of Israel?

+Monday 01-April, 2024 diff --git a/scripture/kjv/04/01/24/scripture.json b/scripture/kjv/04/01/24/scripture.json new file mode 100644 index 00000000..82203900 --- /dev/null +++ b/scripture/kjv/04/01/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ezekiel", + "chapter": "11", + "date": "Monday 01-April, 2024", + "getbible": "https://getbible.life/kjv/Ezekiel/11/13", + "name": "Ezekiel 11:13", + "scripture": [ + { + "nr": "13", + "text": "And it came to pass, when I prophesied, that Pelatiah the son of Benaiah died. Then fell I down upon my face, and cried with a loud voice, and said, Ah Lord God! wilt thou make a full end of the remnant of Israel?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13", + "version": "kjv" +} diff --git a/scripture/kjv/04/01/24/scripture.md b/scripture/kjv/04/01/24/scripture.md new file mode 100644 index 00000000..5eb29a34 --- /dev/null +++ b/scripture/kjv/04/01/24/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 11:13** + +13 And it came to pass, when I prophesied, that Pelatiah the son of Benaiah died. Then fell I down upon my face, and cried with a loud voice, and said, Ah Lord God! wilt thou make a full end of the remnant of Israel? + +[Monday 01-April, 2024](https://getbible.life/kjv/Ezekiel/11/13) diff --git a/scripture/kjv/04/01/24/scripture.tg b/scripture/kjv/04/01/24/scripture.tg new file mode 100644 index 00000000..25093125 --- /dev/null +++ b/scripture/kjv/04/01/24/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 11:13 +13 And it came to pass, when I prophesied, that Pelatiah the son of Benaiah died. Then fell I down upon my face, and cried with a loud voice, and said, Ah Lord God! wilt thou make a full end of the remnant of Israel? + +Monday 01-April, 2024 diff --git a/scripture/kjv/04/01/24/scripture.tg.id b/scripture/kjv/04/01/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/01/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/01/24/scripture.today b/scripture/kjv/04/01/24/scripture.today new file mode 100644 index 00000000..4a2420d2 --- /dev/null +++ b/scripture/kjv/04/01/24/scripture.today @@ -0,0 +1 @@ +26 11:13 diff --git a/scripture/kjv/04/01/25/scripture.html b/scripture/kjv/04/01/25/scripture.html new file mode 100644 index 00000000..76741863 --- /dev/null +++ b/scripture/kjv/04/01/25/scripture.html @@ -0,0 +1,3 @@ +2 Peter 2:4-9
+4 For if God spared not the angels that sinned, but cast them down to hell, and delivered them into chains of darkness, to be reserved unto judgment; 5 And spared not the old world, but saved Noah the eighth person, a preacher of righteousness, bringing in the flood upon the world of the ungodly; 6 And turning the cities of Sodom and Gomorrha into ashes condemned them with an overthrow, making them an ensample unto those that after should live ungodly; 7 And delivered just Lot, vexed with the filthy conversation of the wicked: 8 (For that righteous man dwelling among them, in seeing and hearing, vexed his righteous soul from day to day with their unlawful deeds;) 9 The Lord knoweth how to deliver the godly out of temptations, and to reserve the unjust unto the day of judgment to be punished:

+Tuesday 01-April, 2025 diff --git a/scripture/kjv/04/01/25/scripture.json b/scripture/kjv/04/01/25/scripture.json new file mode 100644 index 00000000..244cee3d --- /dev/null +++ b/scripture/kjv/04/01/25/scripture.json @@ -0,0 +1,37 @@ +{ + "book": "2 Peter", + "chapter": "2", + "date": "Tuesday 01-April, 2025", + "getbible": "https://getbible.life/kjv/2 Peter/2/4-9", + "name": "2 Peter 2:4-9", + "scripture": [ + { + "nr": "4", + "text": "For if God spared not the angels that sinned, but cast them down to hell, and delivered them into chains of darkness, to be reserved unto judgment;" + }, + { + "nr": "5", + "text": "And spared not the old world, but saved Noah the eighth person, a preacher of righteousness, bringing in the flood upon the world of the ungodly;" + }, + { + "nr": "6", + "text": "And turning the cities of Sodom and Gomorrha into ashes condemned them with an overthrow, making them an ensample unto those that after should live ungodly;" + }, + { + "nr": "7", + "text": "And delivered just Lot, vexed with the filthy conversation of the wicked:" + }, + { + "nr": "8", + "text": "(For that righteous man dwelling among them, in seeing and hearing, vexed his righteous soul from day to day with their unlawful deeds;)" + }, + { + "nr": "9", + "text": "The Lord knoweth how to deliver the godly out of temptations, and to reserve the unjust unto the day of judgment to be punished:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4-9", + "version": "kjv" +} diff --git a/scripture/kjv/04/01/25/scripture.md b/scripture/kjv/04/01/25/scripture.md new file mode 100644 index 00000000..ddf869b5 --- /dev/null +++ b/scripture/kjv/04/01/25/scripture.md @@ -0,0 +1,5 @@ +**2 Peter 2:4-9** + +4 For if God spared not the angels that sinned, but cast them down to hell, and delivered them into chains of darkness, to be reserved unto judgment; 5 And spared not the old world, but saved Noah the eighth person, a preacher of righteousness, bringing in the flood upon the world of the ungodly; 6 And turning the cities of Sodom and Gomorrha into ashes condemned them with an overthrow, making them an ensample unto those that after should live ungodly; 7 And delivered just Lot, vexed with the filthy conversation of the wicked: 8 (For that righteous man dwelling among them, in seeing and hearing, vexed his righteous soul from day to day with their unlawful deeds;) 9 The Lord knoweth how to deliver the godly out of temptations, and to reserve the unjust unto the day of judgment to be punished: + +[Tuesday 01-April, 2025](https://getbible.life/kjv/2 Peter/2/4-9) diff --git a/scripture/kjv/04/01/25/scripture.tg b/scripture/kjv/04/01/25/scripture.tg new file mode 100644 index 00000000..d0ec3ed8 --- /dev/null +++ b/scripture/kjv/04/01/25/scripture.tg @@ -0,0 +1,4 @@ +2 Peter 2:4-9 +4 For if God spared not the angels that sinned, but cast them down to hell, and delivered them into chains of darkness, to be reserved unto judgment; 5 And spared not the old world, but saved Noah the eighth person, a preacher of righteousness, bringing in the flood upon the world of the ungodly; 6 And turning the cities of Sodom and Gomorrha into ashes condemned them with an overthrow, making them an ensample unto those that after should live ungodly; 7 And delivered just Lot, vexed with the filthy conversation of the wicked: 8 (For that righteous man dwelling among them, in seeing and hearing, vexed his righteous soul from day to day with their unlawful deeds;) 9 The Lord knoweth how to deliver the godly out of temptations, and to reserve the unjust unto the day of judgment to be punished: + +Tuesday 01-April, 2025 diff --git a/scripture/kjv/04/01/25/scripture.tg.id b/scripture/kjv/04/01/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/01/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/01/25/scripture.today b/scripture/kjv/04/01/25/scripture.today new file mode 100644 index 00000000..60b1589d --- /dev/null +++ b/scripture/kjv/04/01/25/scripture.today @@ -0,0 +1 @@ +61 2:4-9 diff --git a/scripture/kjv/04/01/26/scripture.html b/scripture/kjv/04/01/26/scripture.html new file mode 100644 index 00000000..71f3b234 --- /dev/null +++ b/scripture/kjv/04/01/26/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 10:33
+33 Even as I please all men in all things, not seeking mine own profit, but the profit of many, that they may be saved.

+Wednesday 01-April, 2026 diff --git a/scripture/kjv/04/01/26/scripture.json b/scripture/kjv/04/01/26/scripture.json new file mode 100644 index 00000000..ff732508 --- /dev/null +++ b/scripture/kjv/04/01/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "10", + "date": "Wednesday 01-April, 2026", + "getbible": "https://getbible.life/kjv/1 Corinthians/10/33", + "name": "1 Corinthians 10:33", + "scripture": [ + { + "nr": "33", + "text": "Even as I please all men in all things, not seeking mine own profit, but the profit of many, that they may be saved. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "33", + "version": "kjv" +} diff --git a/scripture/kjv/04/01/26/scripture.md b/scripture/kjv/04/01/26/scripture.md new file mode 100644 index 00000000..00314b7e --- /dev/null +++ b/scripture/kjv/04/01/26/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 10:33** + +33 Even as I please all men in all things, not seeking mine own profit, but the profit of many, that they may be saved. + +[Wednesday 01-April, 2026](https://getbible.life/kjv/1 Corinthians/10/33) diff --git a/scripture/kjv/04/01/26/scripture.tg b/scripture/kjv/04/01/26/scripture.tg new file mode 100644 index 00000000..6d7bf2b3 --- /dev/null +++ b/scripture/kjv/04/01/26/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 10:33 +33 Even as I please all men in all things, not seeking mine own profit, but the profit of many, that they may be saved. + +Wednesday 01-April, 2026 diff --git a/scripture/kjv/04/01/26/scripture.tg.id b/scripture/kjv/04/01/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/01/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/01/26/scripture.today b/scripture/kjv/04/01/26/scripture.today new file mode 100644 index 00000000..27b1764a --- /dev/null +++ b/scripture/kjv/04/01/26/scripture.today @@ -0,0 +1 @@ +46 10:33 diff --git a/scripture/kjv/04/02/23/scripture.html b/scripture/kjv/04/02/23/scripture.html new file mode 100644 index 00000000..43406991 --- /dev/null +++ b/scripture/kjv/04/02/23/scripture.html @@ -0,0 +1,3 @@ +Romans 9:20
+20 Nay but, O man, who art thou that repliest against God? Shall the thing formed say to him that formed it, Why hast thou made me thus?

+Sunday 02-April, 2023 diff --git a/scripture/kjv/04/02/23/scripture.json b/scripture/kjv/04/02/23/scripture.json new file mode 100644 index 00000000..0a50c5aa --- /dev/null +++ b/scripture/kjv/04/02/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Sunday 02-April, 2023", + "name": "Romans 9:20", + "scripture": [ + { + "nr": "20", + "text": "Nay but, O man, who art thou that repliest against God? Shall the thing formed say to him that formed it, Why hast thou made me thus?" + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/02/23/scripture.md b/scripture/kjv/04/02/23/scripture.md new file mode 100644 index 00000000..06926463 --- /dev/null +++ b/scripture/kjv/04/02/23/scripture.md @@ -0,0 +1,5 @@ +**Romans 9:20** + +20 Nay but, O man, who art thou that repliest against God? Shall the thing formed say to him that formed it, Why hast thou made me thus? + +[Sunday 02-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/02/23/scripture.tg b/scripture/kjv/04/02/23/scripture.tg new file mode 100644 index 00000000..a44a04dc --- /dev/null +++ b/scripture/kjv/04/02/23/scripture.tg @@ -0,0 +1,4 @@ +Romans 9:20 +20 Nay but, O man, who art thou that repliest against God? Shall the thing formed say to him that formed it, Why hast thou made me thus? + +Sunday 02-April, 2023 diff --git a/scripture/kjv/04/02/23/scripture.today b/scripture/kjv/04/02/23/scripture.today new file mode 100644 index 00000000..af09b463 --- /dev/null +++ b/scripture/kjv/04/02/23/scripture.today @@ -0,0 +1 @@ +45 9:20 diff --git a/scripture/kjv/04/02/24/scripture.html b/scripture/kjv/04/02/24/scripture.html new file mode 100644 index 00000000..0eb276a6 --- /dev/null +++ b/scripture/kjv/04/02/24/scripture.html @@ -0,0 +1,3 @@ +Joshua 15:19
+19 Who answered, Give me a blessing; for thou hast given me a south land; give me also springs of water. And he gave her the upper springs, and the nether springs.

+Tuesday 02-April, 2024 diff --git a/scripture/kjv/04/02/24/scripture.json b/scripture/kjv/04/02/24/scripture.json new file mode 100644 index 00000000..cf7713bd --- /dev/null +++ b/scripture/kjv/04/02/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Joshua", + "chapter": "15", + "date": "Tuesday 02-April, 2024", + "getbible": "https://getbible.life/kjv/Joshua/15/19", + "name": "Joshua 15:19", + "scripture": [ + { + "nr": "19", + "text": "Who answered, Give me a blessing; for thou hast given me a south land; give me also springs of water. And he gave her the upper springs, and the nether springs." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "19", + "version": "kjv" +} diff --git a/scripture/kjv/04/02/24/scripture.md b/scripture/kjv/04/02/24/scripture.md new file mode 100644 index 00000000..ad56efed --- /dev/null +++ b/scripture/kjv/04/02/24/scripture.md @@ -0,0 +1,5 @@ +**Joshua 15:19** + +19 Who answered, Give me a blessing; for thou hast given me a south land; give me also springs of water. And he gave her the upper springs, and the nether springs. + +[Tuesday 02-April, 2024](https://getbible.life/kjv/Joshua/15/19) diff --git a/scripture/kjv/04/02/24/scripture.tg b/scripture/kjv/04/02/24/scripture.tg new file mode 100644 index 00000000..de8b3a8f --- /dev/null +++ b/scripture/kjv/04/02/24/scripture.tg @@ -0,0 +1,4 @@ +Joshua 15:19 +19 Who answered, Give me a blessing; for thou hast given me a south land; give me also springs of water. And he gave her the upper springs, and the nether springs. + +Tuesday 02-April, 2024 diff --git a/scripture/kjv/04/02/24/scripture.tg.id b/scripture/kjv/04/02/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/02/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/02/24/scripture.today b/scripture/kjv/04/02/24/scripture.today new file mode 100644 index 00000000..844d6524 --- /dev/null +++ b/scripture/kjv/04/02/24/scripture.today @@ -0,0 +1 @@ +6 15:19 diff --git a/scripture/kjv/04/02/25/scripture.html b/scripture/kjv/04/02/25/scripture.html new file mode 100644 index 00000000..278ea95a --- /dev/null +++ b/scripture/kjv/04/02/25/scripture.html @@ -0,0 +1,3 @@ +John 5:14
+14 Afterward Jesus findeth him in the temple, and said unto him, Behold, thou art made whole: sin no more, lest a worse thing come unto thee.

+Wednesday 02-April, 2025 diff --git a/scripture/kjv/04/02/25/scripture.json b/scripture/kjv/04/02/25/scripture.json new file mode 100644 index 00000000..075ad5e7 --- /dev/null +++ b/scripture/kjv/04/02/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "5", + "date": "Wednesday 02-April, 2025", + "getbible": "https://getbible.life/kjv/John/5/14", + "name": "John 5:14", + "scripture": [ + { + "nr": "14", + "text": "Afterward Jesus findeth him in the temple, and said unto him, Behold, thou art made whole: sin no more, lest a worse thing come unto thee." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/04/02/25/scripture.md b/scripture/kjv/04/02/25/scripture.md new file mode 100644 index 00000000..91c0d317 --- /dev/null +++ b/scripture/kjv/04/02/25/scripture.md @@ -0,0 +1,5 @@ +**John 5:14** + +14 Afterward Jesus findeth him in the temple, and said unto him, Behold, thou art made whole: sin no more, lest a worse thing come unto thee. + +[Wednesday 02-April, 2025](https://getbible.life/kjv/John/5/14) diff --git a/scripture/kjv/04/02/25/scripture.tg b/scripture/kjv/04/02/25/scripture.tg new file mode 100644 index 00000000..8377075d --- /dev/null +++ b/scripture/kjv/04/02/25/scripture.tg @@ -0,0 +1,4 @@ +John 5:14 +14 Afterward Jesus findeth him in the temple, and said unto him, Behold, thou art made whole: sin no more, lest a worse thing come unto thee. + +Wednesday 02-April, 2025 diff --git a/scripture/kjv/04/02/25/scripture.tg.id b/scripture/kjv/04/02/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/02/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/02/25/scripture.today b/scripture/kjv/04/02/25/scripture.today new file mode 100644 index 00000000..217d91d5 --- /dev/null +++ b/scripture/kjv/04/02/25/scripture.today @@ -0,0 +1 @@ +43 5:14 diff --git a/scripture/kjv/04/02/26/scripture.html b/scripture/kjv/04/02/26/scripture.html new file mode 100644 index 00000000..60ef1b9e --- /dev/null +++ b/scripture/kjv/04/02/26/scripture.html @@ -0,0 +1,3 @@ +Hebrews 6:11-12
+11 And we desire that every one of you do shew the same diligence to the full assurance of hope unto the end: 12 That ye be not slothful, but followers of them who through faith and patience inherit the promises.

+Thursday 02-April, 2026 diff --git a/scripture/kjv/04/02/26/scripture.json b/scripture/kjv/04/02/26/scripture.json new file mode 100644 index 00000000..6ab97499 --- /dev/null +++ b/scripture/kjv/04/02/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Hebrews", + "chapter": "6", + "date": "Thursday 02-April, 2026", + "getbible": "https://getbible.life/kjv/Hebrews/6/11-12", + "name": "Hebrews 6:11-12", + "scripture": [ + { + "nr": "11", + "text": "And we desire that every one of you do shew the same diligence to the full assurance of hope unto the end:" + }, + { + "nr": "12", + "text": "That ye be not slothful, but followers of them who through faith and patience inherit the promises." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11-12", + "version": "kjv" +} diff --git a/scripture/kjv/04/02/26/scripture.md b/scripture/kjv/04/02/26/scripture.md new file mode 100644 index 00000000..95e96c78 --- /dev/null +++ b/scripture/kjv/04/02/26/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 6:11-12** + +11 And we desire that every one of you do shew the same diligence to the full assurance of hope unto the end: 12 That ye be not slothful, but followers of them who through faith and patience inherit the promises. + +[Thursday 02-April, 2026](https://getbible.life/kjv/Hebrews/6/11-12) diff --git a/scripture/kjv/04/02/26/scripture.tg b/scripture/kjv/04/02/26/scripture.tg new file mode 100644 index 00000000..5330f181 --- /dev/null +++ b/scripture/kjv/04/02/26/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 6:11-12 +11 And we desire that every one of you do shew the same diligence to the full assurance of hope unto the end: 12 That ye be not slothful, but followers of them who through faith and patience inherit the promises. + +Thursday 02-April, 2026 diff --git a/scripture/kjv/04/02/26/scripture.tg.id b/scripture/kjv/04/02/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/02/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/02/26/scripture.today b/scripture/kjv/04/02/26/scripture.today new file mode 100644 index 00000000..9b6a10ac --- /dev/null +++ b/scripture/kjv/04/02/26/scripture.today @@ -0,0 +1 @@ +58 6:11-12 diff --git a/scripture/kjv/04/03/23/scripture.html b/scripture/kjv/04/03/23/scripture.html new file mode 100644 index 00000000..ac9e7bd9 --- /dev/null +++ b/scripture/kjv/04/03/23/scripture.html @@ -0,0 +1,3 @@ +Luke 22:57-60
+57 And he denied him, saying, Woman, I know him not. 58 And after a little while another saw him, and said, Thou art also of them. And Peter said, Man, I am not. 59 And about the space of one hour after another confidently affirmed, saying, Of a truth this fellow also was with him: for he is a Galilæan. 60 And Peter said, Man, I know not what thou sayest. And immediately, while he yet spake, the cock crew.

+Monday 03-April, 2023 diff --git a/scripture/kjv/04/03/23/scripture.json b/scripture/kjv/04/03/23/scripture.json new file mode 100644 index 00000000..41303d04 --- /dev/null +++ b/scripture/kjv/04/03/23/scripture.json @@ -0,0 +1,25 @@ +{ + "date": "Monday 03-April, 2023", + "name": "Luke 22:57-60", + "scripture": [ + { + "nr": "57", + "text": "And he denied him, saying, Woman, I know him not." + }, + { + "nr": "58", + "text": "And after a little while another saw him, and said, Thou art also of them. And Peter said, Man, I am not." + }, + { + "nr": "59", + "text": "And about the space of one hour after another confidently affirmed, saying, Of a truth this fellow also was with him: for he is a Galilæan." + }, + { + "nr": "60", + "text": "And Peter said, Man, I know not what thou sayest. And immediately, while he yet spake, the cock crew." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/03/23/scripture.md b/scripture/kjv/04/03/23/scripture.md new file mode 100644 index 00000000..a50c9a8d --- /dev/null +++ b/scripture/kjv/04/03/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 22:57-60** + +57 And he denied him, saying, Woman, I know him not. 58 And after a little while another saw him, and said, Thou art also of them. And Peter said, Man, I am not. 59 And about the space of one hour after another confidently affirmed, saying, Of a truth this fellow also was with him: for he is a Galilæan. 60 And Peter said, Man, I know not what thou sayest. And immediately, while he yet spake, the cock crew. + +[Monday 03-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/03/23/scripture.tg b/scripture/kjv/04/03/23/scripture.tg new file mode 100644 index 00000000..9feecab0 --- /dev/null +++ b/scripture/kjv/04/03/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 22:57-60 +57 And he denied him, saying, Woman, I know him not. 58 And after a little while another saw him, and said, Thou art also of them. And Peter said, Man, I am not. 59 And about the space of one hour after another confidently affirmed, saying, Of a truth this fellow also was with him: for he is a Galilæan. 60 And Peter said, Man, I know not what thou sayest. And immediately, while he yet spake, the cock crew. + +Monday 03-April, 2023 diff --git a/scripture/kjv/04/03/23/scripture.today b/scripture/kjv/04/03/23/scripture.today new file mode 100644 index 00000000..90fc6558 --- /dev/null +++ b/scripture/kjv/04/03/23/scripture.today @@ -0,0 +1 @@ +42 22:57-60 diff --git a/scripture/kjv/04/03/24/scripture.html b/scripture/kjv/04/03/24/scripture.html new file mode 100644 index 00000000..0a0bb8b7 --- /dev/null +++ b/scripture/kjv/04/03/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 15:1
+1 A soft answer turneth away wrath: but grievous words stir up anger.

+Wednesday 03-April, 2024 diff --git a/scripture/kjv/04/03/24/scripture.json b/scripture/kjv/04/03/24/scripture.json new file mode 100644 index 00000000..16bd6b94 --- /dev/null +++ b/scripture/kjv/04/03/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "15", + "date": "Wednesday 03-April, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/15/1", + "name": "Proverbs 15:1", + "scripture": [ + { + "nr": "1", + "text": "A soft answer turneth away wrath: but grievous words stir up anger." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1", + "version": "kjv" +} diff --git a/scripture/kjv/04/03/24/scripture.md b/scripture/kjv/04/03/24/scripture.md new file mode 100644 index 00000000..0885b523 --- /dev/null +++ b/scripture/kjv/04/03/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 15:1** + +1 A soft answer turneth away wrath: but grievous words stir up anger. + +[Wednesday 03-April, 2024](https://getbible.life/kjv/Proverbs/15/1) diff --git a/scripture/kjv/04/03/24/scripture.tg b/scripture/kjv/04/03/24/scripture.tg new file mode 100644 index 00000000..9e715989 --- /dev/null +++ b/scripture/kjv/04/03/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 15:1 +1 A soft answer turneth away wrath: but grievous words stir up anger. + +Wednesday 03-April, 2024 diff --git a/scripture/kjv/04/03/24/scripture.tg.id b/scripture/kjv/04/03/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/03/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/03/24/scripture.today b/scripture/kjv/04/03/24/scripture.today new file mode 100644 index 00000000..0084a7f8 --- /dev/null +++ b/scripture/kjv/04/03/24/scripture.today @@ -0,0 +1 @@ +20 15:1 diff --git a/scripture/kjv/04/03/25/scripture.html b/scripture/kjv/04/03/25/scripture.html new file mode 100644 index 00000000..a4cb85c6 --- /dev/null +++ b/scripture/kjv/04/03/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 30:5
+5 For his anger endureth but a moment; in his favour is life: weeping may endure for a night, but joy cometh in the morning.

+Thursday 03-April, 2025 diff --git a/scripture/kjv/04/03/25/scripture.json b/scripture/kjv/04/03/25/scripture.json new file mode 100644 index 00000000..81c09208 --- /dev/null +++ b/scripture/kjv/04/03/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "30", + "date": "Thursday 03-April, 2025", + "getbible": "https://getbible.life/kjv/Psalms/30/5", + "name": "Psalms 30:5", + "scripture": [ + { + "nr": "5", + "text": "For his anger endureth but a moment; in his favour is life: weeping may endure for a night, but joy cometh in the morning." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5", + "version": "kjv" +} diff --git a/scripture/kjv/04/03/25/scripture.md b/scripture/kjv/04/03/25/scripture.md new file mode 100644 index 00000000..30da82ef --- /dev/null +++ b/scripture/kjv/04/03/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 30:5** + +5 For his anger endureth but a moment; in his favour is life: weeping may endure for a night, but joy cometh in the morning. + +[Thursday 03-April, 2025](https://getbible.life/kjv/Psalms/30/5) diff --git a/scripture/kjv/04/03/25/scripture.tg b/scripture/kjv/04/03/25/scripture.tg new file mode 100644 index 00000000..03f06022 --- /dev/null +++ b/scripture/kjv/04/03/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 30:5 +5 For his anger endureth but a moment; in his favour is life: weeping may endure for a night, but joy cometh in the morning. + +Thursday 03-April, 2025 diff --git a/scripture/kjv/04/03/25/scripture.tg.id b/scripture/kjv/04/03/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/03/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/03/25/scripture.today b/scripture/kjv/04/03/25/scripture.today new file mode 100644 index 00000000..028da500 --- /dev/null +++ b/scripture/kjv/04/03/25/scripture.today @@ -0,0 +1 @@ +19 30:5 diff --git a/scripture/kjv/04/03/26/scripture.html b/scripture/kjv/04/03/26/scripture.html new file mode 100644 index 00000000..117df979 --- /dev/null +++ b/scripture/kjv/04/03/26/scripture.html @@ -0,0 +1,3 @@ +Revelation 3:17-19
+17 Because thou sayest, I am rich, and increased with goods, and have need of nothing; and knowest not that thou art wretched, and miserable, and poor, and blind, and naked: 18 I counsel thee to buy of me gold tried in the fire, that thou mayest be rich; and white raiment, that thou mayest be clothed, and that the shame of thy nakedness do not appear; and anoint thine eyes with eyesalve, that thou mayest see. 19 As many as I love, I rebuke and chasten: be zealous therefore, and repent.

+Friday 03-April, 2026 diff --git a/scripture/kjv/04/03/26/scripture.json b/scripture/kjv/04/03/26/scripture.json new file mode 100644 index 00000000..eb22b70e --- /dev/null +++ b/scripture/kjv/04/03/26/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Revelation", + "chapter": "3", + "date": "Friday 03-April, 2026", + "getbible": "https://getbible.life/kjv/Revelation/3/17-19", + "name": "Revelation 3:17-19", + "scripture": [ + { + "nr": "17", + "text": "Because thou sayest, I am rich, and increased with goods, and have need of nothing; and knowest not that thou art wretched, and miserable, and poor, and blind, and naked:" + }, + { + "nr": "18", + "text": "I counsel thee to buy of me gold tried in the fire, that thou mayest be rich; and white raiment, that thou mayest be clothed, and that the shame of thy nakedness do not appear; and anoint thine eyes with eyesalve, that thou mayest see." + }, + { + "nr": "19", + "text": "As many as I love, I rebuke and chasten: be zealous therefore, and repent." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17-19", + "version": "kjv" +} diff --git a/scripture/kjv/04/03/26/scripture.md b/scripture/kjv/04/03/26/scripture.md new file mode 100644 index 00000000..fd141f23 --- /dev/null +++ b/scripture/kjv/04/03/26/scripture.md @@ -0,0 +1,5 @@ +**Revelation 3:17-19** + +17 Because thou sayest, I am rich, and increased with goods, and have need of nothing; and knowest not that thou art wretched, and miserable, and poor, and blind, and naked: 18 I counsel thee to buy of me gold tried in the fire, that thou mayest be rich; and white raiment, that thou mayest be clothed, and that the shame of thy nakedness do not appear; and anoint thine eyes with eyesalve, that thou mayest see. 19 As many as I love, I rebuke and chasten: be zealous therefore, and repent. + +[Friday 03-April, 2026](https://getbible.life/kjv/Revelation/3/17-19) diff --git a/scripture/kjv/04/03/26/scripture.tg b/scripture/kjv/04/03/26/scripture.tg new file mode 100644 index 00000000..ab5357ab --- /dev/null +++ b/scripture/kjv/04/03/26/scripture.tg @@ -0,0 +1,4 @@ +Revelation 3:17-19 +17 Because thou sayest, I am rich, and increased with goods, and have need of nothing; and knowest not that thou art wretched, and miserable, and poor, and blind, and naked: 18 I counsel thee to buy of me gold tried in the fire, that thou mayest be rich; and white raiment, that thou mayest be clothed, and that the shame of thy nakedness do not appear; and anoint thine eyes with eyesalve, that thou mayest see. 19 As many as I love, I rebuke and chasten: be zealous therefore, and repent. + +Friday 03-April, 2026 diff --git a/scripture/kjv/04/03/26/scripture.tg.id b/scripture/kjv/04/03/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/03/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/03/26/scripture.today b/scripture/kjv/04/03/26/scripture.today new file mode 100644 index 00000000..5c82650f --- /dev/null +++ b/scripture/kjv/04/03/26/scripture.today @@ -0,0 +1 @@ +66 3:17-19 diff --git a/scripture/kjv/04/04/23/scripture.html b/scripture/kjv/04/04/23/scripture.html new file mode 100644 index 00000000..8c4060be --- /dev/null +++ b/scripture/kjv/04/04/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 39:4-6
+4 Lord, make me to know mine end, and the measure of my days, what it is; that I may know how frail I am. 5 Behold, thou hast made my days as an handbreadth; and mine age is as nothing before thee: verily every man at his best state is altogether vanity. Selah. 6 Surely every man walketh in a vain shew: surely they are disquieted in vain: he heapeth up riches, and knoweth not who shall gather them.

+Tuesday 04-April, 2023 diff --git a/scripture/kjv/04/04/23/scripture.json b/scripture/kjv/04/04/23/scripture.json new file mode 100644 index 00000000..dc74340a --- /dev/null +++ b/scripture/kjv/04/04/23/scripture.json @@ -0,0 +1,21 @@ +{ + "date": "Tuesday 04-April, 2023", + "name": "Psalms 39:4-6", + "scripture": [ + { + "nr": "4", + "text": "Lord, make me to know mine end, and the measure of my days, what it is; that I may know how frail I am." + }, + { + "nr": "5", + "text": "Behold, thou hast made my days as an handbreadth; and mine age is as nothing before thee: verily every man at his best state is altogether vanity. Selah." + }, + { + "nr": "6", + "text": "Surely every man walketh in a vain shew: surely they are disquieted in vain: he heapeth up riches, and knoweth not who shall gather them." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/04/23/scripture.md b/scripture/kjv/04/04/23/scripture.md new file mode 100644 index 00000000..2e85e6dd --- /dev/null +++ b/scripture/kjv/04/04/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 39:4-6** + +4 Lord, make me to know mine end, and the measure of my days, what it is; that I may know how frail I am. 5 Behold, thou hast made my days as an handbreadth; and mine age is as nothing before thee: verily every man at his best state is altogether vanity. Selah. 6 Surely every man walketh in a vain shew: surely they are disquieted in vain: he heapeth up riches, and knoweth not who shall gather them. + +[Tuesday 04-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/04/23/scripture.tg b/scripture/kjv/04/04/23/scripture.tg new file mode 100644 index 00000000..61072e94 --- /dev/null +++ b/scripture/kjv/04/04/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 39:4-6 +4 Lord, make me to know mine end, and the measure of my days, what it is; that I may know how frail I am. 5 Behold, thou hast made my days as an handbreadth; and mine age is as nothing before thee: verily every man at his best state is altogether vanity. Selah. 6 Surely every man walketh in a vain shew: surely they are disquieted in vain: he heapeth up riches, and knoweth not who shall gather them. + +Tuesday 04-April, 2023 diff --git a/scripture/kjv/04/04/23/scripture.today b/scripture/kjv/04/04/23/scripture.today new file mode 100644 index 00000000..d92b248d --- /dev/null +++ b/scripture/kjv/04/04/23/scripture.today @@ -0,0 +1 @@ +19 39:4-6 diff --git a/scripture/kjv/04/04/24/scripture.html b/scripture/kjv/04/04/24/scripture.html new file mode 100644 index 00000000..0c38f070 --- /dev/null +++ b/scripture/kjv/04/04/24/scripture.html @@ -0,0 +1,3 @@ +Daniel 9:18
+18 O my God, incline thine ear, and hear; open thine eyes, and behold our desolations, and the city which is called by thy name: for we do not present our supplications before thee for our righteousnesses, but for thy great mercies.

+Thursday 04-April, 2024 diff --git a/scripture/kjv/04/04/24/scripture.json b/scripture/kjv/04/04/24/scripture.json new file mode 100644 index 00000000..1cfb74ef --- /dev/null +++ b/scripture/kjv/04/04/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Daniel", + "chapter": "9", + "date": "Thursday 04-April, 2024", + "getbible": "https://getbible.life/kjv/Daniel/9/18", + "name": "Daniel 9:18", + "scripture": [ + { + "nr": "18", + "text": "O my God, incline thine ear, and hear; open thine eyes, and behold our desolations, and the city which is called by thy name: for we do not present our supplications before thee for our righteousnesses, but for thy great mercies." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18", + "version": "kjv" +} diff --git a/scripture/kjv/04/04/24/scripture.md b/scripture/kjv/04/04/24/scripture.md new file mode 100644 index 00000000..59af0a0f --- /dev/null +++ b/scripture/kjv/04/04/24/scripture.md @@ -0,0 +1,5 @@ +**Daniel 9:18** + +18 O my God, incline thine ear, and hear; open thine eyes, and behold our desolations, and the city which is called by thy name: for we do not present our supplications before thee for our righteousnesses, but for thy great mercies. + +[Thursday 04-April, 2024](https://getbible.life/kjv/Daniel/9/18) diff --git a/scripture/kjv/04/04/24/scripture.tg b/scripture/kjv/04/04/24/scripture.tg new file mode 100644 index 00000000..ef3172b0 --- /dev/null +++ b/scripture/kjv/04/04/24/scripture.tg @@ -0,0 +1,4 @@ +Daniel 9:18 +18 O my God, incline thine ear, and hear; open thine eyes, and behold our desolations, and the city which is called by thy name: for we do not present our supplications before thee for our righteousnesses, but for thy great mercies. + +Thursday 04-April, 2024 diff --git a/scripture/kjv/04/04/24/scripture.tg.id b/scripture/kjv/04/04/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/04/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/04/24/scripture.today b/scripture/kjv/04/04/24/scripture.today new file mode 100644 index 00000000..d7ca7086 --- /dev/null +++ b/scripture/kjv/04/04/24/scripture.today @@ -0,0 +1 @@ +27 9:18 diff --git a/scripture/kjv/04/04/25/scripture.html b/scripture/kjv/04/04/25/scripture.html new file mode 100644 index 00000000..85a5bca7 --- /dev/null +++ b/scripture/kjv/04/04/25/scripture.html @@ -0,0 +1,3 @@ +Jeremiah 48:10
+10 Cursed be he that doeth the work of the Lord deceitfully, and cursed be he that keepeth back his sword from blood.

+Friday 04-April, 2025 diff --git a/scripture/kjv/04/04/25/scripture.json b/scripture/kjv/04/04/25/scripture.json new file mode 100644 index 00000000..945adeb5 --- /dev/null +++ b/scripture/kjv/04/04/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Jeremiah", + "chapter": "48", + "date": "Friday 04-April, 2025", + "getbible": "https://getbible.life/kjv/Jeremiah/48/10", + "name": "Jeremiah 48:10", + "scripture": [ + { + "nr": "10", + "text": "Cursed be he that doeth the work of the Lord deceitfully, and cursed be he that keepeth back his sword from blood." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/04/04/25/scripture.md b/scripture/kjv/04/04/25/scripture.md new file mode 100644 index 00000000..5db02383 --- /dev/null +++ b/scripture/kjv/04/04/25/scripture.md @@ -0,0 +1,5 @@ +**Jeremiah 48:10** + +10 Cursed be he that doeth the work of the Lord deceitfully, and cursed be he that keepeth back his sword from blood. + +[Friday 04-April, 2025](https://getbible.life/kjv/Jeremiah/48/10) diff --git a/scripture/kjv/04/04/25/scripture.tg b/scripture/kjv/04/04/25/scripture.tg new file mode 100644 index 00000000..63aa9110 --- /dev/null +++ b/scripture/kjv/04/04/25/scripture.tg @@ -0,0 +1,4 @@ +Jeremiah 48:10 +10 Cursed be he that doeth the work of the Lord deceitfully, and cursed be he that keepeth back his sword from blood. + +Friday 04-April, 2025 diff --git a/scripture/kjv/04/04/25/scripture.tg.id b/scripture/kjv/04/04/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/04/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/04/25/scripture.today b/scripture/kjv/04/04/25/scripture.today new file mode 100644 index 00000000..20e3c352 --- /dev/null +++ b/scripture/kjv/04/04/25/scripture.today @@ -0,0 +1 @@ +24 48:10 diff --git a/scripture/kjv/04/04/26/scripture.html b/scripture/kjv/04/04/26/scripture.html new file mode 100644 index 00000000..d8fde957 --- /dev/null +++ b/scripture/kjv/04/04/26/scripture.html @@ -0,0 +1,3 @@ +James 4:9-10
+9 Be afflicted, and mourn, and weep: let your laughter be turned to mourning, and your joy to heaviness. 10 Humble yourselves in the sight of the Lord, and he shall lift you up.

+Saturday 04-April, 2026 diff --git a/scripture/kjv/04/04/26/scripture.json b/scripture/kjv/04/04/26/scripture.json new file mode 100644 index 00000000..df673aec --- /dev/null +++ b/scripture/kjv/04/04/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "James", + "chapter": "4", + "date": "Saturday 04-April, 2026", + "getbible": "https://getbible.life/kjv/James/4/9-10", + "name": "James 4:9-10", + "scripture": [ + { + "nr": "9", + "text": "Be afflicted, and mourn, and weep: let your laughter be turned to mourning, and your joy to heaviness." + }, + { + "nr": "10", + "text": "Humble yourselves in the sight of the Lord, and he shall lift you up." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9-10", + "version": "kjv" +} diff --git a/scripture/kjv/04/04/26/scripture.md b/scripture/kjv/04/04/26/scripture.md new file mode 100644 index 00000000..f1c30621 --- /dev/null +++ b/scripture/kjv/04/04/26/scripture.md @@ -0,0 +1,5 @@ +**James 4:9-10** + +9 Be afflicted, and mourn, and weep: let your laughter be turned to mourning, and your joy to heaviness. 10 Humble yourselves in the sight of the Lord, and he shall lift you up. + +[Saturday 04-April, 2026](https://getbible.life/kjv/James/4/9-10) diff --git a/scripture/kjv/04/04/26/scripture.tg b/scripture/kjv/04/04/26/scripture.tg new file mode 100644 index 00000000..2c8219ea --- /dev/null +++ b/scripture/kjv/04/04/26/scripture.tg @@ -0,0 +1,4 @@ +James 4:9-10 +9 Be afflicted, and mourn, and weep: let your laughter be turned to mourning, and your joy to heaviness. 10 Humble yourselves in the sight of the Lord, and he shall lift you up. + +Saturday 04-April, 2026 diff --git a/scripture/kjv/04/04/26/scripture.tg.id b/scripture/kjv/04/04/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/04/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/04/26/scripture.today b/scripture/kjv/04/04/26/scripture.today new file mode 100644 index 00000000..128bbd22 --- /dev/null +++ b/scripture/kjv/04/04/26/scripture.today @@ -0,0 +1 @@ +59 4:9-10 diff --git a/scripture/kjv/04/05/23/scripture.html b/scripture/kjv/04/05/23/scripture.html new file mode 100644 index 00000000..7bdbb07e --- /dev/null +++ b/scripture/kjv/04/05/23/scripture.html @@ -0,0 +1,3 @@ +1 Thessalonians 5:8-10
+8 But let us, who are of the day, be sober, putting on the breastplate of faith and love; and for an helmet, the hope of salvation. 9 For God hath not appointed us to wrath, but to obtain salvation by our Lord Jesus Christ, 10 Who died for us, that, whether we wake or sleep, we should live together with him.

+Wednesday 05-April, 2023 diff --git a/scripture/kjv/04/05/23/scripture.json b/scripture/kjv/04/05/23/scripture.json new file mode 100644 index 00000000..1edf2e3a --- /dev/null +++ b/scripture/kjv/04/05/23/scripture.json @@ -0,0 +1,21 @@ +{ + "date": "Wednesday 05-April, 2023", + "name": "1 Thessalonians 5:8-10", + "scripture": [ + { + "nr": "8", + "text": "But let us, who are of the day, be sober, putting on the breastplate of faith and love; and for an helmet, the hope of salvation." + }, + { + "nr": "9", + "text": "For God hath not appointed us to wrath, but to obtain salvation by our Lord Jesus Christ," + }, + { + "nr": "10", + "text": "Who died for us, that, whether we wake or sleep, we should live together with him." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/05/23/scripture.md b/scripture/kjv/04/05/23/scripture.md new file mode 100644 index 00000000..9b2cc0f0 --- /dev/null +++ b/scripture/kjv/04/05/23/scripture.md @@ -0,0 +1,5 @@ +**1 Thessalonians 5:8-10** + +8 But let us, who are of the day, be sober, putting on the breastplate of faith and love; and for an helmet, the hope of salvation. 9 For God hath not appointed us to wrath, but to obtain salvation by our Lord Jesus Christ, 10 Who died for us, that, whether we wake or sleep, we should live together with him. + +[Wednesday 05-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/05/23/scripture.tg b/scripture/kjv/04/05/23/scripture.tg new file mode 100644 index 00000000..ccc3aa3b --- /dev/null +++ b/scripture/kjv/04/05/23/scripture.tg @@ -0,0 +1,4 @@ +1 Thessalonians 5:8-10 +8 But let us, who are of the day, be sober, putting on the breastplate of faith and love; and for an helmet, the hope of salvation. 9 For God hath not appointed us to wrath, but to obtain salvation by our Lord Jesus Christ, 10 Who died for us, that, whether we wake or sleep, we should live together with him. + +Wednesday 05-April, 2023 diff --git a/scripture/kjv/04/05/23/scripture.tg.id b/scripture/kjv/04/05/23/scripture.tg.id new file mode 100644 index 00000000..5fd6ba79 --- /dev/null +++ b/scripture/kjv/04/05/23/scripture.tg.id @@ -0,0 +1 @@ +907 diff --git a/scripture/kjv/04/05/23/scripture.today b/scripture/kjv/04/05/23/scripture.today new file mode 100644 index 00000000..1856a44f --- /dev/null +++ b/scripture/kjv/04/05/23/scripture.today @@ -0,0 +1 @@ +52 5:8-10 diff --git a/scripture/kjv/04/05/24/scripture.html b/scripture/kjv/04/05/24/scripture.html new file mode 100644 index 00000000..75584fe3 --- /dev/null +++ b/scripture/kjv/04/05/24/scripture.html @@ -0,0 +1,3 @@ +Matthew 18:1-4
+1 At the same time came the disciples unto Jesus, saying, Who is the greatest in the kingdom of heaven? 2 And Jesus called a little child unto him, and set him in the midst of them, 3 And said, Verily I say unto you, Except ye be converted, and become as little children, ye shall not enter into the kingdom of heaven. 4 Whosoever therefore shall humble himself as this little child, the same is greatest in the kingdom of heaven.

+Friday 05-April, 2024 diff --git a/scripture/kjv/04/05/24/scripture.json b/scripture/kjv/04/05/24/scripture.json new file mode 100644 index 00000000..2ddc134f --- /dev/null +++ b/scripture/kjv/04/05/24/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "Matthew", + "chapter": "18", + "date": "Friday 05-April, 2024", + "getbible": "https://getbible.life/kjv/Matthew/18/1-4", + "name": "Matthew 18:1-4", + "scripture": [ + { + "nr": "1", + "text": "At the same time came the disciples unto Jesus, saying, Who is the greatest in the kingdom of heaven?" + }, + { + "nr": "2", + "text": "And Jesus called a little child unto him, and set him in the midst of them," + }, + { + "nr": "3", + "text": "And said, Verily I say unto you, Except ye be converted, and become as little children, ye shall not enter into the kingdom of heaven." + }, + { + "nr": "4", + "text": "Whosoever therefore shall humble himself as this little child, the same is greatest in the kingdom of heaven." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-4", + "version": "kjv" +} diff --git a/scripture/kjv/04/05/24/scripture.md b/scripture/kjv/04/05/24/scripture.md new file mode 100644 index 00000000..1b7bd62d --- /dev/null +++ b/scripture/kjv/04/05/24/scripture.md @@ -0,0 +1,5 @@ +**Matthew 18:1-4** + +1 At the same time came the disciples unto Jesus, saying, Who is the greatest in the kingdom of heaven? 2 And Jesus called a little child unto him, and set him in the midst of them, 3 And said, Verily I say unto you, Except ye be converted, and become as little children, ye shall not enter into the kingdom of heaven. 4 Whosoever therefore shall humble himself as this little child, the same is greatest in the kingdom of heaven. + +[Friday 05-April, 2024](https://getbible.life/kjv/Matthew/18/1-4) diff --git a/scripture/kjv/04/05/24/scripture.tg b/scripture/kjv/04/05/24/scripture.tg new file mode 100644 index 00000000..d5f9e1a5 --- /dev/null +++ b/scripture/kjv/04/05/24/scripture.tg @@ -0,0 +1,4 @@ +Matthew 18:1-4 +1 At the same time came the disciples unto Jesus, saying, Who is the greatest in the kingdom of heaven? 2 And Jesus called a little child unto him, and set him in the midst of them, 3 And said, Verily I say unto you, Except ye be converted, and become as little children, ye shall not enter into the kingdom of heaven. 4 Whosoever therefore shall humble himself as this little child, the same is greatest in the kingdom of heaven. + +Friday 05-April, 2024 diff --git a/scripture/kjv/04/05/24/scripture.tg.id b/scripture/kjv/04/05/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/05/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/05/24/scripture.today b/scripture/kjv/04/05/24/scripture.today new file mode 100644 index 00000000..35ddebde --- /dev/null +++ b/scripture/kjv/04/05/24/scripture.today @@ -0,0 +1 @@ +40 18:1-4 diff --git a/scripture/kjv/04/05/25/scripture.html b/scripture/kjv/04/05/25/scripture.html new file mode 100644 index 00000000..c74a8c9d --- /dev/null +++ b/scripture/kjv/04/05/25/scripture.html @@ -0,0 +1,3 @@ +Luke 12:11-12
+11 And when they bring you unto the synagogues, and unto magistrates, and powers, take ye no thought how or what thing ye shall answer, or what ye shall say: 12 For the Holy Ghost shall teach you in the same hour what ye ought to say.

+Saturday 05-April, 2025 diff --git a/scripture/kjv/04/05/25/scripture.json b/scripture/kjv/04/05/25/scripture.json new file mode 100644 index 00000000..cda4af4c --- /dev/null +++ b/scripture/kjv/04/05/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Luke", + "chapter": "12", + "date": "Saturday 05-April, 2025", + "getbible": "https://getbible.life/kjv/Luke/12/11-12", + "name": "Luke 12:11-12", + "scripture": [ + { + "nr": "11", + "text": "And when they bring you unto the synagogues, and unto magistrates, and powers, take ye no thought how or what thing ye shall answer, or what ye shall say:" + }, + { + "nr": "12", + "text": "For the Holy Ghost shall teach you in the same hour what ye ought to say." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11-12", + "version": "kjv" +} diff --git a/scripture/kjv/04/05/25/scripture.md b/scripture/kjv/04/05/25/scripture.md new file mode 100644 index 00000000..1a88c3b6 --- /dev/null +++ b/scripture/kjv/04/05/25/scripture.md @@ -0,0 +1,5 @@ +**Luke 12:11-12** + +11 And when they bring you unto the synagogues, and unto magistrates, and powers, take ye no thought how or what thing ye shall answer, or what ye shall say: 12 For the Holy Ghost shall teach you in the same hour what ye ought to say. + +[Saturday 05-April, 2025](https://getbible.life/kjv/Luke/12/11-12) diff --git a/scripture/kjv/04/05/25/scripture.tg b/scripture/kjv/04/05/25/scripture.tg new file mode 100644 index 00000000..250dfb0c --- /dev/null +++ b/scripture/kjv/04/05/25/scripture.tg @@ -0,0 +1,4 @@ +Luke 12:11-12 +11 And when they bring you unto the synagogues, and unto magistrates, and powers, take ye no thought how or what thing ye shall answer, or what ye shall say: 12 For the Holy Ghost shall teach you in the same hour what ye ought to say. + +Saturday 05-April, 2025 diff --git a/scripture/kjv/04/05/25/scripture.tg.id b/scripture/kjv/04/05/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/05/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/05/25/scripture.today b/scripture/kjv/04/05/25/scripture.today new file mode 100644 index 00000000..48e73d92 --- /dev/null +++ b/scripture/kjv/04/05/25/scripture.today @@ -0,0 +1 @@ +42 12:11-12 diff --git a/scripture/kjv/04/05/26/scripture.html b/scripture/kjv/04/05/26/scripture.html new file mode 100644 index 00000000..1e31ee75 --- /dev/null +++ b/scripture/kjv/04/05/26/scripture.html @@ -0,0 +1,3 @@ +1 John 5:10
+10 He that believeth on the Son of God hath the witness in himself: he that believeth not God hath made him a liar; because he believeth not the record that God gave of his Son.

+Sunday 05-April, 2026 diff --git a/scripture/kjv/04/05/26/scripture.json b/scripture/kjv/04/05/26/scripture.json new file mode 100644 index 00000000..d8ac931b --- /dev/null +++ b/scripture/kjv/04/05/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 John", + "chapter": "5", + "date": "Sunday 05-April, 2026", + "getbible": "https://getbible.life/kjv/1 John/5/10", + "name": "1 John 5:10", + "scripture": [ + { + "nr": "10", + "text": "He that believeth on the Son of God hath the witness in himself: he that believeth not God hath made him a liar; because he believeth not the record that God gave of his Son." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/04/05/26/scripture.md b/scripture/kjv/04/05/26/scripture.md new file mode 100644 index 00000000..a867f107 --- /dev/null +++ b/scripture/kjv/04/05/26/scripture.md @@ -0,0 +1,5 @@ +**1 John 5:10** + +10 He that believeth on the Son of God hath the witness in himself: he that believeth not God hath made him a liar; because he believeth not the record that God gave of his Son. + +[Sunday 05-April, 2026](https://getbible.life/kjv/1 John/5/10) diff --git a/scripture/kjv/04/05/26/scripture.tg b/scripture/kjv/04/05/26/scripture.tg new file mode 100644 index 00000000..13a09fbf --- /dev/null +++ b/scripture/kjv/04/05/26/scripture.tg @@ -0,0 +1,4 @@ +1 John 5:10 +10 He that believeth on the Son of God hath the witness in himself: he that believeth not God hath made him a liar; because he believeth not the record that God gave of his Son. + +Sunday 05-April, 2026 diff --git a/scripture/kjv/04/05/26/scripture.tg.id b/scripture/kjv/04/05/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/05/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/05/26/scripture.today b/scripture/kjv/04/05/26/scripture.today new file mode 100644 index 00000000..216fb753 --- /dev/null +++ b/scripture/kjv/04/05/26/scripture.today @@ -0,0 +1 @@ +62 5:10 diff --git a/scripture/kjv/04/06/23/scripture.html b/scripture/kjv/04/06/23/scripture.html new file mode 100644 index 00000000..696a1a5e --- /dev/null +++ b/scripture/kjv/04/06/23/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 8:4
+4 Praying us with much intreaty that we would receive the gift, and take upon us the fellowship of the ministering to the saints.

+Thursday 06-April, 2023 diff --git a/scripture/kjv/04/06/23/scripture.json b/scripture/kjv/04/06/23/scripture.json new file mode 100644 index 00000000..b946abd1 --- /dev/null +++ b/scripture/kjv/04/06/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Thursday 06-April, 2023", + "name": "2 Corinthians 8:4", + "scripture": [ + { + "nr": "4", + "text": "Praying us with much intreaty that we would receive the gift, and take upon us the fellowship of the ministering to the saints." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/06/23/scripture.md b/scripture/kjv/04/06/23/scripture.md new file mode 100644 index 00000000..3a6f72c6 --- /dev/null +++ b/scripture/kjv/04/06/23/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 8:4** + +4 Praying us with much intreaty that we would receive the gift, and take upon us the fellowship of the ministering to the saints. + +[Thursday 06-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/06/23/scripture.tg b/scripture/kjv/04/06/23/scripture.tg new file mode 100644 index 00000000..81218301 --- /dev/null +++ b/scripture/kjv/04/06/23/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 8:4 +4 Praying us with much intreaty that we would receive the gift, and take upon us the fellowship of the ministering to the saints. + +Thursday 06-April, 2023 diff --git a/scripture/kjv/04/06/23/scripture.tg.id b/scripture/kjv/04/06/23/scripture.tg.id new file mode 100644 index 00000000..81b8c146 --- /dev/null +++ b/scripture/kjv/04/06/23/scripture.tg.id @@ -0,0 +1 @@ +908 diff --git a/scripture/kjv/04/06/23/scripture.today b/scripture/kjv/04/06/23/scripture.today new file mode 100644 index 00000000..ebd39d77 --- /dev/null +++ b/scripture/kjv/04/06/23/scripture.today @@ -0,0 +1 @@ +47 8:4 diff --git a/scripture/kjv/04/06/24/scripture.html b/scripture/kjv/04/06/24/scripture.html new file mode 100644 index 00000000..0e4d5466 --- /dev/null +++ b/scripture/kjv/04/06/24/scripture.html @@ -0,0 +1,3 @@ +Colossians 3:16
+16 Let the word of Christ dwell in you richly in all wisdom; teaching and admonishing one another in psalms and hymns and spiritual songs, singing with grace in your hearts to the Lord.

+Saturday 06-April, 2024 diff --git a/scripture/kjv/04/06/24/scripture.json b/scripture/kjv/04/06/24/scripture.json new file mode 100644 index 00000000..6c1822b9 --- /dev/null +++ b/scripture/kjv/04/06/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Colossians", + "chapter": "3", + "date": "Saturday 06-April, 2024", + "getbible": "https://getbible.life/kjv/Colossians/3/16", + "name": "Colossians 3:16", + "scripture": [ + { + "nr": "16", + "text": "Let the word of Christ dwell in you richly in all wisdom; teaching and admonishing one another in psalms and hymns and spiritual songs, singing with grace in your hearts to the Lord." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16", + "version": "kjv" +} diff --git a/scripture/kjv/04/06/24/scripture.md b/scripture/kjv/04/06/24/scripture.md new file mode 100644 index 00000000..53c84e72 --- /dev/null +++ b/scripture/kjv/04/06/24/scripture.md @@ -0,0 +1,5 @@ +**Colossians 3:16** + +16 Let the word of Christ dwell in you richly in all wisdom; teaching and admonishing one another in psalms and hymns and spiritual songs, singing with grace in your hearts to the Lord. + +[Saturday 06-April, 2024](https://getbible.life/kjv/Colossians/3/16) diff --git a/scripture/kjv/04/06/24/scripture.tg b/scripture/kjv/04/06/24/scripture.tg new file mode 100644 index 00000000..778559f0 --- /dev/null +++ b/scripture/kjv/04/06/24/scripture.tg @@ -0,0 +1,4 @@ +Colossians 3:16 +16 Let the word of Christ dwell in you richly in all wisdom; teaching and admonishing one another in psalms and hymns and spiritual songs, singing with grace in your hearts to the Lord. + +Saturday 06-April, 2024 diff --git a/scripture/kjv/04/06/24/scripture.tg.id b/scripture/kjv/04/06/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/06/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/06/24/scripture.today b/scripture/kjv/04/06/24/scripture.today new file mode 100644 index 00000000..620a144e --- /dev/null +++ b/scripture/kjv/04/06/24/scripture.today @@ -0,0 +1 @@ +51 3:16 diff --git a/scripture/kjv/04/06/25/scripture.html b/scripture/kjv/04/06/25/scripture.html new file mode 100644 index 00000000..4cd1e9a3 --- /dev/null +++ b/scripture/kjv/04/06/25/scripture.html @@ -0,0 +1,3 @@ +Luke 21:9
+9 But when ye shall hear of wars and commotions, be not terrified: for these things must first come to pass; but the end is not by and by.

+Sunday 06-April, 2025 diff --git a/scripture/kjv/04/06/25/scripture.json b/scripture/kjv/04/06/25/scripture.json new file mode 100644 index 00000000..523a6e88 --- /dev/null +++ b/scripture/kjv/04/06/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "21", + "date": "Sunday 06-April, 2025", + "getbible": "https://getbible.life/kjv/Luke/21/9", + "name": "Luke 21:9", + "scripture": [ + { + "nr": "9", + "text": "But when ye shall hear of wars and commotions, be not terrified: for these things must first come to pass; but the end is not by and by." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9", + "version": "kjv" +} diff --git a/scripture/kjv/04/06/25/scripture.md b/scripture/kjv/04/06/25/scripture.md new file mode 100644 index 00000000..25c603ea --- /dev/null +++ b/scripture/kjv/04/06/25/scripture.md @@ -0,0 +1,5 @@ +**Luke 21:9** + +9 But when ye shall hear of wars and commotions, be not terrified: for these things must first come to pass; but the end is not by and by. + +[Sunday 06-April, 2025](https://getbible.life/kjv/Luke/21/9) diff --git a/scripture/kjv/04/06/25/scripture.tg b/scripture/kjv/04/06/25/scripture.tg new file mode 100644 index 00000000..d415dce3 --- /dev/null +++ b/scripture/kjv/04/06/25/scripture.tg @@ -0,0 +1,4 @@ +Luke 21:9 +9 But when ye shall hear of wars and commotions, be not terrified: for these things must first come to pass; but the end is not by and by. + +Sunday 06-April, 2025 diff --git a/scripture/kjv/04/06/25/scripture.tg.id b/scripture/kjv/04/06/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/06/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/06/25/scripture.today b/scripture/kjv/04/06/25/scripture.today new file mode 100644 index 00000000..4c944972 --- /dev/null +++ b/scripture/kjv/04/06/25/scripture.today @@ -0,0 +1 @@ +42 21:9 diff --git a/scripture/kjv/04/06/26/scripture.html b/scripture/kjv/04/06/26/scripture.html new file mode 100644 index 00000000..0c75cece --- /dev/null +++ b/scripture/kjv/04/06/26/scripture.html @@ -0,0 +1,3 @@ +Proverbs 4:8
+8 Exalt her, and she shall promote thee: she shall bring thee to honour, when thou dost embrace her.

+Monday 06-April, 2026 diff --git a/scripture/kjv/04/06/26/scripture.json b/scripture/kjv/04/06/26/scripture.json new file mode 100644 index 00000000..8ef92282 --- /dev/null +++ b/scripture/kjv/04/06/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "4", + "date": "Monday 06-April, 2026", + "getbible": "https://getbible.life/kjv/Proverbs/4/8", + "name": "Proverbs 4:8", + "scripture": [ + { + "nr": "8", + "text": "Exalt her, and she shall promote thee: she shall bring thee to honour, when thou dost embrace her." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8", + "version": "kjv" +} diff --git a/scripture/kjv/04/06/26/scripture.md b/scripture/kjv/04/06/26/scripture.md new file mode 100644 index 00000000..f5c85cd5 --- /dev/null +++ b/scripture/kjv/04/06/26/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 4:8** + +8 Exalt her, and she shall promote thee: she shall bring thee to honour, when thou dost embrace her. + +[Monday 06-April, 2026](https://getbible.life/kjv/Proverbs/4/8) diff --git a/scripture/kjv/04/06/26/scripture.tg b/scripture/kjv/04/06/26/scripture.tg new file mode 100644 index 00000000..7703d3a9 --- /dev/null +++ b/scripture/kjv/04/06/26/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 4:8 +8 Exalt her, and she shall promote thee: she shall bring thee to honour, when thou dost embrace her. + +Monday 06-April, 2026 diff --git a/scripture/kjv/04/06/26/scripture.tg.id b/scripture/kjv/04/06/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/06/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/06/26/scripture.today b/scripture/kjv/04/06/26/scripture.today new file mode 100644 index 00000000..56325ed0 --- /dev/null +++ b/scripture/kjv/04/06/26/scripture.today @@ -0,0 +1 @@ +20 4:8 diff --git a/scripture/kjv/04/07/23/scripture.html b/scripture/kjv/04/07/23/scripture.html new file mode 100644 index 00000000..d915745c --- /dev/null +++ b/scripture/kjv/04/07/23/scripture.html @@ -0,0 +1,3 @@ +Daniel 5:22
+22 And thou his son, O Belshazzar, hast not humbled thine heart, though thou knewest all this;

+Friday 07-April, 2023 diff --git a/scripture/kjv/04/07/23/scripture.json b/scripture/kjv/04/07/23/scripture.json new file mode 100644 index 00000000..7c07a4e8 --- /dev/null +++ b/scripture/kjv/04/07/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Friday 07-April, 2023", + "name": "Daniel 5:22", + "scripture": [ + { + "nr": "22", + "text": "And thou his son, O Belshazzar, hast not humbled thine heart, though thou knewest all this;" + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/07/23/scripture.md b/scripture/kjv/04/07/23/scripture.md new file mode 100644 index 00000000..783f99d4 --- /dev/null +++ b/scripture/kjv/04/07/23/scripture.md @@ -0,0 +1,5 @@ +**Daniel 5:22** + +22 And thou his son, O Belshazzar, hast not humbled thine heart, though thou knewest all this; + +[Friday 07-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/07/23/scripture.tg b/scripture/kjv/04/07/23/scripture.tg new file mode 100644 index 00000000..84589ad1 --- /dev/null +++ b/scripture/kjv/04/07/23/scripture.tg @@ -0,0 +1,4 @@ +Daniel 5:22 +22 And thou his son, O Belshazzar, hast not humbled thine heart, though thou knewest all this; + +Friday 07-April, 2023 diff --git a/scripture/kjv/04/07/23/scripture.tg.id b/scripture/kjv/04/07/23/scripture.tg.id new file mode 100644 index 00000000..fb1248b4 --- /dev/null +++ b/scripture/kjv/04/07/23/scripture.tg.id @@ -0,0 +1 @@ +909 diff --git a/scripture/kjv/04/07/23/scripture.today b/scripture/kjv/04/07/23/scripture.today new file mode 100644 index 00000000..04e2d9a4 --- /dev/null +++ b/scripture/kjv/04/07/23/scripture.today @@ -0,0 +1 @@ +27 5:22 diff --git a/scripture/kjv/04/07/24/scripture.html b/scripture/kjv/04/07/24/scripture.html new file mode 100644 index 00000000..8674fb16 --- /dev/null +++ b/scripture/kjv/04/07/24/scripture.html @@ -0,0 +1,3 @@ +Amos 3:7
+7 Surely the Lord God will do nothing, but he revealeth his secret unto his servants the prophets.

+Sunday 07-April, 2024 diff --git a/scripture/kjv/04/07/24/scripture.json b/scripture/kjv/04/07/24/scripture.json new file mode 100644 index 00000000..0942f1e9 --- /dev/null +++ b/scripture/kjv/04/07/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Amos", + "chapter": "3", + "date": "Sunday 07-April, 2024", + "getbible": "https://getbible.life/kjv/Amos/3/7", + "name": "Amos 3:7", + "scripture": [ + { + "nr": "7", + "text": "Surely the Lord God will do nothing, but he revealeth his secret unto his servants the prophets." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7", + "version": "kjv" +} diff --git a/scripture/kjv/04/07/24/scripture.md b/scripture/kjv/04/07/24/scripture.md new file mode 100644 index 00000000..6e573030 --- /dev/null +++ b/scripture/kjv/04/07/24/scripture.md @@ -0,0 +1,5 @@ +**Amos 3:7** + +7 Surely the Lord God will do nothing, but he revealeth his secret unto his servants the prophets. + +[Sunday 07-April, 2024](https://getbible.life/kjv/Amos/3/7) diff --git a/scripture/kjv/04/07/24/scripture.tg b/scripture/kjv/04/07/24/scripture.tg new file mode 100644 index 00000000..c9618602 --- /dev/null +++ b/scripture/kjv/04/07/24/scripture.tg @@ -0,0 +1,4 @@ +Amos 3:7 +7 Surely the Lord God will do nothing, but he revealeth his secret unto his servants the prophets. + +Sunday 07-April, 2024 diff --git a/scripture/kjv/04/07/24/scripture.tg.id b/scripture/kjv/04/07/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/07/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/07/24/scripture.today b/scripture/kjv/04/07/24/scripture.today new file mode 100644 index 00000000..19ab74a0 --- /dev/null +++ b/scripture/kjv/04/07/24/scripture.today @@ -0,0 +1 @@ +30 3:7 diff --git a/scripture/kjv/04/07/25/scripture.html b/scripture/kjv/04/07/25/scripture.html new file mode 100644 index 00000000..ccd4a726 --- /dev/null +++ b/scripture/kjv/04/07/25/scripture.html @@ -0,0 +1,3 @@ +1 Chronicles 4:10
+10 And Jabez called on the God of Israel, saying, Oh that thou wouldest bless me indeed, and enlarge my coast, and that thine hand might be with me, and that thou wouldest keep me from evil, that it may not grieve me! And God granted him that which he requested.

+Monday 07-April, 2025 diff --git a/scripture/kjv/04/07/25/scripture.json b/scripture/kjv/04/07/25/scripture.json new file mode 100644 index 00000000..dc00c2a2 --- /dev/null +++ b/scripture/kjv/04/07/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Chronicles", + "chapter": "4", + "date": "Monday 07-April, 2025", + "getbible": "https://getbible.life/kjv/1 Chronicles/4/10", + "name": "1 Chronicles 4:10", + "scripture": [ + { + "nr": "10", + "text": "And Jabez called on the God of Israel, saying, Oh that thou wouldest bless me indeed, and enlarge my coast, and that thine hand might be with me, and that thou wouldest keep me from evil, that it may not grieve me! And God granted him that which he requested." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/04/07/25/scripture.md b/scripture/kjv/04/07/25/scripture.md new file mode 100644 index 00000000..7d9dcfcf --- /dev/null +++ b/scripture/kjv/04/07/25/scripture.md @@ -0,0 +1,5 @@ +**1 Chronicles 4:10** + +10 And Jabez called on the God of Israel, saying, Oh that thou wouldest bless me indeed, and enlarge my coast, and that thine hand might be with me, and that thou wouldest keep me from evil, that it may not grieve me! And God granted him that which he requested. + +[Monday 07-April, 2025](https://getbible.life/kjv/1 Chronicles/4/10) diff --git a/scripture/kjv/04/07/25/scripture.tg b/scripture/kjv/04/07/25/scripture.tg new file mode 100644 index 00000000..5fbc1445 --- /dev/null +++ b/scripture/kjv/04/07/25/scripture.tg @@ -0,0 +1,4 @@ +1 Chronicles 4:10 +10 And Jabez called on the God of Israel, saying, Oh that thou wouldest bless me indeed, and enlarge my coast, and that thine hand might be with me, and that thou wouldest keep me from evil, that it may not grieve me! And God granted him that which he requested. + +Monday 07-April, 2025 diff --git a/scripture/kjv/04/07/25/scripture.tg.id b/scripture/kjv/04/07/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/07/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/07/25/scripture.today b/scripture/kjv/04/07/25/scripture.today new file mode 100644 index 00000000..741fb916 --- /dev/null +++ b/scripture/kjv/04/07/25/scripture.today @@ -0,0 +1 @@ +13 4:10 diff --git a/scripture/kjv/04/07/26/scripture.html b/scripture/kjv/04/07/26/scripture.html new file mode 100644 index 00000000..fc3057f2 --- /dev/null +++ b/scripture/kjv/04/07/26/scripture.html @@ -0,0 +1,3 @@ +Psalms 112:4
+4 Unto the upright there ariseth light in the darkness: he is gracious, and full of compassion, and righteous.

+Tuesday 07-April, 2026 diff --git a/scripture/kjv/04/07/26/scripture.json b/scripture/kjv/04/07/26/scripture.json new file mode 100644 index 00000000..2ca7994e --- /dev/null +++ b/scripture/kjv/04/07/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "112", + "date": "Tuesday 07-April, 2026", + "getbible": "https://getbible.life/kjv/Psalms/112/4", + "name": "Psalms 112:4", + "scripture": [ + { + "nr": "4", + "text": "Unto the upright there ariseth light in the darkness: he is gracious, and full of compassion, and righteous." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4", + "version": "kjv" +} diff --git a/scripture/kjv/04/07/26/scripture.md b/scripture/kjv/04/07/26/scripture.md new file mode 100644 index 00000000..5972d53f --- /dev/null +++ b/scripture/kjv/04/07/26/scripture.md @@ -0,0 +1,5 @@ +**Psalms 112:4** + +4 Unto the upright there ariseth light in the darkness: he is gracious, and full of compassion, and righteous. + +[Tuesday 07-April, 2026](https://getbible.life/kjv/Psalms/112/4) diff --git a/scripture/kjv/04/07/26/scripture.tg b/scripture/kjv/04/07/26/scripture.tg new file mode 100644 index 00000000..0944c912 --- /dev/null +++ b/scripture/kjv/04/07/26/scripture.tg @@ -0,0 +1,4 @@ +Psalms 112:4 +4 Unto the upright there ariseth light in the darkness: he is gracious, and full of compassion, and righteous. + +Tuesday 07-April, 2026 diff --git a/scripture/kjv/04/07/26/scripture.tg.id b/scripture/kjv/04/07/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/07/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/07/26/scripture.today b/scripture/kjv/04/07/26/scripture.today new file mode 100644 index 00000000..63c69fd0 --- /dev/null +++ b/scripture/kjv/04/07/26/scripture.today @@ -0,0 +1 @@ +19 112:4 diff --git a/scripture/kjv/04/08/23/scripture.html b/scripture/kjv/04/08/23/scripture.html new file mode 100644 index 00000000..0034d649 --- /dev/null +++ b/scripture/kjv/04/08/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 73:2-3
+2 But as for me, my feet were almost gone; my steps had well nigh slipped. 3 For I was envious at the foolish, when I saw the prosperity of the wicked.

+Saturday 08-April, 2023 diff --git a/scripture/kjv/04/08/23/scripture.json b/scripture/kjv/04/08/23/scripture.json new file mode 100644 index 00000000..59c3941c --- /dev/null +++ b/scripture/kjv/04/08/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Saturday 08-April, 2023", + "name": "Psalms 73:2-3", + "scripture": [ + { + "nr": "2", + "text": "But as for me, my feet were almost gone; my steps had well nigh slipped." + }, + { + "nr": "3", + "text": "For I was envious at the foolish, when I saw the prosperity of the wicked." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/08/23/scripture.md b/scripture/kjv/04/08/23/scripture.md new file mode 100644 index 00000000..5eebca8f --- /dev/null +++ b/scripture/kjv/04/08/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 73:2-3** + +2 But as for me, my feet were almost gone; my steps had well nigh slipped. 3 For I was envious at the foolish, when I saw the prosperity of the wicked. + +[Saturday 08-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/08/23/scripture.tg b/scripture/kjv/04/08/23/scripture.tg new file mode 100644 index 00000000..60a363a9 --- /dev/null +++ b/scripture/kjv/04/08/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 73:2-3 +2 But as for me, my feet were almost gone; my steps had well nigh slipped. 3 For I was envious at the foolish, when I saw the prosperity of the wicked. + +Saturday 08-April, 2023 diff --git a/scripture/kjv/04/08/23/scripture.tg.id b/scripture/kjv/04/08/23/scripture.tg.id new file mode 100644 index 00000000..62bafeec --- /dev/null +++ b/scripture/kjv/04/08/23/scripture.tg.id @@ -0,0 +1 @@ +910 diff --git a/scripture/kjv/04/08/23/scripture.today b/scripture/kjv/04/08/23/scripture.today new file mode 100644 index 00000000..37c70559 --- /dev/null +++ b/scripture/kjv/04/08/23/scripture.today @@ -0,0 +1 @@ +19 73:2-3 diff --git a/scripture/kjv/04/08/24/scripture.html b/scripture/kjv/04/08/24/scripture.html new file mode 100644 index 00000000..712ad255 --- /dev/null +++ b/scripture/kjv/04/08/24/scripture.html @@ -0,0 +1,3 @@ +Job 33:14-18
+14 For God speaketh once, yea twice, yet man perceiveth it not. 15 In a dream, in a vision of the night, when deep sleep falleth upon men, in slumberings upon the bed; 16 Then he openeth the ears of men, and sealeth their instruction, 17 That he may withdraw man from his purpose, and hide pride from man. 18 He keepeth back his soul from the pit, and his life from perishing by the sword.

+Monday 08-April, 2024 diff --git a/scripture/kjv/04/08/24/scripture.json b/scripture/kjv/04/08/24/scripture.json new file mode 100644 index 00000000..af542a04 --- /dev/null +++ b/scripture/kjv/04/08/24/scripture.json @@ -0,0 +1,33 @@ +{ + "book": "Job", + "chapter": "33", + "date": "Monday 08-April, 2024", + "getbible": "https://getbible.life/kjv/Job/33/14-18", + "name": "Job 33:14-18", + "scripture": [ + { + "nr": "14", + "text": "For God speaketh once, yea twice, yet man perceiveth it not." + }, + { + "nr": "15", + "text": "In a dream, in a vision of the night, when deep sleep falleth upon men, in slumberings upon the bed;" + }, + { + "nr": "16", + "text": "Then he openeth the ears of men, and sealeth their instruction," + }, + { + "nr": "17", + "text": "That he may withdraw man from his purpose, and hide pride from man." + }, + { + "nr": "18", + "text": "He keepeth back his soul from the pit, and his life from perishing by the sword." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14-18", + "version": "kjv" +} diff --git a/scripture/kjv/04/08/24/scripture.md b/scripture/kjv/04/08/24/scripture.md new file mode 100644 index 00000000..299aeb39 --- /dev/null +++ b/scripture/kjv/04/08/24/scripture.md @@ -0,0 +1,5 @@ +**Job 33:14-18** + +14 For God speaketh once, yea twice, yet man perceiveth it not. 15 In a dream, in a vision of the night, when deep sleep falleth upon men, in slumberings upon the bed; 16 Then he openeth the ears of men, and sealeth their instruction, 17 That he may withdraw man from his purpose, and hide pride from man. 18 He keepeth back his soul from the pit, and his life from perishing by the sword. + +[Monday 08-April, 2024](https://getbible.life/kjv/Job/33/14-18) diff --git a/scripture/kjv/04/08/24/scripture.tg b/scripture/kjv/04/08/24/scripture.tg new file mode 100644 index 00000000..143928fa --- /dev/null +++ b/scripture/kjv/04/08/24/scripture.tg @@ -0,0 +1,4 @@ +Job 33:14-18 +14 For God speaketh once, yea twice, yet man perceiveth it not. 15 In a dream, in a vision of the night, when deep sleep falleth upon men, in slumberings upon the bed; 16 Then he openeth the ears of men, and sealeth their instruction, 17 That he may withdraw man from his purpose, and hide pride from man. 18 He keepeth back his soul from the pit, and his life from perishing by the sword. + +Monday 08-April, 2024 diff --git a/scripture/kjv/04/08/24/scripture.tg.id b/scripture/kjv/04/08/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/08/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/08/24/scripture.today b/scripture/kjv/04/08/24/scripture.today new file mode 100644 index 00000000..dc2e902f --- /dev/null +++ b/scripture/kjv/04/08/24/scripture.today @@ -0,0 +1 @@ +18 33:14-18 diff --git a/scripture/kjv/04/08/25/scripture.html b/scripture/kjv/04/08/25/scripture.html new file mode 100644 index 00000000..28de5519 --- /dev/null +++ b/scripture/kjv/04/08/25/scripture.html @@ -0,0 +1,3 @@ +Proverbs 24:16
+16 For a just man falleth seven times, and riseth up again: but the wicked shall fall into mischief.

+Tuesday 08-April, 2025 diff --git a/scripture/kjv/04/08/25/scripture.json b/scripture/kjv/04/08/25/scripture.json new file mode 100644 index 00000000..78a85242 --- /dev/null +++ b/scripture/kjv/04/08/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "24", + "date": "Tuesday 08-April, 2025", + "getbible": "https://getbible.life/kjv/Proverbs/24/16", + "name": "Proverbs 24:16", + "scripture": [ + { + "nr": "16", + "text": "For a just man falleth seven times, and riseth up again: but the wicked shall fall into mischief." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16", + "version": "kjv" +} diff --git a/scripture/kjv/04/08/25/scripture.md b/scripture/kjv/04/08/25/scripture.md new file mode 100644 index 00000000..ee7f2b03 --- /dev/null +++ b/scripture/kjv/04/08/25/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 24:16** + +16 For a just man falleth seven times, and riseth up again: but the wicked shall fall into mischief. + +[Tuesday 08-April, 2025](https://getbible.life/kjv/Proverbs/24/16) diff --git a/scripture/kjv/04/08/25/scripture.tg b/scripture/kjv/04/08/25/scripture.tg new file mode 100644 index 00000000..93096744 --- /dev/null +++ b/scripture/kjv/04/08/25/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 24:16 +16 For a just man falleth seven times, and riseth up again: but the wicked shall fall into mischief. + +Tuesday 08-April, 2025 diff --git a/scripture/kjv/04/08/25/scripture.tg.id b/scripture/kjv/04/08/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/08/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/08/25/scripture.today b/scripture/kjv/04/08/25/scripture.today new file mode 100644 index 00000000..4a137368 --- /dev/null +++ b/scripture/kjv/04/08/25/scripture.today @@ -0,0 +1 @@ +20 24:16 diff --git a/scripture/kjv/04/08/26/scripture.html b/scripture/kjv/04/08/26/scripture.html new file mode 100644 index 00000000..b4c2f1ff --- /dev/null +++ b/scripture/kjv/04/08/26/scripture.html @@ -0,0 +1,3 @@ +Ecclesiastes 5:4
+4 When thou vowest a vow unto God, defer not to pay it; for he hath no pleasure in fools: pay that which thou hast vowed.

+Wednesday 08-April, 2026 diff --git a/scripture/kjv/04/08/26/scripture.json b/scripture/kjv/04/08/26/scripture.json new file mode 100644 index 00000000..18cbab32 --- /dev/null +++ b/scripture/kjv/04/08/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ecclesiastes", + "chapter": "5", + "date": "Wednesday 08-April, 2026", + "getbible": "https://getbible.life/kjv/Ecclesiastes/5/4", + "name": "Ecclesiastes 5:4", + "scripture": [ + { + "nr": "4", + "text": "When thou vowest a vow unto God, defer not to pay it; for he hath no pleasure in fools: pay that which thou hast vowed." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4", + "version": "kjv" +} diff --git a/scripture/kjv/04/08/26/scripture.md b/scripture/kjv/04/08/26/scripture.md new file mode 100644 index 00000000..191d6db5 --- /dev/null +++ b/scripture/kjv/04/08/26/scripture.md @@ -0,0 +1,5 @@ +**Ecclesiastes 5:4** + +4 When thou vowest a vow unto God, defer not to pay it; for he hath no pleasure in fools: pay that which thou hast vowed. + +[Wednesday 08-April, 2026](https://getbible.life/kjv/Ecclesiastes/5/4) diff --git a/scripture/kjv/04/08/26/scripture.tg b/scripture/kjv/04/08/26/scripture.tg new file mode 100644 index 00000000..cd90d98c --- /dev/null +++ b/scripture/kjv/04/08/26/scripture.tg @@ -0,0 +1,4 @@ +Ecclesiastes 5:4 +4 When thou vowest a vow unto God, defer not to pay it; for he hath no pleasure in fools: pay that which thou hast vowed. + +Wednesday 08-April, 2026 diff --git a/scripture/kjv/04/08/26/scripture.tg.id b/scripture/kjv/04/08/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/08/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/08/26/scripture.today b/scripture/kjv/04/08/26/scripture.today new file mode 100644 index 00000000..da9a3792 --- /dev/null +++ b/scripture/kjv/04/08/26/scripture.today @@ -0,0 +1 @@ +21 5:4 diff --git a/scripture/kjv/04/09/23/scripture.html b/scripture/kjv/04/09/23/scripture.html new file mode 100644 index 00000000..7ebcc6fa --- /dev/null +++ b/scripture/kjv/04/09/23/scripture.html @@ -0,0 +1,3 @@ +Zephaniah 3:9
+9 For then will I turn to the people a pure language, that they may all call upon the name of the Lord, to serve him with one consent.

+Sunday 09-April, 2023 diff --git a/scripture/kjv/04/09/23/scripture.json b/scripture/kjv/04/09/23/scripture.json new file mode 100644 index 00000000..512c41f7 --- /dev/null +++ b/scripture/kjv/04/09/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Sunday 09-April, 2023", + "name": "Zephaniah 3:9", + "scripture": [ + { + "nr": "9", + "text": "For then will I turn to the people a pure language, that they may all call upon the name of the Lord, to serve him with one consent." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/09/23/scripture.md b/scripture/kjv/04/09/23/scripture.md new file mode 100644 index 00000000..30d36883 --- /dev/null +++ b/scripture/kjv/04/09/23/scripture.md @@ -0,0 +1,5 @@ +**Zephaniah 3:9** + +9 For then will I turn to the people a pure language, that they may all call upon the name of the Lord, to serve him with one consent. + +[Sunday 09-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/09/23/scripture.tg b/scripture/kjv/04/09/23/scripture.tg new file mode 100644 index 00000000..b2bf6406 --- /dev/null +++ b/scripture/kjv/04/09/23/scripture.tg @@ -0,0 +1,4 @@ +Zephaniah 3:9 +9 For then will I turn to the people a pure language, that they may all call upon the name of the Lord, to serve him with one consent. + +Sunday 09-April, 2023 diff --git a/scripture/kjv/04/09/23/scripture.tg.id b/scripture/kjv/04/09/23/scripture.tg.id new file mode 100644 index 00000000..8ad23df1 --- /dev/null +++ b/scripture/kjv/04/09/23/scripture.tg.id @@ -0,0 +1 @@ +911 diff --git a/scripture/kjv/04/09/23/scripture.today b/scripture/kjv/04/09/23/scripture.today new file mode 100644 index 00000000..9d8ed0ac --- /dev/null +++ b/scripture/kjv/04/09/23/scripture.today @@ -0,0 +1 @@ +36 3:9 diff --git a/scripture/kjv/04/09/24/scripture.html b/scripture/kjv/04/09/24/scripture.html new file mode 100644 index 00000000..1579cde4 --- /dev/null +++ b/scripture/kjv/04/09/24/scripture.html @@ -0,0 +1,3 @@ +Romans 10:1
+1 Brethren, my heart’s desire and prayer to God for Israel is, that they might be saved.

+Tuesday 09-April, 2024 diff --git a/scripture/kjv/04/09/24/scripture.json b/scripture/kjv/04/09/24/scripture.json new file mode 100644 index 00000000..43ea41eb --- /dev/null +++ b/scripture/kjv/04/09/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Romans", + "chapter": "10", + "date": "Tuesday 09-April, 2024", + "getbible": "https://getbible.life/kjv/Romans/10/1", + "name": "Romans 10:1", + "scripture": [ + { + "nr": "1", + "text": "Brethren, my heart’s desire and prayer to God for Israel is, that they might be saved." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1", + "version": "kjv" +} diff --git a/scripture/kjv/04/09/24/scripture.md b/scripture/kjv/04/09/24/scripture.md new file mode 100644 index 00000000..c9375712 --- /dev/null +++ b/scripture/kjv/04/09/24/scripture.md @@ -0,0 +1,5 @@ +**Romans 10:1** + +1 Brethren, my heart’s desire and prayer to God for Israel is, that they might be saved. + +[Tuesday 09-April, 2024](https://getbible.life/kjv/Romans/10/1) diff --git a/scripture/kjv/04/09/24/scripture.tg b/scripture/kjv/04/09/24/scripture.tg new file mode 100644 index 00000000..bdf603dd --- /dev/null +++ b/scripture/kjv/04/09/24/scripture.tg @@ -0,0 +1,4 @@ +Romans 10:1 +1 Brethren, my heart’s desire and prayer to God for Israel is, that they might be saved. + +Tuesday 09-April, 2024 diff --git a/scripture/kjv/04/09/24/scripture.tg.id b/scripture/kjv/04/09/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/09/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/09/24/scripture.today b/scripture/kjv/04/09/24/scripture.today new file mode 100644 index 00000000..cf5bb574 --- /dev/null +++ b/scripture/kjv/04/09/24/scripture.today @@ -0,0 +1 @@ +45 10:1 diff --git a/scripture/kjv/04/09/25/scripture.html b/scripture/kjv/04/09/25/scripture.html new file mode 100644 index 00000000..0dd73999 --- /dev/null +++ b/scripture/kjv/04/09/25/scripture.html @@ -0,0 +1,3 @@ +Proverbs 3:3-4
+3 Let not mercy and truth forsake thee: bind them about thy neck; write them upon the table of thine heart: 4 So shalt thou find favour and good understanding in the sight of God and man.

+Wednesday 09-April, 2025 diff --git a/scripture/kjv/04/09/25/scripture.json b/scripture/kjv/04/09/25/scripture.json new file mode 100644 index 00000000..7b2fdd63 --- /dev/null +++ b/scripture/kjv/04/09/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Proverbs", + "chapter": "3", + "date": "Wednesday 09-April, 2025", + "getbible": "https://getbible.life/kjv/Proverbs/3/3-4", + "name": "Proverbs 3:3-4", + "scripture": [ + { + "nr": "3", + "text": "Let not mercy and truth forsake thee: bind them about thy neck; write them upon the table of thine heart:" + }, + { + "nr": "4", + "text": "So shalt thou find favour and good understanding in the sight of God and man." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3-4", + "version": "kjv" +} diff --git a/scripture/kjv/04/09/25/scripture.md b/scripture/kjv/04/09/25/scripture.md new file mode 100644 index 00000000..74402a6b --- /dev/null +++ b/scripture/kjv/04/09/25/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 3:3-4** + +3 Let not mercy and truth forsake thee: bind them about thy neck; write them upon the table of thine heart: 4 So shalt thou find favour and good understanding in the sight of God and man. + +[Wednesday 09-April, 2025](https://getbible.life/kjv/Proverbs/3/3-4) diff --git a/scripture/kjv/04/09/25/scripture.tg b/scripture/kjv/04/09/25/scripture.tg new file mode 100644 index 00000000..3404257d --- /dev/null +++ b/scripture/kjv/04/09/25/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 3:3-4 +3 Let not mercy and truth forsake thee: bind them about thy neck; write them upon the table of thine heart: 4 So shalt thou find favour and good understanding in the sight of God and man. + +Wednesday 09-April, 2025 diff --git a/scripture/kjv/04/09/25/scripture.tg.id b/scripture/kjv/04/09/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/09/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/09/25/scripture.today b/scripture/kjv/04/09/25/scripture.today new file mode 100644 index 00000000..115fa914 --- /dev/null +++ b/scripture/kjv/04/09/25/scripture.today @@ -0,0 +1 @@ +20 3:3-4 diff --git a/scripture/kjv/04/09/26/scripture.html b/scripture/kjv/04/09/26/scripture.html new file mode 100644 index 00000000..9768e58f --- /dev/null +++ b/scripture/kjv/04/09/26/scripture.html @@ -0,0 +1,3 @@ +Acts 9:11
+11 And the Lord said unto him, Arise, and go into the street which is called Straight, and enquire in the house of Judas for one called Saul, of Tarsus: for, behold, he prayeth,

+Thursday 09-April, 2026 diff --git a/scripture/kjv/04/09/26/scripture.json b/scripture/kjv/04/09/26/scripture.json new file mode 100644 index 00000000..1f8035be --- /dev/null +++ b/scripture/kjv/04/09/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Acts", + "chapter": "9", + "date": "Thursday 09-April, 2026", + "getbible": "https://getbible.life/kjv/Acts/9/11", + "name": "Acts 9:11", + "scripture": [ + { + "nr": "11", + "text": "And the Lord said unto him, Arise, and go into the street which is called Straight, and enquire in the house of Judas for one called Saul, of Tarsus: for, behold, he prayeth," + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/04/09/26/scripture.md b/scripture/kjv/04/09/26/scripture.md new file mode 100644 index 00000000..5bbe1830 --- /dev/null +++ b/scripture/kjv/04/09/26/scripture.md @@ -0,0 +1,5 @@ +**Acts 9:11** + +11 And the Lord said unto him, Arise, and go into the street which is called Straight, and enquire in the house of Judas for one called Saul, of Tarsus: for, behold, he prayeth, + +[Thursday 09-April, 2026](https://getbible.life/kjv/Acts/9/11) diff --git a/scripture/kjv/04/09/26/scripture.tg b/scripture/kjv/04/09/26/scripture.tg new file mode 100644 index 00000000..7c14b13d --- /dev/null +++ b/scripture/kjv/04/09/26/scripture.tg @@ -0,0 +1,4 @@ +Acts 9:11 +11 And the Lord said unto him, Arise, and go into the street which is called Straight, and enquire in the house of Judas for one called Saul, of Tarsus: for, behold, he prayeth, + +Thursday 09-April, 2026 diff --git a/scripture/kjv/04/09/26/scripture.tg.id b/scripture/kjv/04/09/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/09/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/09/26/scripture.today b/scripture/kjv/04/09/26/scripture.today new file mode 100644 index 00000000..5f7789cc --- /dev/null +++ b/scripture/kjv/04/09/26/scripture.today @@ -0,0 +1 @@ +44 9:11 diff --git a/scripture/kjv/04/10/23/scripture.html b/scripture/kjv/04/10/23/scripture.html new file mode 100644 index 00000000..1120a01a --- /dev/null +++ b/scripture/kjv/04/10/23/scripture.html @@ -0,0 +1,3 @@ +Ephesians 5:1-2
+1 Be ye therefore followers of God, as dear children; 2 And walk in love, as Christ also hath loved us, and hath given himself for us an offering and a sacrifice to God for a sweetsmelling savour.

+Monday 10-April, 2023 diff --git a/scripture/kjv/04/10/23/scripture.json b/scripture/kjv/04/10/23/scripture.json new file mode 100644 index 00000000..e8d2399c --- /dev/null +++ b/scripture/kjv/04/10/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Monday 10-April, 2023", + "name": "Ephesians 5:1-2", + "scripture": [ + { + "nr": "1", + "text": "Be ye therefore followers of God, as dear children;" + }, + { + "nr": "2", + "text": "And walk in love, as Christ also hath loved us, and hath given himself for us an offering and a sacrifice to God for a sweetsmelling savour." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/10/23/scripture.md b/scripture/kjv/04/10/23/scripture.md new file mode 100644 index 00000000..4009f0dc --- /dev/null +++ b/scripture/kjv/04/10/23/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 5:1-2** + +1 Be ye therefore followers of God, as dear children; 2 And walk in love, as Christ also hath loved us, and hath given himself for us an offering and a sacrifice to God for a sweetsmelling savour. + +[Monday 10-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/10/23/scripture.tg b/scripture/kjv/04/10/23/scripture.tg new file mode 100644 index 00000000..b0fb50bf --- /dev/null +++ b/scripture/kjv/04/10/23/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 5:1-2 +1 Be ye therefore followers of God, as dear children; 2 And walk in love, as Christ also hath loved us, and hath given himself for us an offering and a sacrifice to God for a sweetsmelling savour. + +Monday 10-April, 2023 diff --git a/scripture/kjv/04/10/23/scripture.tg.id b/scripture/kjv/04/10/23/scripture.tg.id new file mode 100644 index 00000000..fbd4b211 --- /dev/null +++ b/scripture/kjv/04/10/23/scripture.tg.id @@ -0,0 +1 @@ +912 diff --git a/scripture/kjv/04/10/23/scripture.today b/scripture/kjv/04/10/23/scripture.today new file mode 100644 index 00000000..e1a317ea --- /dev/null +++ b/scripture/kjv/04/10/23/scripture.today @@ -0,0 +1 @@ +49 5:1-2 diff --git a/scripture/kjv/04/10/24/scripture.html b/scripture/kjv/04/10/24/scripture.html new file mode 100644 index 00000000..3a260f28 --- /dev/null +++ b/scripture/kjv/04/10/24/scripture.html @@ -0,0 +1,3 @@ +Titus 2:14
+14 Who gave himself for us, that he might redeem us from all iniquity, and purify unto himself a peculiar people, zealous of good works.

+Wednesday 10-April, 2024 diff --git a/scripture/kjv/04/10/24/scripture.json b/scripture/kjv/04/10/24/scripture.json new file mode 100644 index 00000000..2e409930 --- /dev/null +++ b/scripture/kjv/04/10/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Titus", + "chapter": "2", + "date": "Wednesday 10-April, 2024", + "getbible": "https://getbible.life/kjv/Titus/2/14", + "name": "Titus 2:14", + "scripture": [ + { + "nr": "14", + "text": "Who gave himself for us, that he might redeem us from all iniquity, and purify unto himself a peculiar people, zealous of good works." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/04/10/24/scripture.md b/scripture/kjv/04/10/24/scripture.md new file mode 100644 index 00000000..871040dc --- /dev/null +++ b/scripture/kjv/04/10/24/scripture.md @@ -0,0 +1,5 @@ +**Titus 2:14** + +14 Who gave himself for us, that he might redeem us from all iniquity, and purify unto himself a peculiar people, zealous of good works. + +[Wednesday 10-April, 2024](https://getbible.life/kjv/Titus/2/14) diff --git a/scripture/kjv/04/10/24/scripture.tg b/scripture/kjv/04/10/24/scripture.tg new file mode 100644 index 00000000..9031040a --- /dev/null +++ b/scripture/kjv/04/10/24/scripture.tg @@ -0,0 +1,4 @@ +Titus 2:14 +14 Who gave himself for us, that he might redeem us from all iniquity, and purify unto himself a peculiar people, zealous of good works. + +Wednesday 10-April, 2024 diff --git a/scripture/kjv/04/10/24/scripture.tg.id b/scripture/kjv/04/10/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/10/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/10/24/scripture.today b/scripture/kjv/04/10/24/scripture.today new file mode 100644 index 00000000..54b690f6 --- /dev/null +++ b/scripture/kjv/04/10/24/scripture.today @@ -0,0 +1 @@ +56 2:14 diff --git a/scripture/kjv/04/10/25/scripture.html b/scripture/kjv/04/10/25/scripture.html new file mode 100644 index 00000000..cd9046ef --- /dev/null +++ b/scripture/kjv/04/10/25/scripture.html @@ -0,0 +1,3 @@ +Hebrews 5:13-14
+13 For every one that useth milk is unskilful in the word of righteousness: for he is a babe. 14 But strong meat belongeth to them that are of full age, even those who by reason of use have their senses exercised to discern both good and evil.

+Thursday 10-April, 2025 diff --git a/scripture/kjv/04/10/25/scripture.json b/scripture/kjv/04/10/25/scripture.json new file mode 100644 index 00000000..acd2c175 --- /dev/null +++ b/scripture/kjv/04/10/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Hebrews", + "chapter": "5", + "date": "Thursday 10-April, 2025", + "getbible": "https://getbible.life/kjv/Hebrews/5/13-14", + "name": "Hebrews 5:13-14", + "scripture": [ + { + "nr": "13", + "text": "For every one that useth milk is unskilful in the word of righteousness: for he is a babe." + }, + { + "nr": "14", + "text": "But strong meat belongeth to them that are of full age, even those who by reason of use have their senses exercised to discern both good and evil. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13-14", + "version": "kjv" +} diff --git a/scripture/kjv/04/10/25/scripture.md b/scripture/kjv/04/10/25/scripture.md new file mode 100644 index 00000000..0ee56359 --- /dev/null +++ b/scripture/kjv/04/10/25/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 5:13-14** + +13 For every one that useth milk is unskilful in the word of righteousness: for he is a babe. 14 But strong meat belongeth to them that are of full age, even those who by reason of use have their senses exercised to discern both good and evil. + +[Thursday 10-April, 2025](https://getbible.life/kjv/Hebrews/5/13-14) diff --git a/scripture/kjv/04/10/25/scripture.tg b/scripture/kjv/04/10/25/scripture.tg new file mode 100644 index 00000000..ea4525e0 --- /dev/null +++ b/scripture/kjv/04/10/25/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 5:13-14 +13 For every one that useth milk is unskilful in the word of righteousness: for he is a babe. 14 But strong meat belongeth to them that are of full age, even those who by reason of use have their senses exercised to discern both good and evil. + +Thursday 10-April, 2025 diff --git a/scripture/kjv/04/10/25/scripture.tg.id b/scripture/kjv/04/10/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/10/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/10/25/scripture.today b/scripture/kjv/04/10/25/scripture.today new file mode 100644 index 00000000..b812609d --- /dev/null +++ b/scripture/kjv/04/10/25/scripture.today @@ -0,0 +1 @@ +58 5:13-14 diff --git a/scripture/kjv/04/10/26/scripture.html b/scripture/kjv/04/10/26/scripture.html new file mode 100644 index 00000000..6dc51c22 --- /dev/null +++ b/scripture/kjv/04/10/26/scripture.html @@ -0,0 +1,3 @@ +Ephesians 5:8-11
+8 For ye were sometimes darkness, but now are ye light in the Lord: walk as children of light: 9 (For the fruit of the Spirit is in all goodness and righteousness and truth;) 10 Proving what is acceptable unto the Lord. 11 And have no fellowship with the unfruitful works of darkness, but rather reprove them.

+Friday 10-April, 2026 diff --git a/scripture/kjv/04/10/26/scripture.json b/scripture/kjv/04/10/26/scripture.json new file mode 100644 index 00000000..6b9e727e --- /dev/null +++ b/scripture/kjv/04/10/26/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "Ephesians", + "chapter": "5", + "date": "Friday 10-April, 2026", + "getbible": "https://getbible.life/kjv/Ephesians/5/8-11", + "name": "Ephesians 5:8-11", + "scripture": [ + { + "nr": "8", + "text": "For ye were sometimes darkness, but now are ye light in the Lord: walk as children of light:" + }, + { + "nr": "9", + "text": "(For the fruit of the Spirit is in all goodness and righteousness and truth;)" + }, + { + "nr": "10", + "text": "Proving what is acceptable unto the Lord." + }, + { + "nr": "11", + "text": "And have no fellowship with the unfruitful works of darkness, but rather reprove them. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8-11", + "version": "kjv" +} diff --git a/scripture/kjv/04/10/26/scripture.md b/scripture/kjv/04/10/26/scripture.md new file mode 100644 index 00000000..f494e472 --- /dev/null +++ b/scripture/kjv/04/10/26/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 5:8-11** + +8 For ye were sometimes darkness, but now are ye light in the Lord: walk as children of light: 9 (For the fruit of the Spirit is in all goodness and righteousness and truth;) 10 Proving what is acceptable unto the Lord. 11 And have no fellowship with the unfruitful works of darkness, but rather reprove them. + +[Friday 10-April, 2026](https://getbible.life/kjv/Ephesians/5/8-11) diff --git a/scripture/kjv/04/10/26/scripture.tg b/scripture/kjv/04/10/26/scripture.tg new file mode 100644 index 00000000..33210643 --- /dev/null +++ b/scripture/kjv/04/10/26/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 5:8-11 +8 For ye were sometimes darkness, but now are ye light in the Lord: walk as children of light: 9 (For the fruit of the Spirit is in all goodness and righteousness and truth;) 10 Proving what is acceptable unto the Lord. 11 And have no fellowship with the unfruitful works of darkness, but rather reprove them. + +Friday 10-April, 2026 diff --git a/scripture/kjv/04/10/26/scripture.tg.id b/scripture/kjv/04/10/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/10/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/10/26/scripture.today b/scripture/kjv/04/10/26/scripture.today new file mode 100644 index 00000000..a7af8b8a --- /dev/null +++ b/scripture/kjv/04/10/26/scripture.today @@ -0,0 +1 @@ +49 5:8-11 diff --git a/scripture/kjv/04/11/23/scripture.html b/scripture/kjv/04/11/23/scripture.html new file mode 100644 index 00000000..15eab8df --- /dev/null +++ b/scripture/kjv/04/11/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 31:30
+30 Favour is deceitful, and beauty is vain: but a woman that feareth the Lord, she shall be praised.

+Tuesday 11-April, 2023 diff --git a/scripture/kjv/04/11/23/scripture.json b/scripture/kjv/04/11/23/scripture.json new file mode 100644 index 00000000..2661515e --- /dev/null +++ b/scripture/kjv/04/11/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Tuesday 11-April, 2023", + "name": "Proverbs 31:30", + "scripture": [ + { + "nr": "30", + "text": "Favour is deceitful, and beauty is vain: but a woman that feareth the Lord, she shall be praised." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/11/23/scripture.md b/scripture/kjv/04/11/23/scripture.md new file mode 100644 index 00000000..dc0aeb15 --- /dev/null +++ b/scripture/kjv/04/11/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 31:30** + +30 Favour is deceitful, and beauty is vain: but a woman that feareth the Lord, she shall be praised. + +[Tuesday 11-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/11/23/scripture.tg b/scripture/kjv/04/11/23/scripture.tg new file mode 100644 index 00000000..3d5b89c3 --- /dev/null +++ b/scripture/kjv/04/11/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 31:30 +30 Favour is deceitful, and beauty is vain: but a woman that feareth the Lord, she shall be praised. + +Tuesday 11-April, 2023 diff --git a/scripture/kjv/04/11/23/scripture.tg.id b/scripture/kjv/04/11/23/scripture.tg.id new file mode 100644 index 00000000..d6904a94 --- /dev/null +++ b/scripture/kjv/04/11/23/scripture.tg.id @@ -0,0 +1 @@ +913 diff --git a/scripture/kjv/04/11/23/scripture.today b/scripture/kjv/04/11/23/scripture.today new file mode 100644 index 00000000..ad2834e3 --- /dev/null +++ b/scripture/kjv/04/11/23/scripture.today @@ -0,0 +1 @@ +20 31:30 diff --git a/scripture/kjv/04/11/24/scripture.html b/scripture/kjv/04/11/24/scripture.html new file mode 100644 index 00000000..4989cdd7 --- /dev/null +++ b/scripture/kjv/04/11/24/scripture.html @@ -0,0 +1,3 @@ +Job 42:2
+2 I know that thou canst do every thing, and that no thought can be withholden from thee.

+Thursday 11-April, 2024 diff --git a/scripture/kjv/04/11/24/scripture.json b/scripture/kjv/04/11/24/scripture.json new file mode 100644 index 00000000..cef46346 --- /dev/null +++ b/scripture/kjv/04/11/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Job", + "chapter": "42", + "date": "Thursday 11-April, 2024", + "getbible": "https://getbible.life/kjv/Job/42/2", + "name": "Job 42:2", + "scripture": [ + { + "nr": "2", + "text": "I know that thou canst do every thing, and that no thought can be withholden from thee." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "2", + "version": "kjv" +} diff --git a/scripture/kjv/04/11/24/scripture.md b/scripture/kjv/04/11/24/scripture.md new file mode 100644 index 00000000..2a505fc3 --- /dev/null +++ b/scripture/kjv/04/11/24/scripture.md @@ -0,0 +1,5 @@ +**Job 42:2** + +2 I know that thou canst do every thing, and that no thought can be withholden from thee. + +[Thursday 11-April, 2024](https://getbible.life/kjv/Job/42/2) diff --git a/scripture/kjv/04/11/24/scripture.tg b/scripture/kjv/04/11/24/scripture.tg new file mode 100644 index 00000000..7ed0b9d9 --- /dev/null +++ b/scripture/kjv/04/11/24/scripture.tg @@ -0,0 +1,4 @@ +Job 42:2 +2 I know that thou canst do every thing, and that no thought can be withholden from thee. + +Thursday 11-April, 2024 diff --git a/scripture/kjv/04/11/24/scripture.tg.id b/scripture/kjv/04/11/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/11/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/11/24/scripture.today b/scripture/kjv/04/11/24/scripture.today new file mode 100644 index 00000000..da7d1d17 --- /dev/null +++ b/scripture/kjv/04/11/24/scripture.today @@ -0,0 +1 @@ +18 42:2 diff --git a/scripture/kjv/04/11/25/scripture.html b/scripture/kjv/04/11/25/scripture.html new file mode 100644 index 00000000..9067d586 --- /dev/null +++ b/scripture/kjv/04/11/25/scripture.html @@ -0,0 +1,3 @@ +Philippians 4:2
+2 I beseech Euodias, and beseech Syntyche, that they be of the same mind in the Lord.

+Friday 11-April, 2025 diff --git a/scripture/kjv/04/11/25/scripture.json b/scripture/kjv/04/11/25/scripture.json new file mode 100644 index 00000000..5e892ac6 --- /dev/null +++ b/scripture/kjv/04/11/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Philippians", + "chapter": "4", + "date": "Friday 11-April, 2025", + "getbible": "https://getbible.life/kjv/Philippians/4/2", + "name": "Philippians 4:2", + "scripture": [ + { + "nr": "2", + "text": "I beseech Euodias, and beseech Syntyche, that they be of the same mind in the Lord." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "2", + "version": "kjv" +} diff --git a/scripture/kjv/04/11/25/scripture.md b/scripture/kjv/04/11/25/scripture.md new file mode 100644 index 00000000..40d14f05 --- /dev/null +++ b/scripture/kjv/04/11/25/scripture.md @@ -0,0 +1,5 @@ +**Philippians 4:2** + +2 I beseech Euodias, and beseech Syntyche, that they be of the same mind in the Lord. + +[Friday 11-April, 2025](https://getbible.life/kjv/Philippians/4/2) diff --git a/scripture/kjv/04/11/25/scripture.tg b/scripture/kjv/04/11/25/scripture.tg new file mode 100644 index 00000000..6a0c68b3 --- /dev/null +++ b/scripture/kjv/04/11/25/scripture.tg @@ -0,0 +1,4 @@ +Philippians 4:2 +2 I beseech Euodias, and beseech Syntyche, that they be of the same mind in the Lord. + +Friday 11-April, 2025 diff --git a/scripture/kjv/04/11/25/scripture.tg.id b/scripture/kjv/04/11/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/11/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/11/25/scripture.today b/scripture/kjv/04/11/25/scripture.today new file mode 100644 index 00000000..ae75c1e0 --- /dev/null +++ b/scripture/kjv/04/11/25/scripture.today @@ -0,0 +1 @@ +50 4:2 diff --git a/scripture/kjv/04/11/26/scripture.html b/scripture/kjv/04/11/26/scripture.html new file mode 100644 index 00000000..a08b8c11 --- /dev/null +++ b/scripture/kjv/04/11/26/scripture.html @@ -0,0 +1,3 @@ +Luke 21:36
+36 Watch ye therefore, and pray always, that ye may be accounted worthy to escape all these things that shall come to pass, and to stand before the Son of man.

+Saturday 11-April, 2026 diff --git a/scripture/kjv/04/11/26/scripture.json b/scripture/kjv/04/11/26/scripture.json new file mode 100644 index 00000000..c852febf --- /dev/null +++ b/scripture/kjv/04/11/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "21", + "date": "Saturday 11-April, 2026", + "getbible": "https://getbible.life/kjv/Luke/21/36", + "name": "Luke 21:36", + "scripture": [ + { + "nr": "36", + "text": "Watch ye therefore, and pray always, that ye may be accounted worthy to escape all these things that shall come to pass, and to stand before the Son of man." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "36", + "version": "kjv" +} diff --git a/scripture/kjv/04/11/26/scripture.md b/scripture/kjv/04/11/26/scripture.md new file mode 100644 index 00000000..5d3542ad --- /dev/null +++ b/scripture/kjv/04/11/26/scripture.md @@ -0,0 +1,5 @@ +**Luke 21:36** + +36 Watch ye therefore, and pray always, that ye may be accounted worthy to escape all these things that shall come to pass, and to stand before the Son of man. + +[Saturday 11-April, 2026](https://getbible.life/kjv/Luke/21/36) diff --git a/scripture/kjv/04/11/26/scripture.tg b/scripture/kjv/04/11/26/scripture.tg new file mode 100644 index 00000000..e8d964ab --- /dev/null +++ b/scripture/kjv/04/11/26/scripture.tg @@ -0,0 +1,4 @@ +Luke 21:36 +36 Watch ye therefore, and pray always, that ye may be accounted worthy to escape all these things that shall come to pass, and to stand before the Son of man. + +Saturday 11-April, 2026 diff --git a/scripture/kjv/04/11/26/scripture.tg.id b/scripture/kjv/04/11/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/11/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/11/26/scripture.today b/scripture/kjv/04/11/26/scripture.today new file mode 100644 index 00000000..a836d15f --- /dev/null +++ b/scripture/kjv/04/11/26/scripture.today @@ -0,0 +1 @@ +42 21:36 diff --git a/scripture/kjv/04/12/23/scripture.html b/scripture/kjv/04/12/23/scripture.html new file mode 100644 index 00000000..1203fc7f --- /dev/null +++ b/scripture/kjv/04/12/23/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 4:9-13
+9 For I think that God hath set forth us the apostles last, as it were appointed to death: for we are made a spectacle unto the world, and to angels, and to men. 10 We are fools for Christ’s sake, but ye are wise in Christ; we are weak, but ye are strong; ye are honourable, but we are despised. 11 Even unto this present hour we both hunger, and thirst, and are naked, and are buffeted, and have no certain dwellingplace; 12 And labour, working with our own hands: being reviled, we bless; being persecuted, we suffer it: 13 Being defamed, we intreat: we are made as the filth of the world, and are the offscouring of all things unto this day.

+Wednesday 12-April, 2023 diff --git a/scripture/kjv/04/12/23/scripture.json b/scripture/kjv/04/12/23/scripture.json new file mode 100644 index 00000000..e06314f9 --- /dev/null +++ b/scripture/kjv/04/12/23/scripture.json @@ -0,0 +1,29 @@ +{ + "date": "Wednesday 12-April, 2023", + "name": "1 Corinthians 4:9-13", + "scripture": [ + { + "nr": "9", + "text": "For I think that God hath set forth us the apostles last, as it were appointed to death: for we are made a spectacle unto the world, and to angels, and to men." + }, + { + "nr": "10", + "text": "We are fools for Christ’s sake, but ye are wise in Christ; we are weak, but ye are strong; ye are honourable, but we are despised." + }, + { + "nr": "11", + "text": "Even unto this present hour we both hunger, and thirst, and are naked, and are buffeted, and have no certain dwellingplace;" + }, + { + "nr": "12", + "text": "And labour, working with our own hands: being reviled, we bless; being persecuted, we suffer it:" + }, + { + "nr": "13", + "text": "Being defamed, we intreat: we are made as the filth of the world, and are the offscouring of all things unto this day." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/12/23/scripture.md b/scripture/kjv/04/12/23/scripture.md new file mode 100644 index 00000000..610b9349 --- /dev/null +++ b/scripture/kjv/04/12/23/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 4:9-13** + +9 For I think that God hath set forth us the apostles last, as it were appointed to death: for we are made a spectacle unto the world, and to angels, and to men. 10 We are fools for Christ’s sake, but ye are wise in Christ; we are weak, but ye are strong; ye are honourable, but we are despised. 11 Even unto this present hour we both hunger, and thirst, and are naked, and are buffeted, and have no certain dwellingplace; 12 And labour, working with our own hands: being reviled, we bless; being persecuted, we suffer it: 13 Being defamed, we intreat: we are made as the filth of the world, and are the offscouring of all things unto this day. + +[Wednesday 12-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/12/23/scripture.tg b/scripture/kjv/04/12/23/scripture.tg new file mode 100644 index 00000000..d07b59f2 --- /dev/null +++ b/scripture/kjv/04/12/23/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 4:9-13 +9 For I think that God hath set forth us the apostles last, as it were appointed to death: for we are made a spectacle unto the world, and to angels, and to men. 10 We are fools for Christ’s sake, but ye are wise in Christ; we are weak, but ye are strong; ye are honourable, but we are despised. 11 Even unto this present hour we both hunger, and thirst, and are naked, and are buffeted, and have no certain dwellingplace; 12 And labour, working with our own hands: being reviled, we bless; being persecuted, we suffer it: 13 Being defamed, we intreat: we are made as the filth of the world, and are the offscouring of all things unto this day. + +Wednesday 12-April, 2023 diff --git a/scripture/kjv/04/12/23/scripture.tg.id b/scripture/kjv/04/12/23/scripture.tg.id new file mode 100644 index 00000000..6cf44bc0 --- /dev/null +++ b/scripture/kjv/04/12/23/scripture.tg.id @@ -0,0 +1 @@ +914 diff --git a/scripture/kjv/04/12/23/scripture.today b/scripture/kjv/04/12/23/scripture.today new file mode 100644 index 00000000..e19abc8c --- /dev/null +++ b/scripture/kjv/04/12/23/scripture.today @@ -0,0 +1 @@ +46 4:9-13 diff --git a/scripture/kjv/04/12/24/scripture.html b/scripture/kjv/04/12/24/scripture.html new file mode 100644 index 00000000..21947e60 --- /dev/null +++ b/scripture/kjv/04/12/24/scripture.html @@ -0,0 +1,3 @@ +Revelation 3:3
+3 Remember therefore how thou hast received and heard, and hold fast, and repent. If therefore thou shalt not watch, I will come on thee as a thief, and thou shalt not know what hour I will come upon thee.

+Friday 12-April, 2024 diff --git a/scripture/kjv/04/12/24/scripture.json b/scripture/kjv/04/12/24/scripture.json new file mode 100644 index 00000000..400b10d1 --- /dev/null +++ b/scripture/kjv/04/12/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Revelation", + "chapter": "3", + "date": "Friday 12-April, 2024", + "getbible": "https://getbible.life/kjv/Revelation/3/3", + "name": "Revelation 3:3", + "scripture": [ + { + "nr": "3", + "text": "Remember therefore how thou hast received and heard, and hold fast, and repent. If therefore thou shalt not watch, I will come on thee as a thief, and thou shalt not know what hour I will come upon thee." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3", + "version": "kjv" +} diff --git a/scripture/kjv/04/12/24/scripture.md b/scripture/kjv/04/12/24/scripture.md new file mode 100644 index 00000000..8ac32496 --- /dev/null +++ b/scripture/kjv/04/12/24/scripture.md @@ -0,0 +1,5 @@ +**Revelation 3:3** + +3 Remember therefore how thou hast received and heard, and hold fast, and repent. If therefore thou shalt not watch, I will come on thee as a thief, and thou shalt not know what hour I will come upon thee. + +[Friday 12-April, 2024](https://getbible.life/kjv/Revelation/3/3) diff --git a/scripture/kjv/04/12/24/scripture.tg b/scripture/kjv/04/12/24/scripture.tg new file mode 100644 index 00000000..da8a0d45 --- /dev/null +++ b/scripture/kjv/04/12/24/scripture.tg @@ -0,0 +1,4 @@ +Revelation 3:3 +3 Remember therefore how thou hast received and heard, and hold fast, and repent. If therefore thou shalt not watch, I will come on thee as a thief, and thou shalt not know what hour I will come upon thee. + +Friday 12-April, 2024 diff --git a/scripture/kjv/04/12/24/scripture.tg.id b/scripture/kjv/04/12/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/12/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/12/24/scripture.today b/scripture/kjv/04/12/24/scripture.today new file mode 100644 index 00000000..1c7049aa --- /dev/null +++ b/scripture/kjv/04/12/24/scripture.today @@ -0,0 +1 @@ +66 3:3 diff --git a/scripture/kjv/04/12/25/scripture.html b/scripture/kjv/04/12/25/scripture.html new file mode 100644 index 00000000..2f969548 --- /dev/null +++ b/scripture/kjv/04/12/25/scripture.html @@ -0,0 +1,3 @@ +John 3:16-17
+16 For God so loved the world, that he gave his only begotten Son, that whosoever believeth in him should not perish, but have everlasting life. 17 For God sent not his Son into the world to condemn the world; but that the world through him might be saved.

+Saturday 12-April, 2025 diff --git a/scripture/kjv/04/12/25/scripture.json b/scripture/kjv/04/12/25/scripture.json new file mode 100644 index 00000000..0e18989e --- /dev/null +++ b/scripture/kjv/04/12/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "John", + "chapter": "3", + "date": "Saturday 12-April, 2025", + "getbible": "https://getbible.life/kjv/John/3/16-17", + "name": "John 3:16-17", + "scripture": [ + { + "nr": "16", + "text": "For God so loved the world, that he gave his only begotten Son, that whosoever believeth in him should not perish, but have everlasting life." + }, + { + "nr": "17", + "text": "For God sent not his Son into the world to condemn the world; but that the world through him might be saved." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16-17", + "version": "kjv" +} diff --git a/scripture/kjv/04/12/25/scripture.md b/scripture/kjv/04/12/25/scripture.md new file mode 100644 index 00000000..7a59c161 --- /dev/null +++ b/scripture/kjv/04/12/25/scripture.md @@ -0,0 +1,5 @@ +**John 3:16-17** + +16 For God so loved the world, that he gave his only begotten Son, that whosoever believeth in him should not perish, but have everlasting life. 17 For God sent not his Son into the world to condemn the world; but that the world through him might be saved. + +[Saturday 12-April, 2025](https://getbible.life/kjv/John/3/16-17) diff --git a/scripture/kjv/04/12/25/scripture.tg b/scripture/kjv/04/12/25/scripture.tg new file mode 100644 index 00000000..25e26c3c --- /dev/null +++ b/scripture/kjv/04/12/25/scripture.tg @@ -0,0 +1,4 @@ +John 3:16-17 +16 For God so loved the world, that he gave his only begotten Son, that whosoever believeth in him should not perish, but have everlasting life. 17 For God sent not his Son into the world to condemn the world; but that the world through him might be saved. + +Saturday 12-April, 2025 diff --git a/scripture/kjv/04/12/25/scripture.today b/scripture/kjv/04/12/25/scripture.today new file mode 100644 index 00000000..47992629 --- /dev/null +++ b/scripture/kjv/04/12/25/scripture.today @@ -0,0 +1 @@ +43 3:16-17 diff --git a/scripture/kjv/04/12/26/scripture.html b/scripture/kjv/04/12/26/scripture.html new file mode 100644 index 00000000..b2081940 --- /dev/null +++ b/scripture/kjv/04/12/26/scripture.html @@ -0,0 +1,3 @@ +Luke 2:27
+27 And he came by the Spirit into the temple: and when the parents brought in the child Jesus, to do for him after the custom of the law,

+Sunday 12-April, 2026 diff --git a/scripture/kjv/04/12/26/scripture.json b/scripture/kjv/04/12/26/scripture.json new file mode 100644 index 00000000..589ebf18 --- /dev/null +++ b/scripture/kjv/04/12/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "2", + "date": "Sunday 12-April, 2026", + "getbible": "https://getbible.life/kjv/Luke/2/27", + "name": "Luke 2:27", + "scripture": [ + { + "nr": "27", + "text": "And he came by the Spirit into the temple: and when the parents brought in the child Jesus, to do for him after the custom of the law," + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "27", + "version": "kjv" +} diff --git a/scripture/kjv/04/12/26/scripture.md b/scripture/kjv/04/12/26/scripture.md new file mode 100644 index 00000000..988b5d70 --- /dev/null +++ b/scripture/kjv/04/12/26/scripture.md @@ -0,0 +1,5 @@ +**Luke 2:27** + +27 And he came by the Spirit into the temple: and when the parents brought in the child Jesus, to do for him after the custom of the law, + +[Sunday 12-April, 2026](https://getbible.life/kjv/Luke/2/27) diff --git a/scripture/kjv/04/12/26/scripture.tg b/scripture/kjv/04/12/26/scripture.tg new file mode 100644 index 00000000..86493f95 --- /dev/null +++ b/scripture/kjv/04/12/26/scripture.tg @@ -0,0 +1,4 @@ +Luke 2:27 +27 And he came by the Spirit into the temple: and when the parents brought in the child Jesus, to do for him after the custom of the law, + +Sunday 12-April, 2026 diff --git a/scripture/kjv/04/12/26/scripture.tg.id b/scripture/kjv/04/12/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/12/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/12/26/scripture.today b/scripture/kjv/04/12/26/scripture.today new file mode 100644 index 00000000..859004b2 --- /dev/null +++ b/scripture/kjv/04/12/26/scripture.today @@ -0,0 +1 @@ +42 2:27 diff --git a/scripture/kjv/04/13/23/scripture.html b/scripture/kjv/04/13/23/scripture.html new file mode 100644 index 00000000..e36232b8 --- /dev/null +++ b/scripture/kjv/04/13/23/scripture.html @@ -0,0 +1,3 @@ +Matthew 25:33-46
+33 And he shall set the sheep on his right hand, but the goats on the left. 34 Then shall the King say unto them on his right hand, Come, ye blessed of my Father, inherit the kingdom prepared for you from the foundation of the world: 35 For I was an hungred, and ye gave me meat: I was thirsty, and ye gave me drink: I was a stranger, and ye took me in: 36 Naked, and ye clothed me: I was sick, and ye visited me: I was in prison, and ye came unto me. 37 Then shall the righteous answer him, saying, Lord, when saw we thee an hungred, and fed thee? or thirsty, and gave thee drink? 38 When saw we thee a stranger, and took thee in? or naked, and clothed thee? 39 Or when saw we thee sick, or in prison, and came unto thee? 40 And the King shall answer and say unto them, Verily I say unto you, Inasmuch as ye have done it unto one of the least of these my brethren, ye have done it unto me. 41 Then shall he say also unto them on the left hand, Depart from me, ye cursed, into everlasting fire, prepared for the devil and his angels: 42 For I was an hungred, and ye gave me no meat: I was thirsty, and ye gave me no drink: 43 I was a stranger, and ye took me not in: naked, and ye clothed me not: sick, and in prison, and ye visited me not. 44 Then shall they also answer him, saying, Lord, when saw we thee an hungred, or athirst, or a stranger, or naked, or sick, or in prison, and did not minister unto thee? 45 Then shall he answer them, saying, Verily I say unto you, Inasmuch as ye did it not to one of the least of these, ye did it not to me. 46 And these shall go away into everlasting punishment: but the righteous into life eternal.

+Thursday 13-April, 2023 diff --git a/scripture/kjv/04/13/23/scripture.json b/scripture/kjv/04/13/23/scripture.json new file mode 100644 index 00000000..fb8d2335 --- /dev/null +++ b/scripture/kjv/04/13/23/scripture.json @@ -0,0 +1,65 @@ +{ + "date": "Thursday 13-April, 2023", + "name": "Matthew 25:33-46", + "scripture": [ + { + "nr": "33", + "text": "And he shall set the sheep on his right hand, but the goats on the left." + }, + { + "nr": "34", + "text": "Then shall the King say unto them on his right hand, Come, ye blessed of my Father, inherit the kingdom prepared for you from the foundation of the world:" + }, + { + "nr": "35", + "text": "For I was an hungred, and ye gave me meat: I was thirsty, and ye gave me drink: I was a stranger, and ye took me in:" + }, + { + "nr": "36", + "text": "Naked, and ye clothed me: I was sick, and ye visited me: I was in prison, and ye came unto me." + }, + { + "nr": "37", + "text": "Then shall the righteous answer him, saying, Lord, when saw we thee an hungred, and fed thee? or thirsty, and gave thee drink?" + }, + { + "nr": "38", + "text": "When saw we thee a stranger, and took thee in? or naked, and clothed thee?" + }, + { + "nr": "39", + "text": "Or when saw we thee sick, or in prison, and came unto thee?" + }, + { + "nr": "40", + "text": "And the King shall answer and say unto them, Verily I say unto you, Inasmuch as ye have done it unto one of the least of these my brethren, ye have done it unto me." + }, + { + "nr": "41", + "text": "Then shall he say also unto them on the left hand, Depart from me, ye cursed, into everlasting fire, prepared for the devil and his angels:" + }, + { + "nr": "42", + "text": "For I was an hungred, and ye gave me no meat: I was thirsty, and ye gave me no drink:" + }, + { + "nr": "43", + "text": "I was a stranger, and ye took me not in: naked, and ye clothed me not: sick, and in prison, and ye visited me not." + }, + { + "nr": "44", + "text": "Then shall they also answer him, saying, Lord, when saw we thee an hungred, or athirst, or a stranger, or naked, or sick, or in prison, and did not minister unto thee?" + }, + { + "nr": "45", + "text": "Then shall he answer them, saying, Verily I say unto you, Inasmuch as ye did it not to one of the least of these, ye did it not to me." + }, + { + "nr": "46", + "text": "And these shall go away into everlasting punishment: but the righteous into life eternal. " + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/13/23/scripture.md b/scripture/kjv/04/13/23/scripture.md new file mode 100644 index 00000000..db632645 --- /dev/null +++ b/scripture/kjv/04/13/23/scripture.md @@ -0,0 +1,5 @@ +**Matthew 25:33-46** + +33 And he shall set the sheep on his right hand, but the goats on the left. 34 Then shall the King say unto them on his right hand, Come, ye blessed of my Father, inherit the kingdom prepared for you from the foundation of the world: 35 For I was an hungred, and ye gave me meat: I was thirsty, and ye gave me drink: I was a stranger, and ye took me in: 36 Naked, and ye clothed me: I was sick, and ye visited me: I was in prison, and ye came unto me. 37 Then shall the righteous answer him, saying, Lord, when saw we thee an hungred, and fed thee? or thirsty, and gave thee drink? 38 When saw we thee a stranger, and took thee in? or naked, and clothed thee? 39 Or when saw we thee sick, or in prison, and came unto thee? 40 And the King shall answer and say unto them, Verily I say unto you, Inasmuch as ye have done it unto one of the least of these my brethren, ye have done it unto me. 41 Then shall he say also unto them on the left hand, Depart from me, ye cursed, into everlasting fire, prepared for the devil and his angels: 42 For I was an hungred, and ye gave me no meat: I was thirsty, and ye gave me no drink: 43 I was a stranger, and ye took me not in: naked, and ye clothed me not: sick, and in prison, and ye visited me not. 44 Then shall they also answer him, saying, Lord, when saw we thee an hungred, or athirst, or a stranger, or naked, or sick, or in prison, and did not minister unto thee? 45 Then shall he answer them, saying, Verily I say unto you, Inasmuch as ye did it not to one of the least of these, ye did it not to me. 46 And these shall go away into everlasting punishment: but the righteous into life eternal. + +[Thursday 13-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/13/23/scripture.tg b/scripture/kjv/04/13/23/scripture.tg new file mode 100644 index 00000000..91ea2921 --- /dev/null +++ b/scripture/kjv/04/13/23/scripture.tg @@ -0,0 +1,4 @@ +Matthew 25:33-46 +33 And he shall set the sheep on his right hand, but the goats on the left. 34 Then shall the King say unto them on his right hand, Come, ye blessed of my Father, inherit the kingdom prepared for you from the foundation of the world: 35 For I was an hungred, and ye gave me meat: I was thirsty, and ye gave me drink: I was a stranger, and ye took me in: 36 Naked, and ye clothed me: I was sick, and ye visited me: I was in prison, and ye came unto me. 37 Then shall the righteous answer him, saying, Lord, when saw we thee an hungred, and fed thee? or thirsty, and gave thee drink? 38 When saw we thee a stranger, and took thee in? or naked, and clothed thee? 39 Or when saw we thee sick, or in prison, and came unto thee? 40 And the King shall answer and say unto them, Verily I say unto you, Inasmuch as ye have done it unto one of the least of these my brethren, ye have done it unto me. 41 Then shall he say also unto them on the left hand, Depart from me, ye cursed, into everlasting fire, prepared for the devil and his angels: 42 For I was an hungred, and ye gave me no meat: I was thirsty, and ye gave me no drink: 43 I was a stranger, and ye took me not in: naked, and ye clothed me not: sick, and in prison, and ye visited me not. 44 Then shall they also answer him, saying, Lord, when saw we thee an hungred, or athirst, or a stranger, or naked, or sick, or in prison, and did not minister unto thee? 45 Then shall he answer them, saying, Verily I say unto you, Inasmuch as ye did it not to one of the least of these, ye did it not to me. 46 And these shall go away into everlasting punishment: but the righteous into life eternal. + +Thursday 13-April, 2023 diff --git a/scripture/kjv/04/13/23/scripture.tg.id b/scripture/kjv/04/13/23/scripture.tg.id new file mode 100644 index 00000000..ad2b6c57 --- /dev/null +++ b/scripture/kjv/04/13/23/scripture.tg.id @@ -0,0 +1 @@ +915 diff --git a/scripture/kjv/04/13/23/scripture.today b/scripture/kjv/04/13/23/scripture.today new file mode 100644 index 00000000..344a813a --- /dev/null +++ b/scripture/kjv/04/13/23/scripture.today @@ -0,0 +1 @@ +40 25:33-46 diff --git a/scripture/kjv/04/13/24/scripture.html b/scripture/kjv/04/13/24/scripture.html new file mode 100644 index 00000000..0fabe0a6 --- /dev/null +++ b/scripture/kjv/04/13/24/scripture.html @@ -0,0 +1,3 @@ +Revelation 20:12
+12 And I saw the dead, small and great, stand before God; and the books were opened: and another book was opened, which is the book of life: and the dead were judged out of those things which were written in the books, according to their works.

+Saturday 13-April, 2024 diff --git a/scripture/kjv/04/13/24/scripture.json b/scripture/kjv/04/13/24/scripture.json new file mode 100644 index 00000000..5b856db5 --- /dev/null +++ b/scripture/kjv/04/13/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Revelation", + "chapter": "20", + "date": "Saturday 13-April, 2024", + "getbible": "https://getbible.life/kjv/Revelation/20/12", + "name": "Revelation 20:12", + "scripture": [ + { + "nr": "12", + "text": "And I saw the dead, small and great, stand before God; and the books were opened: and another book was opened, which is the book of life: and the dead were judged out of those things which were written in the books, according to their works." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/04/13/24/scripture.md b/scripture/kjv/04/13/24/scripture.md new file mode 100644 index 00000000..acf2d26e --- /dev/null +++ b/scripture/kjv/04/13/24/scripture.md @@ -0,0 +1,5 @@ +**Revelation 20:12** + +12 And I saw the dead, small and great, stand before God; and the books were opened: and another book was opened, which is the book of life: and the dead were judged out of those things which were written in the books, according to their works. + +[Saturday 13-April, 2024](https://getbible.life/kjv/Revelation/20/12) diff --git a/scripture/kjv/04/13/24/scripture.tg b/scripture/kjv/04/13/24/scripture.tg new file mode 100644 index 00000000..b52f0019 --- /dev/null +++ b/scripture/kjv/04/13/24/scripture.tg @@ -0,0 +1,4 @@ +Revelation 20:12 +12 And I saw the dead, small and great, stand before God; and the books were opened: and another book was opened, which is the book of life: and the dead were judged out of those things which were written in the books, according to their works. + +Saturday 13-April, 2024 diff --git a/scripture/kjv/04/13/24/scripture.tg.id b/scripture/kjv/04/13/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/13/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/13/24/scripture.today b/scripture/kjv/04/13/24/scripture.today new file mode 100644 index 00000000..96353361 --- /dev/null +++ b/scripture/kjv/04/13/24/scripture.today @@ -0,0 +1 @@ +66 20:12 diff --git a/scripture/kjv/04/13/25/scripture.html b/scripture/kjv/04/13/25/scripture.html new file mode 100644 index 00000000..f55501f5 --- /dev/null +++ b/scripture/kjv/04/13/25/scripture.html @@ -0,0 +1,3 @@ +Lamentations 3:39-40
+39 Wherefore doth a living man complain, a man for the punishment of his sins? 40 Let us search and try our ways, and turn again to the Lord.

+Sunday 13-April, 2025 diff --git a/scripture/kjv/04/13/25/scripture.json b/scripture/kjv/04/13/25/scripture.json new file mode 100644 index 00000000..4213311f --- /dev/null +++ b/scripture/kjv/04/13/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Lamentations", + "chapter": "3", + "date": "Sunday 13-April, 2025", + "getbible": "https://getbible.life/kjv/Lamentations/3/39-40", + "name": "Lamentations 3:39-40", + "scripture": [ + { + "nr": "39", + "text": "Wherefore doth a living man complain, a man for the punishment of his sins?" + }, + { + "nr": "40", + "text": "Let us search and try our ways, and turn again to the Lord." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "39-40", + "version": "kjv" +} diff --git a/scripture/kjv/04/13/25/scripture.md b/scripture/kjv/04/13/25/scripture.md new file mode 100644 index 00000000..f56b665c --- /dev/null +++ b/scripture/kjv/04/13/25/scripture.md @@ -0,0 +1,5 @@ +**Lamentations 3:39-40** + +39 Wherefore doth a living man complain, a man for the punishment of his sins? 40 Let us search and try our ways, and turn again to the Lord. + +[Sunday 13-April, 2025](https://getbible.life/kjv/Lamentations/3/39-40) diff --git a/scripture/kjv/04/13/25/scripture.tg b/scripture/kjv/04/13/25/scripture.tg new file mode 100644 index 00000000..278ef5fd --- /dev/null +++ b/scripture/kjv/04/13/25/scripture.tg @@ -0,0 +1,4 @@ +Lamentations 3:39-40 +39 Wherefore doth a living man complain, a man for the punishment of his sins? 40 Let us search and try our ways, and turn again to the Lord. + +Sunday 13-April, 2025 diff --git a/scripture/kjv/04/13/25/scripture.tg.id b/scripture/kjv/04/13/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/13/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/13/25/scripture.today b/scripture/kjv/04/13/25/scripture.today new file mode 100644 index 00000000..854ede22 --- /dev/null +++ b/scripture/kjv/04/13/25/scripture.today @@ -0,0 +1 @@ +25 3:39-40 diff --git a/scripture/kjv/04/13/26/scripture.html b/scripture/kjv/04/13/26/scripture.html new file mode 100644 index 00000000..551de6ca --- /dev/null +++ b/scripture/kjv/04/13/26/scripture.html @@ -0,0 +1,3 @@ +Psalms 104:35
+35 Let the sinners be consumed out of the earth, and let the wicked be no more. Bless thou the Lord, O my soul. Praise ye the Lord.

+Monday 13-April, 2026 diff --git a/scripture/kjv/04/13/26/scripture.json b/scripture/kjv/04/13/26/scripture.json new file mode 100644 index 00000000..2ad64e09 --- /dev/null +++ b/scripture/kjv/04/13/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "104", + "date": "Monday 13-April, 2026", + "getbible": "https://getbible.life/kjv/Psalms/104/35", + "name": "Psalms 104:35", + "scripture": [ + { + "nr": "35", + "text": "Let the sinners be consumed out of the earth, and let the wicked be no more. Bless thou the Lord, O my soul. Praise ye the Lord. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "35", + "version": "kjv" +} diff --git a/scripture/kjv/04/13/26/scripture.md b/scripture/kjv/04/13/26/scripture.md new file mode 100644 index 00000000..8f266870 --- /dev/null +++ b/scripture/kjv/04/13/26/scripture.md @@ -0,0 +1,5 @@ +**Psalms 104:35** + +35 Let the sinners be consumed out of the earth, and let the wicked be no more. Bless thou the Lord, O my soul. Praise ye the Lord. + +[Monday 13-April, 2026](https://getbible.life/kjv/Psalms/104/35) diff --git a/scripture/kjv/04/13/26/scripture.tg b/scripture/kjv/04/13/26/scripture.tg new file mode 100644 index 00000000..30886d74 --- /dev/null +++ b/scripture/kjv/04/13/26/scripture.tg @@ -0,0 +1,4 @@ +Psalms 104:35 +35 Let the sinners be consumed out of the earth, and let the wicked be no more. Bless thou the Lord, O my soul. Praise ye the Lord. + +Monday 13-April, 2026 diff --git a/scripture/kjv/04/13/26/scripture.tg.id b/scripture/kjv/04/13/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/13/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/13/26/scripture.today b/scripture/kjv/04/13/26/scripture.today new file mode 100644 index 00000000..44348b37 --- /dev/null +++ b/scripture/kjv/04/13/26/scripture.today @@ -0,0 +1 @@ +19 104:35 diff --git a/scripture/kjv/04/14/23/scripture.html b/scripture/kjv/04/14/23/scripture.html new file mode 100644 index 00000000..5387984f --- /dev/null +++ b/scripture/kjv/04/14/23/scripture.html @@ -0,0 +1,3 @@ +Matthew 25:1-13
+1 Then shall the kingdom of heaven be likened unto ten virgins, which took their lamps, and went forth to meet the bridegroom. 2 And five of them were wise, and five were foolish. 3 They that were foolish took their lamps, and took no oil with them: 4 But the wise took oil in their vessels with their lamps. 5 While the bridegroom tarried, they all slumbered and slept. 6 And at midnight there was a cry made, Behold, the bridegroom cometh; go ye out to meet him. 7 Then all those virgins arose, and trimmed their lamps. 8 And the foolish said unto the wise, Give us of your oil; for our lamps are gone out. 9 But the wise answered, saying, Not so; lest there be not enough for us and you: but go ye rather to them that sell, and buy for yourselves. 10 And while they went to buy, the bridegroom came; and they that were ready went in with him to the marriage: and the door was shut. 11 Afterward came also the other virgins, saying, Lord, Lord, open to us. 12 But he answered and said, Verily I say unto you, I know you not. 13 Watch therefore, for ye know neither the day nor the hour wherein the Son of man cometh.

+Friday 14-April, 2023 diff --git a/scripture/kjv/04/14/23/scripture.json b/scripture/kjv/04/14/23/scripture.json new file mode 100644 index 00000000..cdc249c5 --- /dev/null +++ b/scripture/kjv/04/14/23/scripture.json @@ -0,0 +1,61 @@ +{ + "date": "Friday 14-April, 2023", + "name": "Matthew 25:1-13", + "scripture": [ + { + "nr": "1", + "text": "Then shall the kingdom of heaven be likened unto ten virgins, which took their lamps, and went forth to meet the bridegroom." + }, + { + "nr": "2", + "text": "And five of them were wise, and five were foolish." + }, + { + "nr": "3", + "text": "They that were foolish took their lamps, and took no oil with them:" + }, + { + "nr": "4", + "text": "But the wise took oil in their vessels with their lamps." + }, + { + "nr": "5", + "text": "While the bridegroom tarried, they all slumbered and slept." + }, + { + "nr": "6", + "text": "And at midnight there was a cry made, Behold, the bridegroom cometh; go ye out to meet him." + }, + { + "nr": "7", + "text": "Then all those virgins arose, and trimmed their lamps." + }, + { + "nr": "8", + "text": "And the foolish said unto the wise, Give us of your oil; for our lamps are gone out." + }, + { + "nr": "9", + "text": "But the wise answered, saying, Not so; lest there be not enough for us and you: but go ye rather to them that sell, and buy for yourselves." + }, + { + "nr": "10", + "text": "And while they went to buy, the bridegroom came; and they that were ready went in with him to the marriage: and the door was shut." + }, + { + "nr": "11", + "text": "Afterward came also the other virgins, saying, Lord, Lord, open to us." + }, + { + "nr": "12", + "text": "But he answered and said, Verily I say unto you, I know you not." + }, + { + "nr": "13", + "text": "Watch therefore, for ye know neither the day nor the hour wherein the Son of man cometh." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/14/23/scripture.md b/scripture/kjv/04/14/23/scripture.md new file mode 100644 index 00000000..8f8fe4ae --- /dev/null +++ b/scripture/kjv/04/14/23/scripture.md @@ -0,0 +1,5 @@ +**Matthew 25:1-13** + +1 Then shall the kingdom of heaven be likened unto ten virgins, which took their lamps, and went forth to meet the bridegroom. 2 And five of them were wise, and five were foolish. 3 They that were foolish took their lamps, and took no oil with them: 4 But the wise took oil in their vessels with their lamps. 5 While the bridegroom tarried, they all slumbered and slept. 6 And at midnight there was a cry made, Behold, the bridegroom cometh; go ye out to meet him. 7 Then all those virgins arose, and trimmed their lamps. 8 And the foolish said unto the wise, Give us of your oil; for our lamps are gone out. 9 But the wise answered, saying, Not so; lest there be not enough for us and you: but go ye rather to them that sell, and buy for yourselves. 10 And while they went to buy, the bridegroom came; and they that were ready went in with him to the marriage: and the door was shut. 11 Afterward came also the other virgins, saying, Lord, Lord, open to us. 12 But he answered and said, Verily I say unto you, I know you not. 13 Watch therefore, for ye know neither the day nor the hour wherein the Son of man cometh. + +[Friday 14-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/14/23/scripture.tg b/scripture/kjv/04/14/23/scripture.tg new file mode 100644 index 00000000..29d69d43 --- /dev/null +++ b/scripture/kjv/04/14/23/scripture.tg @@ -0,0 +1,4 @@ +Matthew 25:1-13 +1 Then shall the kingdom of heaven be likened unto ten virgins, which took their lamps, and went forth to meet the bridegroom. 2 And five of them were wise, and five were foolish. 3 They that were foolish took their lamps, and took no oil with them: 4 But the wise took oil in their vessels with their lamps. 5 While the bridegroom tarried, they all slumbered and slept. 6 And at midnight there was a cry made, Behold, the bridegroom cometh; go ye out to meet him. 7 Then all those virgins arose, and trimmed their lamps. 8 And the foolish said unto the wise, Give us of your oil; for our lamps are gone out. 9 But the wise answered, saying, Not so; lest there be not enough for us and you: but go ye rather to them that sell, and buy for yourselves. 10 And while they went to buy, the bridegroom came; and they that were ready went in with him to the marriage: and the door was shut. 11 Afterward came also the other virgins, saying, Lord, Lord, open to us. 12 But he answered and said, Verily I say unto you, I know you not. 13 Watch therefore, for ye know neither the day nor the hour wherein the Son of man cometh. + +Friday 14-April, 2023 diff --git a/scripture/kjv/04/14/23/scripture.tg.id b/scripture/kjv/04/14/23/scripture.tg.id new file mode 100644 index 00000000..f0a9f26f --- /dev/null +++ b/scripture/kjv/04/14/23/scripture.tg.id @@ -0,0 +1 @@ +916 diff --git a/scripture/kjv/04/14/23/scripture.today b/scripture/kjv/04/14/23/scripture.today new file mode 100644 index 00000000..eeaea694 --- /dev/null +++ b/scripture/kjv/04/14/23/scripture.today @@ -0,0 +1 @@ +40 25:1-13 diff --git a/scripture/kjv/04/14/24/scripture.html b/scripture/kjv/04/14/24/scripture.html new file mode 100644 index 00000000..40246f47 --- /dev/null +++ b/scripture/kjv/04/14/24/scripture.html @@ -0,0 +1,3 @@ +John 16:14
+14 He shall glorify me: for he shall receive of mine, and shall shew it unto you.

+Sunday 14-April, 2024 diff --git a/scripture/kjv/04/14/24/scripture.json b/scripture/kjv/04/14/24/scripture.json new file mode 100644 index 00000000..91d1d57a --- /dev/null +++ b/scripture/kjv/04/14/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "16", + "date": "Sunday 14-April, 2024", + "getbible": "https://getbible.life/kjv/John/16/14", + "name": "John 16:14", + "scripture": [ + { + "nr": "14", + "text": "He shall glorify me: for he shall receive of mine, and shall shew it unto you." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/04/14/24/scripture.md b/scripture/kjv/04/14/24/scripture.md new file mode 100644 index 00000000..bfaa2c55 --- /dev/null +++ b/scripture/kjv/04/14/24/scripture.md @@ -0,0 +1,5 @@ +**John 16:14** + +14 He shall glorify me: for he shall receive of mine, and shall shew it unto you. + +[Sunday 14-April, 2024](https://getbible.life/kjv/John/16/14) diff --git a/scripture/kjv/04/14/24/scripture.tg b/scripture/kjv/04/14/24/scripture.tg new file mode 100644 index 00000000..594e75a2 --- /dev/null +++ b/scripture/kjv/04/14/24/scripture.tg @@ -0,0 +1,4 @@ +John 16:14 +14 He shall glorify me: for he shall receive of mine, and shall shew it unto you. + +Sunday 14-April, 2024 diff --git a/scripture/kjv/04/14/24/scripture.today b/scripture/kjv/04/14/24/scripture.today new file mode 100644 index 00000000..15b7c753 --- /dev/null +++ b/scripture/kjv/04/14/24/scripture.today @@ -0,0 +1 @@ +43 16:14 diff --git a/scripture/kjv/04/14/25/scripture.html b/scripture/kjv/04/14/25/scripture.html new file mode 100644 index 00000000..8b049991 --- /dev/null +++ b/scripture/kjv/04/14/25/scripture.html @@ -0,0 +1,3 @@ +Romans 2:1
+1 Therefore thou art inexcusable, O man, whosoever thou art that judgest: for wherein thou judgest another, thou condemnest thyself; for thou that judgest doest the same things.

+Monday 14-April, 2025 diff --git a/scripture/kjv/04/14/25/scripture.json b/scripture/kjv/04/14/25/scripture.json new file mode 100644 index 00000000..bdc66f44 --- /dev/null +++ b/scripture/kjv/04/14/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Romans", + "chapter": "2", + "date": "Monday 14-April, 2025", + "getbible": "https://getbible.life/kjv/Romans/2/1", + "name": "Romans 2:1", + "scripture": [ + { + "nr": "1", + "text": "Therefore thou art inexcusable, O man, whosoever thou art that judgest: for wherein thou judgest another, thou condemnest thyself; for thou that judgest doest the same things." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1", + "version": "kjv" +} diff --git a/scripture/kjv/04/14/25/scripture.md b/scripture/kjv/04/14/25/scripture.md new file mode 100644 index 00000000..d5870e84 --- /dev/null +++ b/scripture/kjv/04/14/25/scripture.md @@ -0,0 +1,5 @@ +**Romans 2:1** + +1 Therefore thou art inexcusable, O man, whosoever thou art that judgest: for wherein thou judgest another, thou condemnest thyself; for thou that judgest doest the same things. + +[Monday 14-April, 2025](https://getbible.life/kjv/Romans/2/1) diff --git a/scripture/kjv/04/14/25/scripture.tg b/scripture/kjv/04/14/25/scripture.tg new file mode 100644 index 00000000..d82dae32 --- /dev/null +++ b/scripture/kjv/04/14/25/scripture.tg @@ -0,0 +1,4 @@ +Romans 2:1 +1 Therefore thou art inexcusable, O man, whosoever thou art that judgest: for wherein thou judgest another, thou condemnest thyself; for thou that judgest doest the same things. + +Monday 14-April, 2025 diff --git a/scripture/kjv/04/14/25/scripture.tg.id b/scripture/kjv/04/14/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/14/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/14/25/scripture.today b/scripture/kjv/04/14/25/scripture.today new file mode 100644 index 00000000..e72d20e9 --- /dev/null +++ b/scripture/kjv/04/14/25/scripture.today @@ -0,0 +1 @@ +45 2:1 diff --git a/scripture/kjv/04/14/26/scripture.html b/scripture/kjv/04/14/26/scripture.html new file mode 100644 index 00000000..f4f9ce0d --- /dev/null +++ b/scripture/kjv/04/14/26/scripture.html @@ -0,0 +1,3 @@ +John 6:39
+39 And this is the Father’s will which hath sent me, that of all which he hath given me I should lose nothing, but should raise it up again at the last day.

+Tuesday 14-April, 2026 diff --git a/scripture/kjv/04/14/26/scripture.json b/scripture/kjv/04/14/26/scripture.json new file mode 100644 index 00000000..9f3b91c5 --- /dev/null +++ b/scripture/kjv/04/14/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "6", + "date": "Tuesday 14-April, 2026", + "getbible": "https://getbible.life/kjv/John/6/39", + "name": "John 6:39", + "scripture": [ + { + "nr": "39", + "text": "And this is the Father’s will which hath sent me, that of all which he hath given me I should lose nothing, but should raise it up again at the last day." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "39", + "version": "kjv" +} diff --git a/scripture/kjv/04/14/26/scripture.md b/scripture/kjv/04/14/26/scripture.md new file mode 100644 index 00000000..2c1703cb --- /dev/null +++ b/scripture/kjv/04/14/26/scripture.md @@ -0,0 +1,5 @@ +**John 6:39** + +39 And this is the Father’s will which hath sent me, that of all which he hath given me I should lose nothing, but should raise it up again at the last day. + +[Tuesday 14-April, 2026](https://getbible.life/kjv/John/6/39) diff --git a/scripture/kjv/04/14/26/scripture.tg b/scripture/kjv/04/14/26/scripture.tg new file mode 100644 index 00000000..9126cc5c --- /dev/null +++ b/scripture/kjv/04/14/26/scripture.tg @@ -0,0 +1,4 @@ +John 6:39 +39 And this is the Father’s will which hath sent me, that of all which he hath given me I should lose nothing, but should raise it up again at the last day. + +Tuesday 14-April, 2026 diff --git a/scripture/kjv/04/14/26/scripture.tg.id b/scripture/kjv/04/14/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/14/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/14/26/scripture.today b/scripture/kjv/04/14/26/scripture.today new file mode 100644 index 00000000..ea88c1aa --- /dev/null +++ b/scripture/kjv/04/14/26/scripture.today @@ -0,0 +1 @@ +43 6:39 diff --git a/scripture/kjv/04/15/23/scripture.html b/scripture/kjv/04/15/23/scripture.html new file mode 100644 index 00000000..d4817681 --- /dev/null +++ b/scripture/kjv/04/15/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 16:2-3
+2 O my soul, thou hast said unto the Lord, Thou art my Lord: my goodness extendeth not to thee; 3 But to the saints that are in the earth, and to the excellent, in whom is all my delight.

+Saturday 15-April, 2023 diff --git a/scripture/kjv/04/15/23/scripture.json b/scripture/kjv/04/15/23/scripture.json new file mode 100644 index 00000000..8a6b2387 --- /dev/null +++ b/scripture/kjv/04/15/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Saturday 15-April, 2023", + "name": "Psalms 16:2-3", + "scripture": [ + { + "nr": "2", + "text": "O my soul, thou hast said unto the Lord, Thou art my Lord: my goodness extendeth not to thee;" + }, + { + "nr": "3", + "text": "But to the saints that are in the earth, and to the excellent, in whom is all my delight." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/15/23/scripture.md b/scripture/kjv/04/15/23/scripture.md new file mode 100644 index 00000000..f8cf5c22 --- /dev/null +++ b/scripture/kjv/04/15/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 16:2-3** + +2 O my soul, thou hast said unto the Lord, Thou art my Lord: my goodness extendeth not to thee; 3 But to the saints that are in the earth, and to the excellent, in whom is all my delight. + +[Saturday 15-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/15/23/scripture.tg b/scripture/kjv/04/15/23/scripture.tg new file mode 100644 index 00000000..d141f5f4 --- /dev/null +++ b/scripture/kjv/04/15/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 16:2-3 +2 O my soul, thou hast said unto the Lord, Thou art my Lord: my goodness extendeth not to thee; 3 But to the saints that are in the earth, and to the excellent, in whom is all my delight. + +Saturday 15-April, 2023 diff --git a/scripture/kjv/04/15/23/scripture.tg.id b/scripture/kjv/04/15/23/scripture.tg.id new file mode 100644 index 00000000..cdfbfefd --- /dev/null +++ b/scripture/kjv/04/15/23/scripture.tg.id @@ -0,0 +1 @@ +917 diff --git a/scripture/kjv/04/15/23/scripture.today b/scripture/kjv/04/15/23/scripture.today new file mode 100644 index 00000000..369f6ee7 --- /dev/null +++ b/scripture/kjv/04/15/23/scripture.today @@ -0,0 +1 @@ +19 16:2-3 diff --git a/scripture/kjv/04/15/24/scripture.html b/scripture/kjv/04/15/24/scripture.html new file mode 100644 index 00000000..b3ae4ce4 --- /dev/null +++ b/scripture/kjv/04/15/24/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 3:12
+12 Seeing then that we have such hope, we use great plainness of speech:

+Monday 15-April, 2024 diff --git a/scripture/kjv/04/15/24/scripture.json b/scripture/kjv/04/15/24/scripture.json new file mode 100644 index 00000000..a782bc22 --- /dev/null +++ b/scripture/kjv/04/15/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "3", + "date": "Monday 15-April, 2024", + "getbible": "https://getbible.life/kjv/2 Corinthians/3/12", + "name": "2 Corinthians 3:12", + "scripture": [ + { + "nr": "12", + "text": "Seeing then that we have such hope, we use great plainness of speech:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/04/15/24/scripture.md b/scripture/kjv/04/15/24/scripture.md new file mode 100644 index 00000000..829c2cf2 --- /dev/null +++ b/scripture/kjv/04/15/24/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 3:12** + +12 Seeing then that we have such hope, we use great plainness of speech: + +[Monday 15-April, 2024](https://getbible.life/kjv/2 Corinthians/3/12) diff --git a/scripture/kjv/04/15/24/scripture.tg b/scripture/kjv/04/15/24/scripture.tg new file mode 100644 index 00000000..240240a2 --- /dev/null +++ b/scripture/kjv/04/15/24/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 3:12 +12 Seeing then that we have such hope, we use great plainness of speech: + +Monday 15-April, 2024 diff --git a/scripture/kjv/04/15/24/scripture.tg.id b/scripture/kjv/04/15/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/15/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/15/24/scripture.today b/scripture/kjv/04/15/24/scripture.today new file mode 100644 index 00000000..b939e36b --- /dev/null +++ b/scripture/kjv/04/15/24/scripture.today @@ -0,0 +1 @@ +47 3:12 diff --git a/scripture/kjv/04/15/25/scripture.html b/scripture/kjv/04/15/25/scripture.html new file mode 100644 index 00000000..50cff259 --- /dev/null +++ b/scripture/kjv/04/15/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 95:6
+6 O come, let us worship and bow down: let us kneel before the Lord our maker.

+Tuesday 15-April, 2025 diff --git a/scripture/kjv/04/15/25/scripture.json b/scripture/kjv/04/15/25/scripture.json new file mode 100644 index 00000000..fb8cff3b --- /dev/null +++ b/scripture/kjv/04/15/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "95", + "date": "Tuesday 15-April, 2025", + "getbible": "https://getbible.life/kjv/Psalms/95/6", + "name": "Psalms 95:6", + "scripture": [ + { + "nr": "6", + "text": "O come, let us worship and bow down: let us kneel before the Lord our maker." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6", + "version": "kjv" +} diff --git a/scripture/kjv/04/15/25/scripture.md b/scripture/kjv/04/15/25/scripture.md new file mode 100644 index 00000000..c617b9bd --- /dev/null +++ b/scripture/kjv/04/15/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 95:6** + +6 O come, let us worship and bow down: let us kneel before the Lord our maker. + +[Tuesday 15-April, 2025](https://getbible.life/kjv/Psalms/95/6) diff --git a/scripture/kjv/04/15/25/scripture.tg b/scripture/kjv/04/15/25/scripture.tg new file mode 100644 index 00000000..4e85f34e --- /dev/null +++ b/scripture/kjv/04/15/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 95:6 +6 O come, let us worship and bow down: let us kneel before the Lord our maker. + +Tuesday 15-April, 2025 diff --git a/scripture/kjv/04/15/25/scripture.tg.id b/scripture/kjv/04/15/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/15/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/15/25/scripture.today b/scripture/kjv/04/15/25/scripture.today new file mode 100644 index 00000000..c03a8ecc --- /dev/null +++ b/scripture/kjv/04/15/25/scripture.today @@ -0,0 +1 @@ +19 95:6 diff --git a/scripture/kjv/04/15/26/scripture.html b/scripture/kjv/04/15/26/scripture.html new file mode 100644 index 00000000..d247d597 --- /dev/null +++ b/scripture/kjv/04/15/26/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 47:12
+12 And by the river upon the bank thereof, on this side and on that side, shall grow all trees for meat, whose leaf shall not fade, neither shall the fruit thereof be consumed: it shall bring forth new fruit according to his months, because their waters they issued out of the sanctuary: and the fruit thereof shall be for meat, and the leaf thereof for medicine.

+Wednesday 15-April, 2026 diff --git a/scripture/kjv/04/15/26/scripture.json b/scripture/kjv/04/15/26/scripture.json new file mode 100644 index 00000000..57d0549e --- /dev/null +++ b/scripture/kjv/04/15/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ezekiel", + "chapter": "47", + "date": "Wednesday 15-April, 2026", + "getbible": "https://getbible.life/kjv/Ezekiel/47/12", + "name": "Ezekiel 47:12", + "scripture": [ + { + "nr": "12", + "text": "And by the river upon the bank thereof, on this side and on that side, shall grow all trees for meat, whose leaf shall not fade, neither shall the fruit thereof be consumed: it shall bring forth new fruit according to his months, because their waters they issued out of the sanctuary: and the fruit thereof shall be for meat, and the leaf thereof for medicine." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/04/15/26/scripture.md b/scripture/kjv/04/15/26/scripture.md new file mode 100644 index 00000000..cdef018a --- /dev/null +++ b/scripture/kjv/04/15/26/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 47:12** + +12 And by the river upon the bank thereof, on this side and on that side, shall grow all trees for meat, whose leaf shall not fade, neither shall the fruit thereof be consumed: it shall bring forth new fruit according to his months, because their waters they issued out of the sanctuary: and the fruit thereof shall be for meat, and the leaf thereof for medicine. + +[Wednesday 15-April, 2026](https://getbible.life/kjv/Ezekiel/47/12) diff --git a/scripture/kjv/04/15/26/scripture.tg b/scripture/kjv/04/15/26/scripture.tg new file mode 100644 index 00000000..35295858 --- /dev/null +++ b/scripture/kjv/04/15/26/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 47:12 +12 And by the river upon the bank thereof, on this side and on that side, shall grow all trees for meat, whose leaf shall not fade, neither shall the fruit thereof be consumed: it shall bring forth new fruit according to his months, because their waters they issued out of the sanctuary: and the fruit thereof shall be for meat, and the leaf thereof for medicine. + +Wednesday 15-April, 2026 diff --git a/scripture/kjv/04/15/26/scripture.tg.id b/scripture/kjv/04/15/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/15/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/15/26/scripture.today b/scripture/kjv/04/15/26/scripture.today new file mode 100644 index 00000000..07c1ebbb --- /dev/null +++ b/scripture/kjv/04/15/26/scripture.today @@ -0,0 +1 @@ +26 47:12 diff --git a/scripture/kjv/04/16/23/scripture.html b/scripture/kjv/04/16/23/scripture.html new file mode 100644 index 00000000..072dfdac --- /dev/null +++ b/scripture/kjv/04/16/23/scripture.html @@ -0,0 +1,3 @@ +Jeremiah 7:9-11
+9 Will ye steal, murder, and commit adultery, and swear falsely, and burn incense unto Baal, and walk after other gods whom ye know not; 10 And come and stand before me in this house, which is called by my name, and say, We are delivered to do all these abominations? 11 Is this house, which is called by my name, become a den of robbers in your eyes? Behold, even I have seen it, saith the Lord.

+Sunday 16-April, 2023 diff --git a/scripture/kjv/04/16/23/scripture.json b/scripture/kjv/04/16/23/scripture.json new file mode 100644 index 00000000..62ce687a --- /dev/null +++ b/scripture/kjv/04/16/23/scripture.json @@ -0,0 +1,21 @@ +{ + "date": "Sunday 16-April, 2023", + "name": "Jeremiah 7:9-11", + "scripture": [ + { + "nr": "9", + "text": "Will ye steal, murder, and commit adultery, and swear falsely, and burn incense unto Baal, and walk after other gods whom ye know not;" + }, + { + "nr": "10", + "text": "And come and stand before me in this house, which is called by my name, and say, We are delivered to do all these abominations?" + }, + { + "nr": "11", + "text": "Is this house, which is called by my name, become a den of robbers in your eyes? Behold, even I have seen it, saith the Lord." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/16/23/scripture.md b/scripture/kjv/04/16/23/scripture.md new file mode 100644 index 00000000..41ad8a54 --- /dev/null +++ b/scripture/kjv/04/16/23/scripture.md @@ -0,0 +1,5 @@ +**Jeremiah 7:9-11** + +9 Will ye steal, murder, and commit adultery, and swear falsely, and burn incense unto Baal, and walk after other gods whom ye know not; 10 And come and stand before me in this house, which is called by my name, and say, We are delivered to do all these abominations? 11 Is this house, which is called by my name, become a den of robbers in your eyes? Behold, even I have seen it, saith the Lord. + +[Sunday 16-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/16/23/scripture.tg b/scripture/kjv/04/16/23/scripture.tg new file mode 100644 index 00000000..9005c7e1 --- /dev/null +++ b/scripture/kjv/04/16/23/scripture.tg @@ -0,0 +1,4 @@ +Jeremiah 7:9-11 +9 Will ye steal, murder, and commit adultery, and swear falsely, and burn incense unto Baal, and walk after other gods whom ye know not; 10 And come and stand before me in this house, which is called by my name, and say, We are delivered to do all these abominations? 11 Is this house, which is called by my name, become a den of robbers in your eyes? Behold, even I have seen it, saith the Lord. + +Sunday 16-April, 2023 diff --git a/scripture/kjv/04/16/23/scripture.tg.id b/scripture/kjv/04/16/23/scripture.tg.id new file mode 100644 index 00000000..6a21a128 --- /dev/null +++ b/scripture/kjv/04/16/23/scripture.tg.id @@ -0,0 +1 @@ +918 diff --git a/scripture/kjv/04/16/23/scripture.today b/scripture/kjv/04/16/23/scripture.today new file mode 100644 index 00000000..a26774f9 --- /dev/null +++ b/scripture/kjv/04/16/23/scripture.today @@ -0,0 +1 @@ +24 7:9-11 diff --git a/scripture/kjv/04/16/24/scripture.html b/scripture/kjv/04/16/24/scripture.html new file mode 100644 index 00000000..46c17de1 --- /dev/null +++ b/scripture/kjv/04/16/24/scripture.html @@ -0,0 +1,3 @@ +1 Timothy 2:8
+8 I will therefore that men pray every where, lifting up holy hands, without wrath and doubting.

+Tuesday 16-April, 2024 diff --git a/scripture/kjv/04/16/24/scripture.json b/scripture/kjv/04/16/24/scripture.json new file mode 100644 index 00000000..cd2c930c --- /dev/null +++ b/scripture/kjv/04/16/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Timothy", + "chapter": "2", + "date": "Tuesday 16-April, 2024", + "getbible": "https://getbible.life/kjv/1 Timothy/2/8", + "name": "1 Timothy 2:8", + "scripture": [ + { + "nr": "8", + "text": "I will therefore that men pray every where, lifting up holy hands, without wrath and doubting." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8", + "version": "kjv" +} diff --git a/scripture/kjv/04/16/24/scripture.md b/scripture/kjv/04/16/24/scripture.md new file mode 100644 index 00000000..ceab6335 --- /dev/null +++ b/scripture/kjv/04/16/24/scripture.md @@ -0,0 +1,5 @@ +**1 Timothy 2:8** + +8 I will therefore that men pray every where, lifting up holy hands, without wrath and doubting. + +[Tuesday 16-April, 2024](https://getbible.life/kjv/1 Timothy/2/8) diff --git a/scripture/kjv/04/16/24/scripture.tg b/scripture/kjv/04/16/24/scripture.tg new file mode 100644 index 00000000..1666935e --- /dev/null +++ b/scripture/kjv/04/16/24/scripture.tg @@ -0,0 +1,4 @@ +1 Timothy 2:8 +8 I will therefore that men pray every where, lifting up holy hands, without wrath and doubting. + +Tuesday 16-April, 2024 diff --git a/scripture/kjv/04/16/24/scripture.tg.id b/scripture/kjv/04/16/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/16/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/16/24/scripture.today b/scripture/kjv/04/16/24/scripture.today new file mode 100644 index 00000000..f8d2a0e5 --- /dev/null +++ b/scripture/kjv/04/16/24/scripture.today @@ -0,0 +1 @@ +54 2:8 diff --git a/scripture/kjv/04/16/25/scripture.html b/scripture/kjv/04/16/25/scripture.html new file mode 100644 index 00000000..14edeae2 --- /dev/null +++ b/scripture/kjv/04/16/25/scripture.html @@ -0,0 +1,3 @@ +1 Timothy 1:14
+14 And the grace of our Lord was exceeding abundant with faith and love which is in Christ Jesus.

+Wednesday 16-April, 2025 diff --git a/scripture/kjv/04/16/25/scripture.json b/scripture/kjv/04/16/25/scripture.json new file mode 100644 index 00000000..276af816 --- /dev/null +++ b/scripture/kjv/04/16/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Timothy", + "chapter": "1", + "date": "Wednesday 16-April, 2025", + "getbible": "https://getbible.life/kjv/1 Timothy/1/14", + "name": "1 Timothy 1:14", + "scripture": [ + { + "nr": "14", + "text": "And the grace of our Lord was exceeding abundant with faith and love which is in Christ Jesus." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/04/16/25/scripture.md b/scripture/kjv/04/16/25/scripture.md new file mode 100644 index 00000000..54ff177a --- /dev/null +++ b/scripture/kjv/04/16/25/scripture.md @@ -0,0 +1,5 @@ +**1 Timothy 1:14** + +14 And the grace of our Lord was exceeding abundant with faith and love which is in Christ Jesus. + +[Wednesday 16-April, 2025](https://getbible.life/kjv/1 Timothy/1/14) diff --git a/scripture/kjv/04/16/25/scripture.tg b/scripture/kjv/04/16/25/scripture.tg new file mode 100644 index 00000000..7e65157f --- /dev/null +++ b/scripture/kjv/04/16/25/scripture.tg @@ -0,0 +1,4 @@ +1 Timothy 1:14 +14 And the grace of our Lord was exceeding abundant with faith and love which is in Christ Jesus. + +Wednesday 16-April, 2025 diff --git a/scripture/kjv/04/16/25/scripture.tg.id b/scripture/kjv/04/16/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/16/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/16/25/scripture.today b/scripture/kjv/04/16/25/scripture.today new file mode 100644 index 00000000..af4957cd --- /dev/null +++ b/scripture/kjv/04/16/25/scripture.today @@ -0,0 +1 @@ +54 1:14 diff --git a/scripture/kjv/04/16/26/scripture.html b/scripture/kjv/04/16/26/scripture.html new file mode 100644 index 00000000..a1243b4f --- /dev/null +++ b/scripture/kjv/04/16/26/scripture.html @@ -0,0 +1,3 @@ +2 Timothy 2:8
+8 Remember that Jesus Christ of the seed of David was raised from the dead according to my gospel:

+Thursday 16-April, 2026 diff --git a/scripture/kjv/04/16/26/scripture.json b/scripture/kjv/04/16/26/scripture.json new file mode 100644 index 00000000..6a72214a --- /dev/null +++ b/scripture/kjv/04/16/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Timothy", + "chapter": "2", + "date": "Thursday 16-April, 2026", + "getbible": "https://getbible.life/kjv/2 Timothy/2/8", + "name": "2 Timothy 2:8", + "scripture": [ + { + "nr": "8", + "text": "Remember that Jesus Christ of the seed of David was raised from the dead according to my gospel:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8", + "version": "kjv" +} diff --git a/scripture/kjv/04/16/26/scripture.md b/scripture/kjv/04/16/26/scripture.md new file mode 100644 index 00000000..897a878a --- /dev/null +++ b/scripture/kjv/04/16/26/scripture.md @@ -0,0 +1,5 @@ +**2 Timothy 2:8** + +8 Remember that Jesus Christ of the seed of David was raised from the dead according to my gospel: + +[Thursday 16-April, 2026](https://getbible.life/kjv/2 Timothy/2/8) diff --git a/scripture/kjv/04/16/26/scripture.tg b/scripture/kjv/04/16/26/scripture.tg new file mode 100644 index 00000000..ed6472c2 --- /dev/null +++ b/scripture/kjv/04/16/26/scripture.tg @@ -0,0 +1,4 @@ +2 Timothy 2:8 +8 Remember that Jesus Christ of the seed of David was raised from the dead according to my gospel: + +Thursday 16-April, 2026 diff --git a/scripture/kjv/04/16/26/scripture.tg.id b/scripture/kjv/04/16/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/16/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/16/26/scripture.today b/scripture/kjv/04/16/26/scripture.today new file mode 100644 index 00000000..44297a48 --- /dev/null +++ b/scripture/kjv/04/16/26/scripture.today @@ -0,0 +1 @@ +55 2:8 diff --git a/scripture/kjv/04/17/23/scripture.html b/scripture/kjv/04/17/23/scripture.html new file mode 100644 index 00000000..40d77f69 --- /dev/null +++ b/scripture/kjv/04/17/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 3:13-14
+13 Happy is the man that findeth wisdom, and the man that getteth understanding. 14 For the merchandise of it is better than the merchandise of silver, and the gain thereof than fine gold.

+Monday 17-April, 2023 diff --git a/scripture/kjv/04/17/23/scripture.json b/scripture/kjv/04/17/23/scripture.json new file mode 100644 index 00000000..6e0c090f --- /dev/null +++ b/scripture/kjv/04/17/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Monday 17-April, 2023", + "name": "Proverbs 3:13-14", + "scripture": [ + { + "nr": "13", + "text": "Happy is the man that findeth wisdom, and the man that getteth understanding." + }, + { + "nr": "14", + "text": "For the merchandise of it is better than the merchandise of silver, and the gain thereof than fine gold." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/17/23/scripture.md b/scripture/kjv/04/17/23/scripture.md new file mode 100644 index 00000000..7fc9f686 --- /dev/null +++ b/scripture/kjv/04/17/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 3:13-14** + +13 Happy is the man that findeth wisdom, and the man that getteth understanding. 14 For the merchandise of it is better than the merchandise of silver, and the gain thereof than fine gold. + +[Monday 17-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/17/23/scripture.tg b/scripture/kjv/04/17/23/scripture.tg new file mode 100644 index 00000000..9731b5c8 --- /dev/null +++ b/scripture/kjv/04/17/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 3:13-14 +13 Happy is the man that findeth wisdom, and the man that getteth understanding. 14 For the merchandise of it is better than the merchandise of silver, and the gain thereof than fine gold. + +Monday 17-April, 2023 diff --git a/scripture/kjv/04/17/23/scripture.tg.id b/scripture/kjv/04/17/23/scripture.tg.id new file mode 100644 index 00000000..048efdb5 --- /dev/null +++ b/scripture/kjv/04/17/23/scripture.tg.id @@ -0,0 +1 @@ +919 diff --git a/scripture/kjv/04/17/23/scripture.today b/scripture/kjv/04/17/23/scripture.today new file mode 100644 index 00000000..8bde5210 --- /dev/null +++ b/scripture/kjv/04/17/23/scripture.today @@ -0,0 +1 @@ +20 3:13-14 diff --git a/scripture/kjv/04/17/24/scripture.html b/scripture/kjv/04/17/24/scripture.html new file mode 100644 index 00000000..92bc49df --- /dev/null +++ b/scripture/kjv/04/17/24/scripture.html @@ -0,0 +1,3 @@ +Deuteronomy 33:3
+3 Yea, he loved the people; all his saints are in thy hand: and they sat down at thy feet; every one shall receive of thy words.

+Wednesday 17-April, 2024 diff --git a/scripture/kjv/04/17/24/scripture.json b/scripture/kjv/04/17/24/scripture.json new file mode 100644 index 00000000..f92a3877 --- /dev/null +++ b/scripture/kjv/04/17/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Deuteronomy", + "chapter": "33", + "date": "Wednesday 17-April, 2024", + "getbible": "https://getbible.life/kjv/Deuteronomy/33/3", + "name": "Deuteronomy 33:3", + "scripture": [ + { + "nr": "3", + "text": "Yea, he loved the people; all his saints are in thy hand: and they sat down at thy feet; every one shall receive of thy words." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3", + "version": "kjv" +} diff --git a/scripture/kjv/04/17/24/scripture.md b/scripture/kjv/04/17/24/scripture.md new file mode 100644 index 00000000..d06c3d6f --- /dev/null +++ b/scripture/kjv/04/17/24/scripture.md @@ -0,0 +1,5 @@ +**Deuteronomy 33:3** + +3 Yea, he loved the people; all his saints are in thy hand: and they sat down at thy feet; every one shall receive of thy words. + +[Wednesday 17-April, 2024](https://getbible.life/kjv/Deuteronomy/33/3) diff --git a/scripture/kjv/04/17/24/scripture.tg b/scripture/kjv/04/17/24/scripture.tg new file mode 100644 index 00000000..c0257676 --- /dev/null +++ b/scripture/kjv/04/17/24/scripture.tg @@ -0,0 +1,4 @@ +Deuteronomy 33:3 +3 Yea, he loved the people; all his saints are in thy hand: and they sat down at thy feet; every one shall receive of thy words. + +Wednesday 17-April, 2024 diff --git a/scripture/kjv/04/17/24/scripture.tg.id b/scripture/kjv/04/17/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/17/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/17/24/scripture.today b/scripture/kjv/04/17/24/scripture.today new file mode 100644 index 00000000..8f823ec5 --- /dev/null +++ b/scripture/kjv/04/17/24/scripture.today @@ -0,0 +1 @@ +5 33:3 diff --git a/scripture/kjv/04/17/25/scripture.html b/scripture/kjv/04/17/25/scripture.html new file mode 100644 index 00000000..014d1798 --- /dev/null +++ b/scripture/kjv/04/17/25/scripture.html @@ -0,0 +1,3 @@ +Jeremiah 23:28-29
+28 The prophet that hath a dream, let him tell a dream; and he that hath my word, let him speak my word faithfully. What is the chaff to the wheat? saith the Lord. 29 Is not my word like as a fire? saith the Lord; and like a hammer that breaketh the rock in pieces?

+Thursday 17-April, 2025 diff --git a/scripture/kjv/04/17/25/scripture.json b/scripture/kjv/04/17/25/scripture.json new file mode 100644 index 00000000..2f489f6e --- /dev/null +++ b/scripture/kjv/04/17/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Jeremiah", + "chapter": "23", + "date": "Thursday 17-April, 2025", + "getbible": "https://getbible.life/kjv/Jeremiah/23/28-29", + "name": "Jeremiah 23:28-29", + "scripture": [ + { + "nr": "28", + "text": "The prophet that hath a dream, let him tell a dream; and he that hath my word, let him speak my word faithfully. What is the chaff to the wheat? saith the Lord." + }, + { + "nr": "29", + "text": "Is not my word like as a fire? saith the Lord; and like a hammer that breaketh the rock in pieces?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "28-29", + "version": "kjv" +} diff --git a/scripture/kjv/04/17/25/scripture.md b/scripture/kjv/04/17/25/scripture.md new file mode 100644 index 00000000..00c707dd --- /dev/null +++ b/scripture/kjv/04/17/25/scripture.md @@ -0,0 +1,5 @@ +**Jeremiah 23:28-29** + +28 The prophet that hath a dream, let him tell a dream; and he that hath my word, let him speak my word faithfully. What is the chaff to the wheat? saith the Lord. 29 Is not my word like as a fire? saith the Lord; and like a hammer that breaketh the rock in pieces? + +[Thursday 17-April, 2025](https://getbible.life/kjv/Jeremiah/23/28-29) diff --git a/scripture/kjv/04/17/25/scripture.tg b/scripture/kjv/04/17/25/scripture.tg new file mode 100644 index 00000000..9bf3f5c0 --- /dev/null +++ b/scripture/kjv/04/17/25/scripture.tg @@ -0,0 +1,4 @@ +Jeremiah 23:28-29 +28 The prophet that hath a dream, let him tell a dream; and he that hath my word, let him speak my word faithfully. What is the chaff to the wheat? saith the Lord. 29 Is not my word like as a fire? saith the Lord; and like a hammer that breaketh the rock in pieces? + +Thursday 17-April, 2025 diff --git a/scripture/kjv/04/17/25/scripture.tg.id b/scripture/kjv/04/17/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/17/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/17/25/scripture.today b/scripture/kjv/04/17/25/scripture.today new file mode 100644 index 00000000..893d8861 --- /dev/null +++ b/scripture/kjv/04/17/25/scripture.today @@ -0,0 +1 @@ +24 23:28-29 diff --git a/scripture/kjv/04/17/26/scripture.html b/scripture/kjv/04/17/26/scripture.html new file mode 100644 index 00000000..a0473c4e --- /dev/null +++ b/scripture/kjv/04/17/26/scripture.html @@ -0,0 +1,3 @@ +Psalms 130:3-4
+3 If thou, Lord, shouldest mark iniquities, O Lord, who shall stand? 4 But there is forgiveness with thee, that thou mayest be feared.

+Friday 17-April, 2026 diff --git a/scripture/kjv/04/17/26/scripture.json b/scripture/kjv/04/17/26/scripture.json new file mode 100644 index 00000000..c8e4d830 --- /dev/null +++ b/scripture/kjv/04/17/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Psalms", + "chapter": "130", + "date": "Friday 17-April, 2026", + "getbible": "https://getbible.life/kjv/Psalms/130/3-4", + "name": "Psalms 130:3-4", + "scripture": [ + { + "nr": "3", + "text": "If thou, Lord, shouldest mark iniquities, O Lord, who shall stand?" + }, + { + "nr": "4", + "text": "But there is forgiveness with thee, that thou mayest be feared." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3-4", + "version": "kjv" +} diff --git a/scripture/kjv/04/17/26/scripture.md b/scripture/kjv/04/17/26/scripture.md new file mode 100644 index 00000000..99623c04 --- /dev/null +++ b/scripture/kjv/04/17/26/scripture.md @@ -0,0 +1,5 @@ +**Psalms 130:3-4** + +3 If thou, Lord, shouldest mark iniquities, O Lord, who shall stand? 4 But there is forgiveness with thee, that thou mayest be feared. + +[Friday 17-April, 2026](https://getbible.life/kjv/Psalms/130/3-4) diff --git a/scripture/kjv/04/17/26/scripture.tg b/scripture/kjv/04/17/26/scripture.tg new file mode 100644 index 00000000..24160592 --- /dev/null +++ b/scripture/kjv/04/17/26/scripture.tg @@ -0,0 +1,4 @@ +Psalms 130:3-4 +3 If thou, Lord, shouldest mark iniquities, O Lord, who shall stand? 4 But there is forgiveness with thee, that thou mayest be feared. + +Friday 17-April, 2026 diff --git a/scripture/kjv/04/17/26/scripture.tg.id b/scripture/kjv/04/17/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/17/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/17/26/scripture.today b/scripture/kjv/04/17/26/scripture.today new file mode 100644 index 00000000..fe81e058 --- /dev/null +++ b/scripture/kjv/04/17/26/scripture.today @@ -0,0 +1 @@ +19 130:3-4 diff --git a/scripture/kjv/04/18/23/scripture.html b/scripture/kjv/04/18/23/scripture.html new file mode 100644 index 00000000..a1903d81 --- /dev/null +++ b/scripture/kjv/04/18/23/scripture.html @@ -0,0 +1,3 @@ +2 John 1:3
+3 Grace be with you, mercy, and peace, from God the Father, and from the Lord Jesus Christ, the Son of the Father, in truth and love.

+Tuesday 18-April, 2023 diff --git a/scripture/kjv/04/18/23/scripture.json b/scripture/kjv/04/18/23/scripture.json new file mode 100644 index 00000000..1823e645 --- /dev/null +++ b/scripture/kjv/04/18/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Tuesday 18-April, 2023", + "name": "2 John 1:3", + "scripture": [ + { + "nr": "3", + "text": "Grace be with you, mercy, and peace, from God the Father, and from the Lord Jesus Christ, the Son of the Father, in truth and love." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/18/23/scripture.md b/scripture/kjv/04/18/23/scripture.md new file mode 100644 index 00000000..e459b65f --- /dev/null +++ b/scripture/kjv/04/18/23/scripture.md @@ -0,0 +1,5 @@ +**2 John 1:3** + +3 Grace be with you, mercy, and peace, from God the Father, and from the Lord Jesus Christ, the Son of the Father, in truth and love. + +[Tuesday 18-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/18/23/scripture.tg b/scripture/kjv/04/18/23/scripture.tg new file mode 100644 index 00000000..066d6996 --- /dev/null +++ b/scripture/kjv/04/18/23/scripture.tg @@ -0,0 +1,4 @@ +2 John 1:3 +3 Grace be with you, mercy, and peace, from God the Father, and from the Lord Jesus Christ, the Son of the Father, in truth and love. + +Tuesday 18-April, 2023 diff --git a/scripture/kjv/04/18/23/scripture.tg.id b/scripture/kjv/04/18/23/scripture.tg.id new file mode 100644 index 00000000..20280284 --- /dev/null +++ b/scripture/kjv/04/18/23/scripture.tg.id @@ -0,0 +1 @@ +921 diff --git a/scripture/kjv/04/18/23/scripture.today b/scripture/kjv/04/18/23/scripture.today new file mode 100644 index 00000000..49584557 --- /dev/null +++ b/scripture/kjv/04/18/23/scripture.today @@ -0,0 +1 @@ +63 1:3 diff --git a/scripture/kjv/04/18/24/scripture.html b/scripture/kjv/04/18/24/scripture.html new file mode 100644 index 00000000..e28a31a1 --- /dev/null +++ b/scripture/kjv/04/18/24/scripture.html @@ -0,0 +1,3 @@ +John 3:27
+27 John answered and said, A man can receive nothing, except it be given him from heaven.

+Thursday 18-April, 2024 diff --git a/scripture/kjv/04/18/24/scripture.json b/scripture/kjv/04/18/24/scripture.json new file mode 100644 index 00000000..27d170f1 --- /dev/null +++ b/scripture/kjv/04/18/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "3", + "date": "Thursday 18-April, 2024", + "getbible": "https://getbible.life/kjv/John/3/27", + "name": "John 3:27", + "scripture": [ + { + "nr": "27", + "text": "John answered and said, A man can receive nothing, except it be given him from heaven." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "27", + "version": "kjv" +} diff --git a/scripture/kjv/04/18/24/scripture.md b/scripture/kjv/04/18/24/scripture.md new file mode 100644 index 00000000..594b631a --- /dev/null +++ b/scripture/kjv/04/18/24/scripture.md @@ -0,0 +1,5 @@ +**John 3:27** + +27 John answered and said, A man can receive nothing, except it be given him from heaven. + +[Thursday 18-April, 2024](https://getbible.life/kjv/John/3/27) diff --git a/scripture/kjv/04/18/24/scripture.tg b/scripture/kjv/04/18/24/scripture.tg new file mode 100644 index 00000000..5f662fdf --- /dev/null +++ b/scripture/kjv/04/18/24/scripture.tg @@ -0,0 +1,4 @@ +John 3:27 +27 John answered and said, A man can receive nothing, except it be given him from heaven. + +Thursday 18-April, 2024 diff --git a/scripture/kjv/04/18/24/scripture.tg.id b/scripture/kjv/04/18/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/18/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/18/24/scripture.today b/scripture/kjv/04/18/24/scripture.today new file mode 100644 index 00000000..c563cbec --- /dev/null +++ b/scripture/kjv/04/18/24/scripture.today @@ -0,0 +1 @@ +43 3:27 diff --git a/scripture/kjv/04/18/25/scripture.html b/scripture/kjv/04/18/25/scripture.html new file mode 100644 index 00000000..a9297089 --- /dev/null +++ b/scripture/kjv/04/18/25/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 2:9
+9 For to this end also did I write, that I might know the proof of you, whether ye be obedient in all things.

+Friday 18-April, 2025 diff --git a/scripture/kjv/04/18/25/scripture.json b/scripture/kjv/04/18/25/scripture.json new file mode 100644 index 00000000..17307fa1 --- /dev/null +++ b/scripture/kjv/04/18/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "2", + "date": "Friday 18-April, 2025", + "getbible": "https://getbible.life/kjv/2 Corinthians/2/9", + "name": "2 Corinthians 2:9", + "scripture": [ + { + "nr": "9", + "text": "For to this end also did I write, that I might know the proof of you, whether ye be obedient in all things." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9", + "version": "kjv" +} diff --git a/scripture/kjv/04/18/25/scripture.md b/scripture/kjv/04/18/25/scripture.md new file mode 100644 index 00000000..e0f08699 --- /dev/null +++ b/scripture/kjv/04/18/25/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 2:9** + +9 For to this end also did I write, that I might know the proof of you, whether ye be obedient in all things. + +[Friday 18-April, 2025](https://getbible.life/kjv/2 Corinthians/2/9) diff --git a/scripture/kjv/04/18/25/scripture.tg b/scripture/kjv/04/18/25/scripture.tg new file mode 100644 index 00000000..4f275b0b --- /dev/null +++ b/scripture/kjv/04/18/25/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 2:9 +9 For to this end also did I write, that I might know the proof of you, whether ye be obedient in all things. + +Friday 18-April, 2025 diff --git a/scripture/kjv/04/18/25/scripture.tg.id b/scripture/kjv/04/18/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/18/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/18/25/scripture.today b/scripture/kjv/04/18/25/scripture.today new file mode 100644 index 00000000..65c8a3c2 --- /dev/null +++ b/scripture/kjv/04/18/25/scripture.today @@ -0,0 +1 @@ +47 2:9 diff --git a/scripture/kjv/04/18/26/scripture.html b/scripture/kjv/04/18/26/scripture.html new file mode 100644 index 00000000..76dd0fbd --- /dev/null +++ b/scripture/kjv/04/18/26/scripture.html @@ -0,0 +1,3 @@ +John 15:17
+17 These things I command you, that ye love one another.

+Saturday 18-April, 2026 diff --git a/scripture/kjv/04/18/26/scripture.json b/scripture/kjv/04/18/26/scripture.json new file mode 100644 index 00000000..6f7f04c9 --- /dev/null +++ b/scripture/kjv/04/18/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "15", + "date": "Saturday 18-April, 2026", + "getbible": "https://getbible.life/kjv/John/15/17", + "name": "John 15:17", + "scripture": [ + { + "nr": "17", + "text": "These things I command you, that ye love one another." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17", + "version": "kjv" +} diff --git a/scripture/kjv/04/18/26/scripture.md b/scripture/kjv/04/18/26/scripture.md new file mode 100644 index 00000000..a3502593 --- /dev/null +++ b/scripture/kjv/04/18/26/scripture.md @@ -0,0 +1,5 @@ +**John 15:17** + +17 These things I command you, that ye love one another. + +[Saturday 18-April, 2026](https://getbible.life/kjv/John/15/17) diff --git a/scripture/kjv/04/18/26/scripture.tg b/scripture/kjv/04/18/26/scripture.tg new file mode 100644 index 00000000..8fcac9c5 --- /dev/null +++ b/scripture/kjv/04/18/26/scripture.tg @@ -0,0 +1,4 @@ +John 15:17 +17 These things I command you, that ye love one another. + +Saturday 18-April, 2026 diff --git a/scripture/kjv/04/18/26/scripture.tg.id b/scripture/kjv/04/18/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/18/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/18/26/scripture.today b/scripture/kjv/04/18/26/scripture.today new file mode 100644 index 00000000..c8a3e9c4 --- /dev/null +++ b/scripture/kjv/04/18/26/scripture.today @@ -0,0 +1 @@ +43 15:17 diff --git a/scripture/kjv/04/19/23/scripture.html b/scripture/kjv/04/19/23/scripture.html new file mode 100644 index 00000000..d2e8bfbe --- /dev/null +++ b/scripture/kjv/04/19/23/scripture.html @@ -0,0 +1,3 @@ +Hebrews 4:2
+2 For unto us was the gospel preached, as well as unto them: but the word preached did not profit them, not being mixed with faith in them that heard it.

+Wednesday 19-April, 2023 diff --git a/scripture/kjv/04/19/23/scripture.json b/scripture/kjv/04/19/23/scripture.json new file mode 100644 index 00000000..91ff1896 --- /dev/null +++ b/scripture/kjv/04/19/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Wednesday 19-April, 2023", + "name": "Hebrews 4:2", + "scripture": [ + { + "nr": "2", + "text": "For unto us was the gospel preached, as well as unto them: but the word preached did not profit them, not being mixed with faith in them that heard it." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/19/23/scripture.md b/scripture/kjv/04/19/23/scripture.md new file mode 100644 index 00000000..06bfb92b --- /dev/null +++ b/scripture/kjv/04/19/23/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 4:2** + +2 For unto us was the gospel preached, as well as unto them: but the word preached did not profit them, not being mixed with faith in them that heard it. + +[Wednesday 19-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/19/23/scripture.tg b/scripture/kjv/04/19/23/scripture.tg new file mode 100644 index 00000000..fb3a5ad4 --- /dev/null +++ b/scripture/kjv/04/19/23/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 4:2 +2 For unto us was the gospel preached, as well as unto them: but the word preached did not profit them, not being mixed with faith in them that heard it. + +Wednesday 19-April, 2023 diff --git a/scripture/kjv/04/19/23/scripture.tg.id b/scripture/kjv/04/19/23/scripture.tg.id new file mode 100644 index 00000000..f55dabd5 --- /dev/null +++ b/scripture/kjv/04/19/23/scripture.tg.id @@ -0,0 +1 @@ +922 diff --git a/scripture/kjv/04/19/23/scripture.today b/scripture/kjv/04/19/23/scripture.today new file mode 100644 index 00000000..8e53c95c --- /dev/null +++ b/scripture/kjv/04/19/23/scripture.today @@ -0,0 +1 @@ +58 4:2 diff --git a/scripture/kjv/04/19/24/scripture.html b/scripture/kjv/04/19/24/scripture.html new file mode 100644 index 00000000..d49d14b3 --- /dev/null +++ b/scripture/kjv/04/19/24/scripture.html @@ -0,0 +1,3 @@ +1 Peter 5:8-9
+8 Be sober, be vigilant; because your adversary the devil, as a roaring lion, walketh about, seeking whom he may devour: 9 Whom resist stedfast in the faith, knowing that the same afflictions are accomplished in your brethren that are in the world.

+Friday 19-April, 2024 diff --git a/scripture/kjv/04/19/24/scripture.json b/scripture/kjv/04/19/24/scripture.json new file mode 100644 index 00000000..0db6dcea --- /dev/null +++ b/scripture/kjv/04/19/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "1 Peter", + "chapter": "5", + "date": "Friday 19-April, 2024", + "getbible": "https://getbible.life/kjv/1 Peter/5/8-9", + "name": "1 Peter 5:8-9", + "scripture": [ + { + "nr": "8", + "text": "Be sober, be vigilant; because your adversary the devil, as a roaring lion, walketh about, seeking whom he may devour:" + }, + { + "nr": "9", + "text": "Whom resist stedfast in the faith, knowing that the same afflictions are accomplished in your brethren that are in the world." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8-9", + "version": "kjv" +} diff --git a/scripture/kjv/04/19/24/scripture.md b/scripture/kjv/04/19/24/scripture.md new file mode 100644 index 00000000..33090609 --- /dev/null +++ b/scripture/kjv/04/19/24/scripture.md @@ -0,0 +1,5 @@ +**1 Peter 5:8-9** + +8 Be sober, be vigilant; because your adversary the devil, as a roaring lion, walketh about, seeking whom he may devour: 9 Whom resist stedfast in the faith, knowing that the same afflictions are accomplished in your brethren that are in the world. + +[Friday 19-April, 2024](https://getbible.life/kjv/1 Peter/5/8-9) diff --git a/scripture/kjv/04/19/24/scripture.tg b/scripture/kjv/04/19/24/scripture.tg new file mode 100644 index 00000000..3a4e9760 --- /dev/null +++ b/scripture/kjv/04/19/24/scripture.tg @@ -0,0 +1,4 @@ +1 Peter 5:8-9 +8 Be sober, be vigilant; because your adversary the devil, as a roaring lion, walketh about, seeking whom he may devour: 9 Whom resist stedfast in the faith, knowing that the same afflictions are accomplished in your brethren that are in the world. + +Friday 19-April, 2024 diff --git a/scripture/kjv/04/19/24/scripture.tg.id b/scripture/kjv/04/19/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/19/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/19/24/scripture.today b/scripture/kjv/04/19/24/scripture.today new file mode 100644 index 00000000..5de0b587 --- /dev/null +++ b/scripture/kjv/04/19/24/scripture.today @@ -0,0 +1 @@ +60 5:8-9 diff --git a/scripture/kjv/04/19/25/scripture.html b/scripture/kjv/04/19/25/scripture.html new file mode 100644 index 00000000..d4ce57d3 --- /dev/null +++ b/scripture/kjv/04/19/25/scripture.html @@ -0,0 +1,3 @@ +Isaiah 41:17-20
+17 When the poor and needy seek water, and there is none, and their tongue faileth for thirst, I the Lord will hear them, I the God of Israel will not forsake them. 18 I will open rivers in high places, and fountains in the midst of the valleys: I will make the wilderness a pool of water, and the dry land springs of water. 19 I will plant in the wilderness the cedar, the shittah tree, and the myrtle, and the oil tree; I will set in the desert the fir tree, and the pine, and the box tree together: 20 That they may see, and know, and consider, and understand together, that the hand of the Lord hath done this, and the Holy One of Israel hath created it.

+Saturday 19-April, 2025 diff --git a/scripture/kjv/04/19/25/scripture.json b/scripture/kjv/04/19/25/scripture.json new file mode 100644 index 00000000..13be1cfd --- /dev/null +++ b/scripture/kjv/04/19/25/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "Isaiah", + "chapter": "41", + "date": "Saturday 19-April, 2025", + "getbible": "https://getbible.life/kjv/Isaiah/41/17-20", + "name": "Isaiah 41:17-20", + "scripture": [ + { + "nr": "17", + "text": "When the poor and needy seek water, and there is none, and their tongue faileth for thirst, I the Lord will hear them, I the God of Israel will not forsake them." + }, + { + "nr": "18", + "text": "I will open rivers in high places, and fountains in the midst of the valleys: I will make the wilderness a pool of water, and the dry land springs of water." + }, + { + "nr": "19", + "text": "I will plant in the wilderness the cedar, the shittah tree, and the myrtle, and the oil tree; I will set in the desert the fir tree, and the pine, and the box tree together:" + }, + { + "nr": "20", + "text": "That they may see, and know, and consider, and understand together, that the hand of the Lord hath done this, and the Holy One of Israel hath created it." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17-20", + "version": "kjv" +} diff --git a/scripture/kjv/04/19/25/scripture.md b/scripture/kjv/04/19/25/scripture.md new file mode 100644 index 00000000..067c78ce --- /dev/null +++ b/scripture/kjv/04/19/25/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 41:17-20** + +17 When the poor and needy seek water, and there is none, and their tongue faileth for thirst, I the Lord will hear them, I the God of Israel will not forsake them. 18 I will open rivers in high places, and fountains in the midst of the valleys: I will make the wilderness a pool of water, and the dry land springs of water. 19 I will plant in the wilderness the cedar, the shittah tree, and the myrtle, and the oil tree; I will set in the desert the fir tree, and the pine, and the box tree together: 20 That they may see, and know, and consider, and understand together, that the hand of the Lord hath done this, and the Holy One of Israel hath created it. + +[Saturday 19-April, 2025](https://getbible.life/kjv/Isaiah/41/17-20) diff --git a/scripture/kjv/04/19/25/scripture.tg b/scripture/kjv/04/19/25/scripture.tg new file mode 100644 index 00000000..aae5fa46 --- /dev/null +++ b/scripture/kjv/04/19/25/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 41:17-20 +17 When the poor and needy seek water, and there is none, and their tongue faileth for thirst, I the Lord will hear them, I the God of Israel will not forsake them. 18 I will open rivers in high places, and fountains in the midst of the valleys: I will make the wilderness a pool of water, and the dry land springs of water. 19 I will plant in the wilderness the cedar, the shittah tree, and the myrtle, and the oil tree; I will set in the desert the fir tree, and the pine, and the box tree together: 20 That they may see, and know, and consider, and understand together, that the hand of the Lord hath done this, and the Holy One of Israel hath created it. + +Saturday 19-April, 2025 diff --git a/scripture/kjv/04/19/25/scripture.tg.id b/scripture/kjv/04/19/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/19/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/19/25/scripture.today b/scripture/kjv/04/19/25/scripture.today new file mode 100644 index 00000000..83479225 --- /dev/null +++ b/scripture/kjv/04/19/25/scripture.today @@ -0,0 +1 @@ +23 41:17-20 diff --git a/scripture/kjv/04/19/26/scripture.html b/scripture/kjv/04/19/26/scripture.html new file mode 100644 index 00000000..a7d95901 --- /dev/null +++ b/scripture/kjv/04/19/26/scripture.html @@ -0,0 +1,3 @@ +Isaiah 54:11-12
+11 O thou afflicted, tossed with tempest, and not comforted, behold, I will lay thy stones with fair colours, and lay thy foundations with sapphires. 12 And I will make thy windows of agates, and thy gates of carbuncles, and all thy borders of pleasant stones.

+Sunday 19-April, 2026 diff --git a/scripture/kjv/04/19/26/scripture.json b/scripture/kjv/04/19/26/scripture.json new file mode 100644 index 00000000..d3232ef0 --- /dev/null +++ b/scripture/kjv/04/19/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Isaiah", + "chapter": "54", + "date": "Sunday 19-April, 2026", + "getbible": "https://getbible.life/kjv/Isaiah/54/11-12", + "name": "Isaiah 54:11-12", + "scripture": [ + { + "nr": "11", + "text": "O thou afflicted, tossed with tempest, and not comforted, behold, I will lay thy stones with fair colours, and lay thy foundations with sapphires." + }, + { + "nr": "12", + "text": "And I will make thy windows of agates, and thy gates of carbuncles, and all thy borders of pleasant stones." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11-12", + "version": "kjv" +} diff --git a/scripture/kjv/04/19/26/scripture.md b/scripture/kjv/04/19/26/scripture.md new file mode 100644 index 00000000..ab102039 --- /dev/null +++ b/scripture/kjv/04/19/26/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 54:11-12** + +11 O thou afflicted, tossed with tempest, and not comforted, behold, I will lay thy stones with fair colours, and lay thy foundations with sapphires. 12 And I will make thy windows of agates, and thy gates of carbuncles, and all thy borders of pleasant stones. + +[Sunday 19-April, 2026](https://getbible.life/kjv/Isaiah/54/11-12) diff --git a/scripture/kjv/04/19/26/scripture.tg b/scripture/kjv/04/19/26/scripture.tg new file mode 100644 index 00000000..93455bcf --- /dev/null +++ b/scripture/kjv/04/19/26/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 54:11-12 +11 O thou afflicted, tossed with tempest, and not comforted, behold, I will lay thy stones with fair colours, and lay thy foundations with sapphires. 12 And I will make thy windows of agates, and thy gates of carbuncles, and all thy borders of pleasant stones. + +Sunday 19-April, 2026 diff --git a/scripture/kjv/04/19/26/scripture.tg.id b/scripture/kjv/04/19/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/19/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/19/26/scripture.today b/scripture/kjv/04/19/26/scripture.today new file mode 100644 index 00000000..d8b319af --- /dev/null +++ b/scripture/kjv/04/19/26/scripture.today @@ -0,0 +1 @@ +23 54:11-12 diff --git a/scripture/kjv/04/20/23/scripture.html b/scripture/kjv/04/20/23/scripture.html new file mode 100644 index 00000000..083b05f4 --- /dev/null +++ b/scripture/kjv/04/20/23/scripture.html @@ -0,0 +1,3 @@ +Romans 8:18
+18 For I reckon that the sufferings of this present time are not worthy to be compared with the glory which shall be revealed in us.

+Thursday 20-April, 2023 diff --git a/scripture/kjv/04/20/23/scripture.json b/scripture/kjv/04/20/23/scripture.json new file mode 100644 index 00000000..556e00b8 --- /dev/null +++ b/scripture/kjv/04/20/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Thursday 20-April, 2023", + "name": "Romans 8:18", + "scripture": [ + { + "nr": "18", + "text": "For I reckon that the sufferings of this present time are not worthy to be compared with the glory which shall be revealed in us." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/20/23/scripture.md b/scripture/kjv/04/20/23/scripture.md new file mode 100644 index 00000000..c9f03cd5 --- /dev/null +++ b/scripture/kjv/04/20/23/scripture.md @@ -0,0 +1,5 @@ +**Romans 8:18** + +18 For I reckon that the sufferings of this present time are not worthy to be compared with the glory which shall be revealed in us. + +[Thursday 20-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/20/23/scripture.tg b/scripture/kjv/04/20/23/scripture.tg new file mode 100644 index 00000000..1752db2f --- /dev/null +++ b/scripture/kjv/04/20/23/scripture.tg @@ -0,0 +1,4 @@ +Romans 8:18 +18 For I reckon that the sufferings of this present time are not worthy to be compared with the glory which shall be revealed in us. + +Thursday 20-April, 2023 diff --git a/scripture/kjv/04/20/23/scripture.tg.id b/scripture/kjv/04/20/23/scripture.tg.id new file mode 100644 index 00000000..0dac1491 --- /dev/null +++ b/scripture/kjv/04/20/23/scripture.tg.id @@ -0,0 +1 @@ +924 diff --git a/scripture/kjv/04/20/23/scripture.today b/scripture/kjv/04/20/23/scripture.today new file mode 100644 index 00000000..8f00b1a4 --- /dev/null +++ b/scripture/kjv/04/20/23/scripture.today @@ -0,0 +1 @@ +45 8:18 diff --git a/scripture/kjv/04/20/24/scripture.html b/scripture/kjv/04/20/24/scripture.html new file mode 100644 index 00000000..d159e12d --- /dev/null +++ b/scripture/kjv/04/20/24/scripture.html @@ -0,0 +1,3 @@ +Matthew 13:57
+57 And they were offended in him. But Jesus said unto them, A prophet is not without honour, save in his own country, and in his own house.

+Saturday 20-April, 2024 diff --git a/scripture/kjv/04/20/24/scripture.json b/scripture/kjv/04/20/24/scripture.json new file mode 100644 index 00000000..36efea55 --- /dev/null +++ b/scripture/kjv/04/20/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Matthew", + "chapter": "13", + "date": "Saturday 20-April, 2024", + "getbible": "https://getbible.life/kjv/Matthew/13/57", + "name": "Matthew 13:57", + "scripture": [ + { + "nr": "57", + "text": "And they were offended in him. But Jesus said unto them, A prophet is not without honour, save in his own country, and in his own house." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "57", + "version": "kjv" +} diff --git a/scripture/kjv/04/20/24/scripture.md b/scripture/kjv/04/20/24/scripture.md new file mode 100644 index 00000000..ac860125 --- /dev/null +++ b/scripture/kjv/04/20/24/scripture.md @@ -0,0 +1,5 @@ +**Matthew 13:57** + +57 And they were offended in him. But Jesus said unto them, A prophet is not without honour, save in his own country, and in his own house. + +[Saturday 20-April, 2024](https://getbible.life/kjv/Matthew/13/57) diff --git a/scripture/kjv/04/20/24/scripture.tg b/scripture/kjv/04/20/24/scripture.tg new file mode 100644 index 00000000..842f7bea --- /dev/null +++ b/scripture/kjv/04/20/24/scripture.tg @@ -0,0 +1,4 @@ +Matthew 13:57 +57 And they were offended in him. But Jesus said unto them, A prophet is not without honour, save in his own country, and in his own house. + +Saturday 20-April, 2024 diff --git a/scripture/kjv/04/20/24/scripture.tg.id b/scripture/kjv/04/20/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/20/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/20/24/scripture.today b/scripture/kjv/04/20/24/scripture.today new file mode 100644 index 00000000..30e0a4ca --- /dev/null +++ b/scripture/kjv/04/20/24/scripture.today @@ -0,0 +1 @@ +40 13:57 diff --git a/scripture/kjv/04/20/25/scripture.html b/scripture/kjv/04/20/25/scripture.html new file mode 100644 index 00000000..8b977043 --- /dev/null +++ b/scripture/kjv/04/20/25/scripture.html @@ -0,0 +1,3 @@ +Isaiah 32:18
+18 And my people shall dwell in a peaceable habitation, and in sure dwellings, and in quiet resting places;

+Sunday 20-April, 2025 diff --git a/scripture/kjv/04/20/25/scripture.json b/scripture/kjv/04/20/25/scripture.json new file mode 100644 index 00000000..6b760d85 --- /dev/null +++ b/scripture/kjv/04/20/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "32", + "date": "Sunday 20-April, 2025", + "getbible": "https://getbible.life/kjv/Isaiah/32/18", + "name": "Isaiah 32:18", + "scripture": [ + { + "nr": "18", + "text": "And my people shall dwell in a peaceable habitation, and in sure dwellings, and in quiet resting places;" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18", + "version": "kjv" +} diff --git a/scripture/kjv/04/20/25/scripture.md b/scripture/kjv/04/20/25/scripture.md new file mode 100644 index 00000000..d8a95791 --- /dev/null +++ b/scripture/kjv/04/20/25/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 32:18** + +18 And my people shall dwell in a peaceable habitation, and in sure dwellings, and in quiet resting places; + +[Sunday 20-April, 2025](https://getbible.life/kjv/Isaiah/32/18) diff --git a/scripture/kjv/04/20/25/scripture.tg b/scripture/kjv/04/20/25/scripture.tg new file mode 100644 index 00000000..74892fba --- /dev/null +++ b/scripture/kjv/04/20/25/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 32:18 +18 And my people shall dwell in a peaceable habitation, and in sure dwellings, and in quiet resting places; + +Sunday 20-April, 2025 diff --git a/scripture/kjv/04/20/25/scripture.tg.id b/scripture/kjv/04/20/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/20/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/20/25/scripture.today b/scripture/kjv/04/20/25/scripture.today new file mode 100644 index 00000000..1b6f4a34 --- /dev/null +++ b/scripture/kjv/04/20/25/scripture.today @@ -0,0 +1 @@ +23 32:18 diff --git a/scripture/kjv/04/20/26/scripture.html b/scripture/kjv/04/20/26/scripture.html new file mode 100644 index 00000000..f9029aca --- /dev/null +++ b/scripture/kjv/04/20/26/scripture.html @@ -0,0 +1,3 @@ +Luke 19:8-9
+8 And Zaccheus stood, and said unto the Lord; Behold, Lord, the half of my goods I give to the poor; and if I have taken any thing from any man by false accusation, I restore him fourfold. 9 And Jesus said unto him, This day is salvation come to this house, forsomuch as he also is a son of Abraham.

+Monday 20-April, 2026 diff --git a/scripture/kjv/04/20/26/scripture.json b/scripture/kjv/04/20/26/scripture.json new file mode 100644 index 00000000..ff7d35a3 --- /dev/null +++ b/scripture/kjv/04/20/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Luke", + "chapter": "19", + "date": "Monday 20-April, 2026", + "getbible": "https://getbible.life/kjv/Luke/19/8-9", + "name": "Luke 19:8-9", + "scripture": [ + { + "nr": "8", + "text": "And Zaccheus stood, and said unto the Lord; Behold, Lord, the half of my goods I give to the poor; and if I have taken any thing from any man by false accusation, I restore him fourfold." + }, + { + "nr": "9", + "text": "And Jesus said unto him, This day is salvation come to this house, forsomuch as he also is a son of Abraham." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8-9", + "version": "kjv" +} diff --git a/scripture/kjv/04/20/26/scripture.md b/scripture/kjv/04/20/26/scripture.md new file mode 100644 index 00000000..5aec239f --- /dev/null +++ b/scripture/kjv/04/20/26/scripture.md @@ -0,0 +1,5 @@ +**Luke 19:8-9** + +8 And Zaccheus stood, and said unto the Lord; Behold, Lord, the half of my goods I give to the poor; and if I have taken any thing from any man by false accusation, I restore him fourfold. 9 And Jesus said unto him, This day is salvation come to this house, forsomuch as he also is a son of Abraham. + +[Monday 20-April, 2026](https://getbible.life/kjv/Luke/19/8-9) diff --git a/scripture/kjv/04/20/26/scripture.tg b/scripture/kjv/04/20/26/scripture.tg new file mode 100644 index 00000000..d69ad879 --- /dev/null +++ b/scripture/kjv/04/20/26/scripture.tg @@ -0,0 +1,4 @@ +Luke 19:8-9 +8 And Zaccheus stood, and said unto the Lord; Behold, Lord, the half of my goods I give to the poor; and if I have taken any thing from any man by false accusation, I restore him fourfold. 9 And Jesus said unto him, This day is salvation come to this house, forsomuch as he also is a son of Abraham. + +Monday 20-April, 2026 diff --git a/scripture/kjv/04/20/26/scripture.tg.id b/scripture/kjv/04/20/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/20/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/20/26/scripture.today b/scripture/kjv/04/20/26/scripture.today new file mode 100644 index 00000000..2b4ccb01 --- /dev/null +++ b/scripture/kjv/04/20/26/scripture.today @@ -0,0 +1 @@ +42 19:8-9 diff --git a/scripture/kjv/04/21/23/scripture.html b/scripture/kjv/04/21/23/scripture.html new file mode 100644 index 00000000..1b60bafd --- /dev/null +++ b/scripture/kjv/04/21/23/scripture.html @@ -0,0 +1,3 @@ +Revelation 18:4
+4 And I heard another voice from heaven, saying, Come out of her, my people, that ye be not partakers of her sins, and that ye receive not of her plagues.

+Friday 21-April, 2023 diff --git a/scripture/kjv/04/21/23/scripture.json b/scripture/kjv/04/21/23/scripture.json new file mode 100644 index 00000000..e4f85c6b --- /dev/null +++ b/scripture/kjv/04/21/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Friday 21-April, 2023", + "name": "Revelation 18:4", + "scripture": [ + { + "nr": "4", + "text": "And I heard another voice from heaven, saying, Come out of her, my people, that ye be not partakers of her sins, and that ye receive not of her plagues." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/21/23/scripture.md b/scripture/kjv/04/21/23/scripture.md new file mode 100644 index 00000000..dae589e1 --- /dev/null +++ b/scripture/kjv/04/21/23/scripture.md @@ -0,0 +1,5 @@ +**Revelation 18:4** + +4 And I heard another voice from heaven, saying, Come out of her, my people, that ye be not partakers of her sins, and that ye receive not of her plagues. + +[Friday 21-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/21/23/scripture.tg b/scripture/kjv/04/21/23/scripture.tg new file mode 100644 index 00000000..6e0dc338 --- /dev/null +++ b/scripture/kjv/04/21/23/scripture.tg @@ -0,0 +1,4 @@ +Revelation 18:4 +4 And I heard another voice from heaven, saying, Come out of her, my people, that ye be not partakers of her sins, and that ye receive not of her plagues. + +Friday 21-April, 2023 diff --git a/scripture/kjv/04/21/23/scripture.tg.id b/scripture/kjv/04/21/23/scripture.tg.id new file mode 100644 index 00000000..ced7b1ba --- /dev/null +++ b/scripture/kjv/04/21/23/scripture.tg.id @@ -0,0 +1 @@ +925 diff --git a/scripture/kjv/04/21/23/scripture.today b/scripture/kjv/04/21/23/scripture.today new file mode 100644 index 00000000..50b9f899 --- /dev/null +++ b/scripture/kjv/04/21/23/scripture.today @@ -0,0 +1 @@ +66 18:4 diff --git a/scripture/kjv/04/21/24/scripture.html b/scripture/kjv/04/21/24/scripture.html new file mode 100644 index 00000000..d56bf94c --- /dev/null +++ b/scripture/kjv/04/21/24/scripture.html @@ -0,0 +1,3 @@ +John 1:16
+16 And of his fulness have all we received, and grace for grace.

+Sunday 21-April, 2024 diff --git a/scripture/kjv/04/21/24/scripture.json b/scripture/kjv/04/21/24/scripture.json new file mode 100644 index 00000000..d101d20d --- /dev/null +++ b/scripture/kjv/04/21/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "1", + "date": "Sunday 21-April, 2024", + "getbible": "https://getbible.life/kjv/John/1/16", + "name": "John 1:16", + "scripture": [ + { + "nr": "16", + "text": "And of his fulness have all we received, and grace for grace." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16", + "version": "kjv" +} diff --git a/scripture/kjv/04/21/24/scripture.md b/scripture/kjv/04/21/24/scripture.md new file mode 100644 index 00000000..cfb151bb --- /dev/null +++ b/scripture/kjv/04/21/24/scripture.md @@ -0,0 +1,5 @@ +**John 1:16** + +16 And of his fulness have all we received, and grace for grace. + +[Sunday 21-April, 2024](https://getbible.life/kjv/John/1/16) diff --git a/scripture/kjv/04/21/24/scripture.tg b/scripture/kjv/04/21/24/scripture.tg new file mode 100644 index 00000000..be7e4c4f --- /dev/null +++ b/scripture/kjv/04/21/24/scripture.tg @@ -0,0 +1,4 @@ +John 1:16 +16 And of his fulness have all we received, and grace for grace. + +Sunday 21-April, 2024 diff --git a/scripture/kjv/04/21/24/scripture.tg.id b/scripture/kjv/04/21/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/21/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/21/24/scripture.today b/scripture/kjv/04/21/24/scripture.today new file mode 100644 index 00000000..5487b8d2 --- /dev/null +++ b/scripture/kjv/04/21/24/scripture.today @@ -0,0 +1 @@ +43 1:16 diff --git a/scripture/kjv/04/21/25/scripture.html b/scripture/kjv/04/21/25/scripture.html new file mode 100644 index 00000000..715e93d3 --- /dev/null +++ b/scripture/kjv/04/21/25/scripture.html @@ -0,0 +1,3 @@ +Matthew 9:36-38
+36 But when he saw the multitudes, he was moved with compassion on them, because they fainted, and were scattered abroad, as sheep having no shepherd. 37 Then saith he unto his disciples, The harvest truly is plenteous, but the labourers are few; 38 Pray ye therefore the Lord of the harvest, that he will send forth labourers into his harvest.

+Monday 21-April, 2025 diff --git a/scripture/kjv/04/21/25/scripture.json b/scripture/kjv/04/21/25/scripture.json new file mode 100644 index 00000000..f75a1631 --- /dev/null +++ b/scripture/kjv/04/21/25/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Matthew", + "chapter": "9", + "date": "Monday 21-April, 2025", + "getbible": "https://getbible.life/kjv/Matthew/9/36-38", + "name": "Matthew 9:36-38", + "scripture": [ + { + "nr": "36", + "text": "But when he saw the multitudes, he was moved with compassion on them, because they fainted, and were scattered abroad, as sheep having no shepherd." + }, + { + "nr": "37", + "text": "Then saith he unto his disciples, The harvest truly is plenteous, but the labourers are few;" + }, + { + "nr": "38", + "text": "Pray ye therefore the Lord of the harvest, that he will send forth labourers into his harvest. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "36-38", + "version": "kjv" +} diff --git a/scripture/kjv/04/21/25/scripture.md b/scripture/kjv/04/21/25/scripture.md new file mode 100644 index 00000000..13cc364c --- /dev/null +++ b/scripture/kjv/04/21/25/scripture.md @@ -0,0 +1,5 @@ +**Matthew 9:36-38** + +36 But when he saw the multitudes, he was moved with compassion on them, because they fainted, and were scattered abroad, as sheep having no shepherd. 37 Then saith he unto his disciples, The harvest truly is plenteous, but the labourers are few; 38 Pray ye therefore the Lord of the harvest, that he will send forth labourers into his harvest. + +[Monday 21-April, 2025](https://getbible.life/kjv/Matthew/9/36-38) diff --git a/scripture/kjv/04/21/25/scripture.tg b/scripture/kjv/04/21/25/scripture.tg new file mode 100644 index 00000000..07da611a --- /dev/null +++ b/scripture/kjv/04/21/25/scripture.tg @@ -0,0 +1,4 @@ +Matthew 9:36-38 +36 But when he saw the multitudes, he was moved with compassion on them, because they fainted, and were scattered abroad, as sheep having no shepherd. 37 Then saith he unto his disciples, The harvest truly is plenteous, but the labourers are few; 38 Pray ye therefore the Lord of the harvest, that he will send forth labourers into his harvest. + +Monday 21-April, 2025 diff --git a/scripture/kjv/04/21/25/scripture.tg.id b/scripture/kjv/04/21/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/21/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/21/25/scripture.today b/scripture/kjv/04/21/25/scripture.today new file mode 100644 index 00000000..2ec61f81 --- /dev/null +++ b/scripture/kjv/04/21/25/scripture.today @@ -0,0 +1 @@ +40 9:36-38 diff --git a/scripture/kjv/04/21/26/scripture.html b/scripture/kjv/04/21/26/scripture.html new file mode 100644 index 00000000..cc1cada6 --- /dev/null +++ b/scripture/kjv/04/21/26/scripture.html @@ -0,0 +1,3 @@ +Luke 23:34
+34 Then said Jesus, Father, forgive them; for they know not what they do. And they parted his raiment, and cast lots.

+Tuesday 21-April, 2026 diff --git a/scripture/kjv/04/21/26/scripture.json b/scripture/kjv/04/21/26/scripture.json new file mode 100644 index 00000000..342ac253 --- /dev/null +++ b/scripture/kjv/04/21/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "23", + "date": "Tuesday 21-April, 2026", + "getbible": "https://getbible.life/kjv/Luke/23/34", + "name": "Luke 23:34", + "scripture": [ + { + "nr": "34", + "text": "Then said Jesus, Father, forgive them; for they know not what they do. And they parted his raiment, and cast lots." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "34", + "version": "kjv" +} diff --git a/scripture/kjv/04/21/26/scripture.md b/scripture/kjv/04/21/26/scripture.md new file mode 100644 index 00000000..28a36361 --- /dev/null +++ b/scripture/kjv/04/21/26/scripture.md @@ -0,0 +1,5 @@ +**Luke 23:34** + +34 Then said Jesus, Father, forgive them; for they know not what they do. And they parted his raiment, and cast lots. + +[Tuesday 21-April, 2026](https://getbible.life/kjv/Luke/23/34) diff --git a/scripture/kjv/04/21/26/scripture.tg b/scripture/kjv/04/21/26/scripture.tg new file mode 100644 index 00000000..b5f16119 --- /dev/null +++ b/scripture/kjv/04/21/26/scripture.tg @@ -0,0 +1,4 @@ +Luke 23:34 +34 Then said Jesus, Father, forgive them; for they know not what they do. And they parted his raiment, and cast lots. + +Tuesday 21-April, 2026 diff --git a/scripture/kjv/04/21/26/scripture.tg.id b/scripture/kjv/04/21/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/21/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/21/26/scripture.today b/scripture/kjv/04/21/26/scripture.today new file mode 100644 index 00000000..9c04b775 --- /dev/null +++ b/scripture/kjv/04/21/26/scripture.today @@ -0,0 +1 @@ +42 23:34 diff --git a/scripture/kjv/04/22/23/scripture.html b/scripture/kjv/04/22/23/scripture.html new file mode 100644 index 00000000..839f5404 --- /dev/null +++ b/scripture/kjv/04/22/23/scripture.html @@ -0,0 +1,3 @@ +Jeremiah 10:23
+23 O Lord, I know that the way of man is not in himself: it is not in man that walketh to direct his steps.

+Saturday 22-April, 2023 diff --git a/scripture/kjv/04/22/23/scripture.json b/scripture/kjv/04/22/23/scripture.json new file mode 100644 index 00000000..794fe384 --- /dev/null +++ b/scripture/kjv/04/22/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Saturday 22-April, 2023", + "name": "Jeremiah 10:23", + "scripture": [ + { + "nr": "23", + "text": "O Lord, I know that the way of man is not in himself: it is not in man that walketh to direct his steps." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/22/23/scripture.md b/scripture/kjv/04/22/23/scripture.md new file mode 100644 index 00000000..a1d8602f --- /dev/null +++ b/scripture/kjv/04/22/23/scripture.md @@ -0,0 +1,5 @@ +**Jeremiah 10:23** + +23 O Lord, I know that the way of man is not in himself: it is not in man that walketh to direct his steps. + +[Saturday 22-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/22/23/scripture.tg b/scripture/kjv/04/22/23/scripture.tg new file mode 100644 index 00000000..4426e980 --- /dev/null +++ b/scripture/kjv/04/22/23/scripture.tg @@ -0,0 +1,4 @@ +Jeremiah 10:23 +23 O Lord, I know that the way of man is not in himself: it is not in man that walketh to direct his steps. + +Saturday 22-April, 2023 diff --git a/scripture/kjv/04/22/23/scripture.tg.id b/scripture/kjv/04/22/23/scripture.tg.id new file mode 100644 index 00000000..cdf11a8d --- /dev/null +++ b/scripture/kjv/04/22/23/scripture.tg.id @@ -0,0 +1 @@ +926 diff --git a/scripture/kjv/04/22/23/scripture.today b/scripture/kjv/04/22/23/scripture.today new file mode 100644 index 00000000..3220c867 --- /dev/null +++ b/scripture/kjv/04/22/23/scripture.today @@ -0,0 +1 @@ +24 10:23 diff --git a/scripture/kjv/04/22/24/scripture.html b/scripture/kjv/04/22/24/scripture.html new file mode 100644 index 00000000..944232eb --- /dev/null +++ b/scripture/kjv/04/22/24/scripture.html @@ -0,0 +1,3 @@ +Romans 7:5-6
+5 For when we were in the flesh, the motions of sins, which were by the law, did work in our members to bring forth fruit unto death. 6 But now we are delivered from the law, that being dead wherein we were held; that we should serve in newness of spirit, and not in the oldness of the letter.

+Monday 22-April, 2024 diff --git a/scripture/kjv/04/22/24/scripture.json b/scripture/kjv/04/22/24/scripture.json new file mode 100644 index 00000000..cf64d1ff --- /dev/null +++ b/scripture/kjv/04/22/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Romans", + "chapter": "7", + "date": "Monday 22-April, 2024", + "getbible": "https://getbible.life/kjv/Romans/7/5-6", + "name": "Romans 7:5-6", + "scripture": [ + { + "nr": "5", + "text": "For when we were in the flesh, the motions of sins, which were by the law, did work in our members to bring forth fruit unto death." + }, + { + "nr": "6", + "text": "But now we are delivered from the law, that being dead wherein we were held; that we should serve in newness of spirit, and not in the oldness of the letter." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5-6", + "version": "kjv" +} diff --git a/scripture/kjv/04/22/24/scripture.md b/scripture/kjv/04/22/24/scripture.md new file mode 100644 index 00000000..6f8c5c92 --- /dev/null +++ b/scripture/kjv/04/22/24/scripture.md @@ -0,0 +1,5 @@ +**Romans 7:5-6** + +5 For when we were in the flesh, the motions of sins, which were by the law, did work in our members to bring forth fruit unto death. 6 But now we are delivered from the law, that being dead wherein we were held; that we should serve in newness of spirit, and not in the oldness of the letter. + +[Monday 22-April, 2024](https://getbible.life/kjv/Romans/7/5-6) diff --git a/scripture/kjv/04/22/24/scripture.tg b/scripture/kjv/04/22/24/scripture.tg new file mode 100644 index 00000000..ca6c7b3d --- /dev/null +++ b/scripture/kjv/04/22/24/scripture.tg @@ -0,0 +1,4 @@ +Romans 7:5-6 +5 For when we were in the flesh, the motions of sins, which were by the law, did work in our members to bring forth fruit unto death. 6 But now we are delivered from the law, that being dead wherein we were held; that we should serve in newness of spirit, and not in the oldness of the letter. + +Monday 22-April, 2024 diff --git a/scripture/kjv/04/22/24/scripture.tg.id b/scripture/kjv/04/22/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/22/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/22/24/scripture.today b/scripture/kjv/04/22/24/scripture.today new file mode 100644 index 00000000..1f23724c --- /dev/null +++ b/scripture/kjv/04/22/24/scripture.today @@ -0,0 +1 @@ +45 7:5-6 diff --git a/scripture/kjv/04/22/25/scripture.html b/scripture/kjv/04/22/25/scripture.html new file mode 100644 index 00000000..0f1560e3 --- /dev/null +++ b/scripture/kjv/04/22/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 27:3
+3 Though an host should encamp against me, my heart shall not fear: though war should rise against me, in this will I be confident.

+Tuesday 22-April, 2025 diff --git a/scripture/kjv/04/22/25/scripture.json b/scripture/kjv/04/22/25/scripture.json new file mode 100644 index 00000000..fd41578d --- /dev/null +++ b/scripture/kjv/04/22/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "27", + "date": "Tuesday 22-April, 2025", + "getbible": "https://getbible.life/kjv/Psalms/27/3", + "name": "Psalms 27:3", + "scripture": [ + { + "nr": "3", + "text": "Though an host should encamp against me, my heart shall not fear: though war should rise against me, in this will I be confident." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3", + "version": "kjv" +} diff --git a/scripture/kjv/04/22/25/scripture.md b/scripture/kjv/04/22/25/scripture.md new file mode 100644 index 00000000..827a03d7 --- /dev/null +++ b/scripture/kjv/04/22/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 27:3** + +3 Though an host should encamp against me, my heart shall not fear: though war should rise against me, in this will I be confident. + +[Tuesday 22-April, 2025](https://getbible.life/kjv/Psalms/27/3) diff --git a/scripture/kjv/04/22/25/scripture.tg b/scripture/kjv/04/22/25/scripture.tg new file mode 100644 index 00000000..34a781fe --- /dev/null +++ b/scripture/kjv/04/22/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 27:3 +3 Though an host should encamp against me, my heart shall not fear: though war should rise against me, in this will I be confident. + +Tuesday 22-April, 2025 diff --git a/scripture/kjv/04/22/25/scripture.tg.id b/scripture/kjv/04/22/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/22/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/22/25/scripture.today b/scripture/kjv/04/22/25/scripture.today new file mode 100644 index 00000000..d9a50d18 --- /dev/null +++ b/scripture/kjv/04/22/25/scripture.today @@ -0,0 +1 @@ +19 27:3 diff --git a/scripture/kjv/04/22/26/scripture.html b/scripture/kjv/04/22/26/scripture.html new file mode 100644 index 00000000..4a468c83 --- /dev/null +++ b/scripture/kjv/04/22/26/scripture.html @@ -0,0 +1,3 @@ +Ephesians 1:15-17
+15 Wherefore I also, after I heard of your faith in the Lord Jesus, and love unto all the saints, 16 Cease not to give thanks for you, making mention of you in my prayers; 17 That the God of our Lord Jesus Christ, the Father of glory, may give unto you the spirit of wisdom and revelation in the knowledge of him:

+Wednesday 22-April, 2026 diff --git a/scripture/kjv/04/22/26/scripture.json b/scripture/kjv/04/22/26/scripture.json new file mode 100644 index 00000000..28694c10 --- /dev/null +++ b/scripture/kjv/04/22/26/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Ephesians", + "chapter": "1", + "date": "Wednesday 22-April, 2026", + "getbible": "https://getbible.life/kjv/Ephesians/1/15-17", + "name": "Ephesians 1:15-17", + "scripture": [ + { + "nr": "15", + "text": "Wherefore I also, after I heard of your faith in the Lord Jesus, and love unto all the saints," + }, + { + "nr": "16", + "text": "Cease not to give thanks for you, making mention of you in my prayers;" + }, + { + "nr": "17", + "text": "That the God of our Lord Jesus Christ, the Father of glory, may give unto you the spirit of wisdom and revelation in the knowledge of him:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15-17", + "version": "kjv" +} diff --git a/scripture/kjv/04/22/26/scripture.md b/scripture/kjv/04/22/26/scripture.md new file mode 100644 index 00000000..1517e4ee --- /dev/null +++ b/scripture/kjv/04/22/26/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 1:15-17** + +15 Wherefore I also, after I heard of your faith in the Lord Jesus, and love unto all the saints, 16 Cease not to give thanks for you, making mention of you in my prayers; 17 That the God of our Lord Jesus Christ, the Father of glory, may give unto you the spirit of wisdom and revelation in the knowledge of him: + +[Wednesday 22-April, 2026](https://getbible.life/kjv/Ephesians/1/15-17) diff --git a/scripture/kjv/04/22/26/scripture.tg b/scripture/kjv/04/22/26/scripture.tg new file mode 100644 index 00000000..a60c767e --- /dev/null +++ b/scripture/kjv/04/22/26/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 1:15-17 +15 Wherefore I also, after I heard of your faith in the Lord Jesus, and love unto all the saints, 16 Cease not to give thanks for you, making mention of you in my prayers; 17 That the God of our Lord Jesus Christ, the Father of glory, may give unto you the spirit of wisdom and revelation in the knowledge of him: + +Wednesday 22-April, 2026 diff --git a/scripture/kjv/04/22/26/scripture.tg.id b/scripture/kjv/04/22/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/22/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/22/26/scripture.today b/scripture/kjv/04/22/26/scripture.today new file mode 100644 index 00000000..317272b8 --- /dev/null +++ b/scripture/kjv/04/22/26/scripture.today @@ -0,0 +1 @@ +49 1:15-17 diff --git a/scripture/kjv/04/23/23/scripture.html b/scripture/kjv/04/23/23/scripture.html new file mode 100644 index 00000000..aae731b7 --- /dev/null +++ b/scripture/kjv/04/23/23/scripture.html @@ -0,0 +1,3 @@ +Ecclesiastes 12:14
+14 For God shall bring every work into judgment, with every secret thing, whether it be good, or whether it be evil.

+Sunday 23-April, 2023 diff --git a/scripture/kjv/04/23/23/scripture.json b/scripture/kjv/04/23/23/scripture.json new file mode 100644 index 00000000..5aeef782 --- /dev/null +++ b/scripture/kjv/04/23/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Sunday 23-April, 2023", + "name": "Ecclesiastes 12:14", + "scripture": [ + { + "nr": "14", + "text": "For God shall bring every work into judgment, with every secret thing, whether it be good, or whether it be evil. " + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/23/23/scripture.md b/scripture/kjv/04/23/23/scripture.md new file mode 100644 index 00000000..cdfc3861 --- /dev/null +++ b/scripture/kjv/04/23/23/scripture.md @@ -0,0 +1,5 @@ +**Ecclesiastes 12:14** + +14 For God shall bring every work into judgment, with every secret thing, whether it be good, or whether it be evil. + +[Sunday 23-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/23/23/scripture.tg b/scripture/kjv/04/23/23/scripture.tg new file mode 100644 index 00000000..251131b6 --- /dev/null +++ b/scripture/kjv/04/23/23/scripture.tg @@ -0,0 +1,4 @@ +Ecclesiastes 12:14 +14 For God shall bring every work into judgment, with every secret thing, whether it be good, or whether it be evil. + +Sunday 23-April, 2023 diff --git a/scripture/kjv/04/23/23/scripture.tg.id b/scripture/kjv/04/23/23/scripture.tg.id new file mode 100644 index 00000000..866faa8c --- /dev/null +++ b/scripture/kjv/04/23/23/scripture.tg.id @@ -0,0 +1 @@ +927 diff --git a/scripture/kjv/04/23/23/scripture.today b/scripture/kjv/04/23/23/scripture.today new file mode 100644 index 00000000..4d2bb20b --- /dev/null +++ b/scripture/kjv/04/23/23/scripture.today @@ -0,0 +1 @@ +21 12:14 diff --git a/scripture/kjv/04/23/24/scripture.html b/scripture/kjv/04/23/24/scripture.html new file mode 100644 index 00000000..898de1c7 --- /dev/null +++ b/scripture/kjv/04/23/24/scripture.html @@ -0,0 +1,3 @@ +Isaiah 7:15
+15 Butter and honey shall he eat, that he may know to refuse the evil, and choose the good.

+Tuesday 23-April, 2024 diff --git a/scripture/kjv/04/23/24/scripture.json b/scripture/kjv/04/23/24/scripture.json new file mode 100644 index 00000000..a329fc52 --- /dev/null +++ b/scripture/kjv/04/23/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "7", + "date": "Tuesday 23-April, 2024", + "getbible": "https://getbible.life/kjv/Isaiah/7/15", + "name": "Isaiah 7:15", + "scripture": [ + { + "nr": "15", + "text": "Butter and honey shall he eat, that he may know to refuse the evil, and choose the good." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15", + "version": "kjv" +} diff --git a/scripture/kjv/04/23/24/scripture.md b/scripture/kjv/04/23/24/scripture.md new file mode 100644 index 00000000..ae978ca1 --- /dev/null +++ b/scripture/kjv/04/23/24/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 7:15** + +15 Butter and honey shall he eat, that he may know to refuse the evil, and choose the good. + +[Tuesday 23-April, 2024](https://getbible.life/kjv/Isaiah/7/15) diff --git a/scripture/kjv/04/23/24/scripture.tg b/scripture/kjv/04/23/24/scripture.tg new file mode 100644 index 00000000..0a4d7e47 --- /dev/null +++ b/scripture/kjv/04/23/24/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 7:15 +15 Butter and honey shall he eat, that he may know to refuse the evil, and choose the good. + +Tuesday 23-April, 2024 diff --git a/scripture/kjv/04/23/24/scripture.tg.id b/scripture/kjv/04/23/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/23/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/23/24/scripture.today b/scripture/kjv/04/23/24/scripture.today new file mode 100644 index 00000000..7691ad5c --- /dev/null +++ b/scripture/kjv/04/23/24/scripture.today @@ -0,0 +1 @@ +23 7:15 diff --git a/scripture/kjv/04/23/25/scripture.html b/scripture/kjv/04/23/25/scripture.html new file mode 100644 index 00000000..97d1daea --- /dev/null +++ b/scripture/kjv/04/23/25/scripture.html @@ -0,0 +1,3 @@ +Proverbs 10:17
+17 He is in the way of life that keepeth instruction: but he that refuseth reproof erreth.

+Wednesday 23-April, 2025 diff --git a/scripture/kjv/04/23/25/scripture.json b/scripture/kjv/04/23/25/scripture.json new file mode 100644 index 00000000..5f930987 --- /dev/null +++ b/scripture/kjv/04/23/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "10", + "date": "Wednesday 23-April, 2025", + "getbible": "https://getbible.life/kjv/Proverbs/10/17", + "name": "Proverbs 10:17", + "scripture": [ + { + "nr": "17", + "text": "He is in the way of life that keepeth instruction: but he that refuseth reproof erreth." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17", + "version": "kjv" +} diff --git a/scripture/kjv/04/23/25/scripture.md b/scripture/kjv/04/23/25/scripture.md new file mode 100644 index 00000000..749084c4 --- /dev/null +++ b/scripture/kjv/04/23/25/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 10:17** + +17 He is in the way of life that keepeth instruction: but he that refuseth reproof erreth. + +[Wednesday 23-April, 2025](https://getbible.life/kjv/Proverbs/10/17) diff --git a/scripture/kjv/04/23/25/scripture.tg b/scripture/kjv/04/23/25/scripture.tg new file mode 100644 index 00000000..d6031656 --- /dev/null +++ b/scripture/kjv/04/23/25/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 10:17 +17 He is in the way of life that keepeth instruction: but he that refuseth reproof erreth. + +Wednesday 23-April, 2025 diff --git a/scripture/kjv/04/23/25/scripture.tg.id b/scripture/kjv/04/23/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/23/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/23/25/scripture.today b/scripture/kjv/04/23/25/scripture.today new file mode 100644 index 00000000..12e04de7 --- /dev/null +++ b/scripture/kjv/04/23/25/scripture.today @@ -0,0 +1 @@ +20 10:17 diff --git a/scripture/kjv/04/23/26/scripture.html b/scripture/kjv/04/23/26/scripture.html new file mode 100644 index 00000000..ea40ce69 --- /dev/null +++ b/scripture/kjv/04/23/26/scripture.html @@ -0,0 +1,3 @@ +Proverbs 8:32-33
+32 Now therefore hearken unto me, O ye children: for blessed are they that keep my ways. 33 Hear instruction, and be wise, and refuse it not.

+Thursday 23-April, 2026 diff --git a/scripture/kjv/04/23/26/scripture.json b/scripture/kjv/04/23/26/scripture.json new file mode 100644 index 00000000..3cf1dea8 --- /dev/null +++ b/scripture/kjv/04/23/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Proverbs", + "chapter": "8", + "date": "Thursday 23-April, 2026", + "getbible": "https://getbible.life/kjv/Proverbs/8/32-33", + "name": "Proverbs 8:32-33", + "scripture": [ + { + "nr": "32", + "text": "Now therefore hearken unto me, O ye children: for blessed are they that keep my ways." + }, + { + "nr": "33", + "text": "Hear instruction, and be wise, and refuse it not." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "32-33", + "version": "kjv" +} diff --git a/scripture/kjv/04/23/26/scripture.md b/scripture/kjv/04/23/26/scripture.md new file mode 100644 index 00000000..2f552f2b --- /dev/null +++ b/scripture/kjv/04/23/26/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 8:32-33** + +32 Now therefore hearken unto me, O ye children: for blessed are they that keep my ways. 33 Hear instruction, and be wise, and refuse it not. + +[Thursday 23-April, 2026](https://getbible.life/kjv/Proverbs/8/32-33) diff --git a/scripture/kjv/04/23/26/scripture.tg b/scripture/kjv/04/23/26/scripture.tg new file mode 100644 index 00000000..3872f8f2 --- /dev/null +++ b/scripture/kjv/04/23/26/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 8:32-33 +32 Now therefore hearken unto me, O ye children: for blessed are they that keep my ways. 33 Hear instruction, and be wise, and refuse it not. + +Thursday 23-April, 2026 diff --git a/scripture/kjv/04/23/26/scripture.tg.id b/scripture/kjv/04/23/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/23/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/23/26/scripture.today b/scripture/kjv/04/23/26/scripture.today new file mode 100644 index 00000000..064abbfb --- /dev/null +++ b/scripture/kjv/04/23/26/scripture.today @@ -0,0 +1 @@ +20 8:32-33 diff --git a/scripture/kjv/04/24/23/scripture.html b/scripture/kjv/04/24/23/scripture.html new file mode 100644 index 00000000..fa19d508 --- /dev/null +++ b/scripture/kjv/04/24/23/scripture.html @@ -0,0 +1,3 @@ +John 12:48
+48 He that rejecteth me, and receiveth not my words, hath one that judgeth him: the word that I have spoken, the same shall judge him in the last day.

+Monday 24-April, 2023 diff --git a/scripture/kjv/04/24/23/scripture.json b/scripture/kjv/04/24/23/scripture.json new file mode 100644 index 00000000..293956fa --- /dev/null +++ b/scripture/kjv/04/24/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Monday 24-April, 2023", + "name": "John 12:48", + "scripture": [ + { + "nr": "48", + "text": "He that rejecteth me, and receiveth not my words, hath one that judgeth him: the word that I have spoken, the same shall judge him in the last day." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/24/23/scripture.md b/scripture/kjv/04/24/23/scripture.md new file mode 100644 index 00000000..eb6acd61 --- /dev/null +++ b/scripture/kjv/04/24/23/scripture.md @@ -0,0 +1,5 @@ +**John 12:48** + +48 He that rejecteth me, and receiveth not my words, hath one that judgeth him: the word that I have spoken, the same shall judge him in the last day. + +[Monday 24-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/24/23/scripture.tg b/scripture/kjv/04/24/23/scripture.tg new file mode 100644 index 00000000..c2a44e58 --- /dev/null +++ b/scripture/kjv/04/24/23/scripture.tg @@ -0,0 +1,4 @@ +John 12:48 +48 He that rejecteth me, and receiveth not my words, hath one that judgeth him: the word that I have spoken, the same shall judge him in the last day. + +Monday 24-April, 2023 diff --git a/scripture/kjv/04/24/23/scripture.tg.id b/scripture/kjv/04/24/23/scripture.tg.id new file mode 100644 index 00000000..61600586 --- /dev/null +++ b/scripture/kjv/04/24/23/scripture.tg.id @@ -0,0 +1 @@ +928 diff --git a/scripture/kjv/04/24/23/scripture.today b/scripture/kjv/04/24/23/scripture.today new file mode 100644 index 00000000..34e7a078 --- /dev/null +++ b/scripture/kjv/04/24/23/scripture.today @@ -0,0 +1 @@ +43 12:48 diff --git a/scripture/kjv/04/24/24/scripture.html b/scripture/kjv/04/24/24/scripture.html new file mode 100644 index 00000000..35f1068d --- /dev/null +++ b/scripture/kjv/04/24/24/scripture.html @@ -0,0 +1,3 @@ +Matthew 24:33
+33 So likewise ye, when ye shall see all these things, know that it is near, even at the doors.

+Wednesday 24-April, 2024 diff --git a/scripture/kjv/04/24/24/scripture.json b/scripture/kjv/04/24/24/scripture.json new file mode 100644 index 00000000..d63160bd --- /dev/null +++ b/scripture/kjv/04/24/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Matthew", + "chapter": "24", + "date": "Wednesday 24-April, 2024", + "getbible": "https://getbible.life/kjv/Matthew/24/33", + "name": "Matthew 24:33", + "scripture": [ + { + "nr": "33", + "text": "So likewise ye, when ye shall see all these things, know that it is near, even at the doors." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "33", + "version": "kjv" +} diff --git a/scripture/kjv/04/24/24/scripture.md b/scripture/kjv/04/24/24/scripture.md new file mode 100644 index 00000000..e25e6dfa --- /dev/null +++ b/scripture/kjv/04/24/24/scripture.md @@ -0,0 +1,5 @@ +**Matthew 24:33** + +33 So likewise ye, when ye shall see all these things, know that it is near, even at the doors. + +[Wednesday 24-April, 2024](https://getbible.life/kjv/Matthew/24/33) diff --git a/scripture/kjv/04/24/24/scripture.tg b/scripture/kjv/04/24/24/scripture.tg new file mode 100644 index 00000000..03bfb526 --- /dev/null +++ b/scripture/kjv/04/24/24/scripture.tg @@ -0,0 +1,4 @@ +Matthew 24:33 +33 So likewise ye, when ye shall see all these things, know that it is near, even at the doors. + +Wednesday 24-April, 2024 diff --git a/scripture/kjv/04/24/24/scripture.tg.id b/scripture/kjv/04/24/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/24/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/24/24/scripture.today b/scripture/kjv/04/24/24/scripture.today new file mode 100644 index 00000000..6fd70870 --- /dev/null +++ b/scripture/kjv/04/24/24/scripture.today @@ -0,0 +1 @@ +40 24:33 diff --git a/scripture/kjv/04/24/25/scripture.html b/scripture/kjv/04/24/25/scripture.html new file mode 100644 index 00000000..83c758cb --- /dev/null +++ b/scripture/kjv/04/24/25/scripture.html @@ -0,0 +1,3 @@ +Hebrews 10:17
+17 And their sins and iniquities will I remember no more.

+Thursday 24-April, 2025 diff --git a/scripture/kjv/04/24/25/scripture.json b/scripture/kjv/04/24/25/scripture.json new file mode 100644 index 00000000..45c2f392 --- /dev/null +++ b/scripture/kjv/04/24/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Hebrews", + "chapter": "10", + "date": "Thursday 24-April, 2025", + "getbible": "https://getbible.life/kjv/Hebrews/10/17", + "name": "Hebrews 10:17", + "scripture": [ + { + "nr": "17", + "text": "And their sins and iniquities will I remember no more." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17", + "version": "kjv" +} diff --git a/scripture/kjv/04/24/25/scripture.md b/scripture/kjv/04/24/25/scripture.md new file mode 100644 index 00000000..17375e1e --- /dev/null +++ b/scripture/kjv/04/24/25/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 10:17** + +17 And their sins and iniquities will I remember no more. + +[Thursday 24-April, 2025](https://getbible.life/kjv/Hebrews/10/17) diff --git a/scripture/kjv/04/24/25/scripture.tg b/scripture/kjv/04/24/25/scripture.tg new file mode 100644 index 00000000..c6ee68c3 --- /dev/null +++ b/scripture/kjv/04/24/25/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 10:17 +17 And their sins and iniquities will I remember no more. + +Thursday 24-April, 2025 diff --git a/scripture/kjv/04/24/25/scripture.tg.id b/scripture/kjv/04/24/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/24/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/24/25/scripture.today b/scripture/kjv/04/24/25/scripture.today new file mode 100644 index 00000000..fff1879a --- /dev/null +++ b/scripture/kjv/04/24/25/scripture.today @@ -0,0 +1 @@ +58 10:17 diff --git a/scripture/kjv/04/24/26/scripture.html b/scripture/kjv/04/24/26/scripture.html new file mode 100644 index 00000000..31ebaf64 --- /dev/null +++ b/scripture/kjv/04/24/26/scripture.html @@ -0,0 +1,3 @@ +Psalms 107:4-7
+4 They wandered in the wilderness in a solitary way; they found no city to dwell in. 5 Hungry and thirsty, their soul fainted in them. 6 Then they cried unto the Lord in their trouble, and he delivered them out of their distresses. 7 And he led them forth by the right way, that they might go to a city of habitation.

+Friday 24-April, 2026 diff --git a/scripture/kjv/04/24/26/scripture.json b/scripture/kjv/04/24/26/scripture.json new file mode 100644 index 00000000..da549a24 --- /dev/null +++ b/scripture/kjv/04/24/26/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "Psalms", + "chapter": "107", + "date": "Friday 24-April, 2026", + "getbible": "https://getbible.life/kjv/Psalms/107/4-7", + "name": "Psalms 107:4-7", + "scripture": [ + { + "nr": "4", + "text": "They wandered in the wilderness in a solitary way; they found no city to dwell in." + }, + { + "nr": "5", + "text": "Hungry and thirsty, their soul fainted in them." + }, + { + "nr": "6", + "text": "Then they cried unto the Lord in their trouble, and he delivered them out of their distresses." + }, + { + "nr": "7", + "text": "And he led them forth by the right way, that they might go to a city of habitation." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4-7", + "version": "kjv" +} diff --git a/scripture/kjv/04/24/26/scripture.md b/scripture/kjv/04/24/26/scripture.md new file mode 100644 index 00000000..d9343e83 --- /dev/null +++ b/scripture/kjv/04/24/26/scripture.md @@ -0,0 +1,5 @@ +**Psalms 107:4-7** + +4 They wandered in the wilderness in a solitary way; they found no city to dwell in. 5 Hungry and thirsty, their soul fainted in them. 6 Then they cried unto the Lord in their trouble, and he delivered them out of their distresses. 7 And he led them forth by the right way, that they might go to a city of habitation. + +[Friday 24-April, 2026](https://getbible.life/kjv/Psalms/107/4-7) diff --git a/scripture/kjv/04/24/26/scripture.tg b/scripture/kjv/04/24/26/scripture.tg new file mode 100644 index 00000000..a7f8ef85 --- /dev/null +++ b/scripture/kjv/04/24/26/scripture.tg @@ -0,0 +1,4 @@ +Psalms 107:4-7 +4 They wandered in the wilderness in a solitary way; they found no city to dwell in. 5 Hungry and thirsty, their soul fainted in them. 6 Then they cried unto the Lord in their trouble, and he delivered them out of their distresses. 7 And he led them forth by the right way, that they might go to a city of habitation. + +Friday 24-April, 2026 diff --git a/scripture/kjv/04/24/26/scripture.tg.id b/scripture/kjv/04/24/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/24/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/24/26/scripture.today b/scripture/kjv/04/24/26/scripture.today new file mode 100644 index 00000000..da9b7652 --- /dev/null +++ b/scripture/kjv/04/24/26/scripture.today @@ -0,0 +1 @@ +19 107:4-7 diff --git a/scripture/kjv/04/25/23/scripture.html b/scripture/kjv/04/25/23/scripture.html new file mode 100644 index 00000000..4b7bc6df --- /dev/null +++ b/scripture/kjv/04/25/23/scripture.html @@ -0,0 +1,3 @@ +James 1:25
+25 But whoso looketh into the perfect law of liberty, and continueth therein, he being not a forgetful hearer, but a doer of the work, this man shall be blessed in his deed.

+Tuesday 25-April, 2023 diff --git a/scripture/kjv/04/25/23/scripture.json b/scripture/kjv/04/25/23/scripture.json new file mode 100644 index 00000000..f0e043bc --- /dev/null +++ b/scripture/kjv/04/25/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Tuesday 25-April, 2023", + "name": "James 1:25", + "scripture": [ + { + "nr": "25", + "text": "But whoso looketh into the perfect law of liberty, and continueth therein, he being not a forgetful hearer, but a doer of the work, this man shall be blessed in his deed." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/25/23/scripture.md b/scripture/kjv/04/25/23/scripture.md new file mode 100644 index 00000000..76122767 --- /dev/null +++ b/scripture/kjv/04/25/23/scripture.md @@ -0,0 +1,5 @@ +**James 1:25** + +25 But whoso looketh into the perfect law of liberty, and continueth therein, he being not a forgetful hearer, but a doer of the work, this man shall be blessed in his deed. + +[Tuesday 25-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/25/23/scripture.tg b/scripture/kjv/04/25/23/scripture.tg new file mode 100644 index 00000000..c22ac3b4 --- /dev/null +++ b/scripture/kjv/04/25/23/scripture.tg @@ -0,0 +1,4 @@ +James 1:25 +25 But whoso looketh into the perfect law of liberty, and continueth therein, he being not a forgetful hearer, but a doer of the work, this man shall be blessed in his deed. + +Tuesday 25-April, 2023 diff --git a/scripture/kjv/04/25/23/scripture.tg.id b/scripture/kjv/04/25/23/scripture.tg.id new file mode 100644 index 00000000..63881d8a --- /dev/null +++ b/scripture/kjv/04/25/23/scripture.tg.id @@ -0,0 +1 @@ +929 diff --git a/scripture/kjv/04/25/23/scripture.today b/scripture/kjv/04/25/23/scripture.today new file mode 100644 index 00000000..70681293 --- /dev/null +++ b/scripture/kjv/04/25/23/scripture.today @@ -0,0 +1 @@ +59 1:25 diff --git a/scripture/kjv/04/25/24/scripture.html b/scripture/kjv/04/25/24/scripture.html new file mode 100644 index 00000000..940d84ae --- /dev/null +++ b/scripture/kjv/04/25/24/scripture.html @@ -0,0 +1,3 @@ +Matthew 14:23
+23 And when he had sent the multitudes away, he went up into a mountain apart to pray: and when the evening was come, he was there alone.

+Thursday 25-April, 2024 diff --git a/scripture/kjv/04/25/24/scripture.json b/scripture/kjv/04/25/24/scripture.json new file mode 100644 index 00000000..62b209d0 --- /dev/null +++ b/scripture/kjv/04/25/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Matthew", + "chapter": "14", + "date": "Thursday 25-April, 2024", + "getbible": "https://getbible.life/kjv/Matthew/14/23", + "name": "Matthew 14:23", + "scripture": [ + { + "nr": "23", + "text": "And when he had sent the multitudes away, he went up into a mountain apart to pray: and when the evening was come, he was there alone." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "23", + "version": "kjv" +} diff --git a/scripture/kjv/04/25/24/scripture.md b/scripture/kjv/04/25/24/scripture.md new file mode 100644 index 00000000..23938b8a --- /dev/null +++ b/scripture/kjv/04/25/24/scripture.md @@ -0,0 +1,5 @@ +**Matthew 14:23** + +23 And when he had sent the multitudes away, he went up into a mountain apart to pray: and when the evening was come, he was there alone. + +[Thursday 25-April, 2024](https://getbible.life/kjv/Matthew/14/23) diff --git a/scripture/kjv/04/25/24/scripture.tg b/scripture/kjv/04/25/24/scripture.tg new file mode 100644 index 00000000..01bd65a9 --- /dev/null +++ b/scripture/kjv/04/25/24/scripture.tg @@ -0,0 +1,4 @@ +Matthew 14:23 +23 And when he had sent the multitudes away, he went up into a mountain apart to pray: and when the evening was come, he was there alone. + +Thursday 25-April, 2024 diff --git a/scripture/kjv/04/25/24/scripture.tg.id b/scripture/kjv/04/25/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/25/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/25/24/scripture.today b/scripture/kjv/04/25/24/scripture.today new file mode 100644 index 00000000..1f2046dc --- /dev/null +++ b/scripture/kjv/04/25/24/scripture.today @@ -0,0 +1 @@ +40 14:23 diff --git a/scripture/kjv/04/25/25/scripture.html b/scripture/kjv/04/25/25/scripture.html new file mode 100644 index 00000000..ad39c4ff --- /dev/null +++ b/scripture/kjv/04/25/25/scripture.html @@ -0,0 +1,3 @@ +Proverbs 10:21
+21 The lips of the righteous feed many: but fools die for want of wisdom.

+Friday 25-April, 2025 diff --git a/scripture/kjv/04/25/25/scripture.json b/scripture/kjv/04/25/25/scripture.json new file mode 100644 index 00000000..a314afd5 --- /dev/null +++ b/scripture/kjv/04/25/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "10", + "date": "Friday 25-April, 2025", + "getbible": "https://getbible.life/kjv/Proverbs/10/21", + "name": "Proverbs 10:21", + "scripture": [ + { + "nr": "21", + "text": "The lips of the righteous feed many: but fools die for want of wisdom." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "21", + "version": "kjv" +} diff --git a/scripture/kjv/04/25/25/scripture.md b/scripture/kjv/04/25/25/scripture.md new file mode 100644 index 00000000..79ec62f2 --- /dev/null +++ b/scripture/kjv/04/25/25/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 10:21** + +21 The lips of the righteous feed many: but fools die for want of wisdom. + +[Friday 25-April, 2025](https://getbible.life/kjv/Proverbs/10/21) diff --git a/scripture/kjv/04/25/25/scripture.tg b/scripture/kjv/04/25/25/scripture.tg new file mode 100644 index 00000000..70c04709 --- /dev/null +++ b/scripture/kjv/04/25/25/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 10:21 +21 The lips of the righteous feed many: but fools die for want of wisdom. + +Friday 25-April, 2025 diff --git a/scripture/kjv/04/25/25/scripture.tg.id b/scripture/kjv/04/25/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/25/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/25/25/scripture.today b/scripture/kjv/04/25/25/scripture.today new file mode 100644 index 00000000..6f595fa5 --- /dev/null +++ b/scripture/kjv/04/25/25/scripture.today @@ -0,0 +1 @@ +20 10:21 diff --git a/scripture/kjv/04/25/26/scripture.html b/scripture/kjv/04/25/26/scripture.html new file mode 100644 index 00000000..02958d35 --- /dev/null +++ b/scripture/kjv/04/25/26/scripture.html @@ -0,0 +1,3 @@ +Genesis 29:20
+20 And Jacob served seven years for Rachel; and they seemed unto him but a few days, for the love he had to her.

+Saturday 25-April, 2026 diff --git a/scripture/kjv/04/25/26/scripture.json b/scripture/kjv/04/25/26/scripture.json new file mode 100644 index 00000000..60925259 --- /dev/null +++ b/scripture/kjv/04/25/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Genesis", + "chapter": "29", + "date": "Saturday 25-April, 2026", + "getbible": "https://getbible.life/kjv/Genesis/29/20", + "name": "Genesis 29:20", + "scripture": [ + { + "nr": "20", + "text": "And Jacob served seven years for Rachel; and they seemed unto him but a few days, for the love he had to her." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20", + "version": "kjv" +} diff --git a/scripture/kjv/04/25/26/scripture.md b/scripture/kjv/04/25/26/scripture.md new file mode 100644 index 00000000..c946460c --- /dev/null +++ b/scripture/kjv/04/25/26/scripture.md @@ -0,0 +1,5 @@ +**Genesis 29:20** + +20 And Jacob served seven years for Rachel; and they seemed unto him but a few days, for the love he had to her. + +[Saturday 25-April, 2026](https://getbible.life/kjv/Genesis/29/20) diff --git a/scripture/kjv/04/25/26/scripture.tg b/scripture/kjv/04/25/26/scripture.tg new file mode 100644 index 00000000..7888cc04 --- /dev/null +++ b/scripture/kjv/04/25/26/scripture.tg @@ -0,0 +1,4 @@ +Genesis 29:20 +20 And Jacob served seven years for Rachel; and they seemed unto him but a few days, for the love he had to her. + +Saturday 25-April, 2026 diff --git a/scripture/kjv/04/25/26/scripture.tg.id b/scripture/kjv/04/25/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/25/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/25/26/scripture.today b/scripture/kjv/04/25/26/scripture.today new file mode 100644 index 00000000..b1ba952c --- /dev/null +++ b/scripture/kjv/04/25/26/scripture.today @@ -0,0 +1 @@ +1 29:20 diff --git a/scripture/kjv/04/26/23/scripture.html b/scripture/kjv/04/26/23/scripture.html new file mode 100644 index 00000000..9b088b14 --- /dev/null +++ b/scripture/kjv/04/26/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 31:20
+20 She stretcheth out her hand to the poor; yea, she reacheth forth her hands to the needy.

+Wednesday 26-April, 2023 diff --git a/scripture/kjv/04/26/23/scripture.json b/scripture/kjv/04/26/23/scripture.json new file mode 100644 index 00000000..806a3a4c --- /dev/null +++ b/scripture/kjv/04/26/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Wednesday 26-April, 2023", + "name": "Proverbs 31:20", + "scripture": [ + { + "nr": "20", + "text": "She stretcheth out her hand to the poor; yea, she reacheth forth her hands to the needy." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/26/23/scripture.md b/scripture/kjv/04/26/23/scripture.md new file mode 100644 index 00000000..5b97c76d --- /dev/null +++ b/scripture/kjv/04/26/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 31:20** + +20 She stretcheth out her hand to the poor; yea, she reacheth forth her hands to the needy. + +[Wednesday 26-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/26/23/scripture.tg b/scripture/kjv/04/26/23/scripture.tg new file mode 100644 index 00000000..08fb7a59 --- /dev/null +++ b/scripture/kjv/04/26/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 31:20 +20 She stretcheth out her hand to the poor; yea, she reacheth forth her hands to the needy. + +Wednesday 26-April, 2023 diff --git a/scripture/kjv/04/26/23/scripture.tg.id b/scripture/kjv/04/26/23/scripture.tg.id new file mode 100644 index 00000000..a04e026f --- /dev/null +++ b/scripture/kjv/04/26/23/scripture.tg.id @@ -0,0 +1 @@ +930 diff --git a/scripture/kjv/04/26/23/scripture.today b/scripture/kjv/04/26/23/scripture.today new file mode 100644 index 00000000..813d00cb --- /dev/null +++ b/scripture/kjv/04/26/23/scripture.today @@ -0,0 +1 @@ +20 31:20 diff --git a/scripture/kjv/04/26/24/scripture.html b/scripture/kjv/04/26/24/scripture.html new file mode 100644 index 00000000..6cc199db --- /dev/null +++ b/scripture/kjv/04/26/24/scripture.html @@ -0,0 +1,3 @@ +Romans 8:12-13
+12 Therefore, brethren, we are debtors, not to the flesh, to live after the flesh. 13 For if ye live after the flesh, ye shall die: but if ye through the Spirit do mortify the deeds of the body, ye shall live.

+Friday 26-April, 2024 diff --git a/scripture/kjv/04/26/24/scripture.json b/scripture/kjv/04/26/24/scripture.json new file mode 100644 index 00000000..5b590ccd --- /dev/null +++ b/scripture/kjv/04/26/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Romans", + "chapter": "8", + "date": "Friday 26-April, 2024", + "getbible": "https://getbible.life/kjv/Romans/8/12-13", + "name": "Romans 8:12-13", + "scripture": [ + { + "nr": "12", + "text": "Therefore, brethren, we are debtors, not to the flesh, to live after the flesh." + }, + { + "nr": "13", + "text": "For if ye live after the flesh, ye shall die: but if ye through the Spirit do mortify the deeds of the body, ye shall live." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12-13", + "version": "kjv" +} diff --git a/scripture/kjv/04/26/24/scripture.md b/scripture/kjv/04/26/24/scripture.md new file mode 100644 index 00000000..5b716b71 --- /dev/null +++ b/scripture/kjv/04/26/24/scripture.md @@ -0,0 +1,5 @@ +**Romans 8:12-13** + +12 Therefore, brethren, we are debtors, not to the flesh, to live after the flesh. 13 For if ye live after the flesh, ye shall die: but if ye through the Spirit do mortify the deeds of the body, ye shall live. + +[Friday 26-April, 2024](https://getbible.life/kjv/Romans/8/12-13) diff --git a/scripture/kjv/04/26/24/scripture.tg b/scripture/kjv/04/26/24/scripture.tg new file mode 100644 index 00000000..b4812cb8 --- /dev/null +++ b/scripture/kjv/04/26/24/scripture.tg @@ -0,0 +1,4 @@ +Romans 8:12-13 +12 Therefore, brethren, we are debtors, not to the flesh, to live after the flesh. 13 For if ye live after the flesh, ye shall die: but if ye through the Spirit do mortify the deeds of the body, ye shall live. + +Friday 26-April, 2024 diff --git a/scripture/kjv/04/26/24/scripture.tg.id b/scripture/kjv/04/26/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/26/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/26/24/scripture.today b/scripture/kjv/04/26/24/scripture.today new file mode 100644 index 00000000..d50b1c43 --- /dev/null +++ b/scripture/kjv/04/26/24/scripture.today @@ -0,0 +1 @@ +45 8:12-13 diff --git a/scripture/kjv/04/26/25/scripture.html b/scripture/kjv/04/26/25/scripture.html new file mode 100644 index 00000000..1f219413 --- /dev/null +++ b/scripture/kjv/04/26/25/scripture.html @@ -0,0 +1,3 @@ +Luke 22:63-65
+63 And the men that held Jesus mocked him, and smote him. 64 And when they had blindfolded him, they struck him on the face, and asked him, saying, Prophesy, who is it that smote thee? 65 And many other things blasphemously spake they against him.

+Saturday 26-April, 2025 diff --git a/scripture/kjv/04/26/25/scripture.json b/scripture/kjv/04/26/25/scripture.json new file mode 100644 index 00000000..a8024f3c --- /dev/null +++ b/scripture/kjv/04/26/25/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Luke", + "chapter": "22", + "date": "Saturday 26-April, 2025", + "getbible": "https://getbible.life/kjv/Luke/22/63-65", + "name": "Luke 22:63-65", + "scripture": [ + { + "nr": "63", + "text": "And the men that held Jesus mocked him, and smote him. " + }, + { + "nr": "64", + "text": "And when they had blindfolded him, they struck him on the face, and asked him, saying, Prophesy, who is it that smote thee?" + }, + { + "nr": "65", + "text": "And many other things blasphemously spake they against him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "63-65", + "version": "kjv" +} diff --git a/scripture/kjv/04/26/25/scripture.md b/scripture/kjv/04/26/25/scripture.md new file mode 100644 index 00000000..06cf09c0 --- /dev/null +++ b/scripture/kjv/04/26/25/scripture.md @@ -0,0 +1,5 @@ +**Luke 22:63-65** + +63 And the men that held Jesus mocked him, and smote him. 64 And when they had blindfolded him, they struck him on the face, and asked him, saying, Prophesy, who is it that smote thee? 65 And many other things blasphemously spake they against him. + +[Saturday 26-April, 2025](https://getbible.life/kjv/Luke/22/63-65) diff --git a/scripture/kjv/04/26/25/scripture.tg b/scripture/kjv/04/26/25/scripture.tg new file mode 100644 index 00000000..279240c4 --- /dev/null +++ b/scripture/kjv/04/26/25/scripture.tg @@ -0,0 +1,4 @@ +Luke 22:63-65 +63 And the men that held Jesus mocked him, and smote him. 64 And when they had blindfolded him, they struck him on the face, and asked him, saying, Prophesy, who is it that smote thee? 65 And many other things blasphemously spake they against him. + +Saturday 26-April, 2025 diff --git a/scripture/kjv/04/26/25/scripture.tg.id b/scripture/kjv/04/26/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/26/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/26/25/scripture.today b/scripture/kjv/04/26/25/scripture.today new file mode 100644 index 00000000..a4bc1b34 --- /dev/null +++ b/scripture/kjv/04/26/25/scripture.today @@ -0,0 +1 @@ +42 22:63-65 diff --git a/scripture/kjv/04/26/26/scripture.html b/scripture/kjv/04/26/26/scripture.html new file mode 100644 index 00000000..4bda9067 --- /dev/null +++ b/scripture/kjv/04/26/26/scripture.html @@ -0,0 +1,3 @@ +Jonah 2:7
+7 When my soul fainted within me I remembered the Lord: and my prayer came in unto thee, into thine holy temple.

+Sunday 26-April, 2026 diff --git a/scripture/kjv/04/26/26/scripture.json b/scripture/kjv/04/26/26/scripture.json new file mode 100644 index 00000000..5d309835 --- /dev/null +++ b/scripture/kjv/04/26/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Jonah", + "chapter": "2", + "date": "Sunday 26-April, 2026", + "getbible": "https://getbible.life/kjv/Jonah/2/7", + "name": "Jonah 2:7", + "scripture": [ + { + "nr": "7", + "text": "When my soul fainted within me I remembered the Lord: and my prayer came in unto thee, into thine holy temple." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7", + "version": "kjv" +} diff --git a/scripture/kjv/04/26/26/scripture.md b/scripture/kjv/04/26/26/scripture.md new file mode 100644 index 00000000..fb13531c --- /dev/null +++ b/scripture/kjv/04/26/26/scripture.md @@ -0,0 +1,5 @@ +**Jonah 2:7** + +7 When my soul fainted within me I remembered the Lord: and my prayer came in unto thee, into thine holy temple. + +[Sunday 26-April, 2026](https://getbible.life/kjv/Jonah/2/7) diff --git a/scripture/kjv/04/26/26/scripture.tg b/scripture/kjv/04/26/26/scripture.tg new file mode 100644 index 00000000..36496cf8 --- /dev/null +++ b/scripture/kjv/04/26/26/scripture.tg @@ -0,0 +1,4 @@ +Jonah 2:7 +7 When my soul fainted within me I remembered the Lord: and my prayer came in unto thee, into thine holy temple. + +Sunday 26-April, 2026 diff --git a/scripture/kjv/04/26/26/scripture.tg.id b/scripture/kjv/04/26/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/26/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/26/26/scripture.today b/scripture/kjv/04/26/26/scripture.today new file mode 100644 index 00000000..7a741d93 --- /dev/null +++ b/scripture/kjv/04/26/26/scripture.today @@ -0,0 +1 @@ +32 2:7 diff --git a/scripture/kjv/04/27/23/scripture.html b/scripture/kjv/04/27/23/scripture.html new file mode 100644 index 00000000..fff5c81b --- /dev/null +++ b/scripture/kjv/04/27/23/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 3:3-4
+3 For ye are yet carnal: for whereas there is among you envying, and strife, and divisions, are ye not carnal, and walk as men? 4 For while one saith, I am of Paul; and another, I am of Apollos; are ye not carnal?

+Thursday 27-April, 2023 diff --git a/scripture/kjv/04/27/23/scripture.json b/scripture/kjv/04/27/23/scripture.json new file mode 100644 index 00000000..92390bce --- /dev/null +++ b/scripture/kjv/04/27/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Thursday 27-April, 2023", + "name": "1 Corinthians 3:3-4", + "scripture": [ + { + "nr": "3", + "text": "For ye are yet carnal: for whereas there is among you envying, and strife, and divisions, are ye not carnal, and walk as men?" + }, + { + "nr": "4", + "text": "For while one saith, I am of Paul; and another, I am of Apollos; are ye not carnal?" + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/27/23/scripture.md b/scripture/kjv/04/27/23/scripture.md new file mode 100644 index 00000000..8d73ca29 --- /dev/null +++ b/scripture/kjv/04/27/23/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 3:3-4** + +3 For ye are yet carnal: for whereas there is among you envying, and strife, and divisions, are ye not carnal, and walk as men? 4 For while one saith, I am of Paul; and another, I am of Apollos; are ye not carnal? + +[Thursday 27-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/27/23/scripture.tg b/scripture/kjv/04/27/23/scripture.tg new file mode 100644 index 00000000..d1bb943a --- /dev/null +++ b/scripture/kjv/04/27/23/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 3:3-4 +3 For ye are yet carnal: for whereas there is among you envying, and strife, and divisions, are ye not carnal, and walk as men? 4 For while one saith, I am of Paul; and another, I am of Apollos; are ye not carnal? + +Thursday 27-April, 2023 diff --git a/scripture/kjv/04/27/23/scripture.tg.id b/scripture/kjv/04/27/23/scripture.tg.id new file mode 100644 index 00000000..11d171a0 --- /dev/null +++ b/scripture/kjv/04/27/23/scripture.tg.id @@ -0,0 +1 @@ +931 diff --git a/scripture/kjv/04/27/23/scripture.today b/scripture/kjv/04/27/23/scripture.today new file mode 100644 index 00000000..95e0d223 --- /dev/null +++ b/scripture/kjv/04/27/23/scripture.today @@ -0,0 +1 @@ +46 3:3-4 diff --git a/scripture/kjv/04/27/24/scripture.html b/scripture/kjv/04/27/24/scripture.html new file mode 100644 index 00000000..0e6dd476 --- /dev/null +++ b/scripture/kjv/04/27/24/scripture.html @@ -0,0 +1,3 @@ +Philippians 1:9-11
+9 And this I pray, that your love may abound yet more and more in knowledge and in all judgment; 10 That ye may approve things that are excellent; that ye may be sincere and without offence till the day of Christ; 11 Being filled with the fruits of righteousness, which are by Jesus Christ, unto the glory and praise of God.

+Saturday 27-April, 2024 diff --git a/scripture/kjv/04/27/24/scripture.json b/scripture/kjv/04/27/24/scripture.json new file mode 100644 index 00000000..f50a7c3b --- /dev/null +++ b/scripture/kjv/04/27/24/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Philippians", + "chapter": "1", + "date": "Saturday 27-April, 2024", + "getbible": "https://getbible.life/kjv/Philippians/1/9-11", + "name": "Philippians 1:9-11", + "scripture": [ + { + "nr": "9", + "text": "And this I pray, that your love may abound yet more and more in knowledge and in all judgment;" + }, + { + "nr": "10", + "text": "That ye may approve things that are excellent; that ye may be sincere and without offence till the day of Christ;" + }, + { + "nr": "11", + "text": "Being filled with the fruits of righteousness, which are by Jesus Christ, unto the glory and praise of God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9-11", + "version": "kjv" +} diff --git a/scripture/kjv/04/27/24/scripture.md b/scripture/kjv/04/27/24/scripture.md new file mode 100644 index 00000000..b2309163 --- /dev/null +++ b/scripture/kjv/04/27/24/scripture.md @@ -0,0 +1,5 @@ +**Philippians 1:9-11** + +9 And this I pray, that your love may abound yet more and more in knowledge and in all judgment; 10 That ye may approve things that are excellent; that ye may be sincere and without offence till the day of Christ; 11 Being filled with the fruits of righteousness, which are by Jesus Christ, unto the glory and praise of God. + +[Saturday 27-April, 2024](https://getbible.life/kjv/Philippians/1/9-11) diff --git a/scripture/kjv/04/27/24/scripture.tg b/scripture/kjv/04/27/24/scripture.tg new file mode 100644 index 00000000..1e3a1b8b --- /dev/null +++ b/scripture/kjv/04/27/24/scripture.tg @@ -0,0 +1,4 @@ +Philippians 1:9-11 +9 And this I pray, that your love may abound yet more and more in knowledge and in all judgment; 10 That ye may approve things that are excellent; that ye may be sincere and without offence till the day of Christ; 11 Being filled with the fruits of righteousness, which are by Jesus Christ, unto the glory and praise of God. + +Saturday 27-April, 2024 diff --git a/scripture/kjv/04/27/24/scripture.tg.id b/scripture/kjv/04/27/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/27/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/27/24/scripture.today b/scripture/kjv/04/27/24/scripture.today new file mode 100644 index 00000000..9ec5d7eb --- /dev/null +++ b/scripture/kjv/04/27/24/scripture.today @@ -0,0 +1 @@ +50 1:9-11 diff --git a/scripture/kjv/04/27/25/scripture.html b/scripture/kjv/04/27/25/scripture.html new file mode 100644 index 00000000..aad4e544 --- /dev/null +++ b/scripture/kjv/04/27/25/scripture.html @@ -0,0 +1,3 @@ +Jude 1:22-23
+22 And of some have compassion, making a difference: 23 And others save with fear, pulling them out of the fire; hating even the garment spotted by the flesh.

+Sunday 27-April, 2025 diff --git a/scripture/kjv/04/27/25/scripture.json b/scripture/kjv/04/27/25/scripture.json new file mode 100644 index 00000000..07b8fca4 --- /dev/null +++ b/scripture/kjv/04/27/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Jude", + "chapter": "1", + "date": "Sunday 27-April, 2025", + "getbible": "https://getbible.life/kjv/Jude/1/22-23", + "name": "Jude 1:22-23", + "scripture": [ + { + "nr": "22", + "text": "And of some have compassion, making a difference:" + }, + { + "nr": "23", + "text": "And others save with fear, pulling them out of the fire; hating even the garment spotted by the flesh." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "22-23", + "version": "kjv" +} diff --git a/scripture/kjv/04/27/25/scripture.md b/scripture/kjv/04/27/25/scripture.md new file mode 100644 index 00000000..0f1b191a --- /dev/null +++ b/scripture/kjv/04/27/25/scripture.md @@ -0,0 +1,5 @@ +**Jude 1:22-23** + +22 And of some have compassion, making a difference: 23 And others save with fear, pulling them out of the fire; hating even the garment spotted by the flesh. + +[Sunday 27-April, 2025](https://getbible.life/kjv/Jude/1/22-23) diff --git a/scripture/kjv/04/27/25/scripture.tg b/scripture/kjv/04/27/25/scripture.tg new file mode 100644 index 00000000..47abad8e --- /dev/null +++ b/scripture/kjv/04/27/25/scripture.tg @@ -0,0 +1,4 @@ +Jude 1:22-23 +22 And of some have compassion, making a difference: 23 And others save with fear, pulling them out of the fire; hating even the garment spotted by the flesh. + +Sunday 27-April, 2025 diff --git a/scripture/kjv/04/27/25/scripture.tg.id b/scripture/kjv/04/27/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/27/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/27/25/scripture.today b/scripture/kjv/04/27/25/scripture.today new file mode 100644 index 00000000..2afaae00 --- /dev/null +++ b/scripture/kjv/04/27/25/scripture.today @@ -0,0 +1 @@ +65 1:22-23 diff --git a/scripture/kjv/04/27/26/scripture.html b/scripture/kjv/04/27/26/scripture.html new file mode 100644 index 00000000..3e9f1fe1 --- /dev/null +++ b/scripture/kjv/04/27/26/scripture.html @@ -0,0 +1,3 @@ +Matthew 18:19-20
+19 Again I say unto you, That if two of you shall agree on earth as touching any thing that they shall ask, it shall be done for them of my Father which is in heaven. 20 For where two or three are gathered together in my name, there am I in the midst of them.

+Monday 27-April, 2026 diff --git a/scripture/kjv/04/27/26/scripture.json b/scripture/kjv/04/27/26/scripture.json new file mode 100644 index 00000000..ed70d36c --- /dev/null +++ b/scripture/kjv/04/27/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Matthew", + "chapter": "18", + "date": "Monday 27-April, 2026", + "getbible": "https://getbible.life/kjv/Matthew/18/19-20", + "name": "Matthew 18:19-20", + "scripture": [ + { + "nr": "19", + "text": "Again I say unto you, That if two of you shall agree on earth as touching any thing that they shall ask, it shall be done for them of my Father which is in heaven." + }, + { + "nr": "20", + "text": "For where two or three are gathered together in my name, there am I in the midst of them." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "19-20", + "version": "kjv" +} diff --git a/scripture/kjv/04/27/26/scripture.md b/scripture/kjv/04/27/26/scripture.md new file mode 100644 index 00000000..4f6487db --- /dev/null +++ b/scripture/kjv/04/27/26/scripture.md @@ -0,0 +1,5 @@ +**Matthew 18:19-20** + +19 Again I say unto you, That if two of you shall agree on earth as touching any thing that they shall ask, it shall be done for them of my Father which is in heaven. 20 For where two or three are gathered together in my name, there am I in the midst of them. + +[Monday 27-April, 2026](https://getbible.life/kjv/Matthew/18/19-20) diff --git a/scripture/kjv/04/27/26/scripture.tg b/scripture/kjv/04/27/26/scripture.tg new file mode 100644 index 00000000..629886be --- /dev/null +++ b/scripture/kjv/04/27/26/scripture.tg @@ -0,0 +1,4 @@ +Matthew 18:19-20 +19 Again I say unto you, That if two of you shall agree on earth as touching any thing that they shall ask, it shall be done for them of my Father which is in heaven. 20 For where two or three are gathered together in my name, there am I in the midst of them. + +Monday 27-April, 2026 diff --git a/scripture/kjv/04/27/26/scripture.tg.id b/scripture/kjv/04/27/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/27/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/27/26/scripture.today b/scripture/kjv/04/27/26/scripture.today new file mode 100644 index 00000000..9155df8b --- /dev/null +++ b/scripture/kjv/04/27/26/scripture.today @@ -0,0 +1 @@ +40 18:19-20 diff --git a/scripture/kjv/04/28/23/scripture.html b/scripture/kjv/04/28/23/scripture.html new file mode 100644 index 00000000..70af1d3d --- /dev/null +++ b/scripture/kjv/04/28/23/scripture.html @@ -0,0 +1,3 @@ +Mark 5:25-29
+25 And a certain woman, which had an issue of blood twelve years, 26 And had suffered many things of many physicians, and had spent all that she had, and was nothing bettered, but rather grew worse, 27 When she had heard of Jesus, came in the press behind, and touched his garment. 28 For she said, If I may touch but his clothes, I shall be whole. 29 And straightway the fountain of her blood was dried up; and she felt in her body that she was healed of that plague.

+Friday 28-April, 2023 diff --git a/scripture/kjv/04/28/23/scripture.json b/scripture/kjv/04/28/23/scripture.json new file mode 100644 index 00000000..2b696f44 --- /dev/null +++ b/scripture/kjv/04/28/23/scripture.json @@ -0,0 +1,29 @@ +{ + "date": "Friday 28-April, 2023", + "name": "Mark 5:25-29", + "scripture": [ + { + "nr": "25", + "text": "And a certain woman, which had an issue of blood twelve years," + }, + { + "nr": "26", + "text": "And had suffered many things of many physicians, and had spent all that she had, and was nothing bettered, but rather grew worse," + }, + { + "nr": "27", + "text": "When she had heard of Jesus, came in the press behind, and touched his garment." + }, + { + "nr": "28", + "text": "For she said, If I may touch but his clothes, I shall be whole." + }, + { + "nr": "29", + "text": "And straightway the fountain of her blood was dried up; and she felt in her body that she was healed of that plague." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/28/23/scripture.md b/scripture/kjv/04/28/23/scripture.md new file mode 100644 index 00000000..1c820ac4 --- /dev/null +++ b/scripture/kjv/04/28/23/scripture.md @@ -0,0 +1,5 @@ +**Mark 5:25-29** + +25 And a certain woman, which had an issue of blood twelve years, 26 And had suffered many things of many physicians, and had spent all that she had, and was nothing bettered, but rather grew worse, 27 When she had heard of Jesus, came in the press behind, and touched his garment. 28 For she said, If I may touch but his clothes, I shall be whole. 29 And straightway the fountain of her blood was dried up; and she felt in her body that she was healed of that plague. + +[Friday 28-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/28/23/scripture.tg b/scripture/kjv/04/28/23/scripture.tg new file mode 100644 index 00000000..d403836a --- /dev/null +++ b/scripture/kjv/04/28/23/scripture.tg @@ -0,0 +1,4 @@ +Mark 5:25-29 +25 And a certain woman, which had an issue of blood twelve years, 26 And had suffered many things of many physicians, and had spent all that she had, and was nothing bettered, but rather grew worse, 27 When she had heard of Jesus, came in the press behind, and touched his garment. 28 For she said, If I may touch but his clothes, I shall be whole. 29 And straightway the fountain of her blood was dried up; and she felt in her body that she was healed of that plague. + +Friday 28-April, 2023 diff --git a/scripture/kjv/04/28/23/scripture.tg.id b/scripture/kjv/04/28/23/scripture.tg.id new file mode 100644 index 00000000..e6c657ec --- /dev/null +++ b/scripture/kjv/04/28/23/scripture.tg.id @@ -0,0 +1 @@ +932 diff --git a/scripture/kjv/04/28/23/scripture.today b/scripture/kjv/04/28/23/scripture.today new file mode 100644 index 00000000..ff3b809c --- /dev/null +++ b/scripture/kjv/04/28/23/scripture.today @@ -0,0 +1 @@ +41 5:25-29 diff --git a/scripture/kjv/04/28/24/scripture.html b/scripture/kjv/04/28/24/scripture.html new file mode 100644 index 00000000..675b2000 --- /dev/null +++ b/scripture/kjv/04/28/24/scripture.html @@ -0,0 +1,3 @@ +Micah 2:13
+13 The breaker is come up before them: they have broken up, and have passed through the gate, and are gone out by it: and their king shall pass before them, and the Lord on the head of them.

+Sunday 28-April, 2024 diff --git a/scripture/kjv/04/28/24/scripture.json b/scripture/kjv/04/28/24/scripture.json new file mode 100644 index 00000000..239f0776 --- /dev/null +++ b/scripture/kjv/04/28/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Micah", + "chapter": "2", + "date": "Sunday 28-April, 2024", + "getbible": "https://getbible.life/kjv/Micah/2/13", + "name": "Micah 2:13", + "scripture": [ + { + "nr": "13", + "text": "The breaker is come up before them: they have broken up, and have passed through the gate, and are gone out by it: and their king shall pass before them, and the Lord on the head of them. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13", + "version": "kjv" +} diff --git a/scripture/kjv/04/28/24/scripture.md b/scripture/kjv/04/28/24/scripture.md new file mode 100644 index 00000000..d4afedd7 --- /dev/null +++ b/scripture/kjv/04/28/24/scripture.md @@ -0,0 +1,5 @@ +**Micah 2:13** + +13 The breaker is come up before them: they have broken up, and have passed through the gate, and are gone out by it: and their king shall pass before them, and the Lord on the head of them. + +[Sunday 28-April, 2024](https://getbible.life/kjv/Micah/2/13) diff --git a/scripture/kjv/04/28/24/scripture.tg b/scripture/kjv/04/28/24/scripture.tg new file mode 100644 index 00000000..f77a01a5 --- /dev/null +++ b/scripture/kjv/04/28/24/scripture.tg @@ -0,0 +1,4 @@ +Micah 2:13 +13 The breaker is come up before them: they have broken up, and have passed through the gate, and are gone out by it: and their king shall pass before them, and the Lord on the head of them. + +Sunday 28-April, 2024 diff --git a/scripture/kjv/04/28/24/scripture.tg.id b/scripture/kjv/04/28/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/28/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/28/24/scripture.today b/scripture/kjv/04/28/24/scripture.today new file mode 100644 index 00000000..8bf9182e --- /dev/null +++ b/scripture/kjv/04/28/24/scripture.today @@ -0,0 +1 @@ +33 2:13 diff --git a/scripture/kjv/04/28/25/scripture.html b/scripture/kjv/04/28/25/scripture.html new file mode 100644 index 00000000..60ae7d37 --- /dev/null +++ b/scripture/kjv/04/28/25/scripture.html @@ -0,0 +1,3 @@ +2 John 1:5
+5 And now I beseech thee, lady, not as though I wrote a new commandment unto thee, but that which we had from the beginning, that we love one another.

+Monday 28-April, 2025 diff --git a/scripture/kjv/04/28/25/scripture.json b/scripture/kjv/04/28/25/scripture.json new file mode 100644 index 00000000..b472c2fc --- /dev/null +++ b/scripture/kjv/04/28/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 John", + "chapter": "1", + "date": "Monday 28-April, 2025", + "getbible": "https://getbible.life/kjv/2 John/1/5", + "name": "2 John 1:5", + "scripture": [ + { + "nr": "5", + "text": "And now I beseech thee, lady, not as though I wrote a new commandment unto thee, but that which we had from the beginning, that we love one another." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5", + "version": "kjv" +} diff --git a/scripture/kjv/04/28/25/scripture.md b/scripture/kjv/04/28/25/scripture.md new file mode 100644 index 00000000..0d724850 --- /dev/null +++ b/scripture/kjv/04/28/25/scripture.md @@ -0,0 +1,5 @@ +**2 John 1:5** + +5 And now I beseech thee, lady, not as though I wrote a new commandment unto thee, but that which we had from the beginning, that we love one another. + +[Monday 28-April, 2025](https://getbible.life/kjv/2 John/1/5) diff --git a/scripture/kjv/04/28/25/scripture.tg b/scripture/kjv/04/28/25/scripture.tg new file mode 100644 index 00000000..2f863533 --- /dev/null +++ b/scripture/kjv/04/28/25/scripture.tg @@ -0,0 +1,4 @@ +2 John 1:5 +5 And now I beseech thee, lady, not as though I wrote a new commandment unto thee, but that which we had from the beginning, that we love one another. + +Monday 28-April, 2025 diff --git a/scripture/kjv/04/28/25/scripture.tg.id b/scripture/kjv/04/28/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/28/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/28/25/scripture.today b/scripture/kjv/04/28/25/scripture.today new file mode 100644 index 00000000..b4ffa52f --- /dev/null +++ b/scripture/kjv/04/28/25/scripture.today @@ -0,0 +1 @@ +63 1:5 diff --git a/scripture/kjv/04/28/26/scripture.html b/scripture/kjv/04/28/26/scripture.html new file mode 100644 index 00000000..9797e35e --- /dev/null +++ b/scripture/kjv/04/28/26/scripture.html @@ -0,0 +1,3 @@ +Ephesians 2:6-7
+6 And hath raised us up together, and made us sit together in heavenly places in Christ Jesus: 7 That in the ages to come he might shew the exceeding riches of his grace in his kindness toward us through Christ Jesus.

+Tuesday 28-April, 2026 diff --git a/scripture/kjv/04/28/26/scripture.json b/scripture/kjv/04/28/26/scripture.json new file mode 100644 index 00000000..4039ceda --- /dev/null +++ b/scripture/kjv/04/28/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Ephesians", + "chapter": "2", + "date": "Tuesday 28-April, 2026", + "getbible": "https://getbible.life/kjv/Ephesians/2/6-7", + "name": "Ephesians 2:6-7", + "scripture": [ + { + "nr": "6", + "text": "And hath raised us up together, and made us sit together in heavenly places in Christ Jesus:" + }, + { + "nr": "7", + "text": "That in the ages to come he might shew the exceeding riches of his grace in his kindness toward us through Christ Jesus." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6-7", + "version": "kjv" +} diff --git a/scripture/kjv/04/28/26/scripture.md b/scripture/kjv/04/28/26/scripture.md new file mode 100644 index 00000000..881b83af --- /dev/null +++ b/scripture/kjv/04/28/26/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 2:6-7** + +6 And hath raised us up together, and made us sit together in heavenly places in Christ Jesus: 7 That in the ages to come he might shew the exceeding riches of his grace in his kindness toward us through Christ Jesus. + +[Tuesday 28-April, 2026](https://getbible.life/kjv/Ephesians/2/6-7) diff --git a/scripture/kjv/04/28/26/scripture.tg b/scripture/kjv/04/28/26/scripture.tg new file mode 100644 index 00000000..cbf01a47 --- /dev/null +++ b/scripture/kjv/04/28/26/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 2:6-7 +6 And hath raised us up together, and made us sit together in heavenly places in Christ Jesus: 7 That in the ages to come he might shew the exceeding riches of his grace in his kindness toward us through Christ Jesus. + +Tuesday 28-April, 2026 diff --git a/scripture/kjv/04/28/26/scripture.tg.id b/scripture/kjv/04/28/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/28/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/28/26/scripture.today b/scripture/kjv/04/28/26/scripture.today new file mode 100644 index 00000000..12a1710b --- /dev/null +++ b/scripture/kjv/04/28/26/scripture.today @@ -0,0 +1 @@ +49 2:6-7 diff --git a/scripture/kjv/04/29/23/scripture.html b/scripture/kjv/04/29/23/scripture.html new file mode 100644 index 00000000..9b42d77f --- /dev/null +++ b/scripture/kjv/04/29/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 24:32
+32 Then I saw, and considered it well: I looked upon it, and received instruction.

+Saturday 29-April, 2023 diff --git a/scripture/kjv/04/29/23/scripture.json b/scripture/kjv/04/29/23/scripture.json new file mode 100644 index 00000000..7d1b762c --- /dev/null +++ b/scripture/kjv/04/29/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Saturday 29-April, 2023", + "name": "Proverbs 24:32", + "scripture": [ + { + "nr": "32", + "text": "Then I saw, and considered it well: I looked upon it, and received instruction." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/29/23/scripture.md b/scripture/kjv/04/29/23/scripture.md new file mode 100644 index 00000000..5706e7e5 --- /dev/null +++ b/scripture/kjv/04/29/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 24:32** + +32 Then I saw, and considered it well: I looked upon it, and received instruction. + +[Saturday 29-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/29/23/scripture.tg b/scripture/kjv/04/29/23/scripture.tg new file mode 100644 index 00000000..5cab0148 --- /dev/null +++ b/scripture/kjv/04/29/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 24:32 +32 Then I saw, and considered it well: I looked upon it, and received instruction. + +Saturday 29-April, 2023 diff --git a/scripture/kjv/04/29/23/scripture.tg.id b/scripture/kjv/04/29/23/scripture.tg.id new file mode 100644 index 00000000..2abc897a --- /dev/null +++ b/scripture/kjv/04/29/23/scripture.tg.id @@ -0,0 +1 @@ +933 diff --git a/scripture/kjv/04/29/23/scripture.today b/scripture/kjv/04/29/23/scripture.today new file mode 100644 index 00000000..379939b1 --- /dev/null +++ b/scripture/kjv/04/29/23/scripture.today @@ -0,0 +1 @@ +20 24:32 diff --git a/scripture/kjv/04/29/24/scripture.html b/scripture/kjv/04/29/24/scripture.html new file mode 100644 index 00000000..f31e25fe --- /dev/null +++ b/scripture/kjv/04/29/24/scripture.html @@ -0,0 +1,3 @@ +Revelation 1:14-15
+14 His head and his hairs were white like wool, as white as snow; and his eyes were as a flame of fire; 15 And his feet like unto fine brass, as if they burned in a furnace; and his voice as the sound of many waters.

+Monday 29-April, 2024 diff --git a/scripture/kjv/04/29/24/scripture.json b/scripture/kjv/04/29/24/scripture.json new file mode 100644 index 00000000..b7793f3e --- /dev/null +++ b/scripture/kjv/04/29/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Revelation", + "chapter": "1", + "date": "Monday 29-April, 2024", + "getbible": "https://getbible.life/kjv/Revelation/1/14-15", + "name": "Revelation 1:14-15", + "scripture": [ + { + "nr": "14", + "text": "His head and his hairs were white like wool, as white as snow; and his eyes were as a flame of fire;" + }, + { + "nr": "15", + "text": "And his feet like unto fine brass, as if they burned in a furnace; and his voice as the sound of many waters." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14-15", + "version": "kjv" +} diff --git a/scripture/kjv/04/29/24/scripture.md b/scripture/kjv/04/29/24/scripture.md new file mode 100644 index 00000000..cdeba19e --- /dev/null +++ b/scripture/kjv/04/29/24/scripture.md @@ -0,0 +1,5 @@ +**Revelation 1:14-15** + +14 His head and his hairs were white like wool, as white as snow; and his eyes were as a flame of fire; 15 And his feet like unto fine brass, as if they burned in a furnace; and his voice as the sound of many waters. + +[Monday 29-April, 2024](https://getbible.life/kjv/Revelation/1/14-15) diff --git a/scripture/kjv/04/29/24/scripture.tg b/scripture/kjv/04/29/24/scripture.tg new file mode 100644 index 00000000..981de5f7 --- /dev/null +++ b/scripture/kjv/04/29/24/scripture.tg @@ -0,0 +1,4 @@ +Revelation 1:14-15 +14 His head and his hairs were white like wool, as white as snow; and his eyes were as a flame of fire; 15 And his feet like unto fine brass, as if they burned in a furnace; and his voice as the sound of many waters. + +Monday 29-April, 2024 diff --git a/scripture/kjv/04/29/24/scripture.tg.id b/scripture/kjv/04/29/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/29/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/29/24/scripture.today b/scripture/kjv/04/29/24/scripture.today new file mode 100644 index 00000000..f206e711 --- /dev/null +++ b/scripture/kjv/04/29/24/scripture.today @@ -0,0 +1 @@ +66 1:14-15 diff --git a/scripture/kjv/04/29/25/scripture.html b/scripture/kjv/04/29/25/scripture.html new file mode 100644 index 00000000..4dfa4141 --- /dev/null +++ b/scripture/kjv/04/29/25/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 12:15-16
+15 If the foot shall say, Because I am not the hand, I am not of the body; is it therefore not of the body? 16 And if the ear shall say, Because I am not the eye, I am not of the body; is it therefore not of the body?

+Tuesday 29-April, 2025 diff --git a/scripture/kjv/04/29/25/scripture.json b/scripture/kjv/04/29/25/scripture.json new file mode 100644 index 00000000..065a1b6b --- /dev/null +++ b/scripture/kjv/04/29/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "1 Corinthians", + "chapter": "12", + "date": "Tuesday 29-April, 2025", + "getbible": "https://getbible.life/kjv/1 Corinthians/12/15-16", + "name": "1 Corinthians 12:15-16", + "scripture": [ + { + "nr": "15", + "text": "If the foot shall say, Because I am not the hand, I am not of the body; is it therefore not of the body?" + }, + { + "nr": "16", + "text": "And if the ear shall say, Because I am not the eye, I am not of the body; is it therefore not of the body?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15-16", + "version": "kjv" +} diff --git a/scripture/kjv/04/29/25/scripture.md b/scripture/kjv/04/29/25/scripture.md new file mode 100644 index 00000000..df7660c4 --- /dev/null +++ b/scripture/kjv/04/29/25/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 12:15-16** + +15 If the foot shall say, Because I am not the hand, I am not of the body; is it therefore not of the body? 16 And if the ear shall say, Because I am not the eye, I am not of the body; is it therefore not of the body? + +[Tuesday 29-April, 2025](https://getbible.life/kjv/1 Corinthians/12/15-16) diff --git a/scripture/kjv/04/29/25/scripture.tg b/scripture/kjv/04/29/25/scripture.tg new file mode 100644 index 00000000..a11d98d2 --- /dev/null +++ b/scripture/kjv/04/29/25/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 12:15-16 +15 If the foot shall say, Because I am not the hand, I am not of the body; is it therefore not of the body? 16 And if the ear shall say, Because I am not the eye, I am not of the body; is it therefore not of the body? + +Tuesday 29-April, 2025 diff --git a/scripture/kjv/04/29/25/scripture.tg.id b/scripture/kjv/04/29/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/29/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/29/25/scripture.today b/scripture/kjv/04/29/25/scripture.today new file mode 100644 index 00000000..2c7d3e08 --- /dev/null +++ b/scripture/kjv/04/29/25/scripture.today @@ -0,0 +1 @@ +46 12:15-16 diff --git a/scripture/kjv/04/29/26/scripture.html b/scripture/kjv/04/29/26/scripture.html new file mode 100644 index 00000000..986b2389 --- /dev/null +++ b/scripture/kjv/04/29/26/scripture.html @@ -0,0 +1,3 @@ +John 21:17
+17 He saith unto him the third time, Simon, son of Jonas, lovest thou me? Peter was grieved because he said unto him the third time, Lovest thou me? And he said unto him, Lord, thou knowest all things; thou knowest that I love thee. Jesus saith unto him, Feed my sheep.

+Wednesday 29-April, 2026 diff --git a/scripture/kjv/04/29/26/scripture.json b/scripture/kjv/04/29/26/scripture.json new file mode 100644 index 00000000..80ccef12 --- /dev/null +++ b/scripture/kjv/04/29/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "21", + "date": "Wednesday 29-April, 2026", + "getbible": "https://getbible.life/kjv/John/21/17", + "name": "John 21:17", + "scripture": [ + { + "nr": "17", + "text": "He saith unto him the third time, Simon, son of Jonas, lovest thou me? Peter was grieved because he said unto him the third time, Lovest thou me? And he said unto him, Lord, thou knowest all things; thou knowest that I love thee. Jesus saith unto him, Feed my sheep." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17", + "version": "kjv" +} diff --git a/scripture/kjv/04/29/26/scripture.md b/scripture/kjv/04/29/26/scripture.md new file mode 100644 index 00000000..eaddd0b6 --- /dev/null +++ b/scripture/kjv/04/29/26/scripture.md @@ -0,0 +1,5 @@ +**John 21:17** + +17 He saith unto him the third time, Simon, son of Jonas, lovest thou me? Peter was grieved because he said unto him the third time, Lovest thou me? And he said unto him, Lord, thou knowest all things; thou knowest that I love thee. Jesus saith unto him, Feed my sheep. + +[Wednesday 29-April, 2026](https://getbible.life/kjv/John/21/17) diff --git a/scripture/kjv/04/29/26/scripture.tg b/scripture/kjv/04/29/26/scripture.tg new file mode 100644 index 00000000..0217f1e4 --- /dev/null +++ b/scripture/kjv/04/29/26/scripture.tg @@ -0,0 +1,4 @@ +John 21:17 +17 He saith unto him the third time, Simon, son of Jonas, lovest thou me? Peter was grieved because he said unto him the third time, Lovest thou me? And he said unto him, Lord, thou knowest all things; thou knowest that I love thee. Jesus saith unto him, Feed my sheep. + +Wednesday 29-April, 2026 diff --git a/scripture/kjv/04/29/26/scripture.tg.id b/scripture/kjv/04/29/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/29/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/29/26/scripture.today b/scripture/kjv/04/29/26/scripture.today new file mode 100644 index 00000000..da7218e3 --- /dev/null +++ b/scripture/kjv/04/29/26/scripture.today @@ -0,0 +1 @@ +43 21:17 diff --git a/scripture/kjv/04/30/23/scripture.html b/scripture/kjv/04/30/23/scripture.html new file mode 100644 index 00000000..8a21d5ef --- /dev/null +++ b/scripture/kjv/04/30/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 22:24
+24 For he hath not despised nor abhorred the affliction of the afflicted; neither hath he hid his face from him; but when he cried unto him, he heard.

+Sunday 30-April, 2023 diff --git a/scripture/kjv/04/30/23/scripture.json b/scripture/kjv/04/30/23/scripture.json new file mode 100644 index 00000000..b8052d12 --- /dev/null +++ b/scripture/kjv/04/30/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Sunday 30-April, 2023", + "name": "Psalms 22:24", + "scripture": [ + { + "nr": "24", + "text": "For he hath not despised nor abhorred the affliction of the afflicted; neither hath he hid his face from him; but when he cried unto him, he heard." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/04/30/23/scripture.md b/scripture/kjv/04/30/23/scripture.md new file mode 100644 index 00000000..028000ae --- /dev/null +++ b/scripture/kjv/04/30/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 22:24** + +24 For he hath not despised nor abhorred the affliction of the afflicted; neither hath he hid his face from him; but when he cried unto him, he heard. + +[Sunday 30-April, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/04/30/23/scripture.tg b/scripture/kjv/04/30/23/scripture.tg new file mode 100644 index 00000000..4f8c2413 --- /dev/null +++ b/scripture/kjv/04/30/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 22:24 +24 For he hath not despised nor abhorred the affliction of the afflicted; neither hath he hid his face from him; but when he cried unto him, he heard. + +Sunday 30-April, 2023 diff --git a/scripture/kjv/04/30/23/scripture.tg.id b/scripture/kjv/04/30/23/scripture.tg.id new file mode 100644 index 00000000..66000804 --- /dev/null +++ b/scripture/kjv/04/30/23/scripture.tg.id @@ -0,0 +1 @@ +934 diff --git a/scripture/kjv/04/30/23/scripture.today b/scripture/kjv/04/30/23/scripture.today new file mode 100644 index 00000000..02126e0d --- /dev/null +++ b/scripture/kjv/04/30/23/scripture.today @@ -0,0 +1 @@ +19 22:24 diff --git a/scripture/kjv/04/30/24/scripture.html b/scripture/kjv/04/30/24/scripture.html new file mode 100644 index 00000000..f9641ef8 --- /dev/null +++ b/scripture/kjv/04/30/24/scripture.html @@ -0,0 +1,3 @@ +John 12:10
+10 But the chief priests consulted that they might put Lazarus also to death;

+Tuesday 30-April, 2024 diff --git a/scripture/kjv/04/30/24/scripture.json b/scripture/kjv/04/30/24/scripture.json new file mode 100644 index 00000000..d0956220 --- /dev/null +++ b/scripture/kjv/04/30/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "12", + "date": "Tuesday 30-April, 2024", + "getbible": "https://getbible.life/kjv/John/12/10", + "name": "John 12:10", + "scripture": [ + { + "nr": "10", + "text": "But the chief priests consulted that they might put Lazarus also to death;" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/04/30/24/scripture.md b/scripture/kjv/04/30/24/scripture.md new file mode 100644 index 00000000..20e80e89 --- /dev/null +++ b/scripture/kjv/04/30/24/scripture.md @@ -0,0 +1,5 @@ +**John 12:10** + +10 But the chief priests consulted that they might put Lazarus also to death; + +[Tuesday 30-April, 2024](https://getbible.life/kjv/John/12/10) diff --git a/scripture/kjv/04/30/24/scripture.tg b/scripture/kjv/04/30/24/scripture.tg new file mode 100644 index 00000000..94c020f0 --- /dev/null +++ b/scripture/kjv/04/30/24/scripture.tg @@ -0,0 +1,4 @@ +John 12:10 +10 But the chief priests consulted that they might put Lazarus also to death; + +Tuesday 30-April, 2024 diff --git a/scripture/kjv/04/30/24/scripture.tg.id b/scripture/kjv/04/30/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/30/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/30/24/scripture.today b/scripture/kjv/04/30/24/scripture.today new file mode 100644 index 00000000..248d3ad6 --- /dev/null +++ b/scripture/kjv/04/30/24/scripture.today @@ -0,0 +1 @@ +43 12:10 diff --git a/scripture/kjv/04/30/25/scripture.html b/scripture/kjv/04/30/25/scripture.html new file mode 100644 index 00000000..81ba0d66 --- /dev/null +++ b/scripture/kjv/04/30/25/scripture.html @@ -0,0 +1,3 @@ +Deuteronomy 33:9-10
+9 Who said unto his father and to his mother, I have not seen him; neither did he acknowledge his brethren, nor knew his own children: for they have observed thy word, and kept thy covenant. 10 They shall teach Jacob thy judgments, and Israel thy law: they shall put incense before thee, and whole burnt sacrifice upon thine altar.

+Wednesday 30-April, 2025 diff --git a/scripture/kjv/04/30/25/scripture.json b/scripture/kjv/04/30/25/scripture.json new file mode 100644 index 00000000..83c2f7d2 --- /dev/null +++ b/scripture/kjv/04/30/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Deuteronomy", + "chapter": "33", + "date": "Wednesday 30-April, 2025", + "getbible": "https://getbible.life/kjv/Deuteronomy/33/9-10", + "name": "Deuteronomy 33:9-10", + "scripture": [ + { + "nr": "9", + "text": "Who said unto his father and to his mother, I have not seen him; neither did he acknowledge his brethren, nor knew his own children: for they have observed thy word, and kept thy covenant." + }, + { + "nr": "10", + "text": "They shall teach Jacob thy judgments, and Israel thy law: they shall put incense before thee, and whole burnt sacrifice upon thine altar." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9-10", + "version": "kjv" +} diff --git a/scripture/kjv/04/30/25/scripture.md b/scripture/kjv/04/30/25/scripture.md new file mode 100644 index 00000000..c028e391 --- /dev/null +++ b/scripture/kjv/04/30/25/scripture.md @@ -0,0 +1,5 @@ +**Deuteronomy 33:9-10** + +9 Who said unto his father and to his mother, I have not seen him; neither did he acknowledge his brethren, nor knew his own children: for they have observed thy word, and kept thy covenant. 10 They shall teach Jacob thy judgments, and Israel thy law: they shall put incense before thee, and whole burnt sacrifice upon thine altar. + +[Wednesday 30-April, 2025](https://getbible.life/kjv/Deuteronomy/33/9-10) diff --git a/scripture/kjv/04/30/25/scripture.tg b/scripture/kjv/04/30/25/scripture.tg new file mode 100644 index 00000000..2fe7df1b --- /dev/null +++ b/scripture/kjv/04/30/25/scripture.tg @@ -0,0 +1,4 @@ +Deuteronomy 33:9-10 +9 Who said unto his father and to his mother, I have not seen him; neither did he acknowledge his brethren, nor knew his own children: for they have observed thy word, and kept thy covenant. 10 They shall teach Jacob thy judgments, and Israel thy law: they shall put incense before thee, and whole burnt sacrifice upon thine altar. + +Wednesday 30-April, 2025 diff --git a/scripture/kjv/04/30/25/scripture.tg.id b/scripture/kjv/04/30/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/30/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/30/25/scripture.today b/scripture/kjv/04/30/25/scripture.today new file mode 100644 index 00000000..d2a8624e --- /dev/null +++ b/scripture/kjv/04/30/25/scripture.today @@ -0,0 +1 @@ +5 33:9-10 diff --git a/scripture/kjv/04/30/26/scripture.html b/scripture/kjv/04/30/26/scripture.html new file mode 100644 index 00000000..95f9386a --- /dev/null +++ b/scripture/kjv/04/30/26/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 3:17
+17 Now the Lord is that Spirit: and where the Spirit of the Lord is, there is liberty.

+Thursday 30-April, 2026 diff --git a/scripture/kjv/04/30/26/scripture.json b/scripture/kjv/04/30/26/scripture.json new file mode 100644 index 00000000..efeff481 --- /dev/null +++ b/scripture/kjv/04/30/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "3", + "date": "Thursday 30-April, 2026", + "getbible": "https://getbible.life/kjv/2 Corinthians/3/17", + "name": "2 Corinthians 3:17", + "scripture": [ + { + "nr": "17", + "text": "Now the Lord is that Spirit: and where the Spirit of the Lord is, there is liberty." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17", + "version": "kjv" +} diff --git a/scripture/kjv/04/30/26/scripture.md b/scripture/kjv/04/30/26/scripture.md new file mode 100644 index 00000000..34683eb2 --- /dev/null +++ b/scripture/kjv/04/30/26/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 3:17** + +17 Now the Lord is that Spirit: and where the Spirit of the Lord is, there is liberty. + +[Thursday 30-April, 2026](https://getbible.life/kjv/2 Corinthians/3/17) diff --git a/scripture/kjv/04/30/26/scripture.tg b/scripture/kjv/04/30/26/scripture.tg new file mode 100644 index 00000000..a9b11251 --- /dev/null +++ b/scripture/kjv/04/30/26/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 3:17 +17 Now the Lord is that Spirit: and where the Spirit of the Lord is, there is liberty. + +Thursday 30-April, 2026 diff --git a/scripture/kjv/04/30/26/scripture.tg.id b/scripture/kjv/04/30/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/04/30/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/04/30/26/scripture.today b/scripture/kjv/04/30/26/scripture.today new file mode 100644 index 00000000..d7b6be54 --- /dev/null +++ b/scripture/kjv/04/30/26/scripture.today @@ -0,0 +1 @@ +47 3:17 diff --git a/scripture/kjv/05/01/23/scripture.html b/scripture/kjv/05/01/23/scripture.html new file mode 100644 index 00000000..5cdfa798 --- /dev/null +++ b/scripture/kjv/05/01/23/scripture.html @@ -0,0 +1,3 @@ +Hebrews 11:8
+8 By faith Abraham, when he was called to go out into a place which he should after receive for an inheritance, obeyed; and he went out, not knowing whither he went.

+Monday 01-May, 2023 diff --git a/scripture/kjv/05/01/23/scripture.json b/scripture/kjv/05/01/23/scripture.json new file mode 100644 index 00000000..1ba35406 --- /dev/null +++ b/scripture/kjv/05/01/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Monday 01-May, 2023", + "name": "Hebrews 11:8", + "scripture": [ + { + "nr": "8", + "text": "By faith Abraham, when he was called to go out into a place which he should after receive for an inheritance, obeyed; and he went out, not knowing whither he went." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/01/23/scripture.md b/scripture/kjv/05/01/23/scripture.md new file mode 100644 index 00000000..19f5f445 --- /dev/null +++ b/scripture/kjv/05/01/23/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 11:8** + +8 By faith Abraham, when he was called to go out into a place which he should after receive for an inheritance, obeyed; and he went out, not knowing whither he went. + +[Monday 01-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/01/23/scripture.tg b/scripture/kjv/05/01/23/scripture.tg new file mode 100644 index 00000000..6f1a247c --- /dev/null +++ b/scripture/kjv/05/01/23/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 11:8 +8 By faith Abraham, when he was called to go out into a place which he should after receive for an inheritance, obeyed; and he went out, not knowing whither he went. + +Monday 01-May, 2023 diff --git a/scripture/kjv/05/01/23/scripture.tg.id b/scripture/kjv/05/01/23/scripture.tg.id new file mode 100644 index 00000000..a5356d99 --- /dev/null +++ b/scripture/kjv/05/01/23/scripture.tg.id @@ -0,0 +1 @@ +935 diff --git a/scripture/kjv/05/01/23/scripture.today b/scripture/kjv/05/01/23/scripture.today new file mode 100644 index 00000000..c7b2fe6f --- /dev/null +++ b/scripture/kjv/05/01/23/scripture.today @@ -0,0 +1 @@ +58 11:8 diff --git a/scripture/kjv/05/01/24/scripture.html b/scripture/kjv/05/01/24/scripture.html new file mode 100644 index 00000000..e77c6468 --- /dev/null +++ b/scripture/kjv/05/01/24/scripture.html @@ -0,0 +1,3 @@ +Mark 9:23-24
+23 Jesus said unto him, If thou canst believe, all things are possible to him that believeth. 24 And straightway the father of the child cried out, and said with tears, Lord, I believe; help thou mine unbelief.

+Wednesday 01-May, 2024 diff --git a/scripture/kjv/05/01/24/scripture.json b/scripture/kjv/05/01/24/scripture.json new file mode 100644 index 00000000..8103b4fe --- /dev/null +++ b/scripture/kjv/05/01/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Mark", + "chapter": "9", + "date": "Wednesday 01-May, 2024", + "getbible": "https://getbible.life/kjv/Mark/9/23-24", + "name": "Mark 9:23-24", + "scripture": [ + { + "nr": "23", + "text": "Jesus said unto him, If thou canst believe, all things are possible to him that believeth." + }, + { + "nr": "24", + "text": "And straightway the father of the child cried out, and said with tears, Lord, I believe; help thou mine unbelief." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "23-24", + "version": "kjv" +} diff --git a/scripture/kjv/05/01/24/scripture.md b/scripture/kjv/05/01/24/scripture.md new file mode 100644 index 00000000..d77ee3bb --- /dev/null +++ b/scripture/kjv/05/01/24/scripture.md @@ -0,0 +1,5 @@ +**Mark 9:23-24** + +23 Jesus said unto him, If thou canst believe, all things are possible to him that believeth. 24 And straightway the father of the child cried out, and said with tears, Lord, I believe; help thou mine unbelief. + +[Wednesday 01-May, 2024](https://getbible.life/kjv/Mark/9/23-24) diff --git a/scripture/kjv/05/01/24/scripture.tg b/scripture/kjv/05/01/24/scripture.tg new file mode 100644 index 00000000..1902402d --- /dev/null +++ b/scripture/kjv/05/01/24/scripture.tg @@ -0,0 +1,4 @@ +Mark 9:23-24 +23 Jesus said unto him, If thou canst believe, all things are possible to him that believeth. 24 And straightway the father of the child cried out, and said with tears, Lord, I believe; help thou mine unbelief. + +Wednesday 01-May, 2024 diff --git a/scripture/kjv/05/01/24/scripture.tg.id b/scripture/kjv/05/01/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/01/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/01/24/scripture.today b/scripture/kjv/05/01/24/scripture.today new file mode 100644 index 00000000..61b36bdd --- /dev/null +++ b/scripture/kjv/05/01/24/scripture.today @@ -0,0 +1 @@ +41 9:23-24 diff --git a/scripture/kjv/05/01/25/scripture.html b/scripture/kjv/05/01/25/scripture.html new file mode 100644 index 00000000..0712150d --- /dev/null +++ b/scripture/kjv/05/01/25/scripture.html @@ -0,0 +1,3 @@ +Mark 9:50
+50 Salt is good: but if the salt have lost his saltness, wherewith will ye season it? Have salt in yourselves, and have peace one with another.

+Thursday 01-May, 2025 diff --git a/scripture/kjv/05/01/25/scripture.json b/scripture/kjv/05/01/25/scripture.json new file mode 100644 index 00000000..5de24a71 --- /dev/null +++ b/scripture/kjv/05/01/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Mark", + "chapter": "9", + "date": "Thursday 01-May, 2025", + "getbible": "https://getbible.life/kjv/Mark/9/50", + "name": "Mark 9:50", + "scripture": [ + { + "nr": "50", + "text": "Salt is good: but if the salt have lost his saltness, wherewith will ye season it? Have salt in yourselves, and have peace one with another. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "50", + "version": "kjv" +} diff --git a/scripture/kjv/05/01/25/scripture.md b/scripture/kjv/05/01/25/scripture.md new file mode 100644 index 00000000..96019fdf --- /dev/null +++ b/scripture/kjv/05/01/25/scripture.md @@ -0,0 +1,5 @@ +**Mark 9:50** + +50 Salt is good: but if the salt have lost his saltness, wherewith will ye season it? Have salt in yourselves, and have peace one with another. + +[Thursday 01-May, 2025](https://getbible.life/kjv/Mark/9/50) diff --git a/scripture/kjv/05/01/25/scripture.tg b/scripture/kjv/05/01/25/scripture.tg new file mode 100644 index 00000000..fc9708bc --- /dev/null +++ b/scripture/kjv/05/01/25/scripture.tg @@ -0,0 +1,4 @@ +Mark 9:50 +50 Salt is good: but if the salt have lost his saltness, wherewith will ye season it? Have salt in yourselves, and have peace one with another. + +Thursday 01-May, 2025 diff --git a/scripture/kjv/05/01/25/scripture.tg.id b/scripture/kjv/05/01/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/01/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/01/25/scripture.today b/scripture/kjv/05/01/25/scripture.today new file mode 100644 index 00000000..2fca3118 --- /dev/null +++ b/scripture/kjv/05/01/25/scripture.today @@ -0,0 +1 @@ +41 9:50 diff --git a/scripture/kjv/05/01/26/scripture.html b/scripture/kjv/05/01/26/scripture.html new file mode 100644 index 00000000..9c3daa90 --- /dev/null +++ b/scripture/kjv/05/01/26/scripture.html @@ -0,0 +1,3 @@ +Jeremiah 48:10
+10 Cursed be he that doeth the work of the Lord deceitfully, and cursed be he that keepeth back his sword from blood.

+Friday 01-May, 2026 diff --git a/scripture/kjv/05/01/26/scripture.json b/scripture/kjv/05/01/26/scripture.json new file mode 100644 index 00000000..a96c0529 --- /dev/null +++ b/scripture/kjv/05/01/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Jeremiah", + "chapter": "48", + "date": "Friday 01-May, 2026", + "getbible": "https://getbible.life/kjv/Jeremiah/48/10", + "name": "Jeremiah 48:10", + "scripture": [ + { + "nr": "10", + "text": "Cursed be he that doeth the work of the Lord deceitfully, and cursed be he that keepeth back his sword from blood." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/05/01/26/scripture.md b/scripture/kjv/05/01/26/scripture.md new file mode 100644 index 00000000..9d92fa4f --- /dev/null +++ b/scripture/kjv/05/01/26/scripture.md @@ -0,0 +1,5 @@ +**Jeremiah 48:10** + +10 Cursed be he that doeth the work of the Lord deceitfully, and cursed be he that keepeth back his sword from blood. + +[Friday 01-May, 2026](https://getbible.life/kjv/Jeremiah/48/10) diff --git a/scripture/kjv/05/01/26/scripture.tg b/scripture/kjv/05/01/26/scripture.tg new file mode 100644 index 00000000..59fe6ea2 --- /dev/null +++ b/scripture/kjv/05/01/26/scripture.tg @@ -0,0 +1,4 @@ +Jeremiah 48:10 +10 Cursed be he that doeth the work of the Lord deceitfully, and cursed be he that keepeth back his sword from blood. + +Friday 01-May, 2026 diff --git a/scripture/kjv/05/01/26/scripture.tg.id b/scripture/kjv/05/01/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/01/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/01/26/scripture.today b/scripture/kjv/05/01/26/scripture.today new file mode 100644 index 00000000..20e3c352 --- /dev/null +++ b/scripture/kjv/05/01/26/scripture.today @@ -0,0 +1 @@ +24 48:10 diff --git a/scripture/kjv/05/02/23/scripture.html b/scripture/kjv/05/02/23/scripture.html new file mode 100644 index 00000000..825c0b48 --- /dev/null +++ b/scripture/kjv/05/02/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 55:21
+21 The words of his mouth were smoother than butter, but war was in his heart: his words were softer than oil, yet were they drawn swords.

+Tuesday 02-May, 2023 diff --git a/scripture/kjv/05/02/23/scripture.json b/scripture/kjv/05/02/23/scripture.json new file mode 100644 index 00000000..33198a16 --- /dev/null +++ b/scripture/kjv/05/02/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Tuesday 02-May, 2023", + "name": "Psalms 55:21", + "scripture": [ + { + "nr": "21", + "text": "The words of his mouth were smoother than butter, but war was in his heart: his words were softer than oil, yet were they drawn swords." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/02/23/scripture.md b/scripture/kjv/05/02/23/scripture.md new file mode 100644 index 00000000..f2918842 --- /dev/null +++ b/scripture/kjv/05/02/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 55:21** + +21 The words of his mouth were smoother than butter, but war was in his heart: his words were softer than oil, yet were they drawn swords. + +[Tuesday 02-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/02/23/scripture.tg b/scripture/kjv/05/02/23/scripture.tg new file mode 100644 index 00000000..c443a78e --- /dev/null +++ b/scripture/kjv/05/02/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 55:21 +21 The words of his mouth were smoother than butter, but war was in his heart: his words were softer than oil, yet were they drawn swords. + +Tuesday 02-May, 2023 diff --git a/scripture/kjv/05/02/23/scripture.tg.id b/scripture/kjv/05/02/23/scripture.tg.id new file mode 100644 index 00000000..10c7f0b9 --- /dev/null +++ b/scripture/kjv/05/02/23/scripture.tg.id @@ -0,0 +1 @@ +936 diff --git a/scripture/kjv/05/02/23/scripture.today b/scripture/kjv/05/02/23/scripture.today new file mode 100644 index 00000000..7983df6e --- /dev/null +++ b/scripture/kjv/05/02/23/scripture.today @@ -0,0 +1 @@ +19 55:21 diff --git a/scripture/kjv/05/02/24/scripture.html b/scripture/kjv/05/02/24/scripture.html new file mode 100644 index 00000000..170f735c --- /dev/null +++ b/scripture/kjv/05/02/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 28:23
+23 He that rebuketh a man afterwards shall find more favour than he that flattereth with the tongue.

+Thursday 02-May, 2024 diff --git a/scripture/kjv/05/02/24/scripture.json b/scripture/kjv/05/02/24/scripture.json new file mode 100644 index 00000000..f79689a6 --- /dev/null +++ b/scripture/kjv/05/02/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "28", + "date": "Thursday 02-May, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/28/23", + "name": "Proverbs 28:23", + "scripture": [ + { + "nr": "23", + "text": "He that rebuketh a man afterwards shall find more favour than he that flattereth with the tongue." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "23", + "version": "kjv" +} diff --git a/scripture/kjv/05/02/24/scripture.md b/scripture/kjv/05/02/24/scripture.md new file mode 100644 index 00000000..988d99a2 --- /dev/null +++ b/scripture/kjv/05/02/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 28:23** + +23 He that rebuketh a man afterwards shall find more favour than he that flattereth with the tongue. + +[Thursday 02-May, 2024](https://getbible.life/kjv/Proverbs/28/23) diff --git a/scripture/kjv/05/02/24/scripture.tg b/scripture/kjv/05/02/24/scripture.tg new file mode 100644 index 00000000..00403af9 --- /dev/null +++ b/scripture/kjv/05/02/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 28:23 +23 He that rebuketh a man afterwards shall find more favour than he that flattereth with the tongue. + +Thursday 02-May, 2024 diff --git a/scripture/kjv/05/02/24/scripture.tg.id b/scripture/kjv/05/02/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/02/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/02/24/scripture.today b/scripture/kjv/05/02/24/scripture.today new file mode 100644 index 00000000..2c4b5a43 --- /dev/null +++ b/scripture/kjv/05/02/24/scripture.today @@ -0,0 +1 @@ +20 28:23 diff --git a/scripture/kjv/05/02/25/scripture.html b/scripture/kjv/05/02/25/scripture.html new file mode 100644 index 00000000..0335281a --- /dev/null +++ b/scripture/kjv/05/02/25/scripture.html @@ -0,0 +1,3 @@ +Acts 20:35
+35 I have shewed you all things, how that so labouring ye ought to support the weak, and to remember the words of the Lord Jesus, how he said, It is more blessed to give than to receive.

+Friday 02-May, 2025 diff --git a/scripture/kjv/05/02/25/scripture.json b/scripture/kjv/05/02/25/scripture.json new file mode 100644 index 00000000..aeb8449b --- /dev/null +++ b/scripture/kjv/05/02/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Acts", + "chapter": "20", + "date": "Friday 02-May, 2025", + "getbible": "https://getbible.life/kjv/Acts/20/35", + "name": "Acts 20:35", + "scripture": [ + { + "nr": "35", + "text": "I have shewed you all things, how that so labouring ye ought to support the weak, and to remember the words of the Lord Jesus, how he said, It is more blessed to give than to receive." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "35", + "version": "kjv" +} diff --git a/scripture/kjv/05/02/25/scripture.md b/scripture/kjv/05/02/25/scripture.md new file mode 100644 index 00000000..ce438e47 --- /dev/null +++ b/scripture/kjv/05/02/25/scripture.md @@ -0,0 +1,5 @@ +**Acts 20:35** + +35 I have shewed you all things, how that so labouring ye ought to support the weak, and to remember the words of the Lord Jesus, how he said, It is more blessed to give than to receive. + +[Friday 02-May, 2025](https://getbible.life/kjv/Acts/20/35) diff --git a/scripture/kjv/05/02/25/scripture.tg b/scripture/kjv/05/02/25/scripture.tg new file mode 100644 index 00000000..3331e0d6 --- /dev/null +++ b/scripture/kjv/05/02/25/scripture.tg @@ -0,0 +1,4 @@ +Acts 20:35 +35 I have shewed you all things, how that so labouring ye ought to support the weak, and to remember the words of the Lord Jesus, how he said, It is more blessed to give than to receive. + +Friday 02-May, 2025 diff --git a/scripture/kjv/05/02/25/scripture.tg.id b/scripture/kjv/05/02/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/02/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/02/25/scripture.today b/scripture/kjv/05/02/25/scripture.today new file mode 100644 index 00000000..9547a24a --- /dev/null +++ b/scripture/kjv/05/02/25/scripture.today @@ -0,0 +1 @@ +44 20:35 diff --git a/scripture/kjv/05/02/26/scripture.html b/scripture/kjv/05/02/26/scripture.html new file mode 100644 index 00000000..4a21daf5 --- /dev/null +++ b/scripture/kjv/05/02/26/scripture.html @@ -0,0 +1,3 @@ +Genesis 14:21-24
+21 And the king of Sodom said unto Abram, Give me the persons, and take the goods to thyself. 22 And Abram said to the king of Sodom, I have lift up mine hand unto the Lord, the most high God, the possessor of heaven and earth, 23 That I will not take from a thread even to a shoelatchet, and that I will not take any thing that is thine, lest thou shouldest say, I have made Abram rich: 24 Save only that which the young men have eaten, and the portion of the men which went with me, Aner, Eshcol, and Mamre; let them take their portion.

+Saturday 02-May, 2026 diff --git a/scripture/kjv/05/02/26/scripture.json b/scripture/kjv/05/02/26/scripture.json new file mode 100644 index 00000000..c6fcbf7f --- /dev/null +++ b/scripture/kjv/05/02/26/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "Genesis", + "chapter": "14", + "date": "Saturday 02-May, 2026", + "getbible": "https://getbible.life/kjv/Genesis/14/21-24", + "name": "Genesis 14:21-24", + "scripture": [ + { + "nr": "21", + "text": "And the king of Sodom said unto Abram, Give me the persons, and take the goods to thyself." + }, + { + "nr": "22", + "text": "And Abram said to the king of Sodom, I have lift up mine hand unto the Lord, the most high God, the possessor of heaven and earth," + }, + { + "nr": "23", + "text": "That I will not take from a thread even to a shoelatchet, and that I will not take any thing that is thine, lest thou shouldest say, I have made Abram rich:" + }, + { + "nr": "24", + "text": "Save only that which the young men have eaten, and the portion of the men which went with me, Aner, Eshcol, and Mamre; let them take their portion. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "21-24", + "version": "kjv" +} diff --git a/scripture/kjv/05/02/26/scripture.md b/scripture/kjv/05/02/26/scripture.md new file mode 100644 index 00000000..14ddab39 --- /dev/null +++ b/scripture/kjv/05/02/26/scripture.md @@ -0,0 +1,5 @@ +**Genesis 14:21-24** + +21 And the king of Sodom said unto Abram, Give me the persons, and take the goods to thyself. 22 And Abram said to the king of Sodom, I have lift up mine hand unto the Lord, the most high God, the possessor of heaven and earth, 23 That I will not take from a thread even to a shoelatchet, and that I will not take any thing that is thine, lest thou shouldest say, I have made Abram rich: 24 Save only that which the young men have eaten, and the portion of the men which went with me, Aner, Eshcol, and Mamre; let them take their portion. + +[Saturday 02-May, 2026](https://getbible.life/kjv/Genesis/14/21-24) diff --git a/scripture/kjv/05/02/26/scripture.tg b/scripture/kjv/05/02/26/scripture.tg new file mode 100644 index 00000000..4dc5f86d --- /dev/null +++ b/scripture/kjv/05/02/26/scripture.tg @@ -0,0 +1,4 @@ +Genesis 14:21-24 +21 And the king of Sodom said unto Abram, Give me the persons, and take the goods to thyself. 22 And Abram said to the king of Sodom, I have lift up mine hand unto the Lord, the most high God, the possessor of heaven and earth, 23 That I will not take from a thread even to a shoelatchet, and that I will not take any thing that is thine, lest thou shouldest say, I have made Abram rich: 24 Save only that which the young men have eaten, and the portion of the men which went with me, Aner, Eshcol, and Mamre; let them take their portion. + +Saturday 02-May, 2026 diff --git a/scripture/kjv/05/02/26/scripture.tg.id b/scripture/kjv/05/02/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/02/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/02/26/scripture.today b/scripture/kjv/05/02/26/scripture.today new file mode 100644 index 00000000..aa24449f --- /dev/null +++ b/scripture/kjv/05/02/26/scripture.today @@ -0,0 +1 @@ +1 14:21-24 diff --git a/scripture/kjv/05/03/23/scripture.html b/scripture/kjv/05/03/23/scripture.html new file mode 100644 index 00000000..c92bdc38 --- /dev/null +++ b/scripture/kjv/05/03/23/scripture.html @@ -0,0 +1,3 @@ +Exodus 14:14
+14 The Lord shall fight for you, and ye shall hold your peace.

+Wednesday 03-May, 2023 diff --git a/scripture/kjv/05/03/23/scripture.json b/scripture/kjv/05/03/23/scripture.json new file mode 100644 index 00000000..55851e1f --- /dev/null +++ b/scripture/kjv/05/03/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Wednesday 03-May, 2023", + "name": "Exodus 14:14", + "scripture": [ + { + "nr": "14", + "text": "The Lord shall fight for you, and ye shall hold your peace." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/03/23/scripture.md b/scripture/kjv/05/03/23/scripture.md new file mode 100644 index 00000000..14fdf333 --- /dev/null +++ b/scripture/kjv/05/03/23/scripture.md @@ -0,0 +1,5 @@ +**Exodus 14:14** + +14 The Lord shall fight for you, and ye shall hold your peace. + +[Wednesday 03-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/03/23/scripture.tg b/scripture/kjv/05/03/23/scripture.tg new file mode 100644 index 00000000..658f6c12 --- /dev/null +++ b/scripture/kjv/05/03/23/scripture.tg @@ -0,0 +1,4 @@ +Exodus 14:14 +14 The Lord shall fight for you, and ye shall hold your peace. + +Wednesday 03-May, 2023 diff --git a/scripture/kjv/05/03/23/scripture.tg.id b/scripture/kjv/05/03/23/scripture.tg.id new file mode 100644 index 00000000..df43bf46 --- /dev/null +++ b/scripture/kjv/05/03/23/scripture.tg.id @@ -0,0 +1 @@ +937 diff --git a/scripture/kjv/05/03/23/scripture.today b/scripture/kjv/05/03/23/scripture.today new file mode 100644 index 00000000..09c527e2 --- /dev/null +++ b/scripture/kjv/05/03/23/scripture.today @@ -0,0 +1 @@ +2 14:14 diff --git a/scripture/kjv/05/03/24/scripture.html b/scripture/kjv/05/03/24/scripture.html new file mode 100644 index 00000000..ac2ff981 --- /dev/null +++ b/scripture/kjv/05/03/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 107:29-30
+29 He maketh the storm a calm, so that the waves thereof are still. 30 Then are they glad because they be quiet; so he bringeth them unto their desired haven.

+Friday 03-May, 2024 diff --git a/scripture/kjv/05/03/24/scripture.json b/scripture/kjv/05/03/24/scripture.json new file mode 100644 index 00000000..444831d9 --- /dev/null +++ b/scripture/kjv/05/03/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Psalms", + "chapter": "107", + "date": "Friday 03-May, 2024", + "getbible": "https://getbible.life/kjv/Psalms/107/29-30", + "name": "Psalms 107:29-30", + "scripture": [ + { + "nr": "29", + "text": "He maketh the storm a calm, so that the waves thereof are still." + }, + { + "nr": "30", + "text": "Then are they glad because they be quiet; so he bringeth them unto their desired haven." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "29-30", + "version": "kjv" +} diff --git a/scripture/kjv/05/03/24/scripture.md b/scripture/kjv/05/03/24/scripture.md new file mode 100644 index 00000000..245ba6e7 --- /dev/null +++ b/scripture/kjv/05/03/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 107:29-30** + +29 He maketh the storm a calm, so that the waves thereof are still. 30 Then are they glad because they be quiet; so he bringeth them unto their desired haven. + +[Friday 03-May, 2024](https://getbible.life/kjv/Psalms/107/29-30) diff --git a/scripture/kjv/05/03/24/scripture.tg b/scripture/kjv/05/03/24/scripture.tg new file mode 100644 index 00000000..7b25a71e --- /dev/null +++ b/scripture/kjv/05/03/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 107:29-30 +29 He maketh the storm a calm, so that the waves thereof are still. 30 Then are they glad because they be quiet; so he bringeth them unto their desired haven. + +Friday 03-May, 2024 diff --git a/scripture/kjv/05/03/24/scripture.tg.id b/scripture/kjv/05/03/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/03/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/03/24/scripture.today b/scripture/kjv/05/03/24/scripture.today new file mode 100644 index 00000000..2afeae96 --- /dev/null +++ b/scripture/kjv/05/03/24/scripture.today @@ -0,0 +1 @@ +19 107:29-30 diff --git a/scripture/kjv/05/03/25/scripture.html b/scripture/kjv/05/03/25/scripture.html new file mode 100644 index 00000000..24696a6c --- /dev/null +++ b/scripture/kjv/05/03/25/scripture.html @@ -0,0 +1,3 @@ +Matthew 22:37-39
+37 Jesus said unto him, Thou shalt love the Lord thy God with all thy heart, and with all thy soul, and with all thy mind. 38 This is the first and great commandment. 39 And the second is like unto it, Thou shalt love thy neighbour as thyself.

+Saturday 03-May, 2025 diff --git a/scripture/kjv/05/03/25/scripture.json b/scripture/kjv/05/03/25/scripture.json new file mode 100644 index 00000000..065e2735 --- /dev/null +++ b/scripture/kjv/05/03/25/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Matthew", + "chapter": "22", + "date": "Saturday 03-May, 2025", + "getbible": "https://getbible.life/kjv/Matthew/22/37-39", + "name": "Matthew 22:37-39", + "scripture": [ + { + "nr": "37", + "text": "Jesus said unto him, Thou shalt love the Lord thy God with all thy heart, and with all thy soul, and with all thy mind." + }, + { + "nr": "38", + "text": "This is the first and great commandment." + }, + { + "nr": "39", + "text": "And the second is like unto it, Thou shalt love thy neighbour as thyself." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "37-39", + "version": "kjv" +} diff --git a/scripture/kjv/05/03/25/scripture.md b/scripture/kjv/05/03/25/scripture.md new file mode 100644 index 00000000..526159a3 --- /dev/null +++ b/scripture/kjv/05/03/25/scripture.md @@ -0,0 +1,5 @@ +**Matthew 22:37-39** + +37 Jesus said unto him, Thou shalt love the Lord thy God with all thy heart, and with all thy soul, and with all thy mind. 38 This is the first and great commandment. 39 And the second is like unto it, Thou shalt love thy neighbour as thyself. + +[Saturday 03-May, 2025](https://getbible.life/kjv/Matthew/22/37-39) diff --git a/scripture/kjv/05/03/25/scripture.tg b/scripture/kjv/05/03/25/scripture.tg new file mode 100644 index 00000000..a3a42afe --- /dev/null +++ b/scripture/kjv/05/03/25/scripture.tg @@ -0,0 +1,4 @@ +Matthew 22:37-39 +37 Jesus said unto him, Thou shalt love the Lord thy God with all thy heart, and with all thy soul, and with all thy mind. 38 This is the first and great commandment. 39 And the second is like unto it, Thou shalt love thy neighbour as thyself. + +Saturday 03-May, 2025 diff --git a/scripture/kjv/05/03/25/scripture.tg.id b/scripture/kjv/05/03/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/03/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/03/25/scripture.today b/scripture/kjv/05/03/25/scripture.today new file mode 100644 index 00000000..13c73d38 --- /dev/null +++ b/scripture/kjv/05/03/25/scripture.today @@ -0,0 +1 @@ +40 22:37-39 diff --git a/scripture/kjv/05/03/26/scripture.html b/scripture/kjv/05/03/26/scripture.html new file mode 100644 index 00000000..8ce20755 --- /dev/null +++ b/scripture/kjv/05/03/26/scripture.html @@ -0,0 +1,3 @@ +Isaiah 61:9
+9 And their seed shall be known among the Gentiles, and their offspring among the people: all that see them shall acknowledge them, that they are the seed which the Lord hath blessed.

+Sunday 03-May, 2026 diff --git a/scripture/kjv/05/03/26/scripture.json b/scripture/kjv/05/03/26/scripture.json new file mode 100644 index 00000000..30668bb5 --- /dev/null +++ b/scripture/kjv/05/03/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "61", + "date": "Sunday 03-May, 2026", + "getbible": "https://getbible.life/kjv/Isaiah/61/9", + "name": "Isaiah 61:9", + "scripture": [ + { + "nr": "9", + "text": "And their seed shall be known among the Gentiles, and their offspring among the people: all that see them shall acknowledge them, that they are the seed which the Lord hath blessed." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9", + "version": "kjv" +} diff --git a/scripture/kjv/05/03/26/scripture.md b/scripture/kjv/05/03/26/scripture.md new file mode 100644 index 00000000..2df54d00 --- /dev/null +++ b/scripture/kjv/05/03/26/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 61:9** + +9 And their seed shall be known among the Gentiles, and their offspring among the people: all that see them shall acknowledge them, that they are the seed which the Lord hath blessed. + +[Sunday 03-May, 2026](https://getbible.life/kjv/Isaiah/61/9) diff --git a/scripture/kjv/05/03/26/scripture.tg b/scripture/kjv/05/03/26/scripture.tg new file mode 100644 index 00000000..c51c7043 --- /dev/null +++ b/scripture/kjv/05/03/26/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 61:9 +9 And their seed shall be known among the Gentiles, and their offspring among the people: all that see them shall acknowledge them, that they are the seed which the Lord hath blessed. + +Sunday 03-May, 2026 diff --git a/scripture/kjv/05/03/26/scripture.tg.id b/scripture/kjv/05/03/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/03/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/03/26/scripture.today b/scripture/kjv/05/03/26/scripture.today new file mode 100644 index 00000000..1eca065a --- /dev/null +++ b/scripture/kjv/05/03/26/scripture.today @@ -0,0 +1 @@ +23 61:9 diff --git a/scripture/kjv/05/04/23/scripture.html b/scripture/kjv/05/04/23/scripture.html new file mode 100644 index 00000000..14c6ea7e --- /dev/null +++ b/scripture/kjv/05/04/23/scripture.html @@ -0,0 +1,3 @@ +John 21:16
+16 He saith to him again the second time, Simon, son of Jonas, lovest thou me? He saith unto him, Yea, Lord; thou knowest that I love thee. He saith unto him, Feed my sheep.

+Thursday 04-May, 2023 diff --git a/scripture/kjv/05/04/23/scripture.json b/scripture/kjv/05/04/23/scripture.json new file mode 100644 index 00000000..beab889b --- /dev/null +++ b/scripture/kjv/05/04/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Thursday 04-May, 2023", + "name": "John 21:16", + "scripture": [ + { + "nr": "16", + "text": "He saith to him again the second time, Simon, son of Jonas, lovest thou me? He saith unto him, Yea, Lord; thou knowest that I love thee. He saith unto him, Feed my sheep." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/04/23/scripture.md b/scripture/kjv/05/04/23/scripture.md new file mode 100644 index 00000000..dfbe43b6 --- /dev/null +++ b/scripture/kjv/05/04/23/scripture.md @@ -0,0 +1,5 @@ +**John 21:16** + +16 He saith to him again the second time, Simon, son of Jonas, lovest thou me? He saith unto him, Yea, Lord; thou knowest that I love thee. He saith unto him, Feed my sheep. + +[Thursday 04-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/04/23/scripture.tg b/scripture/kjv/05/04/23/scripture.tg new file mode 100644 index 00000000..d552623b --- /dev/null +++ b/scripture/kjv/05/04/23/scripture.tg @@ -0,0 +1,4 @@ +John 21:16 +16 He saith to him again the second time, Simon, son of Jonas, lovest thou me? He saith unto him, Yea, Lord; thou knowest that I love thee. He saith unto him, Feed my sheep. + +Thursday 04-May, 2023 diff --git a/scripture/kjv/05/04/23/scripture.tg.id b/scripture/kjv/05/04/23/scripture.tg.id new file mode 100644 index 00000000..b4f71605 --- /dev/null +++ b/scripture/kjv/05/04/23/scripture.tg.id @@ -0,0 +1 @@ +938 diff --git a/scripture/kjv/05/04/23/scripture.today b/scripture/kjv/05/04/23/scripture.today new file mode 100644 index 00000000..99cbb8df --- /dev/null +++ b/scripture/kjv/05/04/23/scripture.today @@ -0,0 +1 @@ +43 21:16 diff --git a/scripture/kjv/05/04/24/scripture.html b/scripture/kjv/05/04/24/scripture.html new file mode 100644 index 00000000..7752c151 --- /dev/null +++ b/scripture/kjv/05/04/24/scripture.html @@ -0,0 +1,3 @@ +Galatians 4:18
+18 But it is good to be zealously affected always in a good thing, and not only when I am present with you.

+Saturday 04-May, 2024 diff --git a/scripture/kjv/05/04/24/scripture.json b/scripture/kjv/05/04/24/scripture.json new file mode 100644 index 00000000..af665278 --- /dev/null +++ b/scripture/kjv/05/04/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Galatians", + "chapter": "4", + "date": "Saturday 04-May, 2024", + "getbible": "https://getbible.life/kjv/Galatians/4/18", + "name": "Galatians 4:18", + "scripture": [ + { + "nr": "18", + "text": "But it is good to be zealously affected always in a good thing, and not only when I am present with you." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18", + "version": "kjv" +} diff --git a/scripture/kjv/05/04/24/scripture.md b/scripture/kjv/05/04/24/scripture.md new file mode 100644 index 00000000..e08e3659 --- /dev/null +++ b/scripture/kjv/05/04/24/scripture.md @@ -0,0 +1,5 @@ +**Galatians 4:18** + +18 But it is good to be zealously affected always in a good thing, and not only when I am present with you. + +[Saturday 04-May, 2024](https://getbible.life/kjv/Galatians/4/18) diff --git a/scripture/kjv/05/04/24/scripture.tg b/scripture/kjv/05/04/24/scripture.tg new file mode 100644 index 00000000..22af2379 --- /dev/null +++ b/scripture/kjv/05/04/24/scripture.tg @@ -0,0 +1,4 @@ +Galatians 4:18 +18 But it is good to be zealously affected always in a good thing, and not only when I am present with you. + +Saturday 04-May, 2024 diff --git a/scripture/kjv/05/04/24/scripture.tg.id b/scripture/kjv/05/04/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/04/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/04/24/scripture.today b/scripture/kjv/05/04/24/scripture.today new file mode 100644 index 00000000..8c28e2c7 --- /dev/null +++ b/scripture/kjv/05/04/24/scripture.today @@ -0,0 +1 @@ +48 4:18 diff --git a/scripture/kjv/05/04/25/scripture.html b/scripture/kjv/05/04/25/scripture.html new file mode 100644 index 00000000..1aa04085 --- /dev/null +++ b/scripture/kjv/05/04/25/scripture.html @@ -0,0 +1,3 @@ +Matthew 12:30
+30 He that is not with me is against me; and he that gathereth not with me scattereth abroad.

+Sunday 04-May, 2025 diff --git a/scripture/kjv/05/04/25/scripture.json b/scripture/kjv/05/04/25/scripture.json new file mode 100644 index 00000000..b157c127 --- /dev/null +++ b/scripture/kjv/05/04/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Matthew", + "chapter": "12", + "date": "Sunday 04-May, 2025", + "getbible": "https://getbible.life/kjv/Matthew/12/30", + "name": "Matthew 12:30", + "scripture": [ + { + "nr": "30", + "text": "He that is not with me is against me; and he that gathereth not with me scattereth abroad." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "30", + "version": "kjv" +} diff --git a/scripture/kjv/05/04/25/scripture.md b/scripture/kjv/05/04/25/scripture.md new file mode 100644 index 00000000..57b50ec1 --- /dev/null +++ b/scripture/kjv/05/04/25/scripture.md @@ -0,0 +1,5 @@ +**Matthew 12:30** + +30 He that is not with me is against me; and he that gathereth not with me scattereth abroad. + +[Sunday 04-May, 2025](https://getbible.life/kjv/Matthew/12/30) diff --git a/scripture/kjv/05/04/25/scripture.tg b/scripture/kjv/05/04/25/scripture.tg new file mode 100644 index 00000000..a39862e2 --- /dev/null +++ b/scripture/kjv/05/04/25/scripture.tg @@ -0,0 +1,4 @@ +Matthew 12:30 +30 He that is not with me is against me; and he that gathereth not with me scattereth abroad. + +Sunday 04-May, 2025 diff --git a/scripture/kjv/05/04/25/scripture.tg.id b/scripture/kjv/05/04/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/04/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/04/25/scripture.today b/scripture/kjv/05/04/25/scripture.today new file mode 100644 index 00000000..fcb6258e --- /dev/null +++ b/scripture/kjv/05/04/25/scripture.today @@ -0,0 +1 @@ +40 12:30 diff --git a/scripture/kjv/05/04/26/scripture.html b/scripture/kjv/05/04/26/scripture.html new file mode 100644 index 00000000..cface325 --- /dev/null +++ b/scripture/kjv/05/04/26/scripture.html @@ -0,0 +1,3 @@ +Psalms 145:18
+18 The Lord is nigh unto all them that call upon him, to all that call upon him in truth.

+Monday 04-May, 2026 diff --git a/scripture/kjv/05/04/26/scripture.json b/scripture/kjv/05/04/26/scripture.json new file mode 100644 index 00000000..fec4fdba --- /dev/null +++ b/scripture/kjv/05/04/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "145", + "date": "Monday 04-May, 2026", + "getbible": "https://getbible.life/kjv/Psalms/145/18", + "name": "Psalms 145:18", + "scripture": [ + { + "nr": "18", + "text": "The Lord is nigh unto all them that call upon him, to all that call upon him in truth." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18", + "version": "kjv" +} diff --git a/scripture/kjv/05/04/26/scripture.md b/scripture/kjv/05/04/26/scripture.md new file mode 100644 index 00000000..30c6a2b7 --- /dev/null +++ b/scripture/kjv/05/04/26/scripture.md @@ -0,0 +1,5 @@ +**Psalms 145:18** + +18 The Lord is nigh unto all them that call upon him, to all that call upon him in truth. + +[Monday 04-May, 2026](https://getbible.life/kjv/Psalms/145/18) diff --git a/scripture/kjv/05/04/26/scripture.tg b/scripture/kjv/05/04/26/scripture.tg new file mode 100644 index 00000000..10f7f2ba --- /dev/null +++ b/scripture/kjv/05/04/26/scripture.tg @@ -0,0 +1,4 @@ +Psalms 145:18 +18 The Lord is nigh unto all them that call upon him, to all that call upon him in truth. + +Monday 04-May, 2026 diff --git a/scripture/kjv/05/04/26/scripture.tg.id b/scripture/kjv/05/04/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/04/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/04/26/scripture.today b/scripture/kjv/05/04/26/scripture.today new file mode 100644 index 00000000..75bffc12 --- /dev/null +++ b/scripture/kjv/05/04/26/scripture.today @@ -0,0 +1 @@ +19 145:18 diff --git a/scripture/kjv/05/05/23/scripture.html b/scripture/kjv/05/05/23/scripture.html new file mode 100644 index 00000000..dc71a4bb --- /dev/null +++ b/scripture/kjv/05/05/23/scripture.html @@ -0,0 +1,3 @@ +Romans 1:3-4
+3 Concerning his Son Jesus Christ our Lord, which was made of the seed of David according to the flesh; 4 And declared to be the Son of God with power, according to the spirit of holiness, by the resurrection from the dead:

+Friday 05-May, 2023 diff --git a/scripture/kjv/05/05/23/scripture.json b/scripture/kjv/05/05/23/scripture.json new file mode 100644 index 00000000..c1e4f649 --- /dev/null +++ b/scripture/kjv/05/05/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Friday 05-May, 2023", + "name": "Romans 1:3-4", + "scripture": [ + { + "nr": "3", + "text": "Concerning his Son Jesus Christ our Lord, which was made of the seed of David according to the flesh;" + }, + { + "nr": "4", + "text": "And declared to be the Son of God with power, according to the spirit of holiness, by the resurrection from the dead:" + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/05/23/scripture.md b/scripture/kjv/05/05/23/scripture.md new file mode 100644 index 00000000..9add1a97 --- /dev/null +++ b/scripture/kjv/05/05/23/scripture.md @@ -0,0 +1,5 @@ +**Romans 1:3-4** + +3 Concerning his Son Jesus Christ our Lord, which was made of the seed of David according to the flesh; 4 And declared to be the Son of God with power, according to the spirit of holiness, by the resurrection from the dead: + +[Friday 05-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/05/23/scripture.tg b/scripture/kjv/05/05/23/scripture.tg new file mode 100644 index 00000000..a91179cb --- /dev/null +++ b/scripture/kjv/05/05/23/scripture.tg @@ -0,0 +1,4 @@ +Romans 1:3-4 +3 Concerning his Son Jesus Christ our Lord, which was made of the seed of David according to the flesh; 4 And declared to be the Son of God with power, according to the spirit of holiness, by the resurrection from the dead: + +Friday 05-May, 2023 diff --git a/scripture/kjv/05/05/23/scripture.tg.id b/scripture/kjv/05/05/23/scripture.tg.id new file mode 100644 index 00000000..791a8be3 --- /dev/null +++ b/scripture/kjv/05/05/23/scripture.tg.id @@ -0,0 +1 @@ +939 diff --git a/scripture/kjv/05/05/23/scripture.today b/scripture/kjv/05/05/23/scripture.today new file mode 100644 index 00000000..83f03432 --- /dev/null +++ b/scripture/kjv/05/05/23/scripture.today @@ -0,0 +1 @@ +45 1:3-4 diff --git a/scripture/kjv/05/05/24/scripture.html b/scripture/kjv/05/05/24/scripture.html new file mode 100644 index 00000000..90f863b8 --- /dev/null +++ b/scripture/kjv/05/05/24/scripture.html @@ -0,0 +1,3 @@ +Jeremiah 23:28-29
+28 The prophet that hath a dream, let him tell a dream; and he that hath my word, let him speak my word faithfully. What is the chaff to the wheat? saith the Lord. 29 Is not my word like as a fire? saith the Lord; and like a hammer that breaketh the rock in pieces?

+Sunday 05-May, 2024 diff --git a/scripture/kjv/05/05/24/scripture.json b/scripture/kjv/05/05/24/scripture.json new file mode 100644 index 00000000..d408c9ee --- /dev/null +++ b/scripture/kjv/05/05/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Jeremiah", + "chapter": "23", + "date": "Sunday 05-May, 2024", + "getbible": "https://getbible.life/kjv/Jeremiah/23/28-29", + "name": "Jeremiah 23:28-29", + "scripture": [ + { + "nr": "28", + "text": "The prophet that hath a dream, let him tell a dream; and he that hath my word, let him speak my word faithfully. What is the chaff to the wheat? saith the Lord." + }, + { + "nr": "29", + "text": "Is not my word like as a fire? saith the Lord; and like a hammer that breaketh the rock in pieces?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "28-29", + "version": "kjv" +} diff --git a/scripture/kjv/05/05/24/scripture.md b/scripture/kjv/05/05/24/scripture.md new file mode 100644 index 00000000..cb55b984 --- /dev/null +++ b/scripture/kjv/05/05/24/scripture.md @@ -0,0 +1,5 @@ +**Jeremiah 23:28-29** + +28 The prophet that hath a dream, let him tell a dream; and he that hath my word, let him speak my word faithfully. What is the chaff to the wheat? saith the Lord. 29 Is not my word like as a fire? saith the Lord; and like a hammer that breaketh the rock in pieces? + +[Sunday 05-May, 2024](https://getbible.life/kjv/Jeremiah/23/28-29) diff --git a/scripture/kjv/05/05/24/scripture.tg b/scripture/kjv/05/05/24/scripture.tg new file mode 100644 index 00000000..95ed086d --- /dev/null +++ b/scripture/kjv/05/05/24/scripture.tg @@ -0,0 +1,4 @@ +Jeremiah 23:28-29 +28 The prophet that hath a dream, let him tell a dream; and he that hath my word, let him speak my word faithfully. What is the chaff to the wheat? saith the Lord. 29 Is not my word like as a fire? saith the Lord; and like a hammer that breaketh the rock in pieces? + +Sunday 05-May, 2024 diff --git a/scripture/kjv/05/05/24/scripture.tg.id b/scripture/kjv/05/05/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/05/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/05/24/scripture.today b/scripture/kjv/05/05/24/scripture.today new file mode 100644 index 00000000..893d8861 --- /dev/null +++ b/scripture/kjv/05/05/24/scripture.today @@ -0,0 +1 @@ +24 23:28-29 diff --git a/scripture/kjv/05/05/25/scripture.html b/scripture/kjv/05/05/25/scripture.html new file mode 100644 index 00000000..e9610cdf --- /dev/null +++ b/scripture/kjv/05/05/25/scripture.html @@ -0,0 +1,3 @@ +Colossians 1:21-23
+21 And you, that were sometime alienated and enemies in your mind by wicked works, yet now hath he reconciled 22 In the body of his flesh through death, to present you holy and unblameable and unreproveable in his sight: 23 If ye continue in the faith grounded and settled, and be not moved away from the hope of the gospel, which ye have heard, and which was preached to every creature which is under heaven; whereof I Paul am made a minister;

+Monday 05-May, 2025 diff --git a/scripture/kjv/05/05/25/scripture.json b/scripture/kjv/05/05/25/scripture.json new file mode 100644 index 00000000..5067caa7 --- /dev/null +++ b/scripture/kjv/05/05/25/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Colossians", + "chapter": "1", + "date": "Monday 05-May, 2025", + "getbible": "https://getbible.life/kjv/Colossians/1/21-23", + "name": "Colossians 1:21-23", + "scripture": [ + { + "nr": "21", + "text": "And you, that were sometime alienated and enemies in your mind by wicked works, yet now hath he reconciled" + }, + { + "nr": "22", + "text": "In the body of his flesh through death, to present you holy and unblameable and unreproveable in his sight:" + }, + { + "nr": "23", + "text": "If ye continue in the faith grounded and settled, and be not moved away from the hope of the gospel, which ye have heard, and which was preached to every creature which is under heaven; whereof I Paul am made a minister;" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "21-23", + "version": "kjv" +} diff --git a/scripture/kjv/05/05/25/scripture.md b/scripture/kjv/05/05/25/scripture.md new file mode 100644 index 00000000..951b72ab --- /dev/null +++ b/scripture/kjv/05/05/25/scripture.md @@ -0,0 +1,5 @@ +**Colossians 1:21-23** + +21 And you, that were sometime alienated and enemies in your mind by wicked works, yet now hath he reconciled 22 In the body of his flesh through death, to present you holy and unblameable and unreproveable in his sight: 23 If ye continue in the faith grounded and settled, and be not moved away from the hope of the gospel, which ye have heard, and which was preached to every creature which is under heaven; whereof I Paul am made a minister; + +[Monday 05-May, 2025](https://getbible.life/kjv/Colossians/1/21-23) diff --git a/scripture/kjv/05/05/25/scripture.tg b/scripture/kjv/05/05/25/scripture.tg new file mode 100644 index 00000000..60fe673b --- /dev/null +++ b/scripture/kjv/05/05/25/scripture.tg @@ -0,0 +1,4 @@ +Colossians 1:21-23 +21 And you, that were sometime alienated and enemies in your mind by wicked works, yet now hath he reconciled 22 In the body of his flesh through death, to present you holy and unblameable and unreproveable in his sight: 23 If ye continue in the faith grounded and settled, and be not moved away from the hope of the gospel, which ye have heard, and which was preached to every creature which is under heaven; whereof I Paul am made a minister; + +Monday 05-May, 2025 diff --git a/scripture/kjv/05/05/25/scripture.tg.id b/scripture/kjv/05/05/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/05/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/05/25/scripture.today b/scripture/kjv/05/05/25/scripture.today new file mode 100644 index 00000000..5cdb9961 --- /dev/null +++ b/scripture/kjv/05/05/25/scripture.today @@ -0,0 +1 @@ +51 1:21-23 diff --git a/scripture/kjv/05/05/26/scripture.html b/scripture/kjv/05/05/26/scripture.html new file mode 100644 index 00000000..21a32ede --- /dev/null +++ b/scripture/kjv/05/05/26/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 7:5
+5 For, when we were come into Macedonia, our flesh had no rest, but we were troubled on every side; without were fightings, within were fears.

+Tuesday 05-May, 2026 diff --git a/scripture/kjv/05/05/26/scripture.json b/scripture/kjv/05/05/26/scripture.json new file mode 100644 index 00000000..d7ab6874 --- /dev/null +++ b/scripture/kjv/05/05/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "7", + "date": "Tuesday 05-May, 2026", + "getbible": "https://getbible.life/kjv/2 Corinthians/7/5", + "name": "2 Corinthians 7:5", + "scripture": [ + { + "nr": "5", + "text": "For, when we were come into Macedonia, our flesh had no rest, but we were troubled on every side; without were fightings, within were fears." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5", + "version": "kjv" +} diff --git a/scripture/kjv/05/05/26/scripture.md b/scripture/kjv/05/05/26/scripture.md new file mode 100644 index 00000000..adf9de6c --- /dev/null +++ b/scripture/kjv/05/05/26/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 7:5** + +5 For, when we were come into Macedonia, our flesh had no rest, but we were troubled on every side; without were fightings, within were fears. + +[Tuesday 05-May, 2026](https://getbible.life/kjv/2 Corinthians/7/5) diff --git a/scripture/kjv/05/05/26/scripture.tg b/scripture/kjv/05/05/26/scripture.tg new file mode 100644 index 00000000..97ad3ea4 --- /dev/null +++ b/scripture/kjv/05/05/26/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 7:5 +5 For, when we were come into Macedonia, our flesh had no rest, but we were troubled on every side; without were fightings, within were fears. + +Tuesday 05-May, 2026 diff --git a/scripture/kjv/05/05/26/scripture.tg.id b/scripture/kjv/05/05/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/05/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/05/26/scripture.today b/scripture/kjv/05/05/26/scripture.today new file mode 100644 index 00000000..0d457659 --- /dev/null +++ b/scripture/kjv/05/05/26/scripture.today @@ -0,0 +1 @@ +47 7:5 diff --git a/scripture/kjv/05/06/23/scripture.html b/scripture/kjv/05/06/23/scripture.html new file mode 100644 index 00000000..9c35d22f --- /dev/null +++ b/scripture/kjv/05/06/23/scripture.html @@ -0,0 +1,3 @@ +Luke 19:34
+34 And they said, The Lord hath need of him.

+Saturday 06-May, 2023 diff --git a/scripture/kjv/05/06/23/scripture.json b/scripture/kjv/05/06/23/scripture.json new file mode 100644 index 00000000..04289d1e --- /dev/null +++ b/scripture/kjv/05/06/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Saturday 06-May, 2023", + "name": "Luke 19:34", + "scripture": [ + { + "nr": "34", + "text": "And they said, The Lord hath need of him." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/06/23/scripture.md b/scripture/kjv/05/06/23/scripture.md new file mode 100644 index 00000000..fbf083d9 --- /dev/null +++ b/scripture/kjv/05/06/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 19:34** + +34 And they said, The Lord hath need of him. + +[Saturday 06-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/06/23/scripture.tg b/scripture/kjv/05/06/23/scripture.tg new file mode 100644 index 00000000..30aae666 --- /dev/null +++ b/scripture/kjv/05/06/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 19:34 +34 And they said, The Lord hath need of him. + +Saturday 06-May, 2023 diff --git a/scripture/kjv/05/06/23/scripture.tg.id b/scripture/kjv/05/06/23/scripture.tg.id new file mode 100644 index 00000000..8421eae3 --- /dev/null +++ b/scripture/kjv/05/06/23/scripture.tg.id @@ -0,0 +1 @@ +940 diff --git a/scripture/kjv/05/06/23/scripture.today b/scripture/kjv/05/06/23/scripture.today new file mode 100644 index 00000000..ad656b3c --- /dev/null +++ b/scripture/kjv/05/06/23/scripture.today @@ -0,0 +1 @@ +42 19:34 diff --git a/scripture/kjv/05/06/24/scripture.html b/scripture/kjv/05/06/24/scripture.html new file mode 100644 index 00000000..206415bb --- /dev/null +++ b/scripture/kjv/05/06/24/scripture.html @@ -0,0 +1,3 @@ +John 16:1
+1 These things have I spoken unto you, that ye should not be offended.

+Monday 06-May, 2024 diff --git a/scripture/kjv/05/06/24/scripture.json b/scripture/kjv/05/06/24/scripture.json new file mode 100644 index 00000000..2c09956a --- /dev/null +++ b/scripture/kjv/05/06/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "16", + "date": "Monday 06-May, 2024", + "getbible": "https://getbible.life/kjv/John/16/1", + "name": "John 16:1", + "scripture": [ + { + "nr": "1", + "text": "These things have I spoken unto you, that ye should not be offended." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1", + "version": "kjv" +} diff --git a/scripture/kjv/05/06/24/scripture.md b/scripture/kjv/05/06/24/scripture.md new file mode 100644 index 00000000..aed1db7d --- /dev/null +++ b/scripture/kjv/05/06/24/scripture.md @@ -0,0 +1,5 @@ +**John 16:1** + +1 These things have I spoken unto you, that ye should not be offended. + +[Monday 06-May, 2024](https://getbible.life/kjv/John/16/1) diff --git a/scripture/kjv/05/06/24/scripture.tg b/scripture/kjv/05/06/24/scripture.tg new file mode 100644 index 00000000..c07a43ee --- /dev/null +++ b/scripture/kjv/05/06/24/scripture.tg @@ -0,0 +1,4 @@ +John 16:1 +1 These things have I spoken unto you, that ye should not be offended. + +Monday 06-May, 2024 diff --git a/scripture/kjv/05/06/24/scripture.tg.id b/scripture/kjv/05/06/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/06/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/06/24/scripture.today b/scripture/kjv/05/06/24/scripture.today new file mode 100644 index 00000000..7b3b8b1a --- /dev/null +++ b/scripture/kjv/05/06/24/scripture.today @@ -0,0 +1 @@ +43 16:1 diff --git a/scripture/kjv/05/06/25/scripture.html b/scripture/kjv/05/06/25/scripture.html new file mode 100644 index 00000000..f77b1c33 --- /dev/null +++ b/scripture/kjv/05/06/25/scripture.html @@ -0,0 +1,3 @@ +1 John 3:11
+11 For this is the message that ye heard from the beginning, that we should love one another.

+Tuesday 06-May, 2025 diff --git a/scripture/kjv/05/06/25/scripture.json b/scripture/kjv/05/06/25/scripture.json new file mode 100644 index 00000000..f5b3d276 --- /dev/null +++ b/scripture/kjv/05/06/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 John", + "chapter": "3", + "date": "Tuesday 06-May, 2025", + "getbible": "https://getbible.life/kjv/1 John/3/11", + "name": "1 John 3:11", + "scripture": [ + { + "nr": "11", + "text": "For this is the message that ye heard from the beginning, that we should love one another." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/05/06/25/scripture.md b/scripture/kjv/05/06/25/scripture.md new file mode 100644 index 00000000..439e34e6 --- /dev/null +++ b/scripture/kjv/05/06/25/scripture.md @@ -0,0 +1,5 @@ +**1 John 3:11** + +11 For this is the message that ye heard from the beginning, that we should love one another. + +[Tuesday 06-May, 2025](https://getbible.life/kjv/1 John/3/11) diff --git a/scripture/kjv/05/06/25/scripture.tg b/scripture/kjv/05/06/25/scripture.tg new file mode 100644 index 00000000..87414d04 --- /dev/null +++ b/scripture/kjv/05/06/25/scripture.tg @@ -0,0 +1,4 @@ +1 John 3:11 +11 For this is the message that ye heard from the beginning, that we should love one another. + +Tuesday 06-May, 2025 diff --git a/scripture/kjv/05/06/25/scripture.tg.id b/scripture/kjv/05/06/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/06/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/06/25/scripture.today b/scripture/kjv/05/06/25/scripture.today new file mode 100644 index 00000000..6148e122 --- /dev/null +++ b/scripture/kjv/05/06/25/scripture.today @@ -0,0 +1 @@ +62 3:11 diff --git a/scripture/kjv/05/06/26/scripture.html b/scripture/kjv/05/06/26/scripture.html new file mode 100644 index 00000000..2cd0d554 --- /dev/null +++ b/scripture/kjv/05/06/26/scripture.html @@ -0,0 +1,3 @@ +John 3:20
+20 For every one that doeth evil hateth the light, neither cometh to the light, lest his deeds should be reproved.

+Wednesday 06-May, 2026 diff --git a/scripture/kjv/05/06/26/scripture.json b/scripture/kjv/05/06/26/scripture.json new file mode 100644 index 00000000..973e7303 --- /dev/null +++ b/scripture/kjv/05/06/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "3", + "date": "Wednesday 06-May, 2026", + "getbible": "https://getbible.life/kjv/John/3/20", + "name": "John 3:20", + "scripture": [ + { + "nr": "20", + "text": "For every one that doeth evil hateth the light, neither cometh to the light, lest his deeds should be reproved." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20", + "version": "kjv" +} diff --git a/scripture/kjv/05/06/26/scripture.md b/scripture/kjv/05/06/26/scripture.md new file mode 100644 index 00000000..6f5ba370 --- /dev/null +++ b/scripture/kjv/05/06/26/scripture.md @@ -0,0 +1,5 @@ +**John 3:20** + +20 For every one that doeth evil hateth the light, neither cometh to the light, lest his deeds should be reproved. + +[Wednesday 06-May, 2026](https://getbible.life/kjv/John/3/20) diff --git a/scripture/kjv/05/06/26/scripture.tg b/scripture/kjv/05/06/26/scripture.tg new file mode 100644 index 00000000..921879c1 --- /dev/null +++ b/scripture/kjv/05/06/26/scripture.tg @@ -0,0 +1,4 @@ +John 3:20 +20 For every one that doeth evil hateth the light, neither cometh to the light, lest his deeds should be reproved. + +Wednesday 06-May, 2026 diff --git a/scripture/kjv/05/06/26/scripture.tg.id b/scripture/kjv/05/06/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/06/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/06/26/scripture.today b/scripture/kjv/05/06/26/scripture.today new file mode 100644 index 00000000..b220c763 --- /dev/null +++ b/scripture/kjv/05/06/26/scripture.today @@ -0,0 +1 @@ +43 3:20 diff --git a/scripture/kjv/05/07/23/scripture.html b/scripture/kjv/05/07/23/scripture.html new file mode 100644 index 00000000..ebe96950 --- /dev/null +++ b/scripture/kjv/05/07/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 30:6-7
+6 And in my prosperity I said, I shall never be moved. 7 Lord, by thy favour thou hast made my mountain to stand strong: thou didst hide thy face, and I was troubled.

+Sunday 07-May, 2023 diff --git a/scripture/kjv/05/07/23/scripture.json b/scripture/kjv/05/07/23/scripture.json new file mode 100644 index 00000000..79f7d703 --- /dev/null +++ b/scripture/kjv/05/07/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Sunday 07-May, 2023", + "name": "Psalms 30:6-7", + "scripture": [ + { + "nr": "6", + "text": "And in my prosperity I said, I shall never be moved." + }, + { + "nr": "7", + "text": "Lord, by thy favour thou hast made my mountain to stand strong: thou didst hide thy face, and I was troubled." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/07/23/scripture.md b/scripture/kjv/05/07/23/scripture.md new file mode 100644 index 00000000..e86412a2 --- /dev/null +++ b/scripture/kjv/05/07/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 30:6-7** + +6 And in my prosperity I said, I shall never be moved. 7 Lord, by thy favour thou hast made my mountain to stand strong: thou didst hide thy face, and I was troubled. + +[Sunday 07-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/07/23/scripture.tg b/scripture/kjv/05/07/23/scripture.tg new file mode 100644 index 00000000..674adcd9 --- /dev/null +++ b/scripture/kjv/05/07/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 30:6-7 +6 And in my prosperity I said, I shall never be moved. 7 Lord, by thy favour thou hast made my mountain to stand strong: thou didst hide thy face, and I was troubled. + +Sunday 07-May, 2023 diff --git a/scripture/kjv/05/07/23/scripture.tg.id b/scripture/kjv/05/07/23/scripture.tg.id new file mode 100644 index 00000000..3b2be154 --- /dev/null +++ b/scripture/kjv/05/07/23/scripture.tg.id @@ -0,0 +1 @@ +941 diff --git a/scripture/kjv/05/07/23/scripture.today b/scripture/kjv/05/07/23/scripture.today new file mode 100644 index 00000000..32e1a6b9 --- /dev/null +++ b/scripture/kjv/05/07/23/scripture.today @@ -0,0 +1 @@ +19 30:6-7 diff --git a/scripture/kjv/05/07/24/scripture.html b/scripture/kjv/05/07/24/scripture.html new file mode 100644 index 00000000..9109ebd5 --- /dev/null +++ b/scripture/kjv/05/07/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 23:17
+17 Let not thine heart envy sinners: but be thou in the fear of the Lord all the day long.

+Tuesday 07-May, 2024 diff --git a/scripture/kjv/05/07/24/scripture.json b/scripture/kjv/05/07/24/scripture.json new file mode 100644 index 00000000..976bf3fc --- /dev/null +++ b/scripture/kjv/05/07/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "23", + "date": "Tuesday 07-May, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/23/17", + "name": "Proverbs 23:17", + "scripture": [ + { + "nr": "17", + "text": "Let not thine heart envy sinners: but be thou in the fear of the Lord all the day long." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17", + "version": "kjv" +} diff --git a/scripture/kjv/05/07/24/scripture.md b/scripture/kjv/05/07/24/scripture.md new file mode 100644 index 00000000..66326768 --- /dev/null +++ b/scripture/kjv/05/07/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 23:17** + +17 Let not thine heart envy sinners: but be thou in the fear of the Lord all the day long. + +[Tuesday 07-May, 2024](https://getbible.life/kjv/Proverbs/23/17) diff --git a/scripture/kjv/05/07/24/scripture.tg b/scripture/kjv/05/07/24/scripture.tg new file mode 100644 index 00000000..8d125c8a --- /dev/null +++ b/scripture/kjv/05/07/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 23:17 +17 Let not thine heart envy sinners: but be thou in the fear of the Lord all the day long. + +Tuesday 07-May, 2024 diff --git a/scripture/kjv/05/07/24/scripture.tg.id b/scripture/kjv/05/07/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/07/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/07/24/scripture.today b/scripture/kjv/05/07/24/scripture.today new file mode 100644 index 00000000..24c11d07 --- /dev/null +++ b/scripture/kjv/05/07/24/scripture.today @@ -0,0 +1 @@ +20 23:17 diff --git a/scripture/kjv/05/07/25/scripture.html b/scripture/kjv/05/07/25/scripture.html new file mode 100644 index 00000000..e63a42f4 --- /dev/null +++ b/scripture/kjv/05/07/25/scripture.html @@ -0,0 +1,3 @@ +Job 27:5-6
+5 God forbid that I should justify you: till I die I will not remove mine integrity from me. 6 My righteousness I hold fast, and will not let it go: my heart shall not reproach me so long as I live.

+Wednesday 07-May, 2025 diff --git a/scripture/kjv/05/07/25/scripture.json b/scripture/kjv/05/07/25/scripture.json new file mode 100644 index 00000000..0103e45a --- /dev/null +++ b/scripture/kjv/05/07/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Job", + "chapter": "27", + "date": "Wednesday 07-May, 2025", + "getbible": "https://getbible.life/kjv/Job/27/5-6", + "name": "Job 27:5-6", + "scripture": [ + { + "nr": "5", + "text": "God forbid that I should justify you: till I die I will not remove mine integrity from me." + }, + { + "nr": "6", + "text": "My righteousness I hold fast, and will not let it go: my heart shall not reproach me so long as I live." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5-6", + "version": "kjv" +} diff --git a/scripture/kjv/05/07/25/scripture.md b/scripture/kjv/05/07/25/scripture.md new file mode 100644 index 00000000..8ea7db7a --- /dev/null +++ b/scripture/kjv/05/07/25/scripture.md @@ -0,0 +1,5 @@ +**Job 27:5-6** + +5 God forbid that I should justify you: till I die I will not remove mine integrity from me. 6 My righteousness I hold fast, and will not let it go: my heart shall not reproach me so long as I live. + +[Wednesday 07-May, 2025](https://getbible.life/kjv/Job/27/5-6) diff --git a/scripture/kjv/05/07/25/scripture.tg b/scripture/kjv/05/07/25/scripture.tg new file mode 100644 index 00000000..e46b4271 --- /dev/null +++ b/scripture/kjv/05/07/25/scripture.tg @@ -0,0 +1,4 @@ +Job 27:5-6 +5 God forbid that I should justify you: till I die I will not remove mine integrity from me. 6 My righteousness I hold fast, and will not let it go: my heart shall not reproach me so long as I live. + +Wednesday 07-May, 2025 diff --git a/scripture/kjv/05/07/25/scripture.tg.id b/scripture/kjv/05/07/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/07/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/07/25/scripture.today b/scripture/kjv/05/07/25/scripture.today new file mode 100644 index 00000000..11d02ffb --- /dev/null +++ b/scripture/kjv/05/07/25/scripture.today @@ -0,0 +1 @@ +18 27:5-6 diff --git a/scripture/kjv/05/07/26/scripture.html b/scripture/kjv/05/07/26/scripture.html new file mode 100644 index 00000000..fe8e62b9 --- /dev/null +++ b/scripture/kjv/05/07/26/scripture.html @@ -0,0 +1,3 @@ +Colossians 2:6
+6 As ye have therefore received Christ Jesus the Lord, so walk ye in him:

+Thursday 07-May, 2026 diff --git a/scripture/kjv/05/07/26/scripture.json b/scripture/kjv/05/07/26/scripture.json new file mode 100644 index 00000000..43d1fe0f --- /dev/null +++ b/scripture/kjv/05/07/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Colossians", + "chapter": "2", + "date": "Thursday 07-May, 2026", + "getbible": "https://getbible.life/kjv/Colossians/2/6", + "name": "Colossians 2:6", + "scripture": [ + { + "nr": "6", + "text": "As ye have therefore received Christ Jesus the Lord, so walk ye in him:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6", + "version": "kjv" +} diff --git a/scripture/kjv/05/07/26/scripture.md b/scripture/kjv/05/07/26/scripture.md new file mode 100644 index 00000000..6dbc64cd --- /dev/null +++ b/scripture/kjv/05/07/26/scripture.md @@ -0,0 +1,5 @@ +**Colossians 2:6** + +6 As ye have therefore received Christ Jesus the Lord, so walk ye in him: + +[Thursday 07-May, 2026](https://getbible.life/kjv/Colossians/2/6) diff --git a/scripture/kjv/05/07/26/scripture.tg b/scripture/kjv/05/07/26/scripture.tg new file mode 100644 index 00000000..9c77c995 --- /dev/null +++ b/scripture/kjv/05/07/26/scripture.tg @@ -0,0 +1,4 @@ +Colossians 2:6 +6 As ye have therefore received Christ Jesus the Lord, so walk ye in him: + +Thursday 07-May, 2026 diff --git a/scripture/kjv/05/07/26/scripture.tg.id b/scripture/kjv/05/07/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/07/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/07/26/scripture.today b/scripture/kjv/05/07/26/scripture.today new file mode 100644 index 00000000..2bf0e10d --- /dev/null +++ b/scripture/kjv/05/07/26/scripture.today @@ -0,0 +1 @@ +51 2:6 diff --git a/scripture/kjv/05/08/23/scripture.html b/scripture/kjv/05/08/23/scripture.html new file mode 100644 index 00000000..b2a42846 --- /dev/null +++ b/scripture/kjv/05/08/23/scripture.html @@ -0,0 +1,3 @@ +Luke 16:10
+10 He that is faithful in that which is least is faithful also in much: and he that is unjust in the least is unjust also in much.

+Monday 08-May, 2023 diff --git a/scripture/kjv/05/08/23/scripture.json b/scripture/kjv/05/08/23/scripture.json new file mode 100644 index 00000000..0aaa098d --- /dev/null +++ b/scripture/kjv/05/08/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Monday 08-May, 2023", + "name": "Luke 16:10", + "scripture": [ + { + "nr": "10", + "text": "He that is faithful in that which is least is faithful also in much: and he that is unjust in the least is unjust also in much." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/08/23/scripture.md b/scripture/kjv/05/08/23/scripture.md new file mode 100644 index 00000000..61301e2b --- /dev/null +++ b/scripture/kjv/05/08/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 16:10** + +10 He that is faithful in that which is least is faithful also in much: and he that is unjust in the least is unjust also in much. + +[Monday 08-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/08/23/scripture.tg b/scripture/kjv/05/08/23/scripture.tg new file mode 100644 index 00000000..db61f0f1 --- /dev/null +++ b/scripture/kjv/05/08/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 16:10 +10 He that is faithful in that which is least is faithful also in much: and he that is unjust in the least is unjust also in much. + +Monday 08-May, 2023 diff --git a/scripture/kjv/05/08/23/scripture.tg.id b/scripture/kjv/05/08/23/scripture.tg.id new file mode 100644 index 00000000..34666ff4 --- /dev/null +++ b/scripture/kjv/05/08/23/scripture.tg.id @@ -0,0 +1 @@ +942 diff --git a/scripture/kjv/05/08/23/scripture.today b/scripture/kjv/05/08/23/scripture.today new file mode 100644 index 00000000..77cea437 --- /dev/null +++ b/scripture/kjv/05/08/23/scripture.today @@ -0,0 +1 @@ +42 16:10 diff --git a/scripture/kjv/05/08/24/scripture.html b/scripture/kjv/05/08/24/scripture.html new file mode 100644 index 00000000..ffb3f436 --- /dev/null +++ b/scripture/kjv/05/08/24/scripture.html @@ -0,0 +1,3 @@ +Romans 11:20-22
+20 Well; because of unbelief they were broken off, and thou standest by faith. Be not highminded, but fear: 21 For if God spared not the natural branches, take heed lest he also spare not thee. 22 Behold therefore the goodness and severity of God: on them which fell, severity; but toward thee, goodness, if thou continue in his goodness: otherwise thou also shalt be cut off.

+Wednesday 08-May, 2024 diff --git a/scripture/kjv/05/08/24/scripture.json b/scripture/kjv/05/08/24/scripture.json new file mode 100644 index 00000000..59cae058 --- /dev/null +++ b/scripture/kjv/05/08/24/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Romans", + "chapter": "11", + "date": "Wednesday 08-May, 2024", + "getbible": "https://getbible.life/kjv/Romans/11/20-22", + "name": "Romans 11:20-22", + "scripture": [ + { + "nr": "20", + "text": "Well; because of unbelief they were broken off, and thou standest by faith. Be not highminded, but fear:" + }, + { + "nr": "21", + "text": "For if God spared not the natural branches, take heed lest he also spare not thee." + }, + { + "nr": "22", + "text": "Behold therefore the goodness and severity of God: on them which fell, severity; but toward thee, goodness, if thou continue in his goodness: otherwise thou also shalt be cut off." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20-22", + "version": "kjv" +} diff --git a/scripture/kjv/05/08/24/scripture.md b/scripture/kjv/05/08/24/scripture.md new file mode 100644 index 00000000..d5cb57ce --- /dev/null +++ b/scripture/kjv/05/08/24/scripture.md @@ -0,0 +1,5 @@ +**Romans 11:20-22** + +20 Well; because of unbelief they were broken off, and thou standest by faith. Be not highminded, but fear: 21 For if God spared not the natural branches, take heed lest he also spare not thee. 22 Behold therefore the goodness and severity of God: on them which fell, severity; but toward thee, goodness, if thou continue in his goodness: otherwise thou also shalt be cut off. + +[Wednesday 08-May, 2024](https://getbible.life/kjv/Romans/11/20-22) diff --git a/scripture/kjv/05/08/24/scripture.tg b/scripture/kjv/05/08/24/scripture.tg new file mode 100644 index 00000000..51d48ea0 --- /dev/null +++ b/scripture/kjv/05/08/24/scripture.tg @@ -0,0 +1,4 @@ +Romans 11:20-22 +20 Well; because of unbelief they were broken off, and thou standest by faith. Be not highminded, but fear: 21 For if God spared not the natural branches, take heed lest he also spare not thee. 22 Behold therefore the goodness and severity of God: on them which fell, severity; but toward thee, goodness, if thou continue in his goodness: otherwise thou also shalt be cut off. + +Wednesday 08-May, 2024 diff --git a/scripture/kjv/05/08/24/scripture.tg.id b/scripture/kjv/05/08/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/08/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/08/24/scripture.today b/scripture/kjv/05/08/24/scripture.today new file mode 100644 index 00000000..80401f66 --- /dev/null +++ b/scripture/kjv/05/08/24/scripture.today @@ -0,0 +1 @@ +45 11:20-22 diff --git a/scripture/kjv/05/08/25/scripture.html b/scripture/kjv/05/08/25/scripture.html new file mode 100644 index 00000000..f48b1941 --- /dev/null +++ b/scripture/kjv/05/08/25/scripture.html @@ -0,0 +1,3 @@ +Hebrews 3:1-2
+1 Wherefore, holy brethren, partakers of the heavenly calling, consider the Apostle and High Priest of our profession, Christ Jesus; 2 Who was faithful to him that appointed him, as also Moses was faithful in all his house.

+Thursday 08-May, 2025 diff --git a/scripture/kjv/05/08/25/scripture.json b/scripture/kjv/05/08/25/scripture.json new file mode 100644 index 00000000..8c04d296 --- /dev/null +++ b/scripture/kjv/05/08/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Hebrews", + "chapter": "3", + "date": "Thursday 08-May, 2025", + "getbible": "https://getbible.life/kjv/Hebrews/3/1-2", + "name": "Hebrews 3:1-2", + "scripture": [ + { + "nr": "1", + "text": "Wherefore, holy brethren, partakers of the heavenly calling, consider the Apostle and High Priest of our profession, Christ Jesus;" + }, + { + "nr": "2", + "text": "Who was faithful to him that appointed him, as also Moses was faithful in all his house." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-2", + "version": "kjv" +} diff --git a/scripture/kjv/05/08/25/scripture.md b/scripture/kjv/05/08/25/scripture.md new file mode 100644 index 00000000..b69d438f --- /dev/null +++ b/scripture/kjv/05/08/25/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 3:1-2** + +1 Wherefore, holy brethren, partakers of the heavenly calling, consider the Apostle and High Priest of our profession, Christ Jesus; 2 Who was faithful to him that appointed him, as also Moses was faithful in all his house. + +[Thursday 08-May, 2025](https://getbible.life/kjv/Hebrews/3/1-2) diff --git a/scripture/kjv/05/08/25/scripture.tg b/scripture/kjv/05/08/25/scripture.tg new file mode 100644 index 00000000..60a80402 --- /dev/null +++ b/scripture/kjv/05/08/25/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 3:1-2 +1 Wherefore, holy brethren, partakers of the heavenly calling, consider the Apostle and High Priest of our profession, Christ Jesus; 2 Who was faithful to him that appointed him, as also Moses was faithful in all his house. + +Thursday 08-May, 2025 diff --git a/scripture/kjv/05/08/25/scripture.tg.id b/scripture/kjv/05/08/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/08/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/08/25/scripture.today b/scripture/kjv/05/08/25/scripture.today new file mode 100644 index 00000000..7109ee31 --- /dev/null +++ b/scripture/kjv/05/08/25/scripture.today @@ -0,0 +1 @@ +58 3:1-2 diff --git a/scripture/kjv/05/08/26/scripture.html b/scripture/kjv/05/08/26/scripture.html new file mode 100644 index 00000000..f574d95a --- /dev/null +++ b/scripture/kjv/05/08/26/scripture.html @@ -0,0 +1,3 @@ +Ephesians 4:25
+25 Wherefore putting away lying, speak every man truth with his neighbour: for we are members one of another.

+Friday 08-May, 2026 diff --git a/scripture/kjv/05/08/26/scripture.json b/scripture/kjv/05/08/26/scripture.json new file mode 100644 index 00000000..895bbc5a --- /dev/null +++ b/scripture/kjv/05/08/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ephesians", + "chapter": "4", + "date": "Friday 08-May, 2026", + "getbible": "https://getbible.life/kjv/Ephesians/4/25", + "name": "Ephesians 4:25", + "scripture": [ + { + "nr": "25", + "text": "Wherefore putting away lying, speak every man truth with his neighbour: for we are members one of another." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "25", + "version": "kjv" +} diff --git a/scripture/kjv/05/08/26/scripture.md b/scripture/kjv/05/08/26/scripture.md new file mode 100644 index 00000000..e05ee590 --- /dev/null +++ b/scripture/kjv/05/08/26/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 4:25** + +25 Wherefore putting away lying, speak every man truth with his neighbour: for we are members one of another. + +[Friday 08-May, 2026](https://getbible.life/kjv/Ephesians/4/25) diff --git a/scripture/kjv/05/08/26/scripture.tg b/scripture/kjv/05/08/26/scripture.tg new file mode 100644 index 00000000..98e7377f --- /dev/null +++ b/scripture/kjv/05/08/26/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 4:25 +25 Wherefore putting away lying, speak every man truth with his neighbour: for we are members one of another. + +Friday 08-May, 2026 diff --git a/scripture/kjv/05/08/26/scripture.tg.id b/scripture/kjv/05/08/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/08/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/08/26/scripture.today b/scripture/kjv/05/08/26/scripture.today new file mode 100644 index 00000000..75e7593a --- /dev/null +++ b/scripture/kjv/05/08/26/scripture.today @@ -0,0 +1 @@ +49 4:25 diff --git a/scripture/kjv/05/09/23/scripture.html b/scripture/kjv/05/09/23/scripture.html new file mode 100644 index 00000000..309e3032 --- /dev/null +++ b/scripture/kjv/05/09/23/scripture.html @@ -0,0 +1,3 @@ +Revelation 3:20
+20 Behold, I stand at the door, and knock: if any man hear my voice, and open the door, I will come in to him, and will sup with him, and he with me.

+Tuesday 09-May, 2023 diff --git a/scripture/kjv/05/09/23/scripture.json b/scripture/kjv/05/09/23/scripture.json new file mode 100644 index 00000000..dbfd52b0 --- /dev/null +++ b/scripture/kjv/05/09/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Tuesday 09-May, 2023", + "name": "Revelation 3:20", + "scripture": [ + { + "nr": "20", + "text": "Behold, I stand at the door, and knock: if any man hear my voice, and open the door, I will come in to him, and will sup with him, and he with me." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/09/23/scripture.md b/scripture/kjv/05/09/23/scripture.md new file mode 100644 index 00000000..6b13bf4d --- /dev/null +++ b/scripture/kjv/05/09/23/scripture.md @@ -0,0 +1,5 @@ +**Revelation 3:20** + +20 Behold, I stand at the door, and knock: if any man hear my voice, and open the door, I will come in to him, and will sup with him, and he with me. + +[Tuesday 09-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/09/23/scripture.tg b/scripture/kjv/05/09/23/scripture.tg new file mode 100644 index 00000000..9564e5fc --- /dev/null +++ b/scripture/kjv/05/09/23/scripture.tg @@ -0,0 +1,4 @@ +Revelation 3:20 +20 Behold, I stand at the door, and knock: if any man hear my voice, and open the door, I will come in to him, and will sup with him, and he with me. + +Tuesday 09-May, 2023 diff --git a/scripture/kjv/05/09/23/scripture.tg.id b/scripture/kjv/05/09/23/scripture.tg.id new file mode 100644 index 00000000..720219cd --- /dev/null +++ b/scripture/kjv/05/09/23/scripture.tg.id @@ -0,0 +1 @@ +943 diff --git a/scripture/kjv/05/09/23/scripture.today b/scripture/kjv/05/09/23/scripture.today new file mode 100644 index 00000000..35625cd6 --- /dev/null +++ b/scripture/kjv/05/09/23/scripture.today @@ -0,0 +1 @@ +66 3:20 diff --git a/scripture/kjv/05/09/24/scripture.html b/scripture/kjv/05/09/24/scripture.html new file mode 100644 index 00000000..36b20531 --- /dev/null +++ b/scripture/kjv/05/09/24/scripture.html @@ -0,0 +1,3 @@ +1 Timothy 6:6-8
+6 But godliness with contentment is great gain. 7 For we brought nothing into this world, and it is certain we can carry nothing out. 8 And having food and raiment let us be therewith content.

+Thursday 09-May, 2024 diff --git a/scripture/kjv/05/09/24/scripture.json b/scripture/kjv/05/09/24/scripture.json new file mode 100644 index 00000000..5388ad57 --- /dev/null +++ b/scripture/kjv/05/09/24/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "1 Timothy", + "chapter": "6", + "date": "Thursday 09-May, 2024", + "getbible": "https://getbible.life/kjv/1 Timothy/6/6-8", + "name": "1 Timothy 6:6-8", + "scripture": [ + { + "nr": "6", + "text": "But godliness with contentment is great gain." + }, + { + "nr": "7", + "text": "For we brought nothing into this world, and it is certain we can carry nothing out." + }, + { + "nr": "8", + "text": "And having food and raiment let us be therewith content." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6-8", + "version": "kjv" +} diff --git a/scripture/kjv/05/09/24/scripture.md b/scripture/kjv/05/09/24/scripture.md new file mode 100644 index 00000000..454c9066 --- /dev/null +++ b/scripture/kjv/05/09/24/scripture.md @@ -0,0 +1,5 @@ +**1 Timothy 6:6-8** + +6 But godliness with contentment is great gain. 7 For we brought nothing into this world, and it is certain we can carry nothing out. 8 And having food and raiment let us be therewith content. + +[Thursday 09-May, 2024](https://getbible.life/kjv/1 Timothy/6/6-8) diff --git a/scripture/kjv/05/09/24/scripture.tg b/scripture/kjv/05/09/24/scripture.tg new file mode 100644 index 00000000..e80ab181 --- /dev/null +++ b/scripture/kjv/05/09/24/scripture.tg @@ -0,0 +1,4 @@ +1 Timothy 6:6-8 +6 But godliness with contentment is great gain. 7 For we brought nothing into this world, and it is certain we can carry nothing out. 8 And having food and raiment let us be therewith content. + +Thursday 09-May, 2024 diff --git a/scripture/kjv/05/09/24/scripture.tg.id b/scripture/kjv/05/09/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/09/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/09/24/scripture.today b/scripture/kjv/05/09/24/scripture.today new file mode 100644 index 00000000..257776f4 --- /dev/null +++ b/scripture/kjv/05/09/24/scripture.today @@ -0,0 +1 @@ +54 6:6-8 diff --git a/scripture/kjv/05/09/25/scripture.html b/scripture/kjv/05/09/25/scripture.html new file mode 100644 index 00000000..f323e71e --- /dev/null +++ b/scripture/kjv/05/09/25/scripture.html @@ -0,0 +1,3 @@ +John 6:60
+60 Many therefore of his disciples, when they had heard this, said, This is an hard saying; who can hear it?

+Friday 09-May, 2025 diff --git a/scripture/kjv/05/09/25/scripture.json b/scripture/kjv/05/09/25/scripture.json new file mode 100644 index 00000000..81ad4e22 --- /dev/null +++ b/scripture/kjv/05/09/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "6", + "date": "Friday 09-May, 2025", + "getbible": "https://getbible.life/kjv/John/6/60", + "name": "John 6:60", + "scripture": [ + { + "nr": "60", + "text": "Many therefore of his disciples, when they had heard this, said, This is an hard saying; who can hear it?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "60", + "version": "kjv" +} diff --git a/scripture/kjv/05/09/25/scripture.md b/scripture/kjv/05/09/25/scripture.md new file mode 100644 index 00000000..f4e612d7 --- /dev/null +++ b/scripture/kjv/05/09/25/scripture.md @@ -0,0 +1,5 @@ +**John 6:60** + +60 Many therefore of his disciples, when they had heard this, said, This is an hard saying; who can hear it? + +[Friday 09-May, 2025](https://getbible.life/kjv/John/6/60) diff --git a/scripture/kjv/05/09/25/scripture.tg b/scripture/kjv/05/09/25/scripture.tg new file mode 100644 index 00000000..03e83dd2 --- /dev/null +++ b/scripture/kjv/05/09/25/scripture.tg @@ -0,0 +1,4 @@ +John 6:60 +60 Many therefore of his disciples, when they had heard this, said, This is an hard saying; who can hear it? + +Friday 09-May, 2025 diff --git a/scripture/kjv/05/09/25/scripture.tg.id b/scripture/kjv/05/09/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/09/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/09/25/scripture.today b/scripture/kjv/05/09/25/scripture.today new file mode 100644 index 00000000..81eac8b4 --- /dev/null +++ b/scripture/kjv/05/09/25/scripture.today @@ -0,0 +1 @@ +43 6:60 diff --git a/scripture/kjv/05/09/26/scripture.html b/scripture/kjv/05/09/26/scripture.html new file mode 100644 index 00000000..f2f874df --- /dev/null +++ b/scripture/kjv/05/09/26/scripture.html @@ -0,0 +1,3 @@ +Matthew 11:6
+6 And blessed is he, whosoever shall not be offended in me.

+Saturday 09-May, 2026 diff --git a/scripture/kjv/05/09/26/scripture.json b/scripture/kjv/05/09/26/scripture.json new file mode 100644 index 00000000..9bbcec96 --- /dev/null +++ b/scripture/kjv/05/09/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Matthew", + "chapter": "11", + "date": "Saturday 09-May, 2026", + "getbible": "https://getbible.life/kjv/Matthew/11/6", + "name": "Matthew 11:6", + "scripture": [ + { + "nr": "6", + "text": "And blessed is he, whosoever shall not be offended in me." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6", + "version": "kjv" +} diff --git a/scripture/kjv/05/09/26/scripture.md b/scripture/kjv/05/09/26/scripture.md new file mode 100644 index 00000000..ef857be6 --- /dev/null +++ b/scripture/kjv/05/09/26/scripture.md @@ -0,0 +1,5 @@ +**Matthew 11:6** + +6 And blessed is he, whosoever shall not be offended in me. + +[Saturday 09-May, 2026](https://getbible.life/kjv/Matthew/11/6) diff --git a/scripture/kjv/05/09/26/scripture.tg b/scripture/kjv/05/09/26/scripture.tg new file mode 100644 index 00000000..ea7718ca --- /dev/null +++ b/scripture/kjv/05/09/26/scripture.tg @@ -0,0 +1,4 @@ +Matthew 11:6 +6 And blessed is he, whosoever shall not be offended in me. + +Saturday 09-May, 2026 diff --git a/scripture/kjv/05/09/26/scripture.tg.id b/scripture/kjv/05/09/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/09/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/09/26/scripture.today b/scripture/kjv/05/09/26/scripture.today new file mode 100644 index 00000000..2089d979 --- /dev/null +++ b/scripture/kjv/05/09/26/scripture.today @@ -0,0 +1 @@ +40 11:6 diff --git a/scripture/kjv/05/10/23/scripture.html b/scripture/kjv/05/10/23/scripture.html new file mode 100644 index 00000000..b6cbc9a6 --- /dev/null +++ b/scripture/kjv/05/10/23/scripture.html @@ -0,0 +1,3 @@ +Luke 14:33
+33 So likewise, whosoever he be of you that forsaketh not all that he hath, he cannot be my disciple.

+Wednesday 10-May, 2023 diff --git a/scripture/kjv/05/10/23/scripture.json b/scripture/kjv/05/10/23/scripture.json new file mode 100644 index 00000000..efaa20c9 --- /dev/null +++ b/scripture/kjv/05/10/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Wednesday 10-May, 2023", + "name": "Luke 14:33", + "scripture": [ + { + "nr": "33", + "text": "So likewise, whosoever he be of you that forsaketh not all that he hath, he cannot be my disciple." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/10/23/scripture.md b/scripture/kjv/05/10/23/scripture.md new file mode 100644 index 00000000..83682fc5 --- /dev/null +++ b/scripture/kjv/05/10/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 14:33** + +33 So likewise, whosoever he be of you that forsaketh not all that he hath, he cannot be my disciple. + +[Wednesday 10-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/10/23/scripture.tg b/scripture/kjv/05/10/23/scripture.tg new file mode 100644 index 00000000..34a34d53 --- /dev/null +++ b/scripture/kjv/05/10/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 14:33 +33 So likewise, whosoever he be of you that forsaketh not all that he hath, he cannot be my disciple. + +Wednesday 10-May, 2023 diff --git a/scripture/kjv/05/10/23/scripture.tg.id b/scripture/kjv/05/10/23/scripture.tg.id new file mode 100644 index 00000000..175df711 --- /dev/null +++ b/scripture/kjv/05/10/23/scripture.tg.id @@ -0,0 +1 @@ +944 diff --git a/scripture/kjv/05/10/23/scripture.today b/scripture/kjv/05/10/23/scripture.today new file mode 100644 index 00000000..48df6259 --- /dev/null +++ b/scripture/kjv/05/10/23/scripture.today @@ -0,0 +1 @@ +42 14:33 diff --git a/scripture/kjv/05/10/24/scripture.html b/scripture/kjv/05/10/24/scripture.html new file mode 100644 index 00000000..bb9cf010 --- /dev/null +++ b/scripture/kjv/05/10/24/scripture.html @@ -0,0 +1,3 @@ +Daniel 4:37
+37 Now I Nebuchadnezzar praise and extol and honour the King of heaven, all whose works are truth, and his ways judgment: and those that walk in pride he is able to abase.

+Friday 10-May, 2024 diff --git a/scripture/kjv/05/10/24/scripture.json b/scripture/kjv/05/10/24/scripture.json new file mode 100644 index 00000000..1d879e37 --- /dev/null +++ b/scripture/kjv/05/10/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Daniel", + "chapter": "4", + "date": "Friday 10-May, 2024", + "getbible": "https://getbible.life/kjv/Daniel/4/37", + "name": "Daniel 4:37", + "scripture": [ + { + "nr": "37", + "text": "Now I Nebuchadnezzar praise and extol and honour the King of heaven, all whose works are truth, and his ways judgment: and those that walk in pride he is able to abase. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "37", + "version": "kjv" +} diff --git a/scripture/kjv/05/10/24/scripture.md b/scripture/kjv/05/10/24/scripture.md new file mode 100644 index 00000000..7c8a0cb9 --- /dev/null +++ b/scripture/kjv/05/10/24/scripture.md @@ -0,0 +1,5 @@ +**Daniel 4:37** + +37 Now I Nebuchadnezzar praise and extol and honour the King of heaven, all whose works are truth, and his ways judgment: and those that walk in pride he is able to abase. + +[Friday 10-May, 2024](https://getbible.life/kjv/Daniel/4/37) diff --git a/scripture/kjv/05/10/24/scripture.tg b/scripture/kjv/05/10/24/scripture.tg new file mode 100644 index 00000000..389075b8 --- /dev/null +++ b/scripture/kjv/05/10/24/scripture.tg @@ -0,0 +1,4 @@ +Daniel 4:37 +37 Now I Nebuchadnezzar praise and extol and honour the King of heaven, all whose works are truth, and his ways judgment: and those that walk in pride he is able to abase. + +Friday 10-May, 2024 diff --git a/scripture/kjv/05/10/24/scripture.tg.id b/scripture/kjv/05/10/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/10/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/10/24/scripture.today b/scripture/kjv/05/10/24/scripture.today new file mode 100644 index 00000000..4a4e8532 --- /dev/null +++ b/scripture/kjv/05/10/24/scripture.today @@ -0,0 +1 @@ +27 4:37 diff --git a/scripture/kjv/05/10/25/scripture.html b/scripture/kjv/05/10/25/scripture.html new file mode 100644 index 00000000..3cfdc35b --- /dev/null +++ b/scripture/kjv/05/10/25/scripture.html @@ -0,0 +1,3 @@ +Hebrews 13:2
+2 Be not forgetful to entertain strangers: for thereby some have entertained angels unawares.

+Saturday 10-May, 2025 diff --git a/scripture/kjv/05/10/25/scripture.json b/scripture/kjv/05/10/25/scripture.json new file mode 100644 index 00000000..12159157 --- /dev/null +++ b/scripture/kjv/05/10/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Hebrews", + "chapter": "13", + "date": "Saturday 10-May, 2025", + "getbible": "https://getbible.life/kjv/Hebrews/13/2", + "name": "Hebrews 13:2", + "scripture": [ + { + "nr": "2", + "text": "Be not forgetful to entertain strangers: for thereby some have entertained angels unawares." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "2", + "version": "kjv" +} diff --git a/scripture/kjv/05/10/25/scripture.md b/scripture/kjv/05/10/25/scripture.md new file mode 100644 index 00000000..e9bca8a2 --- /dev/null +++ b/scripture/kjv/05/10/25/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 13:2** + +2 Be not forgetful to entertain strangers: for thereby some have entertained angels unawares. + +[Saturday 10-May, 2025](https://getbible.life/kjv/Hebrews/13/2) diff --git a/scripture/kjv/05/10/25/scripture.tg b/scripture/kjv/05/10/25/scripture.tg new file mode 100644 index 00000000..1c012887 --- /dev/null +++ b/scripture/kjv/05/10/25/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 13:2 +2 Be not forgetful to entertain strangers: for thereby some have entertained angels unawares. + +Saturday 10-May, 2025 diff --git a/scripture/kjv/05/10/25/scripture.tg.id b/scripture/kjv/05/10/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/10/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/10/25/scripture.today b/scripture/kjv/05/10/25/scripture.today new file mode 100644 index 00000000..dbd599d3 --- /dev/null +++ b/scripture/kjv/05/10/25/scripture.today @@ -0,0 +1 @@ +58 13:2 diff --git a/scripture/kjv/05/10/26/scripture.html b/scripture/kjv/05/10/26/scripture.html new file mode 100644 index 00000000..3ac87051 --- /dev/null +++ b/scripture/kjv/05/10/26/scripture.html @@ -0,0 +1,3 @@ +Philippians 2:4
+4 Look not every man on his own things, but every man also on the things of others.

+Sunday 10-May, 2026 diff --git a/scripture/kjv/05/10/26/scripture.json b/scripture/kjv/05/10/26/scripture.json new file mode 100644 index 00000000..d54f5747 --- /dev/null +++ b/scripture/kjv/05/10/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Philippians", + "chapter": "2", + "date": "Sunday 10-May, 2026", + "getbible": "https://getbible.life/kjv/Philippians/2/4", + "name": "Philippians 2:4", + "scripture": [ + { + "nr": "4", + "text": "Look not every man on his own things, but every man also on the things of others." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4", + "version": "kjv" +} diff --git a/scripture/kjv/05/10/26/scripture.md b/scripture/kjv/05/10/26/scripture.md new file mode 100644 index 00000000..90b42826 --- /dev/null +++ b/scripture/kjv/05/10/26/scripture.md @@ -0,0 +1,5 @@ +**Philippians 2:4** + +4 Look not every man on his own things, but every man also on the things of others. + +[Sunday 10-May, 2026](https://getbible.life/kjv/Philippians/2/4) diff --git a/scripture/kjv/05/10/26/scripture.tg b/scripture/kjv/05/10/26/scripture.tg new file mode 100644 index 00000000..bf5471c6 --- /dev/null +++ b/scripture/kjv/05/10/26/scripture.tg @@ -0,0 +1,4 @@ +Philippians 2:4 +4 Look not every man on his own things, but every man also on the things of others. + +Sunday 10-May, 2026 diff --git a/scripture/kjv/05/10/26/scripture.tg.id b/scripture/kjv/05/10/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/10/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/10/26/scripture.today b/scripture/kjv/05/10/26/scripture.today new file mode 100644 index 00000000..a6ce4a61 --- /dev/null +++ b/scripture/kjv/05/10/26/scripture.today @@ -0,0 +1 @@ +50 2:4 diff --git a/scripture/kjv/05/11/23/scripture.html b/scripture/kjv/05/11/23/scripture.html new file mode 100644 index 00000000..05f12f02 --- /dev/null +++ b/scripture/kjv/05/11/23/scripture.html @@ -0,0 +1,3 @@ +Acts 1:8
+8 But ye shall receive power, after that the Holy Ghost is come upon you: and ye shall be witnesses unto me both in Jerusalem, and in all Judæa, and in Samaria, and unto the uttermost part of the earth.

+Thursday 11-May, 2023 diff --git a/scripture/kjv/05/11/23/scripture.json b/scripture/kjv/05/11/23/scripture.json new file mode 100644 index 00000000..5a42e8ce --- /dev/null +++ b/scripture/kjv/05/11/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Thursday 11-May, 2023", + "name": "Acts 1:8", + "scripture": [ + { + "nr": "8", + "text": "But ye shall receive power, after that the Holy Ghost is come upon you: and ye shall be witnesses unto me both in Jerusalem, and in all Judæa, and in Samaria, and unto the uttermost part of the earth." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/11/23/scripture.md b/scripture/kjv/05/11/23/scripture.md new file mode 100644 index 00000000..fda676b0 --- /dev/null +++ b/scripture/kjv/05/11/23/scripture.md @@ -0,0 +1,5 @@ +**Acts 1:8** + +8 But ye shall receive power, after that the Holy Ghost is come upon you: and ye shall be witnesses unto me both in Jerusalem, and in all Judæa, and in Samaria, and unto the uttermost part of the earth. + +[Thursday 11-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/11/23/scripture.tg b/scripture/kjv/05/11/23/scripture.tg new file mode 100644 index 00000000..24de5085 --- /dev/null +++ b/scripture/kjv/05/11/23/scripture.tg @@ -0,0 +1,4 @@ +Acts 1:8 +8 But ye shall receive power, after that the Holy Ghost is come upon you: and ye shall be witnesses unto me both in Jerusalem, and in all Judæa, and in Samaria, and unto the uttermost part of the earth. + +Thursday 11-May, 2023 diff --git a/scripture/kjv/05/11/23/scripture.tg.id b/scripture/kjv/05/11/23/scripture.tg.id new file mode 100644 index 00000000..2ebd3a0c --- /dev/null +++ b/scripture/kjv/05/11/23/scripture.tg.id @@ -0,0 +1 @@ +945 diff --git a/scripture/kjv/05/11/23/scripture.today b/scripture/kjv/05/11/23/scripture.today new file mode 100644 index 00000000..08e432a1 --- /dev/null +++ b/scripture/kjv/05/11/23/scripture.today @@ -0,0 +1 @@ +44 1:8 diff --git a/scripture/kjv/05/11/24/scripture.html b/scripture/kjv/05/11/24/scripture.html new file mode 100644 index 00000000..ea86dd03 --- /dev/null +++ b/scripture/kjv/05/11/24/scripture.html @@ -0,0 +1,3 @@ +Luke 18:26-27
+26 And they that heard it said, Who then can be saved? 27 And he said, The things which are impossible with men are possible with God.

+Saturday 11-May, 2024 diff --git a/scripture/kjv/05/11/24/scripture.json b/scripture/kjv/05/11/24/scripture.json new file mode 100644 index 00000000..0d6639a0 --- /dev/null +++ b/scripture/kjv/05/11/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Luke", + "chapter": "18", + "date": "Saturday 11-May, 2024", + "getbible": "https://getbible.life/kjv/Luke/18/26-27", + "name": "Luke 18:26-27", + "scripture": [ + { + "nr": "26", + "text": "And they that heard it said, Who then can be saved?" + }, + { + "nr": "27", + "text": "And he said, The things which are impossible with men are possible with God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "26-27", + "version": "kjv" +} diff --git a/scripture/kjv/05/11/24/scripture.md b/scripture/kjv/05/11/24/scripture.md new file mode 100644 index 00000000..a3ea2fdb --- /dev/null +++ b/scripture/kjv/05/11/24/scripture.md @@ -0,0 +1,5 @@ +**Luke 18:26-27** + +26 And they that heard it said, Who then can be saved? 27 And he said, The things which are impossible with men are possible with God. + +[Saturday 11-May, 2024](https://getbible.life/kjv/Luke/18/26-27) diff --git a/scripture/kjv/05/11/24/scripture.tg b/scripture/kjv/05/11/24/scripture.tg new file mode 100644 index 00000000..cfcb38e7 --- /dev/null +++ b/scripture/kjv/05/11/24/scripture.tg @@ -0,0 +1,4 @@ +Luke 18:26-27 +26 And they that heard it said, Who then can be saved? 27 And he said, The things which are impossible with men are possible with God. + +Saturday 11-May, 2024 diff --git a/scripture/kjv/05/11/24/scripture.tg.id b/scripture/kjv/05/11/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/11/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/11/24/scripture.today b/scripture/kjv/05/11/24/scripture.today new file mode 100644 index 00000000..c960f018 --- /dev/null +++ b/scripture/kjv/05/11/24/scripture.today @@ -0,0 +1 @@ +42 18:26-27 diff --git a/scripture/kjv/05/11/25/scripture.html b/scripture/kjv/05/11/25/scripture.html new file mode 100644 index 00000000..0e869cbe --- /dev/null +++ b/scripture/kjv/05/11/25/scripture.html @@ -0,0 +1,3 @@ +Mark 10:27
+27 And Jesus looking upon them saith, With men it is impossible, but not with God: for with God all things are possible.

+Sunday 11-May, 2025 diff --git a/scripture/kjv/05/11/25/scripture.json b/scripture/kjv/05/11/25/scripture.json new file mode 100644 index 00000000..8ea69ade --- /dev/null +++ b/scripture/kjv/05/11/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Mark", + "chapter": "10", + "date": "Sunday 11-May, 2025", + "getbible": "https://getbible.life/kjv/Mark/10/27", + "name": "Mark 10:27", + "scripture": [ + { + "nr": "27", + "text": "And Jesus looking upon them saith, With men it is impossible, but not with God: for with God all things are possible." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "27", + "version": "kjv" +} diff --git a/scripture/kjv/05/11/25/scripture.md b/scripture/kjv/05/11/25/scripture.md new file mode 100644 index 00000000..bceef1d3 --- /dev/null +++ b/scripture/kjv/05/11/25/scripture.md @@ -0,0 +1,5 @@ +**Mark 10:27** + +27 And Jesus looking upon them saith, With men it is impossible, but not with God: for with God all things are possible. + +[Sunday 11-May, 2025](https://getbible.life/kjv/Mark/10/27) diff --git a/scripture/kjv/05/11/25/scripture.tg b/scripture/kjv/05/11/25/scripture.tg new file mode 100644 index 00000000..91154913 --- /dev/null +++ b/scripture/kjv/05/11/25/scripture.tg @@ -0,0 +1,4 @@ +Mark 10:27 +27 And Jesus looking upon them saith, With men it is impossible, but not with God: for with God all things are possible. + +Sunday 11-May, 2025 diff --git a/scripture/kjv/05/11/25/scripture.tg.id b/scripture/kjv/05/11/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/11/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/11/25/scripture.today b/scripture/kjv/05/11/25/scripture.today new file mode 100644 index 00000000..2ad8d464 --- /dev/null +++ b/scripture/kjv/05/11/25/scripture.today @@ -0,0 +1 @@ +41 10:27 diff --git a/scripture/kjv/05/11/26/scripture.html b/scripture/kjv/05/11/26/scripture.html new file mode 100644 index 00000000..6c1072ae --- /dev/null +++ b/scripture/kjv/05/11/26/scripture.html @@ -0,0 +1,3 @@ +Job 1:5
+5 And it was so, when the days of their feasting were gone about, that Job sent and sanctified them, and rose up early in the morning, and offered burnt offerings according to the number of them all: for Job said, It may be that my sons have sinned, and cursed God in their hearts. Thus did Job continually.

+Monday 11-May, 2026 diff --git a/scripture/kjv/05/11/26/scripture.json b/scripture/kjv/05/11/26/scripture.json new file mode 100644 index 00000000..c3ed2cbd --- /dev/null +++ b/scripture/kjv/05/11/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Job", + "chapter": "1", + "date": "Monday 11-May, 2026", + "getbible": "https://getbible.life/kjv/Job/1/5", + "name": "Job 1:5", + "scripture": [ + { + "nr": "5", + "text": "And it was so, when the days of their feasting were gone about, that Job sent and sanctified them, and rose up early in the morning, and offered burnt offerings according to the number of them all: for Job said, It may be that my sons have sinned, and cursed God in their hearts. Thus did Job continually." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5", + "version": "kjv" +} diff --git a/scripture/kjv/05/11/26/scripture.md b/scripture/kjv/05/11/26/scripture.md new file mode 100644 index 00000000..82683349 --- /dev/null +++ b/scripture/kjv/05/11/26/scripture.md @@ -0,0 +1,5 @@ +**Job 1:5** + +5 And it was so, when the days of their feasting were gone about, that Job sent and sanctified them, and rose up early in the morning, and offered burnt offerings according to the number of them all: for Job said, It may be that my sons have sinned, and cursed God in their hearts. Thus did Job continually. + +[Monday 11-May, 2026](https://getbible.life/kjv/Job/1/5) diff --git a/scripture/kjv/05/11/26/scripture.tg b/scripture/kjv/05/11/26/scripture.tg new file mode 100644 index 00000000..0f7d1938 --- /dev/null +++ b/scripture/kjv/05/11/26/scripture.tg @@ -0,0 +1,4 @@ +Job 1:5 +5 And it was so, when the days of their feasting were gone about, that Job sent and sanctified them, and rose up early in the morning, and offered burnt offerings according to the number of them all: for Job said, It may be that my sons have sinned, and cursed God in their hearts. Thus did Job continually. + +Monday 11-May, 2026 diff --git a/scripture/kjv/05/11/26/scripture.tg.id b/scripture/kjv/05/11/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/11/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/11/26/scripture.today b/scripture/kjv/05/11/26/scripture.today new file mode 100644 index 00000000..c15a1ee6 --- /dev/null +++ b/scripture/kjv/05/11/26/scripture.today @@ -0,0 +1 @@ +18 1:5 diff --git a/scripture/kjv/05/12/23/scripture.html b/scripture/kjv/05/12/23/scripture.html new file mode 100644 index 00000000..603bb2c5 --- /dev/null +++ b/scripture/kjv/05/12/23/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 10:1-12
+1 Moreover, brethren, I would not that ye should be ignorant, how that all our fathers were under the cloud, and all passed through the sea; 2 And were all baptized unto Moses in the cloud and in the sea; 3 And did all eat the same spiritual meat; 4 And did all drink the same spiritual drink: for they drank of that spiritual Rock that followed them: and that Rock was Christ. 5 But with many of them God was not well pleased: for they were overthrown in the wilderness. 6 Now these things were our examples, to the intent we should not lust after evil things, as they also lusted. 7 Neither be ye idolaters, as were some of them; as it is written, The people sat down to eat and drink, and rose up to play. 8 Neither let us commit fornication, as some of them committed, and fell in one day three and twenty thousand. 9 Neither let us tempt Christ, as some of them also tempted, and were destroyed of serpents. 10 Neither murmur ye, as some of them also murmured, and were destroyed of the destroyer. 11 Now all these things happened unto them for ensamples: and they are written for our admonition, upon whom the ends of the world are come. 12 Wherefore let him that thinketh he standeth take heed lest he fall.

+Friday 12-May, 2023 diff --git a/scripture/kjv/05/12/23/scripture.json b/scripture/kjv/05/12/23/scripture.json new file mode 100644 index 00000000..e9aa1780 --- /dev/null +++ b/scripture/kjv/05/12/23/scripture.json @@ -0,0 +1,57 @@ +{ + "date": "Friday 12-May, 2023", + "name": "1 Corinthians 10:1-12", + "scripture": [ + { + "nr": "1", + "text": "Moreover, brethren, I would not that ye should be ignorant, how that all our fathers were under the cloud, and all passed through the sea;" + }, + { + "nr": "2", + "text": "And were all baptized unto Moses in the cloud and in the sea;" + }, + { + "nr": "3", + "text": "And did all eat the same spiritual meat;" + }, + { + "nr": "4", + "text": "And did all drink the same spiritual drink: for they drank of that spiritual Rock that followed them: and that Rock was Christ." + }, + { + "nr": "5", + "text": "But with many of them God was not well pleased: for they were overthrown in the wilderness." + }, + { + "nr": "6", + "text": "Now these things were our examples, to the intent we should not lust after evil things, as they also lusted." + }, + { + "nr": "7", + "text": "Neither be ye idolaters, as were some of them; as it is written, The people sat down to eat and drink, and rose up to play." + }, + { + "nr": "8", + "text": "Neither let us commit fornication, as some of them committed, and fell in one day three and twenty thousand." + }, + { + "nr": "9", + "text": "Neither let us tempt Christ, as some of them also tempted, and were destroyed of serpents." + }, + { + "nr": "10", + "text": "Neither murmur ye, as some of them also murmured, and were destroyed of the destroyer." + }, + { + "nr": "11", + "text": "Now all these things happened unto them for ensamples: and they are written for our admonition, upon whom the ends of the world are come." + }, + { + "nr": "12", + "text": "Wherefore let him that thinketh he standeth take heed lest he fall." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/12/23/scripture.md b/scripture/kjv/05/12/23/scripture.md new file mode 100644 index 00000000..f9ec70a9 --- /dev/null +++ b/scripture/kjv/05/12/23/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 10:1-12** + +1 Moreover, brethren, I would not that ye should be ignorant, how that all our fathers were under the cloud, and all passed through the sea; 2 And were all baptized unto Moses in the cloud and in the sea; 3 And did all eat the same spiritual meat; 4 And did all drink the same spiritual drink: for they drank of that spiritual Rock that followed them: and that Rock was Christ. 5 But with many of them God was not well pleased: for they were overthrown in the wilderness. 6 Now these things were our examples, to the intent we should not lust after evil things, as they also lusted. 7 Neither be ye idolaters, as were some of them; as it is written, The people sat down to eat and drink, and rose up to play. 8 Neither let us commit fornication, as some of them committed, and fell in one day three and twenty thousand. 9 Neither let us tempt Christ, as some of them also tempted, and were destroyed of serpents. 10 Neither murmur ye, as some of them also murmured, and were destroyed of the destroyer. 11 Now all these things happened unto them for ensamples: and they are written for our admonition, upon whom the ends of the world are come. 12 Wherefore let him that thinketh he standeth take heed lest he fall. + +[Friday 12-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/12/23/scripture.tg b/scripture/kjv/05/12/23/scripture.tg new file mode 100644 index 00000000..f20d7de5 --- /dev/null +++ b/scripture/kjv/05/12/23/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 10:1-12 +1 Moreover, brethren, I would not that ye should be ignorant, how that all our fathers were under the cloud, and all passed through the sea; 2 And were all baptized unto Moses in the cloud and in the sea; 3 And did all eat the same spiritual meat; 4 And did all drink the same spiritual drink: for they drank of that spiritual Rock that followed them: and that Rock was Christ. 5 But with many of them God was not well pleased: for they were overthrown in the wilderness. 6 Now these things were our examples, to the intent we should not lust after evil things, as they also lusted. 7 Neither be ye idolaters, as were some of them; as it is written, The people sat down to eat and drink, and rose up to play. 8 Neither let us commit fornication, as some of them committed, and fell in one day three and twenty thousand. 9 Neither let us tempt Christ, as some of them also tempted, and were destroyed of serpents. 10 Neither murmur ye, as some of them also murmured, and were destroyed of the destroyer. 11 Now all these things happened unto them for ensamples: and they are written for our admonition, upon whom the ends of the world are come. 12 Wherefore let him that thinketh he standeth take heed lest he fall. + +Friday 12-May, 2023 diff --git a/scripture/kjv/05/12/23/scripture.tg.id b/scripture/kjv/05/12/23/scripture.tg.id new file mode 100644 index 00000000..8152c0d1 --- /dev/null +++ b/scripture/kjv/05/12/23/scripture.tg.id @@ -0,0 +1 @@ +946 diff --git a/scripture/kjv/05/12/23/scripture.today b/scripture/kjv/05/12/23/scripture.today new file mode 100644 index 00000000..731a8c85 --- /dev/null +++ b/scripture/kjv/05/12/23/scripture.today @@ -0,0 +1 @@ +46 10:1-12 diff --git a/scripture/kjv/05/12/24/scripture.html b/scripture/kjv/05/12/24/scripture.html new file mode 100644 index 00000000..a4e26d2d --- /dev/null +++ b/scripture/kjv/05/12/24/scripture.html @@ -0,0 +1,3 @@ +2 John 1:7
+7 For many deceivers are entered into the world, who confess not that Jesus Christ is come in the flesh. This is a deceiver and an antichrist.

+Sunday 12-May, 2024 diff --git a/scripture/kjv/05/12/24/scripture.json b/scripture/kjv/05/12/24/scripture.json new file mode 100644 index 00000000..dc0418d4 --- /dev/null +++ b/scripture/kjv/05/12/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 John", + "chapter": "1", + "date": "Sunday 12-May, 2024", + "getbible": "https://getbible.life/kjv/2 John/1/7", + "name": "2 John 1:7", + "scripture": [ + { + "nr": "7", + "text": "For many deceivers are entered into the world, who confess not that Jesus Christ is come in the flesh. This is a deceiver and an antichrist." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7", + "version": "kjv" +} diff --git a/scripture/kjv/05/12/24/scripture.md b/scripture/kjv/05/12/24/scripture.md new file mode 100644 index 00000000..983456ca --- /dev/null +++ b/scripture/kjv/05/12/24/scripture.md @@ -0,0 +1,5 @@ +**2 John 1:7** + +7 For many deceivers are entered into the world, who confess not that Jesus Christ is come in the flesh. This is a deceiver and an antichrist. + +[Sunday 12-May, 2024](https://getbible.life/kjv/2 John/1/7) diff --git a/scripture/kjv/05/12/24/scripture.tg b/scripture/kjv/05/12/24/scripture.tg new file mode 100644 index 00000000..008ac877 --- /dev/null +++ b/scripture/kjv/05/12/24/scripture.tg @@ -0,0 +1,4 @@ +2 John 1:7 +7 For many deceivers are entered into the world, who confess not that Jesus Christ is come in the flesh. This is a deceiver and an antichrist. + +Sunday 12-May, 2024 diff --git a/scripture/kjv/05/12/24/scripture.tg.id b/scripture/kjv/05/12/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/12/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/12/24/scripture.today b/scripture/kjv/05/12/24/scripture.today new file mode 100644 index 00000000..51f3cbc6 --- /dev/null +++ b/scripture/kjv/05/12/24/scripture.today @@ -0,0 +1 @@ +63 1:7 diff --git a/scripture/kjv/05/12/25/scripture.html b/scripture/kjv/05/12/25/scripture.html new file mode 100644 index 00000000..afe2bd35 --- /dev/null +++ b/scripture/kjv/05/12/25/scripture.html @@ -0,0 +1,3 @@ +Romans 14:2-4
+2 For one believeth that he may eat all things: another, who is weak, eateth herbs. 3 Let not him that eateth despise him that eateth not; and let not him which eateth not judge him that eateth: for God hath received him. 4 Who art thou that judgest another man’s servant? to his own master he standeth or falleth. Yea, he shall be holden up: for God is able to make him stand.

+Monday 12-May, 2025 diff --git a/scripture/kjv/05/12/25/scripture.json b/scripture/kjv/05/12/25/scripture.json new file mode 100644 index 00000000..4a47dcd7 --- /dev/null +++ b/scripture/kjv/05/12/25/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Romans", + "chapter": "14", + "date": "Monday 12-May, 2025", + "getbible": "https://getbible.life/kjv/Romans/14/2-4", + "name": "Romans 14:2-4", + "scripture": [ + { + "nr": "2", + "text": "For one believeth that he may eat all things: another, who is weak, eateth herbs." + }, + { + "nr": "3", + "text": "Let not him that eateth despise him that eateth not; and let not him which eateth not judge him that eateth: for God hath received him." + }, + { + "nr": "4", + "text": "Who art thou that judgest another man’s servant? to his own master he standeth or falleth. Yea, he shall be holden up: for God is able to make him stand." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "2-4", + "version": "kjv" +} diff --git a/scripture/kjv/05/12/25/scripture.md b/scripture/kjv/05/12/25/scripture.md new file mode 100644 index 00000000..f3ca9f1f --- /dev/null +++ b/scripture/kjv/05/12/25/scripture.md @@ -0,0 +1,5 @@ +**Romans 14:2-4** + +2 For one believeth that he may eat all things: another, who is weak, eateth herbs. 3 Let not him that eateth despise him that eateth not; and let not him which eateth not judge him that eateth: for God hath received him. 4 Who art thou that judgest another man’s servant? to his own master he standeth or falleth. Yea, he shall be holden up: for God is able to make him stand. + +[Monday 12-May, 2025](https://getbible.life/kjv/Romans/14/2-4) diff --git a/scripture/kjv/05/12/25/scripture.tg b/scripture/kjv/05/12/25/scripture.tg new file mode 100644 index 00000000..7b02a535 --- /dev/null +++ b/scripture/kjv/05/12/25/scripture.tg @@ -0,0 +1,4 @@ +Romans 14:2-4 +2 For one believeth that he may eat all things: another, who is weak, eateth herbs. 3 Let not him that eateth despise him that eateth not; and let not him which eateth not judge him that eateth: for God hath received him. 4 Who art thou that judgest another man’s servant? to his own master he standeth or falleth. Yea, he shall be holden up: for God is able to make him stand. + +Monday 12-May, 2025 diff --git a/scripture/kjv/05/12/25/scripture.tg.id b/scripture/kjv/05/12/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/12/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/12/25/scripture.today b/scripture/kjv/05/12/25/scripture.today new file mode 100644 index 00000000..cc44110b --- /dev/null +++ b/scripture/kjv/05/12/25/scripture.today @@ -0,0 +1 @@ +45 14:2-4 diff --git a/scripture/kjv/05/12/26/scripture.html b/scripture/kjv/05/12/26/scripture.html new file mode 100644 index 00000000..91ad96be --- /dev/null +++ b/scripture/kjv/05/12/26/scripture.html @@ -0,0 +1,3 @@ +Acts 21:13
+13 Then Paul answered, What mean ye to weep and to break mine heart? for I am ready not to be bound only, but also to die at Jerusalem for the name of the Lord Jesus.

+Tuesday 12-May, 2026 diff --git a/scripture/kjv/05/12/26/scripture.json b/scripture/kjv/05/12/26/scripture.json new file mode 100644 index 00000000..1da5cb50 --- /dev/null +++ b/scripture/kjv/05/12/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Acts", + "chapter": "21", + "date": "Tuesday 12-May, 2026", + "getbible": "https://getbible.life/kjv/Acts/21/13", + "name": "Acts 21:13", + "scripture": [ + { + "nr": "13", + "text": "Then Paul answered, What mean ye to weep and to break mine heart? for I am ready not to be bound only, but also to die at Jerusalem for the name of the Lord Jesus." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13", + "version": "kjv" +} diff --git a/scripture/kjv/05/12/26/scripture.md b/scripture/kjv/05/12/26/scripture.md new file mode 100644 index 00000000..e3eb66d3 --- /dev/null +++ b/scripture/kjv/05/12/26/scripture.md @@ -0,0 +1,5 @@ +**Acts 21:13** + +13 Then Paul answered, What mean ye to weep and to break mine heart? for I am ready not to be bound only, but also to die at Jerusalem for the name of the Lord Jesus. + +[Tuesday 12-May, 2026](https://getbible.life/kjv/Acts/21/13) diff --git a/scripture/kjv/05/12/26/scripture.tg b/scripture/kjv/05/12/26/scripture.tg new file mode 100644 index 00000000..cb6062af --- /dev/null +++ b/scripture/kjv/05/12/26/scripture.tg @@ -0,0 +1,4 @@ +Acts 21:13 +13 Then Paul answered, What mean ye to weep and to break mine heart? for I am ready not to be bound only, but also to die at Jerusalem for the name of the Lord Jesus. + +Tuesday 12-May, 2026 diff --git a/scripture/kjv/05/12/26/scripture.tg.id b/scripture/kjv/05/12/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/12/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/12/26/scripture.today b/scripture/kjv/05/12/26/scripture.today new file mode 100644 index 00000000..4ed06b39 --- /dev/null +++ b/scripture/kjv/05/12/26/scripture.today @@ -0,0 +1 @@ +44 21:13 diff --git a/scripture/kjv/05/13/23/scripture.html b/scripture/kjv/05/13/23/scripture.html new file mode 100644 index 00000000..c198678a --- /dev/null +++ b/scripture/kjv/05/13/23/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 5:9
+9 Wherefore we labour, that, whether present or absent, we may be accepted of him.

+Saturday 13-May, 2023 diff --git a/scripture/kjv/05/13/23/scripture.json b/scripture/kjv/05/13/23/scripture.json new file mode 100644 index 00000000..5ae518fd --- /dev/null +++ b/scripture/kjv/05/13/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Saturday 13-May, 2023", + "name": "2 Corinthians 5:9", + "scripture": [ + { + "nr": "9", + "text": "Wherefore we labour, that, whether present or absent, we may be accepted of him." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/13/23/scripture.md b/scripture/kjv/05/13/23/scripture.md new file mode 100644 index 00000000..8f4299cc --- /dev/null +++ b/scripture/kjv/05/13/23/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 5:9** + +9 Wherefore we labour, that, whether present or absent, we may be accepted of him. + +[Saturday 13-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/13/23/scripture.tg b/scripture/kjv/05/13/23/scripture.tg new file mode 100644 index 00000000..525480e2 --- /dev/null +++ b/scripture/kjv/05/13/23/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 5:9 +9 Wherefore we labour, that, whether present or absent, we may be accepted of him. + +Saturday 13-May, 2023 diff --git a/scripture/kjv/05/13/23/scripture.tg.id b/scripture/kjv/05/13/23/scripture.tg.id new file mode 100644 index 00000000..43c16f4e --- /dev/null +++ b/scripture/kjv/05/13/23/scripture.tg.id @@ -0,0 +1 @@ +947 diff --git a/scripture/kjv/05/13/23/scripture.today b/scripture/kjv/05/13/23/scripture.today new file mode 100644 index 00000000..c72e2523 --- /dev/null +++ b/scripture/kjv/05/13/23/scripture.today @@ -0,0 +1 @@ +47 5:9 diff --git a/scripture/kjv/05/13/24/scripture.html b/scripture/kjv/05/13/24/scripture.html new file mode 100644 index 00000000..bffc9356 --- /dev/null +++ b/scripture/kjv/05/13/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 109:4
+4 For my love they are my adversaries: but I give myself unto prayer.

+Monday 13-May, 2024 diff --git a/scripture/kjv/05/13/24/scripture.json b/scripture/kjv/05/13/24/scripture.json new file mode 100644 index 00000000..eb3032a6 --- /dev/null +++ b/scripture/kjv/05/13/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "109", + "date": "Monday 13-May, 2024", + "getbible": "https://getbible.life/kjv/Psalms/109/4", + "name": "Psalms 109:4", + "scripture": [ + { + "nr": "4", + "text": "For my love they are my adversaries: but I give myself unto prayer." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4", + "version": "kjv" +} diff --git a/scripture/kjv/05/13/24/scripture.md b/scripture/kjv/05/13/24/scripture.md new file mode 100644 index 00000000..dc190d9b --- /dev/null +++ b/scripture/kjv/05/13/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 109:4** + +4 For my love they are my adversaries: but I give myself unto prayer. + +[Monday 13-May, 2024](https://getbible.life/kjv/Psalms/109/4) diff --git a/scripture/kjv/05/13/24/scripture.tg b/scripture/kjv/05/13/24/scripture.tg new file mode 100644 index 00000000..70219ef1 --- /dev/null +++ b/scripture/kjv/05/13/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 109:4 +4 For my love they are my adversaries: but I give myself unto prayer. + +Monday 13-May, 2024 diff --git a/scripture/kjv/05/13/24/scripture.tg.id b/scripture/kjv/05/13/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/13/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/13/24/scripture.today b/scripture/kjv/05/13/24/scripture.today new file mode 100644 index 00000000..deaffcec --- /dev/null +++ b/scripture/kjv/05/13/24/scripture.today @@ -0,0 +1 @@ +19 109:4 diff --git a/scripture/kjv/05/13/25/scripture.html b/scripture/kjv/05/13/25/scripture.html new file mode 100644 index 00000000..3d82ef48 --- /dev/null +++ b/scripture/kjv/05/13/25/scripture.html @@ -0,0 +1,3 @@ +Jeremiah 3:10
+10 And yet for all this her treacherous sister Judah hath not turned unto me with her whole heart, but feignedly, saith the Lord.

+Tuesday 13-May, 2025 diff --git a/scripture/kjv/05/13/25/scripture.json b/scripture/kjv/05/13/25/scripture.json new file mode 100644 index 00000000..069935cc --- /dev/null +++ b/scripture/kjv/05/13/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Jeremiah", + "chapter": "3", + "date": "Tuesday 13-May, 2025", + "getbible": "https://getbible.life/kjv/Jeremiah/3/10", + "name": "Jeremiah 3:10", + "scripture": [ + { + "nr": "10", + "text": "And yet for all this her treacherous sister Judah hath not turned unto me with her whole heart, but feignedly, saith the Lord." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/05/13/25/scripture.md b/scripture/kjv/05/13/25/scripture.md new file mode 100644 index 00000000..02082931 --- /dev/null +++ b/scripture/kjv/05/13/25/scripture.md @@ -0,0 +1,5 @@ +**Jeremiah 3:10** + +10 And yet for all this her treacherous sister Judah hath not turned unto me with her whole heart, but feignedly, saith the Lord. + +[Tuesday 13-May, 2025](https://getbible.life/kjv/Jeremiah/3/10) diff --git a/scripture/kjv/05/13/25/scripture.tg b/scripture/kjv/05/13/25/scripture.tg new file mode 100644 index 00000000..fde422f5 --- /dev/null +++ b/scripture/kjv/05/13/25/scripture.tg @@ -0,0 +1,4 @@ +Jeremiah 3:10 +10 And yet for all this her treacherous sister Judah hath not turned unto me with her whole heart, but feignedly, saith the Lord. + +Tuesday 13-May, 2025 diff --git a/scripture/kjv/05/13/25/scripture.tg.id b/scripture/kjv/05/13/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/13/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/13/25/scripture.today b/scripture/kjv/05/13/25/scripture.today new file mode 100644 index 00000000..5d2583cc --- /dev/null +++ b/scripture/kjv/05/13/25/scripture.today @@ -0,0 +1 @@ +24 3:10 diff --git a/scripture/kjv/05/13/26/scripture.html b/scripture/kjv/05/13/26/scripture.html new file mode 100644 index 00000000..0c749c48 --- /dev/null +++ b/scripture/kjv/05/13/26/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 1:28
+28 And base things of the world, and things which are despised, hath God chosen, yea, and things which are not, to bring to nought things that are:

+Wednesday 13-May, 2026 diff --git a/scripture/kjv/05/13/26/scripture.json b/scripture/kjv/05/13/26/scripture.json new file mode 100644 index 00000000..5edbefdf --- /dev/null +++ b/scripture/kjv/05/13/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "1", + "date": "Wednesday 13-May, 2026", + "getbible": "https://getbible.life/kjv/1 Corinthians/1/28", + "name": "1 Corinthians 1:28", + "scripture": [ + { + "nr": "28", + "text": "And base things of the world, and things which are despised, hath God chosen, yea, and things which are not, to bring to nought things that are:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "28", + "version": "kjv" +} diff --git a/scripture/kjv/05/13/26/scripture.md b/scripture/kjv/05/13/26/scripture.md new file mode 100644 index 00000000..0200676d --- /dev/null +++ b/scripture/kjv/05/13/26/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 1:28** + +28 And base things of the world, and things which are despised, hath God chosen, yea, and things which are not, to bring to nought things that are: + +[Wednesday 13-May, 2026](https://getbible.life/kjv/1 Corinthians/1/28) diff --git a/scripture/kjv/05/13/26/scripture.tg b/scripture/kjv/05/13/26/scripture.tg new file mode 100644 index 00000000..4bf491bb --- /dev/null +++ b/scripture/kjv/05/13/26/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 1:28 +28 And base things of the world, and things which are despised, hath God chosen, yea, and things which are not, to bring to nought things that are: + +Wednesday 13-May, 2026 diff --git a/scripture/kjv/05/13/26/scripture.tg.id b/scripture/kjv/05/13/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/13/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/13/26/scripture.today b/scripture/kjv/05/13/26/scripture.today new file mode 100644 index 00000000..ca9b07d9 --- /dev/null +++ b/scripture/kjv/05/13/26/scripture.today @@ -0,0 +1 @@ +46 1:28 diff --git a/scripture/kjv/05/14/23/scripture.html b/scripture/kjv/05/14/23/scripture.html new file mode 100644 index 00000000..f749e9f3 --- /dev/null +++ b/scripture/kjv/05/14/23/scripture.html @@ -0,0 +1,3 @@ +Ephesians 4:25
+25 Wherefore putting away lying, speak every man truth with his neighbour: for we are members one of another.

+Sunday 14-May, 2023 diff --git a/scripture/kjv/05/14/23/scripture.json b/scripture/kjv/05/14/23/scripture.json new file mode 100644 index 00000000..97ebfad1 --- /dev/null +++ b/scripture/kjv/05/14/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Sunday 14-May, 2023", + "name": "Ephesians 4:25", + "scripture": [ + { + "nr": "25", + "text": "Wherefore putting away lying, speak every man truth with his neighbour: for we are members one of another." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/14/23/scripture.md b/scripture/kjv/05/14/23/scripture.md new file mode 100644 index 00000000..083c1908 --- /dev/null +++ b/scripture/kjv/05/14/23/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 4:25** + +25 Wherefore putting away lying, speak every man truth with his neighbour: for we are members one of another. + +[Sunday 14-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/14/23/scripture.tg b/scripture/kjv/05/14/23/scripture.tg new file mode 100644 index 00000000..7616dbee --- /dev/null +++ b/scripture/kjv/05/14/23/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 4:25 +25 Wherefore putting away lying, speak every man truth with his neighbour: for we are members one of another. + +Sunday 14-May, 2023 diff --git a/scripture/kjv/05/14/23/scripture.tg.id b/scripture/kjv/05/14/23/scripture.tg.id new file mode 100644 index 00000000..a3147617 --- /dev/null +++ b/scripture/kjv/05/14/23/scripture.tg.id @@ -0,0 +1 @@ +948 diff --git a/scripture/kjv/05/14/23/scripture.today b/scripture/kjv/05/14/23/scripture.today new file mode 100644 index 00000000..75e7593a --- /dev/null +++ b/scripture/kjv/05/14/23/scripture.today @@ -0,0 +1 @@ +49 4:25 diff --git a/scripture/kjv/05/14/24/scripture.html b/scripture/kjv/05/14/24/scripture.html new file mode 100644 index 00000000..b4a318e5 --- /dev/null +++ b/scripture/kjv/05/14/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 4:8
+8 I will both lay me down in peace, and sleep: for thou, Lord, only makest me dwell in safety.

+Tuesday 14-May, 2024 diff --git a/scripture/kjv/05/14/24/scripture.json b/scripture/kjv/05/14/24/scripture.json new file mode 100644 index 00000000..431e32f5 --- /dev/null +++ b/scripture/kjv/05/14/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "4", + "date": "Tuesday 14-May, 2024", + "getbible": "https://getbible.life/kjv/Psalms/4/8", + "name": "Psalms 4:8", + "scripture": [ + { + "nr": "8", + "text": "I will both lay me down in peace, and sleep: for thou, Lord, only makest me dwell in safety. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8", + "version": "kjv" +} diff --git a/scripture/kjv/05/14/24/scripture.md b/scripture/kjv/05/14/24/scripture.md new file mode 100644 index 00000000..34faca5a --- /dev/null +++ b/scripture/kjv/05/14/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 4:8** + +8 I will both lay me down in peace, and sleep: for thou, Lord, only makest me dwell in safety. + +[Tuesday 14-May, 2024](https://getbible.life/kjv/Psalms/4/8) diff --git a/scripture/kjv/05/14/24/scripture.tg b/scripture/kjv/05/14/24/scripture.tg new file mode 100644 index 00000000..ebaa6d21 --- /dev/null +++ b/scripture/kjv/05/14/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 4:8 +8 I will both lay me down in peace, and sleep: for thou, Lord, only makest me dwell in safety. + +Tuesday 14-May, 2024 diff --git a/scripture/kjv/05/14/24/scripture.tg.id b/scripture/kjv/05/14/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/14/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/14/24/scripture.today b/scripture/kjv/05/14/24/scripture.today new file mode 100644 index 00000000..979912e0 --- /dev/null +++ b/scripture/kjv/05/14/24/scripture.today @@ -0,0 +1 @@ +19 4:8 diff --git a/scripture/kjv/05/14/25/scripture.html b/scripture/kjv/05/14/25/scripture.html new file mode 100644 index 00000000..d18d64c2 --- /dev/null +++ b/scripture/kjv/05/14/25/scripture.html @@ -0,0 +1,3 @@ +Job 35:13
+13 Surely God will not hear vanity, neither will the Almighty regard it.

+Wednesday 14-May, 2025 diff --git a/scripture/kjv/05/14/25/scripture.json b/scripture/kjv/05/14/25/scripture.json new file mode 100644 index 00000000..a311c2b0 --- /dev/null +++ b/scripture/kjv/05/14/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Job", + "chapter": "35", + "date": "Wednesday 14-May, 2025", + "getbible": "https://getbible.life/kjv/Job/35/13", + "name": "Job 35:13", + "scripture": [ + { + "nr": "13", + "text": "Surely God will not hear vanity, neither will the Almighty regard it." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13", + "version": "kjv" +} diff --git a/scripture/kjv/05/14/25/scripture.md b/scripture/kjv/05/14/25/scripture.md new file mode 100644 index 00000000..a23c5ef2 --- /dev/null +++ b/scripture/kjv/05/14/25/scripture.md @@ -0,0 +1,5 @@ +**Job 35:13** + +13 Surely God will not hear vanity, neither will the Almighty regard it. + +[Wednesday 14-May, 2025](https://getbible.life/kjv/Job/35/13) diff --git a/scripture/kjv/05/14/25/scripture.tg b/scripture/kjv/05/14/25/scripture.tg new file mode 100644 index 00000000..0bf7c451 --- /dev/null +++ b/scripture/kjv/05/14/25/scripture.tg @@ -0,0 +1,4 @@ +Job 35:13 +13 Surely God will not hear vanity, neither will the Almighty regard it. + +Wednesday 14-May, 2025 diff --git a/scripture/kjv/05/14/25/scripture.tg.id b/scripture/kjv/05/14/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/14/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/14/25/scripture.today b/scripture/kjv/05/14/25/scripture.today new file mode 100644 index 00000000..f69516f5 --- /dev/null +++ b/scripture/kjv/05/14/25/scripture.today @@ -0,0 +1 @@ +18 35:13 diff --git a/scripture/kjv/05/14/26/scripture.html b/scripture/kjv/05/14/26/scripture.html new file mode 100644 index 00000000..41a6f919 --- /dev/null +++ b/scripture/kjv/05/14/26/scripture.html @@ -0,0 +1,3 @@ +Isaiah 28:23-29
+23 Give ye ear, and hear my voice; hearken, and hear my speech. 24 Doth the plowman plow all day to sow? doth he open and break the clods of his ground? 25 When he hath made plain the face thereof, doth he not cast abroad the fitches, and scatter the cummin, and cast in the principal wheat and the appointed barley and the rie in their place? 26 For his God doth instruct him to discretion, and doth teach him. 27 For the fitches are not threshed with a threshing instrument, neither is a cart wheel turned about upon the cummin; but the fitches are beaten out with a staff, and the cummin with a rod. 28 Bread corn is bruised; because he will not ever be threshing it, nor break it with the wheel of his cart, nor bruise it with his horsemen. 29 This also cometh forth from the Lord of hosts, which is wonderful in counsel, and excellent in working.

+Thursday 14-May, 2026 diff --git a/scripture/kjv/05/14/26/scripture.json b/scripture/kjv/05/14/26/scripture.json new file mode 100644 index 00000000..863c0cd0 --- /dev/null +++ b/scripture/kjv/05/14/26/scripture.json @@ -0,0 +1,41 @@ +{ + "book": "Isaiah", + "chapter": "28", + "date": "Thursday 14-May, 2026", + "getbible": "https://getbible.life/kjv/Isaiah/28/23-29", + "name": "Isaiah 28:23-29", + "scripture": [ + { + "nr": "23", + "text": "Give ye ear, and hear my voice; hearken, and hear my speech." + }, + { + "nr": "24", + "text": "Doth the plowman plow all day to sow? doth he open and break the clods of his ground?" + }, + { + "nr": "25", + "text": "When he hath made plain the face thereof, doth he not cast abroad the fitches, and scatter the cummin, and cast in the principal wheat and the appointed barley and the rie in their place?" + }, + { + "nr": "26", + "text": "For his God doth instruct him to discretion, and doth teach him." + }, + { + "nr": "27", + "text": "For the fitches are not threshed with a threshing instrument, neither is a cart wheel turned about upon the cummin; but the fitches are beaten out with a staff, and the cummin with a rod." + }, + { + "nr": "28", + "text": "Bread corn is bruised; because he will not ever be threshing it, nor break it with the wheel of his cart, nor bruise it with his horsemen." + }, + { + "nr": "29", + "text": "This also cometh forth from the Lord of hosts, which is wonderful in counsel, and excellent in working. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "23-29", + "version": "kjv" +} diff --git a/scripture/kjv/05/14/26/scripture.md b/scripture/kjv/05/14/26/scripture.md new file mode 100644 index 00000000..b868a67c --- /dev/null +++ b/scripture/kjv/05/14/26/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 28:23-29** + +23 Give ye ear, and hear my voice; hearken, and hear my speech. 24 Doth the plowman plow all day to sow? doth he open and break the clods of his ground? 25 When he hath made plain the face thereof, doth he not cast abroad the fitches, and scatter the cummin, and cast in the principal wheat and the appointed barley and the rie in their place? 26 For his God doth instruct him to discretion, and doth teach him. 27 For the fitches are not threshed with a threshing instrument, neither is a cart wheel turned about upon the cummin; but the fitches are beaten out with a staff, and the cummin with a rod. 28 Bread corn is bruised; because he will not ever be threshing it, nor break it with the wheel of his cart, nor bruise it with his horsemen. 29 This also cometh forth from the Lord of hosts, which is wonderful in counsel, and excellent in working. + +[Thursday 14-May, 2026](https://getbible.life/kjv/Isaiah/28/23-29) diff --git a/scripture/kjv/05/14/26/scripture.tg b/scripture/kjv/05/14/26/scripture.tg new file mode 100644 index 00000000..b7c630b9 --- /dev/null +++ b/scripture/kjv/05/14/26/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 28:23-29 +23 Give ye ear, and hear my voice; hearken, and hear my speech. 24 Doth the plowman plow all day to sow? doth he open and break the clods of his ground? 25 When he hath made plain the face thereof, doth he not cast abroad the fitches, and scatter the cummin, and cast in the principal wheat and the appointed barley and the rie in their place? 26 For his God doth instruct him to discretion, and doth teach him. 27 For the fitches are not threshed with a threshing instrument, neither is a cart wheel turned about upon the cummin; but the fitches are beaten out with a staff, and the cummin with a rod. 28 Bread corn is bruised; because he will not ever be threshing it, nor break it with the wheel of his cart, nor bruise it with his horsemen. 29 This also cometh forth from the Lord of hosts, which is wonderful in counsel, and excellent in working. + +Thursday 14-May, 2026 diff --git a/scripture/kjv/05/14/26/scripture.tg.id b/scripture/kjv/05/14/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/14/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/14/26/scripture.today b/scripture/kjv/05/14/26/scripture.today new file mode 100644 index 00000000..63dfa926 --- /dev/null +++ b/scripture/kjv/05/14/26/scripture.today @@ -0,0 +1 @@ +23 28:23-29 diff --git a/scripture/kjv/05/15/23/scripture.html b/scripture/kjv/05/15/23/scripture.html new file mode 100644 index 00000000..51de0c95 --- /dev/null +++ b/scripture/kjv/05/15/23/scripture.html @@ -0,0 +1,3 @@ +Hebrews 12:11-12
+11 Now no chastening for the present seemeth to be joyous, but grievous: nevertheless afterward it yieldeth the peaceable fruit of righteousness unto them which are exercised thereby. 12 Wherefore lift up the hands which hang down, and the feeble knees;

+Monday 15-May, 2023 diff --git a/scripture/kjv/05/15/23/scripture.json b/scripture/kjv/05/15/23/scripture.json new file mode 100644 index 00000000..1c81e6f7 --- /dev/null +++ b/scripture/kjv/05/15/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Monday 15-May, 2023", + "name": "Hebrews 12:11-12", + "scripture": [ + { + "nr": "11", + "text": "Now no chastening for the present seemeth to be joyous, but grievous: nevertheless afterward it yieldeth the peaceable fruit of righteousness unto them which are exercised thereby." + }, + { + "nr": "12", + "text": "Wherefore lift up the hands which hang down, and the feeble knees;" + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/15/23/scripture.md b/scripture/kjv/05/15/23/scripture.md new file mode 100644 index 00000000..7957856f --- /dev/null +++ b/scripture/kjv/05/15/23/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 12:11-12** + +11 Now no chastening for the present seemeth to be joyous, but grievous: nevertheless afterward it yieldeth the peaceable fruit of righteousness unto them which are exercised thereby. 12 Wherefore lift up the hands which hang down, and the feeble knees; + +[Monday 15-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/15/23/scripture.tg b/scripture/kjv/05/15/23/scripture.tg new file mode 100644 index 00000000..f00b7ad6 --- /dev/null +++ b/scripture/kjv/05/15/23/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 12:11-12 +11 Now no chastening for the present seemeth to be joyous, but grievous: nevertheless afterward it yieldeth the peaceable fruit of righteousness unto them which are exercised thereby. 12 Wherefore lift up the hands which hang down, and the feeble knees; + +Monday 15-May, 2023 diff --git a/scripture/kjv/05/15/23/scripture.tg.id b/scripture/kjv/05/15/23/scripture.tg.id new file mode 100644 index 00000000..a0394c20 --- /dev/null +++ b/scripture/kjv/05/15/23/scripture.tg.id @@ -0,0 +1 @@ +949 diff --git a/scripture/kjv/05/15/23/scripture.today b/scripture/kjv/05/15/23/scripture.today new file mode 100644 index 00000000..21103dee --- /dev/null +++ b/scripture/kjv/05/15/23/scripture.today @@ -0,0 +1 @@ +58 12:11-12 diff --git a/scripture/kjv/05/15/24/scripture.html b/scripture/kjv/05/15/24/scripture.html new file mode 100644 index 00000000..5ca08f6a --- /dev/null +++ b/scripture/kjv/05/15/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 32:11
+11 Be glad in the Lord, and rejoice, ye righteous: and shout for joy, all ye that are upright in heart.

+Wednesday 15-May, 2024 diff --git a/scripture/kjv/05/15/24/scripture.json b/scripture/kjv/05/15/24/scripture.json new file mode 100644 index 00000000..2df00da1 --- /dev/null +++ b/scripture/kjv/05/15/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "32", + "date": "Wednesday 15-May, 2024", + "getbible": "https://getbible.life/kjv/Psalms/32/11", + "name": "Psalms 32:11", + "scripture": [ + { + "nr": "11", + "text": "Be glad in the Lord, and rejoice, ye righteous: and shout for joy, all ye that are upright in heart. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/05/15/24/scripture.md b/scripture/kjv/05/15/24/scripture.md new file mode 100644 index 00000000..5578457a --- /dev/null +++ b/scripture/kjv/05/15/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 32:11** + +11 Be glad in the Lord, and rejoice, ye righteous: and shout for joy, all ye that are upright in heart. + +[Wednesday 15-May, 2024](https://getbible.life/kjv/Psalms/32/11) diff --git a/scripture/kjv/05/15/24/scripture.tg b/scripture/kjv/05/15/24/scripture.tg new file mode 100644 index 00000000..88a41692 --- /dev/null +++ b/scripture/kjv/05/15/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 32:11 +11 Be glad in the Lord, and rejoice, ye righteous: and shout for joy, all ye that are upright in heart. + +Wednesday 15-May, 2024 diff --git a/scripture/kjv/05/15/24/scripture.tg.id b/scripture/kjv/05/15/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/15/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/15/24/scripture.today b/scripture/kjv/05/15/24/scripture.today new file mode 100644 index 00000000..7df3bfa8 --- /dev/null +++ b/scripture/kjv/05/15/24/scripture.today @@ -0,0 +1 @@ +19 32:11 diff --git a/scripture/kjv/05/15/25/scripture.html b/scripture/kjv/05/15/25/scripture.html new file mode 100644 index 00000000..2b6e78f7 --- /dev/null +++ b/scripture/kjv/05/15/25/scripture.html @@ -0,0 +1,3 @@ +Luke 23:5
+5 And they were the more fierce, saying, He stirreth up the people, teaching throughout all Jewry, beginning from Galilee to this place.

+Thursday 15-May, 2025 diff --git a/scripture/kjv/05/15/25/scripture.json b/scripture/kjv/05/15/25/scripture.json new file mode 100644 index 00000000..980e679d --- /dev/null +++ b/scripture/kjv/05/15/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "23", + "date": "Thursday 15-May, 2025", + "getbible": "https://getbible.life/kjv/Luke/23/5", + "name": "Luke 23:5", + "scripture": [ + { + "nr": "5", + "text": "And they were the more fierce, saying, He stirreth up the people, teaching throughout all Jewry, beginning from Galilee to this place." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5", + "version": "kjv" +} diff --git a/scripture/kjv/05/15/25/scripture.md b/scripture/kjv/05/15/25/scripture.md new file mode 100644 index 00000000..198156e2 --- /dev/null +++ b/scripture/kjv/05/15/25/scripture.md @@ -0,0 +1,5 @@ +**Luke 23:5** + +5 And they were the more fierce, saying, He stirreth up the people, teaching throughout all Jewry, beginning from Galilee to this place. + +[Thursday 15-May, 2025](https://getbible.life/kjv/Luke/23/5) diff --git a/scripture/kjv/05/15/25/scripture.tg b/scripture/kjv/05/15/25/scripture.tg new file mode 100644 index 00000000..b97be31d --- /dev/null +++ b/scripture/kjv/05/15/25/scripture.tg @@ -0,0 +1,4 @@ +Luke 23:5 +5 And they were the more fierce, saying, He stirreth up the people, teaching throughout all Jewry, beginning from Galilee to this place. + +Thursday 15-May, 2025 diff --git a/scripture/kjv/05/15/25/scripture.tg.id b/scripture/kjv/05/15/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/15/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/15/25/scripture.today b/scripture/kjv/05/15/25/scripture.today new file mode 100644 index 00000000..147d7ff8 --- /dev/null +++ b/scripture/kjv/05/15/25/scripture.today @@ -0,0 +1 @@ +42 23:5 diff --git a/scripture/kjv/05/15/26/scripture.html b/scripture/kjv/05/15/26/scripture.html new file mode 100644 index 00000000..cdd4d890 --- /dev/null +++ b/scripture/kjv/05/15/26/scripture.html @@ -0,0 +1,3 @@ +Luke 16:15
+15 And he said unto them, Ye are they which justify yourselves before men; but God knoweth your hearts: for that which is highly esteemed among men is abomination in the sight of God.

+Friday 15-May, 2026 diff --git a/scripture/kjv/05/15/26/scripture.json b/scripture/kjv/05/15/26/scripture.json new file mode 100644 index 00000000..e03c2e9a --- /dev/null +++ b/scripture/kjv/05/15/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "16", + "date": "Friday 15-May, 2026", + "getbible": "https://getbible.life/kjv/Luke/16/15", + "name": "Luke 16:15", + "scripture": [ + { + "nr": "15", + "text": "And he said unto them, Ye are they which justify yourselves before men; but God knoweth your hearts: for that which is highly esteemed among men is abomination in the sight of God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15", + "version": "kjv" +} diff --git a/scripture/kjv/05/15/26/scripture.md b/scripture/kjv/05/15/26/scripture.md new file mode 100644 index 00000000..fd54ccbb --- /dev/null +++ b/scripture/kjv/05/15/26/scripture.md @@ -0,0 +1,5 @@ +**Luke 16:15** + +15 And he said unto them, Ye are they which justify yourselves before men; but God knoweth your hearts: for that which is highly esteemed among men is abomination in the sight of God. + +[Friday 15-May, 2026](https://getbible.life/kjv/Luke/16/15) diff --git a/scripture/kjv/05/15/26/scripture.tg b/scripture/kjv/05/15/26/scripture.tg new file mode 100644 index 00000000..2cf1ed6f --- /dev/null +++ b/scripture/kjv/05/15/26/scripture.tg @@ -0,0 +1,4 @@ +Luke 16:15 +15 And he said unto them, Ye are they which justify yourselves before men; but God knoweth your hearts: for that which is highly esteemed among men is abomination in the sight of God. + +Friday 15-May, 2026 diff --git a/scripture/kjv/05/15/26/scripture.tg.id b/scripture/kjv/05/15/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/15/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/15/26/scripture.today b/scripture/kjv/05/15/26/scripture.today new file mode 100644 index 00000000..9cb09042 --- /dev/null +++ b/scripture/kjv/05/15/26/scripture.today @@ -0,0 +1 @@ +42 16:15 diff --git a/scripture/kjv/05/16/23/scripture.html b/scripture/kjv/05/16/23/scripture.html new file mode 100644 index 00000000..8abac415 --- /dev/null +++ b/scripture/kjv/05/16/23/scripture.html @@ -0,0 +1,3 @@ +Colossians 4:3
+3 Withal praying also for us, that God would open unto us a door of utterance, to speak the mystery of Christ, for which I am also in bonds:

+Tuesday 16-May, 2023 diff --git a/scripture/kjv/05/16/23/scripture.json b/scripture/kjv/05/16/23/scripture.json new file mode 100644 index 00000000..c88c9e16 --- /dev/null +++ b/scripture/kjv/05/16/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Tuesday 16-May, 2023", + "name": "Colossians 4:3", + "scripture": [ + { + "nr": "3", + "text": "Withal praying also for us, that God would open unto us a door of utterance, to speak the mystery of Christ, for which I am also in bonds:" + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/16/23/scripture.md b/scripture/kjv/05/16/23/scripture.md new file mode 100644 index 00000000..911ab209 --- /dev/null +++ b/scripture/kjv/05/16/23/scripture.md @@ -0,0 +1,5 @@ +**Colossians 4:3** + +3 Withal praying also for us, that God would open unto us a door of utterance, to speak the mystery of Christ, for which I am also in bonds: + +[Tuesday 16-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/16/23/scripture.tg b/scripture/kjv/05/16/23/scripture.tg new file mode 100644 index 00000000..a8ef849b --- /dev/null +++ b/scripture/kjv/05/16/23/scripture.tg @@ -0,0 +1,4 @@ +Colossians 4:3 +3 Withal praying also for us, that God would open unto us a door of utterance, to speak the mystery of Christ, for which I am also in bonds: + +Tuesday 16-May, 2023 diff --git a/scripture/kjv/05/16/23/scripture.tg.id b/scripture/kjv/05/16/23/scripture.tg.id new file mode 100644 index 00000000..e2cab550 --- /dev/null +++ b/scripture/kjv/05/16/23/scripture.tg.id @@ -0,0 +1 @@ +950 diff --git a/scripture/kjv/05/16/23/scripture.today b/scripture/kjv/05/16/23/scripture.today new file mode 100644 index 00000000..b3aafd58 --- /dev/null +++ b/scripture/kjv/05/16/23/scripture.today @@ -0,0 +1 @@ +51 4:3 diff --git a/scripture/kjv/05/16/24/scripture.html b/scripture/kjv/05/16/24/scripture.html new file mode 100644 index 00000000..248e928c --- /dev/null +++ b/scripture/kjv/05/16/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 25:28
+28 He that hath no rule over his own spirit is like a city that is broken down, and without walls.

+Thursday 16-May, 2024 diff --git a/scripture/kjv/05/16/24/scripture.json b/scripture/kjv/05/16/24/scripture.json new file mode 100644 index 00000000..b21106dc --- /dev/null +++ b/scripture/kjv/05/16/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "25", + "date": "Thursday 16-May, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/25/28", + "name": "Proverbs 25:28", + "scripture": [ + { + "nr": "28", + "text": "He that hath no rule over his own spirit is like a city that is broken down, and without walls. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "28", + "version": "kjv" +} diff --git a/scripture/kjv/05/16/24/scripture.md b/scripture/kjv/05/16/24/scripture.md new file mode 100644 index 00000000..ea037954 --- /dev/null +++ b/scripture/kjv/05/16/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 25:28** + +28 He that hath no rule over his own spirit is like a city that is broken down, and without walls. + +[Thursday 16-May, 2024](https://getbible.life/kjv/Proverbs/25/28) diff --git a/scripture/kjv/05/16/24/scripture.tg b/scripture/kjv/05/16/24/scripture.tg new file mode 100644 index 00000000..d92c0f79 --- /dev/null +++ b/scripture/kjv/05/16/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 25:28 +28 He that hath no rule over his own spirit is like a city that is broken down, and without walls. + +Thursday 16-May, 2024 diff --git a/scripture/kjv/05/16/24/scripture.tg.id b/scripture/kjv/05/16/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/16/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/16/24/scripture.today b/scripture/kjv/05/16/24/scripture.today new file mode 100644 index 00000000..80bcc59c --- /dev/null +++ b/scripture/kjv/05/16/24/scripture.today @@ -0,0 +1 @@ +20 25:28 diff --git a/scripture/kjv/05/16/25/scripture.html b/scripture/kjv/05/16/25/scripture.html new file mode 100644 index 00000000..16c0f394 --- /dev/null +++ b/scripture/kjv/05/16/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 27:14
+14 Wait on the Lord: be of good courage, and he shall strengthen thine heart: wait, I say, on the Lord.

+Friday 16-May, 2025 diff --git a/scripture/kjv/05/16/25/scripture.json b/scripture/kjv/05/16/25/scripture.json new file mode 100644 index 00000000..28a3dfe2 --- /dev/null +++ b/scripture/kjv/05/16/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "27", + "date": "Friday 16-May, 2025", + "getbible": "https://getbible.life/kjv/Psalms/27/14", + "name": "Psalms 27:14", + "scripture": [ + { + "nr": "14", + "text": "Wait on the Lord: be of good courage, and he shall strengthen thine heart: wait, I say, on the Lord. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/05/16/25/scripture.md b/scripture/kjv/05/16/25/scripture.md new file mode 100644 index 00000000..377e2111 --- /dev/null +++ b/scripture/kjv/05/16/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 27:14** + +14 Wait on the Lord: be of good courage, and he shall strengthen thine heart: wait, I say, on the Lord. + +[Friday 16-May, 2025](https://getbible.life/kjv/Psalms/27/14) diff --git a/scripture/kjv/05/16/25/scripture.tg b/scripture/kjv/05/16/25/scripture.tg new file mode 100644 index 00000000..f875bb77 --- /dev/null +++ b/scripture/kjv/05/16/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 27:14 +14 Wait on the Lord: be of good courage, and he shall strengthen thine heart: wait, I say, on the Lord. + +Friday 16-May, 2025 diff --git a/scripture/kjv/05/16/25/scripture.tg.id b/scripture/kjv/05/16/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/16/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/16/25/scripture.today b/scripture/kjv/05/16/25/scripture.today new file mode 100644 index 00000000..c966a23d --- /dev/null +++ b/scripture/kjv/05/16/25/scripture.today @@ -0,0 +1 @@ +19 27:14 diff --git a/scripture/kjv/05/16/26/scripture.html b/scripture/kjv/05/16/26/scripture.html new file mode 100644 index 00000000..30c4dad2 --- /dev/null +++ b/scripture/kjv/05/16/26/scripture.html @@ -0,0 +1,3 @@ +John 14:12
+12 Verily, verily, I say unto you, He that believeth on me, the works that I do shall he do also; and greater works than these shall he do; because I go unto my Father.

+Saturday 16-May, 2026 diff --git a/scripture/kjv/05/16/26/scripture.json b/scripture/kjv/05/16/26/scripture.json new file mode 100644 index 00000000..13ca7155 --- /dev/null +++ b/scripture/kjv/05/16/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "14", + "date": "Saturday 16-May, 2026", + "getbible": "https://getbible.life/kjv/John/14/12", + "name": "John 14:12", + "scripture": [ + { + "nr": "12", + "text": "Verily, verily, I say unto you, He that believeth on me, the works that I do shall he do also; and greater works than these shall he do; because I go unto my Father." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/05/16/26/scripture.md b/scripture/kjv/05/16/26/scripture.md new file mode 100644 index 00000000..0ac4d12f --- /dev/null +++ b/scripture/kjv/05/16/26/scripture.md @@ -0,0 +1,5 @@ +**John 14:12** + +12 Verily, verily, I say unto you, He that believeth on me, the works that I do shall he do also; and greater works than these shall he do; because I go unto my Father. + +[Saturday 16-May, 2026](https://getbible.life/kjv/John/14/12) diff --git a/scripture/kjv/05/16/26/scripture.tg b/scripture/kjv/05/16/26/scripture.tg new file mode 100644 index 00000000..cd6d54b2 --- /dev/null +++ b/scripture/kjv/05/16/26/scripture.tg @@ -0,0 +1,4 @@ +John 14:12 +12 Verily, verily, I say unto you, He that believeth on me, the works that I do shall he do also; and greater works than these shall he do; because I go unto my Father. + +Saturday 16-May, 2026 diff --git a/scripture/kjv/05/16/26/scripture.tg.id b/scripture/kjv/05/16/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/16/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/16/26/scripture.today b/scripture/kjv/05/16/26/scripture.today new file mode 100644 index 00000000..a2fe9fa5 --- /dev/null +++ b/scripture/kjv/05/16/26/scripture.today @@ -0,0 +1 @@ +43 14:12 diff --git a/scripture/kjv/05/17/23/scripture.html b/scripture/kjv/05/17/23/scripture.html new file mode 100644 index 00000000..58c1cfc6 --- /dev/null +++ b/scripture/kjv/05/17/23/scripture.html @@ -0,0 +1,3 @@ +Colossians 3:21
+21 Fathers, provoke not your children to anger, lest they be discouraged.

+Wednesday 17-May, 2023 diff --git a/scripture/kjv/05/17/23/scripture.json b/scripture/kjv/05/17/23/scripture.json new file mode 100644 index 00000000..031a8fae --- /dev/null +++ b/scripture/kjv/05/17/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Wednesday 17-May, 2023", + "name": "Colossians 3:21", + "scripture": [ + { + "nr": "21", + "text": "Fathers, provoke not your children to anger, lest they be discouraged." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/17/23/scripture.md b/scripture/kjv/05/17/23/scripture.md new file mode 100644 index 00000000..ef3ec67c --- /dev/null +++ b/scripture/kjv/05/17/23/scripture.md @@ -0,0 +1,5 @@ +**Colossians 3:21** + +21 Fathers, provoke not your children to anger, lest they be discouraged. + +[Wednesday 17-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/17/23/scripture.tg b/scripture/kjv/05/17/23/scripture.tg new file mode 100644 index 00000000..2dc2ba38 --- /dev/null +++ b/scripture/kjv/05/17/23/scripture.tg @@ -0,0 +1,4 @@ +Colossians 3:21 +21 Fathers, provoke not your children to anger, lest they be discouraged. + +Wednesday 17-May, 2023 diff --git a/scripture/kjv/05/17/23/scripture.tg.id b/scripture/kjv/05/17/23/scripture.tg.id new file mode 100644 index 00000000..56f639a0 --- /dev/null +++ b/scripture/kjv/05/17/23/scripture.tg.id @@ -0,0 +1 @@ +951 diff --git a/scripture/kjv/05/17/23/scripture.today b/scripture/kjv/05/17/23/scripture.today new file mode 100644 index 00000000..b881f8bf --- /dev/null +++ b/scripture/kjv/05/17/23/scripture.today @@ -0,0 +1 @@ +51 3:21 diff --git a/scripture/kjv/05/17/24/scripture.html b/scripture/kjv/05/17/24/scripture.html new file mode 100644 index 00000000..e9240f6f --- /dev/null +++ b/scripture/kjv/05/17/24/scripture.html @@ -0,0 +1,3 @@ +Galatians 6:4-5
+4 But let every man prove his own work, and then shall he have rejoicing in himself alone, and not in another. 5 For every man shall bear his own burden.

+Friday 17-May, 2024 diff --git a/scripture/kjv/05/17/24/scripture.json b/scripture/kjv/05/17/24/scripture.json new file mode 100644 index 00000000..8ec1f874 --- /dev/null +++ b/scripture/kjv/05/17/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Galatians", + "chapter": "6", + "date": "Friday 17-May, 2024", + "getbible": "https://getbible.life/kjv/Galatians/6/4-5", + "name": "Galatians 6:4-5", + "scripture": [ + { + "nr": "4", + "text": "But let every man prove his own work, and then shall he have rejoicing in himself alone, and not in another." + }, + { + "nr": "5", + "text": "For every man shall bear his own burden." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4-5", + "version": "kjv" +} diff --git a/scripture/kjv/05/17/24/scripture.md b/scripture/kjv/05/17/24/scripture.md new file mode 100644 index 00000000..0d98e4d3 --- /dev/null +++ b/scripture/kjv/05/17/24/scripture.md @@ -0,0 +1,5 @@ +**Galatians 6:4-5** + +4 But let every man prove his own work, and then shall he have rejoicing in himself alone, and not in another. 5 For every man shall bear his own burden. + +[Friday 17-May, 2024](https://getbible.life/kjv/Galatians/6/4-5) diff --git a/scripture/kjv/05/17/24/scripture.tg b/scripture/kjv/05/17/24/scripture.tg new file mode 100644 index 00000000..dcda1b33 --- /dev/null +++ b/scripture/kjv/05/17/24/scripture.tg @@ -0,0 +1,4 @@ +Galatians 6:4-5 +4 But let every man prove his own work, and then shall he have rejoicing in himself alone, and not in another. 5 For every man shall bear his own burden. + +Friday 17-May, 2024 diff --git a/scripture/kjv/05/17/24/scripture.tg.id b/scripture/kjv/05/17/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/17/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/17/24/scripture.today b/scripture/kjv/05/17/24/scripture.today new file mode 100644 index 00000000..1f28e3d7 --- /dev/null +++ b/scripture/kjv/05/17/24/scripture.today @@ -0,0 +1 @@ +48 6:4-5 diff --git a/scripture/kjv/05/17/25/scripture.html b/scripture/kjv/05/17/25/scripture.html new file mode 100644 index 00000000..b9e0765f --- /dev/null +++ b/scripture/kjv/05/17/25/scripture.html @@ -0,0 +1,3 @@ +James 4:9-10
+9 Be afflicted, and mourn, and weep: let your laughter be turned to mourning, and your joy to heaviness. 10 Humble yourselves in the sight of the Lord, and he shall lift you up.

+Saturday 17-May, 2025 diff --git a/scripture/kjv/05/17/25/scripture.json b/scripture/kjv/05/17/25/scripture.json new file mode 100644 index 00000000..1a0ec92a --- /dev/null +++ b/scripture/kjv/05/17/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "James", + "chapter": "4", + "date": "Saturday 17-May, 2025", + "getbible": "https://getbible.life/kjv/James/4/9-10", + "name": "James 4:9-10", + "scripture": [ + { + "nr": "9", + "text": "Be afflicted, and mourn, and weep: let your laughter be turned to mourning, and your joy to heaviness." + }, + { + "nr": "10", + "text": "Humble yourselves in the sight of the Lord, and he shall lift you up." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9-10", + "version": "kjv" +} diff --git a/scripture/kjv/05/17/25/scripture.md b/scripture/kjv/05/17/25/scripture.md new file mode 100644 index 00000000..b57c2d00 --- /dev/null +++ b/scripture/kjv/05/17/25/scripture.md @@ -0,0 +1,5 @@ +**James 4:9-10** + +9 Be afflicted, and mourn, and weep: let your laughter be turned to mourning, and your joy to heaviness. 10 Humble yourselves in the sight of the Lord, and he shall lift you up. + +[Saturday 17-May, 2025](https://getbible.life/kjv/James/4/9-10) diff --git a/scripture/kjv/05/17/25/scripture.tg b/scripture/kjv/05/17/25/scripture.tg new file mode 100644 index 00000000..9e91543d --- /dev/null +++ b/scripture/kjv/05/17/25/scripture.tg @@ -0,0 +1,4 @@ +James 4:9-10 +9 Be afflicted, and mourn, and weep: let your laughter be turned to mourning, and your joy to heaviness. 10 Humble yourselves in the sight of the Lord, and he shall lift you up. + +Saturday 17-May, 2025 diff --git a/scripture/kjv/05/17/25/scripture.tg.id b/scripture/kjv/05/17/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/17/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/17/25/scripture.today b/scripture/kjv/05/17/25/scripture.today new file mode 100644 index 00000000..128bbd22 --- /dev/null +++ b/scripture/kjv/05/17/25/scripture.today @@ -0,0 +1 @@ +59 4:9-10 diff --git a/scripture/kjv/05/17/26/scripture.html b/scripture/kjv/05/17/26/scripture.html new file mode 100644 index 00000000..519a1a38 --- /dev/null +++ b/scripture/kjv/05/17/26/scripture.html @@ -0,0 +1,3 @@ +Proverbs 13:10
+10 Only by pride cometh contention: but with the well advised is wisdom.

+Sunday 17-May, 2026 diff --git a/scripture/kjv/05/17/26/scripture.json b/scripture/kjv/05/17/26/scripture.json new file mode 100644 index 00000000..1fb3789f --- /dev/null +++ b/scripture/kjv/05/17/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "13", + "date": "Sunday 17-May, 2026", + "getbible": "https://getbible.life/kjv/Proverbs/13/10", + "name": "Proverbs 13:10", + "scripture": [ + { + "nr": "10", + "text": "Only by pride cometh contention: but with the well advised is wisdom." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/05/17/26/scripture.md b/scripture/kjv/05/17/26/scripture.md new file mode 100644 index 00000000..aa427a84 --- /dev/null +++ b/scripture/kjv/05/17/26/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 13:10** + +10 Only by pride cometh contention: but with the well advised is wisdom. + +[Sunday 17-May, 2026](https://getbible.life/kjv/Proverbs/13/10) diff --git a/scripture/kjv/05/17/26/scripture.tg b/scripture/kjv/05/17/26/scripture.tg new file mode 100644 index 00000000..4ae4f203 --- /dev/null +++ b/scripture/kjv/05/17/26/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 13:10 +10 Only by pride cometh contention: but with the well advised is wisdom. + +Sunday 17-May, 2026 diff --git a/scripture/kjv/05/17/26/scripture.tg.id b/scripture/kjv/05/17/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/17/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/17/26/scripture.today b/scripture/kjv/05/17/26/scripture.today new file mode 100644 index 00000000..7601928d --- /dev/null +++ b/scripture/kjv/05/17/26/scripture.today @@ -0,0 +1 @@ +20 13:10 diff --git a/scripture/kjv/05/18/23/scripture.html b/scripture/kjv/05/18/23/scripture.html new file mode 100644 index 00000000..9ac1ecdd --- /dev/null +++ b/scripture/kjv/05/18/23/scripture.html @@ -0,0 +1,3 @@ +John 13:17
+17 If ye know these things, happy are ye if ye do them.

+Thursday 18-May, 2023 diff --git a/scripture/kjv/05/18/23/scripture.json b/scripture/kjv/05/18/23/scripture.json new file mode 100644 index 00000000..e9564874 --- /dev/null +++ b/scripture/kjv/05/18/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Thursday 18-May, 2023", + "name": "John 13:17", + "scripture": [ + { + "nr": "17", + "text": "If ye know these things, happy are ye if ye do them." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/18/23/scripture.md b/scripture/kjv/05/18/23/scripture.md new file mode 100644 index 00000000..35cf1491 --- /dev/null +++ b/scripture/kjv/05/18/23/scripture.md @@ -0,0 +1,5 @@ +**John 13:17** + +17 If ye know these things, happy are ye if ye do them. + +[Thursday 18-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/18/23/scripture.tg b/scripture/kjv/05/18/23/scripture.tg new file mode 100644 index 00000000..7f69206a --- /dev/null +++ b/scripture/kjv/05/18/23/scripture.tg @@ -0,0 +1,4 @@ +John 13:17 +17 If ye know these things, happy are ye if ye do them. + +Thursday 18-May, 2023 diff --git a/scripture/kjv/05/18/23/scripture.tg.id b/scripture/kjv/05/18/23/scripture.tg.id new file mode 100644 index 00000000..be1c55a3 --- /dev/null +++ b/scripture/kjv/05/18/23/scripture.tg.id @@ -0,0 +1 @@ +952 diff --git a/scripture/kjv/05/18/23/scripture.today b/scripture/kjv/05/18/23/scripture.today new file mode 100644 index 00000000..347a4c7e --- /dev/null +++ b/scripture/kjv/05/18/23/scripture.today @@ -0,0 +1 @@ +43 13:17 diff --git a/scripture/kjv/05/18/24/scripture.html b/scripture/kjv/05/18/24/scripture.html new file mode 100644 index 00000000..fb2808cd --- /dev/null +++ b/scripture/kjv/05/18/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 10:12
+12 Hatred stirreth up strifes: but love covereth all sins.

+Saturday 18-May, 2024 diff --git a/scripture/kjv/05/18/24/scripture.json b/scripture/kjv/05/18/24/scripture.json new file mode 100644 index 00000000..d1df685a --- /dev/null +++ b/scripture/kjv/05/18/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "10", + "date": "Saturday 18-May, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/10/12", + "name": "Proverbs 10:12", + "scripture": [ + { + "nr": "12", + "text": "Hatred stirreth up strifes: but love covereth all sins." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/05/18/24/scripture.md b/scripture/kjv/05/18/24/scripture.md new file mode 100644 index 00000000..0ae8aa2d --- /dev/null +++ b/scripture/kjv/05/18/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 10:12** + +12 Hatred stirreth up strifes: but love covereth all sins. + +[Saturday 18-May, 2024](https://getbible.life/kjv/Proverbs/10/12) diff --git a/scripture/kjv/05/18/24/scripture.tg b/scripture/kjv/05/18/24/scripture.tg new file mode 100644 index 00000000..2ac3c22b --- /dev/null +++ b/scripture/kjv/05/18/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 10:12 +12 Hatred stirreth up strifes: but love covereth all sins. + +Saturday 18-May, 2024 diff --git a/scripture/kjv/05/18/24/scripture.tg.id b/scripture/kjv/05/18/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/18/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/18/24/scripture.today b/scripture/kjv/05/18/24/scripture.today new file mode 100644 index 00000000..ffa7ac8e --- /dev/null +++ b/scripture/kjv/05/18/24/scripture.today @@ -0,0 +1 @@ +20 10:12 diff --git a/scripture/kjv/05/18/25/scripture.html b/scripture/kjv/05/18/25/scripture.html new file mode 100644 index 00000000..cd5755e7 --- /dev/null +++ b/scripture/kjv/05/18/25/scripture.html @@ -0,0 +1,3 @@ +2 John 1:7
+7 For many deceivers are entered into the world, who confess not that Jesus Christ is come in the flesh. This is a deceiver and an antichrist.

+Sunday 18-May, 2025 diff --git a/scripture/kjv/05/18/25/scripture.json b/scripture/kjv/05/18/25/scripture.json new file mode 100644 index 00000000..aa594061 --- /dev/null +++ b/scripture/kjv/05/18/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 John", + "chapter": "1", + "date": "Sunday 18-May, 2025", + "getbible": "https://getbible.life/kjv/2 John/1/7", + "name": "2 John 1:7", + "scripture": [ + { + "nr": "7", + "text": "For many deceivers are entered into the world, who confess not that Jesus Christ is come in the flesh. This is a deceiver and an antichrist." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7", + "version": "kjv" +} diff --git a/scripture/kjv/05/18/25/scripture.md b/scripture/kjv/05/18/25/scripture.md new file mode 100644 index 00000000..b066f39a --- /dev/null +++ b/scripture/kjv/05/18/25/scripture.md @@ -0,0 +1,5 @@ +**2 John 1:7** + +7 For many deceivers are entered into the world, who confess not that Jesus Christ is come in the flesh. This is a deceiver and an antichrist. + +[Sunday 18-May, 2025](https://getbible.life/kjv/2 John/1/7) diff --git a/scripture/kjv/05/18/25/scripture.tg b/scripture/kjv/05/18/25/scripture.tg new file mode 100644 index 00000000..ff842c04 --- /dev/null +++ b/scripture/kjv/05/18/25/scripture.tg @@ -0,0 +1,4 @@ +2 John 1:7 +7 For many deceivers are entered into the world, who confess not that Jesus Christ is come in the flesh. This is a deceiver and an antichrist. + +Sunday 18-May, 2025 diff --git a/scripture/kjv/05/18/25/scripture.tg.id b/scripture/kjv/05/18/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/18/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/18/25/scripture.today b/scripture/kjv/05/18/25/scripture.today new file mode 100644 index 00000000..51f3cbc6 --- /dev/null +++ b/scripture/kjv/05/18/25/scripture.today @@ -0,0 +1 @@ +63 1:7 diff --git a/scripture/kjv/05/18/26/scripture.html b/scripture/kjv/05/18/26/scripture.html new file mode 100644 index 00000000..56a1e9c7 --- /dev/null +++ b/scripture/kjv/05/18/26/scripture.html @@ -0,0 +1,3 @@ +Romans 9:1-2
+1 I say the truth in Christ, I lie not, my conscience also bearing me witness in the Holy Ghost, 2 That I have great heaviness and continual sorrow in my heart.

+Monday 18-May, 2026 diff --git a/scripture/kjv/05/18/26/scripture.json b/scripture/kjv/05/18/26/scripture.json new file mode 100644 index 00000000..60e6c231 --- /dev/null +++ b/scripture/kjv/05/18/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Romans", + "chapter": "9", + "date": "Monday 18-May, 2026", + "getbible": "https://getbible.life/kjv/Romans/9/1-2", + "name": "Romans 9:1-2", + "scripture": [ + { + "nr": "1", + "text": "I say the truth in Christ, I lie not, my conscience also bearing me witness in the Holy Ghost," + }, + { + "nr": "2", + "text": "That I have great heaviness and continual sorrow in my heart." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-2", + "version": "kjv" +} diff --git a/scripture/kjv/05/18/26/scripture.md b/scripture/kjv/05/18/26/scripture.md new file mode 100644 index 00000000..b6c9b14a --- /dev/null +++ b/scripture/kjv/05/18/26/scripture.md @@ -0,0 +1,5 @@ +**Romans 9:1-2** + +1 I say the truth in Christ, I lie not, my conscience also bearing me witness in the Holy Ghost, 2 That I have great heaviness and continual sorrow in my heart. + +[Monday 18-May, 2026](https://getbible.life/kjv/Romans/9/1-2) diff --git a/scripture/kjv/05/18/26/scripture.tg b/scripture/kjv/05/18/26/scripture.tg new file mode 100644 index 00000000..169a1b53 --- /dev/null +++ b/scripture/kjv/05/18/26/scripture.tg @@ -0,0 +1,4 @@ +Romans 9:1-2 +1 I say the truth in Christ, I lie not, my conscience also bearing me witness in the Holy Ghost, 2 That I have great heaviness and continual sorrow in my heart. + +Monday 18-May, 2026 diff --git a/scripture/kjv/05/18/26/scripture.tg.id b/scripture/kjv/05/18/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/18/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/18/26/scripture.today b/scripture/kjv/05/18/26/scripture.today new file mode 100644 index 00000000..6cfffde6 --- /dev/null +++ b/scripture/kjv/05/18/26/scripture.today @@ -0,0 +1 @@ +45 9:1-2 diff --git a/scripture/kjv/05/19/23/scripture.html b/scripture/kjv/05/19/23/scripture.html new file mode 100644 index 00000000..562b3f9c --- /dev/null +++ b/scripture/kjv/05/19/23/scripture.html @@ -0,0 +1,3 @@ +Colossians 2:13-14
+13 And you, being dead in your sins and the uncircumcision of your flesh, hath he quickened together with him, having forgiven you all trespasses; 14 Blotting out the handwriting of ordinances that was against us, which was contrary to us, and took it out of the way, nailing it to his cross;

+Friday 19-May, 2023 diff --git a/scripture/kjv/05/19/23/scripture.json b/scripture/kjv/05/19/23/scripture.json new file mode 100644 index 00000000..7515a748 --- /dev/null +++ b/scripture/kjv/05/19/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Friday 19-May, 2023", + "name": "Colossians 2:13-14", + "scripture": [ + { + "nr": "13", + "text": "And you, being dead in your sins and the uncircumcision of your flesh, hath he quickened together with him, having forgiven you all trespasses;" + }, + { + "nr": "14", + "text": "Blotting out the handwriting of ordinances that was against us, which was contrary to us, and took it out of the way, nailing it to his cross;" + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/19/23/scripture.md b/scripture/kjv/05/19/23/scripture.md new file mode 100644 index 00000000..a89bebaf --- /dev/null +++ b/scripture/kjv/05/19/23/scripture.md @@ -0,0 +1,5 @@ +**Colossians 2:13-14** + +13 And you, being dead in your sins and the uncircumcision of your flesh, hath he quickened together with him, having forgiven you all trespasses; 14 Blotting out the handwriting of ordinances that was against us, which was contrary to us, and took it out of the way, nailing it to his cross; + +[Friday 19-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/19/23/scripture.tg b/scripture/kjv/05/19/23/scripture.tg new file mode 100644 index 00000000..3090dcaa --- /dev/null +++ b/scripture/kjv/05/19/23/scripture.tg @@ -0,0 +1,4 @@ +Colossians 2:13-14 +13 And you, being dead in your sins and the uncircumcision of your flesh, hath he quickened together with him, having forgiven you all trespasses; 14 Blotting out the handwriting of ordinances that was against us, which was contrary to us, and took it out of the way, nailing it to his cross; + +Friday 19-May, 2023 diff --git a/scripture/kjv/05/19/23/scripture.tg.id b/scripture/kjv/05/19/23/scripture.tg.id new file mode 100644 index 00000000..a8ed109d --- /dev/null +++ b/scripture/kjv/05/19/23/scripture.tg.id @@ -0,0 +1 @@ +953 diff --git a/scripture/kjv/05/19/23/scripture.today b/scripture/kjv/05/19/23/scripture.today new file mode 100644 index 00000000..478b54d7 --- /dev/null +++ b/scripture/kjv/05/19/23/scripture.today @@ -0,0 +1 @@ +51 2:13-14 diff --git a/scripture/kjv/05/19/24/scripture.html b/scripture/kjv/05/19/24/scripture.html new file mode 100644 index 00000000..4df045c3 --- /dev/null +++ b/scripture/kjv/05/19/24/scripture.html @@ -0,0 +1,3 @@ +John 7:37
+37 In the last day, that great day of the feast, Jesus stood and cried, saying, If any man thirst, let him come unto me, and drink.

+Sunday 19-May, 2024 diff --git a/scripture/kjv/05/19/24/scripture.json b/scripture/kjv/05/19/24/scripture.json new file mode 100644 index 00000000..9db04eff --- /dev/null +++ b/scripture/kjv/05/19/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "7", + "date": "Sunday 19-May, 2024", + "getbible": "https://getbible.life/kjv/John/7/37", + "name": "John 7:37", + "scripture": [ + { + "nr": "37", + "text": "In the last day, that great day of the feast, Jesus stood and cried, saying, If any man thirst, let him come unto me, and drink." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "37", + "version": "kjv" +} diff --git a/scripture/kjv/05/19/24/scripture.md b/scripture/kjv/05/19/24/scripture.md new file mode 100644 index 00000000..15296cfb --- /dev/null +++ b/scripture/kjv/05/19/24/scripture.md @@ -0,0 +1,5 @@ +**John 7:37** + +37 In the last day, that great day of the feast, Jesus stood and cried, saying, If any man thirst, let him come unto me, and drink. + +[Sunday 19-May, 2024](https://getbible.life/kjv/John/7/37) diff --git a/scripture/kjv/05/19/24/scripture.tg b/scripture/kjv/05/19/24/scripture.tg new file mode 100644 index 00000000..12711118 --- /dev/null +++ b/scripture/kjv/05/19/24/scripture.tg @@ -0,0 +1,4 @@ +John 7:37 +37 In the last day, that great day of the feast, Jesus stood and cried, saying, If any man thirst, let him come unto me, and drink. + +Sunday 19-May, 2024 diff --git a/scripture/kjv/05/19/24/scripture.tg.id b/scripture/kjv/05/19/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/19/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/19/24/scripture.today b/scripture/kjv/05/19/24/scripture.today new file mode 100644 index 00000000..2d9dd227 --- /dev/null +++ b/scripture/kjv/05/19/24/scripture.today @@ -0,0 +1 @@ +43 7:37 diff --git a/scripture/kjv/05/19/25/scripture.html b/scripture/kjv/05/19/25/scripture.html new file mode 100644 index 00000000..afa8ad2d --- /dev/null +++ b/scripture/kjv/05/19/25/scripture.html @@ -0,0 +1,3 @@ +Philippians 3:17-19
+17 Brethren, be followers together of me, and mark them which walk so as ye have us for an ensample. 18 (For many walk, of whom I have told you often, and now tell you even weeping, that they are the enemies of the cross of Christ: 19 Whose end is destruction, whose God is their belly, and whose glory is in their shame, who mind earthly things.)

+Monday 19-May, 2025 diff --git a/scripture/kjv/05/19/25/scripture.json b/scripture/kjv/05/19/25/scripture.json new file mode 100644 index 00000000..49133403 --- /dev/null +++ b/scripture/kjv/05/19/25/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Philippians", + "chapter": "3", + "date": "Monday 19-May, 2025", + "getbible": "https://getbible.life/kjv/Philippians/3/17-19", + "name": "Philippians 3:17-19", + "scripture": [ + { + "nr": "17", + "text": "Brethren, be followers together of me, and mark them which walk so as ye have us for an ensample." + }, + { + "nr": "18", + "text": "(For many walk, of whom I have told you often, and now tell you even weeping, that they are the enemies of the cross of Christ:" + }, + { + "nr": "19", + "text": "Whose end is destruction, whose God is their belly, and whose glory is in their shame, who mind earthly things.)" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17-19", + "version": "kjv" +} diff --git a/scripture/kjv/05/19/25/scripture.md b/scripture/kjv/05/19/25/scripture.md new file mode 100644 index 00000000..4648fcbc --- /dev/null +++ b/scripture/kjv/05/19/25/scripture.md @@ -0,0 +1,5 @@ +**Philippians 3:17-19** + +17 Brethren, be followers together of me, and mark them which walk so as ye have us for an ensample. 18 (For many walk, of whom I have told you often, and now tell you even weeping, that they are the enemies of the cross of Christ: 19 Whose end is destruction, whose God is their belly, and whose glory is in their shame, who mind earthly things.) + +[Monday 19-May, 2025](https://getbible.life/kjv/Philippians/3/17-19) diff --git a/scripture/kjv/05/19/25/scripture.tg b/scripture/kjv/05/19/25/scripture.tg new file mode 100644 index 00000000..6fc6a7ef --- /dev/null +++ b/scripture/kjv/05/19/25/scripture.tg @@ -0,0 +1,4 @@ +Philippians 3:17-19 +17 Brethren, be followers together of me, and mark them which walk so as ye have us for an ensample. 18 (For many walk, of whom I have told you often, and now tell you even weeping, that they are the enemies of the cross of Christ: 19 Whose end is destruction, whose God is their belly, and whose glory is in their shame, who mind earthly things.) + +Monday 19-May, 2025 diff --git a/scripture/kjv/05/19/25/scripture.tg.id b/scripture/kjv/05/19/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/19/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/19/25/scripture.today b/scripture/kjv/05/19/25/scripture.today new file mode 100644 index 00000000..f6213fd6 --- /dev/null +++ b/scripture/kjv/05/19/25/scripture.today @@ -0,0 +1 @@ +50 3:17-19 diff --git a/scripture/kjv/05/19/26/scripture.html b/scripture/kjv/05/19/26/scripture.html new file mode 100644 index 00000000..c5b06ec6 --- /dev/null +++ b/scripture/kjv/05/19/26/scripture.html @@ -0,0 +1,3 @@ +Romans 5:8
+8 But God commendeth his love toward us, in that, while we were yet sinners, Christ died for us.

+Tuesday 19-May, 2026 diff --git a/scripture/kjv/05/19/26/scripture.json b/scripture/kjv/05/19/26/scripture.json new file mode 100644 index 00000000..2b717fbf --- /dev/null +++ b/scripture/kjv/05/19/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Romans", + "chapter": "5", + "date": "Tuesday 19-May, 2026", + "getbible": "https://getbible.life/kjv/Romans/5/8", + "name": "Romans 5:8", + "scripture": [ + { + "nr": "8", + "text": "But God commendeth his love toward us, in that, while we were yet sinners, Christ died for us." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8", + "version": "kjv" +} diff --git a/scripture/kjv/05/19/26/scripture.md b/scripture/kjv/05/19/26/scripture.md new file mode 100644 index 00000000..38eab08f --- /dev/null +++ b/scripture/kjv/05/19/26/scripture.md @@ -0,0 +1,5 @@ +**Romans 5:8** + +8 But God commendeth his love toward us, in that, while we were yet sinners, Christ died for us. + +[Tuesday 19-May, 2026](https://getbible.life/kjv/Romans/5/8) diff --git a/scripture/kjv/05/19/26/scripture.tg b/scripture/kjv/05/19/26/scripture.tg new file mode 100644 index 00000000..e040d9e9 --- /dev/null +++ b/scripture/kjv/05/19/26/scripture.tg @@ -0,0 +1,4 @@ +Romans 5:8 +8 But God commendeth his love toward us, in that, while we were yet sinners, Christ died for us. + +Tuesday 19-May, 2026 diff --git a/scripture/kjv/05/19/26/scripture.tg.id b/scripture/kjv/05/19/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/19/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/19/26/scripture.today b/scripture/kjv/05/19/26/scripture.today new file mode 100644 index 00000000..19268d36 --- /dev/null +++ b/scripture/kjv/05/19/26/scripture.today @@ -0,0 +1 @@ +45 5:8 diff --git a/scripture/kjv/05/20/23/scripture.html b/scripture/kjv/05/20/23/scripture.html new file mode 100644 index 00000000..99fbf4ed --- /dev/null +++ b/scripture/kjv/05/20/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 20:3
+3 It is an honour for a man to cease from strife: but every fool will be meddling.

+Saturday 20-May, 2023 diff --git a/scripture/kjv/05/20/23/scripture.json b/scripture/kjv/05/20/23/scripture.json new file mode 100644 index 00000000..6c2807cf --- /dev/null +++ b/scripture/kjv/05/20/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Saturday 20-May, 2023", + "name": "Proverbs 20:3", + "scripture": [ + { + "nr": "3", + "text": "It is an honour for a man to cease from strife: but every fool will be meddling." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/20/23/scripture.md b/scripture/kjv/05/20/23/scripture.md new file mode 100644 index 00000000..bdce2b80 --- /dev/null +++ b/scripture/kjv/05/20/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 20:3** + +3 It is an honour for a man to cease from strife: but every fool will be meddling. + +[Saturday 20-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/20/23/scripture.tg b/scripture/kjv/05/20/23/scripture.tg new file mode 100644 index 00000000..f8a15798 --- /dev/null +++ b/scripture/kjv/05/20/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 20:3 +3 It is an honour for a man to cease from strife: but every fool will be meddling. + +Saturday 20-May, 2023 diff --git a/scripture/kjv/05/20/23/scripture.tg.id b/scripture/kjv/05/20/23/scripture.tg.id new file mode 100644 index 00000000..8a8022ae --- /dev/null +++ b/scripture/kjv/05/20/23/scripture.tg.id @@ -0,0 +1 @@ +954 diff --git a/scripture/kjv/05/20/23/scripture.today b/scripture/kjv/05/20/23/scripture.today new file mode 100644 index 00000000..89b87fa4 --- /dev/null +++ b/scripture/kjv/05/20/23/scripture.today @@ -0,0 +1 @@ +20 20:3 diff --git a/scripture/kjv/05/20/24/scripture.html b/scripture/kjv/05/20/24/scripture.html new file mode 100644 index 00000000..1d94ca3a --- /dev/null +++ b/scripture/kjv/05/20/24/scripture.html @@ -0,0 +1,3 @@ +Luke 1:45
+45 And blessed is she that believed: for there shall be a performance of those things which were told her from the Lord.

+Monday 20-May, 2024 diff --git a/scripture/kjv/05/20/24/scripture.json b/scripture/kjv/05/20/24/scripture.json new file mode 100644 index 00000000..c4ed5070 --- /dev/null +++ b/scripture/kjv/05/20/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "1", + "date": "Monday 20-May, 2024", + "getbible": "https://getbible.life/kjv/Luke/1/45", + "name": "Luke 1:45", + "scripture": [ + { + "nr": "45", + "text": "And blessed is she that believed: for there shall be a performance of those things which were told her from the Lord." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "45", + "version": "kjv" +} diff --git a/scripture/kjv/05/20/24/scripture.md b/scripture/kjv/05/20/24/scripture.md new file mode 100644 index 00000000..5c31db1a --- /dev/null +++ b/scripture/kjv/05/20/24/scripture.md @@ -0,0 +1,5 @@ +**Luke 1:45** + +45 And blessed is she that believed: for there shall be a performance of those things which were told her from the Lord. + +[Monday 20-May, 2024](https://getbible.life/kjv/Luke/1/45) diff --git a/scripture/kjv/05/20/24/scripture.tg b/scripture/kjv/05/20/24/scripture.tg new file mode 100644 index 00000000..b917456a --- /dev/null +++ b/scripture/kjv/05/20/24/scripture.tg @@ -0,0 +1,4 @@ +Luke 1:45 +45 And blessed is she that believed: for there shall be a performance of those things which were told her from the Lord. + +Monday 20-May, 2024 diff --git a/scripture/kjv/05/20/24/scripture.tg.id b/scripture/kjv/05/20/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/20/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/20/24/scripture.today b/scripture/kjv/05/20/24/scripture.today new file mode 100644 index 00000000..24796fb0 --- /dev/null +++ b/scripture/kjv/05/20/24/scripture.today @@ -0,0 +1 @@ +42 1:45 diff --git a/scripture/kjv/05/20/25/scripture.html b/scripture/kjv/05/20/25/scripture.html new file mode 100644 index 00000000..4d40e718 --- /dev/null +++ b/scripture/kjv/05/20/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 9:18
+18 For the needy shall not alway be forgotten: the expectation of the poor shall not perish for ever.

+Tuesday 20-May, 2025 diff --git a/scripture/kjv/05/20/25/scripture.json b/scripture/kjv/05/20/25/scripture.json new file mode 100644 index 00000000..84728984 --- /dev/null +++ b/scripture/kjv/05/20/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "9", + "date": "Tuesday 20-May, 2025", + "getbible": "https://getbible.life/kjv/Psalms/9/18", + "name": "Psalms 9:18", + "scripture": [ + { + "nr": "18", + "text": "For the needy shall not alway be forgotten: the expectation of the poor shall not perish for ever." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18", + "version": "kjv" +} diff --git a/scripture/kjv/05/20/25/scripture.md b/scripture/kjv/05/20/25/scripture.md new file mode 100644 index 00000000..8474533b --- /dev/null +++ b/scripture/kjv/05/20/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 9:18** + +18 For the needy shall not alway be forgotten: the expectation of the poor shall not perish for ever. + +[Tuesday 20-May, 2025](https://getbible.life/kjv/Psalms/9/18) diff --git a/scripture/kjv/05/20/25/scripture.tg b/scripture/kjv/05/20/25/scripture.tg new file mode 100644 index 00000000..aee3300f --- /dev/null +++ b/scripture/kjv/05/20/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 9:18 +18 For the needy shall not alway be forgotten: the expectation of the poor shall not perish for ever. + +Tuesday 20-May, 2025 diff --git a/scripture/kjv/05/20/25/scripture.tg.id b/scripture/kjv/05/20/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/20/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/20/25/scripture.today b/scripture/kjv/05/20/25/scripture.today new file mode 100644 index 00000000..2c3bee5a --- /dev/null +++ b/scripture/kjv/05/20/25/scripture.today @@ -0,0 +1 @@ +19 9:18 diff --git a/scripture/kjv/05/20/26/scripture.html b/scripture/kjv/05/20/26/scripture.html new file mode 100644 index 00000000..6496edcf --- /dev/null +++ b/scripture/kjv/05/20/26/scripture.html @@ -0,0 +1,3 @@ +Acts 12:2
+2 And he killed James the brother of John with the sword.

+Wednesday 20-May, 2026 diff --git a/scripture/kjv/05/20/26/scripture.json b/scripture/kjv/05/20/26/scripture.json new file mode 100644 index 00000000..c9a1250a --- /dev/null +++ b/scripture/kjv/05/20/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Acts", + "chapter": "12", + "date": "Wednesday 20-May, 2026", + "getbible": "https://getbible.life/kjv/Acts/12/2", + "name": "Acts 12:2", + "scripture": [ + { + "nr": "2", + "text": "And he killed James the brother of John with the sword." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "2", + "version": "kjv" +} diff --git a/scripture/kjv/05/20/26/scripture.md b/scripture/kjv/05/20/26/scripture.md new file mode 100644 index 00000000..b0c0ef4d --- /dev/null +++ b/scripture/kjv/05/20/26/scripture.md @@ -0,0 +1,5 @@ +**Acts 12:2** + +2 And he killed James the brother of John with the sword. + +[Wednesday 20-May, 2026](https://getbible.life/kjv/Acts/12/2) diff --git a/scripture/kjv/05/20/26/scripture.tg b/scripture/kjv/05/20/26/scripture.tg new file mode 100644 index 00000000..1b5a97c4 --- /dev/null +++ b/scripture/kjv/05/20/26/scripture.tg @@ -0,0 +1,4 @@ +Acts 12:2 +2 And he killed James the brother of John with the sword. + +Wednesday 20-May, 2026 diff --git a/scripture/kjv/05/20/26/scripture.tg.id b/scripture/kjv/05/20/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/20/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/20/26/scripture.today b/scripture/kjv/05/20/26/scripture.today new file mode 100644 index 00000000..b960c0da --- /dev/null +++ b/scripture/kjv/05/20/26/scripture.today @@ -0,0 +1 @@ +44 12:2 diff --git a/scripture/kjv/05/21/23/scripture.html b/scripture/kjv/05/21/23/scripture.html new file mode 100644 index 00000000..df65991b --- /dev/null +++ b/scripture/kjv/05/21/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 23:1-3
+1 The Lord is my shepherd; I shall not want. 2 He maketh me to lie down in green pastures: he leadeth me beside the still waters. 3 He restoreth my soul: he leadeth me in the paths of righteousness for his name’s sake.

+Sunday 21-May, 2023 diff --git a/scripture/kjv/05/21/23/scripture.json b/scripture/kjv/05/21/23/scripture.json new file mode 100644 index 00000000..5c5f2495 --- /dev/null +++ b/scripture/kjv/05/21/23/scripture.json @@ -0,0 +1,21 @@ +{ + "date": "Sunday 21-May, 2023", + "name": "Psalms 23:1-3", + "scripture": [ + { + "nr": "1", + "text": "The Lord is my shepherd; I shall not want." + }, + { + "nr": "2", + "text": "He maketh me to lie down in green pastures: he leadeth me beside the still waters." + }, + { + "nr": "3", + "text": "He restoreth my soul: he leadeth me in the paths of righteousness for his name’s sake." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/21/23/scripture.md b/scripture/kjv/05/21/23/scripture.md new file mode 100644 index 00000000..c8679ee9 --- /dev/null +++ b/scripture/kjv/05/21/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 23:1-3** + +1 The Lord is my shepherd; I shall not want. 2 He maketh me to lie down in green pastures: he leadeth me beside the still waters. 3 He restoreth my soul: he leadeth me in the paths of righteousness for his name’s sake. + +[Sunday 21-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/21/23/scripture.tg b/scripture/kjv/05/21/23/scripture.tg new file mode 100644 index 00000000..9f44e2e1 --- /dev/null +++ b/scripture/kjv/05/21/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 23:1-3 +1 The Lord is my shepherd; I shall not want. 2 He maketh me to lie down in green pastures: he leadeth me beside the still waters. 3 He restoreth my soul: he leadeth me in the paths of righteousness for his name’s sake. + +Sunday 21-May, 2023 diff --git a/scripture/kjv/05/21/23/scripture.tg.id b/scripture/kjv/05/21/23/scripture.tg.id new file mode 100644 index 00000000..90364597 --- /dev/null +++ b/scripture/kjv/05/21/23/scripture.tg.id @@ -0,0 +1 @@ +955 diff --git a/scripture/kjv/05/21/23/scripture.today b/scripture/kjv/05/21/23/scripture.today new file mode 100644 index 00000000..96da81e2 --- /dev/null +++ b/scripture/kjv/05/21/23/scripture.today @@ -0,0 +1 @@ +19 23:1-3 diff --git a/scripture/kjv/05/21/24/scripture.html b/scripture/kjv/05/21/24/scripture.html new file mode 100644 index 00000000..cc441c71 --- /dev/null +++ b/scripture/kjv/05/21/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 23:6
+6 Surely goodness and mercy shall follow me all the days of my life: and I will dwell in the house of the Lord for ever.

+Tuesday 21-May, 2024 diff --git a/scripture/kjv/05/21/24/scripture.json b/scripture/kjv/05/21/24/scripture.json new file mode 100644 index 00000000..43d01a64 --- /dev/null +++ b/scripture/kjv/05/21/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "23", + "date": "Tuesday 21-May, 2024", + "getbible": "https://getbible.life/kjv/Psalms/23/6", + "name": "Psalms 23:6", + "scripture": [ + { + "nr": "6", + "text": "Surely goodness and mercy shall follow me all the days of my life: and I will dwell in the house of the Lord for ever. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6", + "version": "kjv" +} diff --git a/scripture/kjv/05/21/24/scripture.md b/scripture/kjv/05/21/24/scripture.md new file mode 100644 index 00000000..2e65f38a --- /dev/null +++ b/scripture/kjv/05/21/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 23:6** + +6 Surely goodness and mercy shall follow me all the days of my life: and I will dwell in the house of the Lord for ever. + +[Tuesday 21-May, 2024](https://getbible.life/kjv/Psalms/23/6) diff --git a/scripture/kjv/05/21/24/scripture.tg b/scripture/kjv/05/21/24/scripture.tg new file mode 100644 index 00000000..5be8c773 --- /dev/null +++ b/scripture/kjv/05/21/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 23:6 +6 Surely goodness and mercy shall follow me all the days of my life: and I will dwell in the house of the Lord for ever. + +Tuesday 21-May, 2024 diff --git a/scripture/kjv/05/21/24/scripture.tg.id b/scripture/kjv/05/21/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/21/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/21/24/scripture.today b/scripture/kjv/05/21/24/scripture.today new file mode 100644 index 00000000..98123302 --- /dev/null +++ b/scripture/kjv/05/21/24/scripture.today @@ -0,0 +1 @@ +19 23:6 diff --git a/scripture/kjv/05/21/25/scripture.html b/scripture/kjv/05/21/25/scripture.html new file mode 100644 index 00000000..b678d264 --- /dev/null +++ b/scripture/kjv/05/21/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 46:7
+7 The Lord of hosts is with us; the God of Jacob is our refuge. Selah.

+Wednesday 21-May, 2025 diff --git a/scripture/kjv/05/21/25/scripture.json b/scripture/kjv/05/21/25/scripture.json new file mode 100644 index 00000000..81ee2fa2 --- /dev/null +++ b/scripture/kjv/05/21/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "46", + "date": "Wednesday 21-May, 2025", + "getbible": "https://getbible.life/kjv/Psalms/46/7", + "name": "Psalms 46:7", + "scripture": [ + { + "nr": "7", + "text": "The Lord of hosts is with us; the God of Jacob is our refuge. Selah." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7", + "version": "kjv" +} diff --git a/scripture/kjv/05/21/25/scripture.md b/scripture/kjv/05/21/25/scripture.md new file mode 100644 index 00000000..da3854fd --- /dev/null +++ b/scripture/kjv/05/21/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 46:7** + +7 The Lord of hosts is with us; the God of Jacob is our refuge. Selah. + +[Wednesday 21-May, 2025](https://getbible.life/kjv/Psalms/46/7) diff --git a/scripture/kjv/05/21/25/scripture.tg b/scripture/kjv/05/21/25/scripture.tg new file mode 100644 index 00000000..b6dc5b04 --- /dev/null +++ b/scripture/kjv/05/21/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 46:7 +7 The Lord of hosts is with us; the God of Jacob is our refuge. Selah. + +Wednesday 21-May, 2025 diff --git a/scripture/kjv/05/21/25/scripture.tg.id b/scripture/kjv/05/21/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/21/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/21/25/scripture.today b/scripture/kjv/05/21/25/scripture.today new file mode 100644 index 00000000..ea2c3e24 --- /dev/null +++ b/scripture/kjv/05/21/25/scripture.today @@ -0,0 +1 @@ +19 46:7 diff --git a/scripture/kjv/05/21/26/scripture.html b/scripture/kjv/05/21/26/scripture.html new file mode 100644 index 00000000..346c0c0c --- /dev/null +++ b/scripture/kjv/05/21/26/scripture.html @@ -0,0 +1,3 @@ +Ruth 3:10
+10 And he said, Blessed be thou of the Lord, my daughter: for thou hast shewed more kindness in the latter end than at the beginning, inasmuch as thou followedst not young men, whether poor or rich.

+Thursday 21-May, 2026 diff --git a/scripture/kjv/05/21/26/scripture.json b/scripture/kjv/05/21/26/scripture.json new file mode 100644 index 00000000..2c291a36 --- /dev/null +++ b/scripture/kjv/05/21/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ruth", + "chapter": "3", + "date": "Thursday 21-May, 2026", + "getbible": "https://getbible.life/kjv/Ruth/3/10", + "name": "Ruth 3:10", + "scripture": [ + { + "nr": "10", + "text": "And he said, Blessed be thou of the Lord, my daughter: for thou hast shewed more kindness in the latter end than at the beginning, inasmuch as thou followedst not young men, whether poor or rich." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/05/21/26/scripture.md b/scripture/kjv/05/21/26/scripture.md new file mode 100644 index 00000000..06818cbd --- /dev/null +++ b/scripture/kjv/05/21/26/scripture.md @@ -0,0 +1,5 @@ +**Ruth 3:10** + +10 And he said, Blessed be thou of the Lord, my daughter: for thou hast shewed more kindness in the latter end than at the beginning, inasmuch as thou followedst not young men, whether poor or rich. + +[Thursday 21-May, 2026](https://getbible.life/kjv/Ruth/3/10) diff --git a/scripture/kjv/05/21/26/scripture.tg b/scripture/kjv/05/21/26/scripture.tg new file mode 100644 index 00000000..433a6d53 --- /dev/null +++ b/scripture/kjv/05/21/26/scripture.tg @@ -0,0 +1,4 @@ +Ruth 3:10 +10 And he said, Blessed be thou of the Lord, my daughter: for thou hast shewed more kindness in the latter end than at the beginning, inasmuch as thou followedst not young men, whether poor or rich. + +Thursday 21-May, 2026 diff --git a/scripture/kjv/05/21/26/scripture.tg.id b/scripture/kjv/05/21/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/21/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/21/26/scripture.today b/scripture/kjv/05/21/26/scripture.today new file mode 100644 index 00000000..c4faff1a --- /dev/null +++ b/scripture/kjv/05/21/26/scripture.today @@ -0,0 +1 @@ +8 3:10 diff --git a/scripture/kjv/05/22/23/scripture.html b/scripture/kjv/05/22/23/scripture.html new file mode 100644 index 00000000..e012b658 --- /dev/null +++ b/scripture/kjv/05/22/23/scripture.html @@ -0,0 +1,3 @@ +John 15:12
+12 This is my commandment, That ye love one another, as I have loved you.

+Monday 22-May, 2023 diff --git a/scripture/kjv/05/22/23/scripture.json b/scripture/kjv/05/22/23/scripture.json new file mode 100644 index 00000000..fae15522 --- /dev/null +++ b/scripture/kjv/05/22/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Monday 22-May, 2023", + "name": "John 15:12", + "scripture": [ + { + "nr": "12", + "text": "This is my commandment, That ye love one another, as I have loved you." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/22/23/scripture.md b/scripture/kjv/05/22/23/scripture.md new file mode 100644 index 00000000..34aab0fc --- /dev/null +++ b/scripture/kjv/05/22/23/scripture.md @@ -0,0 +1,5 @@ +**John 15:12** + +12 This is my commandment, That ye love one another, as I have loved you. + +[Monday 22-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/22/23/scripture.tg b/scripture/kjv/05/22/23/scripture.tg new file mode 100644 index 00000000..d5ed85dd --- /dev/null +++ b/scripture/kjv/05/22/23/scripture.tg @@ -0,0 +1,4 @@ +John 15:12 +12 This is my commandment, That ye love one another, as I have loved you. + +Monday 22-May, 2023 diff --git a/scripture/kjv/05/22/23/scripture.tg.id b/scripture/kjv/05/22/23/scripture.tg.id new file mode 100644 index 00000000..07eafa38 --- /dev/null +++ b/scripture/kjv/05/22/23/scripture.tg.id @@ -0,0 +1 @@ +956 diff --git a/scripture/kjv/05/22/23/scripture.today b/scripture/kjv/05/22/23/scripture.today new file mode 100644 index 00000000..5b5c57cd --- /dev/null +++ b/scripture/kjv/05/22/23/scripture.today @@ -0,0 +1 @@ +43 15:12 diff --git a/scripture/kjv/05/22/24/scripture.html b/scripture/kjv/05/22/24/scripture.html new file mode 100644 index 00000000..a123423b --- /dev/null +++ b/scripture/kjv/05/22/24/scripture.html @@ -0,0 +1,3 @@ +Acts 6:4
+4 But we will give ourselves continually to prayer, and to the ministry of the word.

+Wednesday 22-May, 2024 diff --git a/scripture/kjv/05/22/24/scripture.json b/scripture/kjv/05/22/24/scripture.json new file mode 100644 index 00000000..68af84c3 --- /dev/null +++ b/scripture/kjv/05/22/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Acts", + "chapter": "6", + "date": "Wednesday 22-May, 2024", + "getbible": "https://getbible.life/kjv/Acts/6/4", + "name": "Acts 6:4", + "scripture": [ + { + "nr": "4", + "text": "But we will give ourselves continually to prayer, and to the ministry of the word." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4", + "version": "kjv" +} diff --git a/scripture/kjv/05/22/24/scripture.md b/scripture/kjv/05/22/24/scripture.md new file mode 100644 index 00000000..a5aec52c --- /dev/null +++ b/scripture/kjv/05/22/24/scripture.md @@ -0,0 +1,5 @@ +**Acts 6:4** + +4 But we will give ourselves continually to prayer, and to the ministry of the word. + +[Wednesday 22-May, 2024](https://getbible.life/kjv/Acts/6/4) diff --git a/scripture/kjv/05/22/24/scripture.tg b/scripture/kjv/05/22/24/scripture.tg new file mode 100644 index 00000000..93791bfe --- /dev/null +++ b/scripture/kjv/05/22/24/scripture.tg @@ -0,0 +1,4 @@ +Acts 6:4 +4 But we will give ourselves continually to prayer, and to the ministry of the word. + +Wednesday 22-May, 2024 diff --git a/scripture/kjv/05/22/24/scripture.tg.id b/scripture/kjv/05/22/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/22/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/22/24/scripture.today b/scripture/kjv/05/22/24/scripture.today new file mode 100644 index 00000000..d8e7482e --- /dev/null +++ b/scripture/kjv/05/22/24/scripture.today @@ -0,0 +1 @@ +44 6:4 diff --git a/scripture/kjv/05/22/25/scripture.html b/scripture/kjv/05/22/25/scripture.html new file mode 100644 index 00000000..1f34667f --- /dev/null +++ b/scripture/kjv/05/22/25/scripture.html @@ -0,0 +1,3 @@ +Ephesians 4:29-30
+29 Let no corrupt communication proceed out of your mouth, but that which is good to the use of edifying, that it may minister grace unto the hearers. 30 And grieve not the holy Spirit of God, whereby ye are sealed unto the day of redemption.

+Thursday 22-May, 2025 diff --git a/scripture/kjv/05/22/25/scripture.json b/scripture/kjv/05/22/25/scripture.json new file mode 100644 index 00000000..a65e1a61 --- /dev/null +++ b/scripture/kjv/05/22/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Ephesians", + "chapter": "4", + "date": "Thursday 22-May, 2025", + "getbible": "https://getbible.life/kjv/Ephesians/4/29-30", + "name": "Ephesians 4:29-30", + "scripture": [ + { + "nr": "29", + "text": "Let no corrupt communication proceed out of your mouth, but that which is good to the use of edifying, that it may minister grace unto the hearers." + }, + { + "nr": "30", + "text": "And grieve not the holy Spirit of God, whereby ye are sealed unto the day of redemption." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "29-30", + "version": "kjv" +} diff --git a/scripture/kjv/05/22/25/scripture.md b/scripture/kjv/05/22/25/scripture.md new file mode 100644 index 00000000..a1b70bbc --- /dev/null +++ b/scripture/kjv/05/22/25/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 4:29-30** + +29 Let no corrupt communication proceed out of your mouth, but that which is good to the use of edifying, that it may minister grace unto the hearers. 30 And grieve not the holy Spirit of God, whereby ye are sealed unto the day of redemption. + +[Thursday 22-May, 2025](https://getbible.life/kjv/Ephesians/4/29-30) diff --git a/scripture/kjv/05/22/25/scripture.tg b/scripture/kjv/05/22/25/scripture.tg new file mode 100644 index 00000000..9c6f184c --- /dev/null +++ b/scripture/kjv/05/22/25/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 4:29-30 +29 Let no corrupt communication proceed out of your mouth, but that which is good to the use of edifying, that it may minister grace unto the hearers. 30 And grieve not the holy Spirit of God, whereby ye are sealed unto the day of redemption. + +Thursday 22-May, 2025 diff --git a/scripture/kjv/05/22/25/scripture.tg.id b/scripture/kjv/05/22/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/22/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/22/25/scripture.today b/scripture/kjv/05/22/25/scripture.today new file mode 100644 index 00000000..fb8552f7 --- /dev/null +++ b/scripture/kjv/05/22/25/scripture.today @@ -0,0 +1 @@ +49 4:29-30 diff --git a/scripture/kjv/05/22/26/scripture.html b/scripture/kjv/05/22/26/scripture.html new file mode 100644 index 00000000..7ff17c17 --- /dev/null +++ b/scripture/kjv/05/22/26/scripture.html @@ -0,0 +1,3 @@ +Isaiah 3:12
+12 As for my people, children are their oppressors, and women rule over them. O my people, they which lead thee cause thee to err, and destroy the way of thy paths.

+Friday 22-May, 2026 diff --git a/scripture/kjv/05/22/26/scripture.json b/scripture/kjv/05/22/26/scripture.json new file mode 100644 index 00000000..1aff7357 --- /dev/null +++ b/scripture/kjv/05/22/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "3", + "date": "Friday 22-May, 2026", + "getbible": "https://getbible.life/kjv/Isaiah/3/12", + "name": "Isaiah 3:12", + "scripture": [ + { + "nr": "12", + "text": "As for my people, children are their oppressors, and women rule over them. O my people, they which lead thee cause thee to err, and destroy the way of thy paths." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/05/22/26/scripture.md b/scripture/kjv/05/22/26/scripture.md new file mode 100644 index 00000000..6646c255 --- /dev/null +++ b/scripture/kjv/05/22/26/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 3:12** + +12 As for my people, children are their oppressors, and women rule over them. O my people, they which lead thee cause thee to err, and destroy the way of thy paths. + +[Friday 22-May, 2026](https://getbible.life/kjv/Isaiah/3/12) diff --git a/scripture/kjv/05/22/26/scripture.tg b/scripture/kjv/05/22/26/scripture.tg new file mode 100644 index 00000000..098d6bf6 --- /dev/null +++ b/scripture/kjv/05/22/26/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 3:12 +12 As for my people, children are their oppressors, and women rule over them. O my people, they which lead thee cause thee to err, and destroy the way of thy paths. + +Friday 22-May, 2026 diff --git a/scripture/kjv/05/22/26/scripture.tg.id b/scripture/kjv/05/22/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/22/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/22/26/scripture.today b/scripture/kjv/05/22/26/scripture.today new file mode 100644 index 00000000..0359ad87 --- /dev/null +++ b/scripture/kjv/05/22/26/scripture.today @@ -0,0 +1 @@ +23 3:12 diff --git a/scripture/kjv/05/23/23/scripture.html b/scripture/kjv/05/23/23/scripture.html new file mode 100644 index 00000000..26276d9d --- /dev/null +++ b/scripture/kjv/05/23/23/scripture.html @@ -0,0 +1,3 @@ +James 1:9
+9 Let the brother of low degree rejoice in that he is exalted:

+Tuesday 23-May, 2023 diff --git a/scripture/kjv/05/23/23/scripture.json b/scripture/kjv/05/23/23/scripture.json new file mode 100644 index 00000000..7cb2442b --- /dev/null +++ b/scripture/kjv/05/23/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Tuesday 23-May, 2023", + "name": "James 1:9", + "scripture": [ + { + "nr": "9", + "text": "Let the brother of low degree rejoice in that he is exalted:" + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/23/23/scripture.md b/scripture/kjv/05/23/23/scripture.md new file mode 100644 index 00000000..0bbf62b3 --- /dev/null +++ b/scripture/kjv/05/23/23/scripture.md @@ -0,0 +1,5 @@ +**James 1:9** + +9 Let the brother of low degree rejoice in that he is exalted: + +[Tuesday 23-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/23/23/scripture.tg b/scripture/kjv/05/23/23/scripture.tg new file mode 100644 index 00000000..b63e4d88 --- /dev/null +++ b/scripture/kjv/05/23/23/scripture.tg @@ -0,0 +1,4 @@ +James 1:9 +9 Let the brother of low degree rejoice in that he is exalted: + +Tuesday 23-May, 2023 diff --git a/scripture/kjv/05/23/23/scripture.tg.id b/scripture/kjv/05/23/23/scripture.tg.id new file mode 100644 index 00000000..6943e4db --- /dev/null +++ b/scripture/kjv/05/23/23/scripture.tg.id @@ -0,0 +1 @@ +957 diff --git a/scripture/kjv/05/23/23/scripture.today b/scripture/kjv/05/23/23/scripture.today new file mode 100644 index 00000000..2c4a9e18 --- /dev/null +++ b/scripture/kjv/05/23/23/scripture.today @@ -0,0 +1 @@ +59 1:9 diff --git a/scripture/kjv/05/23/24/scripture.html b/scripture/kjv/05/23/24/scripture.html new file mode 100644 index 00000000..875439cf --- /dev/null +++ b/scripture/kjv/05/23/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 56:12-13
+12 Thy vows are upon me, O God: I will render praises unto thee. 13 For thou hast delivered my soul from death: wilt not thou deliver my feet from falling, that I may walk before God in the light of the living?

+Thursday 23-May, 2024 diff --git a/scripture/kjv/05/23/24/scripture.json b/scripture/kjv/05/23/24/scripture.json new file mode 100644 index 00000000..97758f7d --- /dev/null +++ b/scripture/kjv/05/23/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Psalms", + "chapter": "56", + "date": "Thursday 23-May, 2024", + "getbible": "https://getbible.life/kjv/Psalms/56/12-13", + "name": "Psalms 56:12-13", + "scripture": [ + { + "nr": "12", + "text": "Thy vows are upon me, O God: I will render praises unto thee." + }, + { + "nr": "13", + "text": "For thou hast delivered my soul from death: wilt not thou deliver my feet from falling, that I may walk before God in the light of the living? " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12-13", + "version": "kjv" +} diff --git a/scripture/kjv/05/23/24/scripture.md b/scripture/kjv/05/23/24/scripture.md new file mode 100644 index 00000000..f96c8879 --- /dev/null +++ b/scripture/kjv/05/23/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 56:12-13** + +12 Thy vows are upon me, O God: I will render praises unto thee. 13 For thou hast delivered my soul from death: wilt not thou deliver my feet from falling, that I may walk before God in the light of the living? + +[Thursday 23-May, 2024](https://getbible.life/kjv/Psalms/56/12-13) diff --git a/scripture/kjv/05/23/24/scripture.tg b/scripture/kjv/05/23/24/scripture.tg new file mode 100644 index 00000000..2376f679 --- /dev/null +++ b/scripture/kjv/05/23/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 56:12-13 +12 Thy vows are upon me, O God: I will render praises unto thee. 13 For thou hast delivered my soul from death: wilt not thou deliver my feet from falling, that I may walk before God in the light of the living? + +Thursday 23-May, 2024 diff --git a/scripture/kjv/05/23/24/scripture.tg.id b/scripture/kjv/05/23/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/23/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/23/24/scripture.today b/scripture/kjv/05/23/24/scripture.today new file mode 100644 index 00000000..a3ec963f --- /dev/null +++ b/scripture/kjv/05/23/24/scripture.today @@ -0,0 +1 @@ +19 56:12-13 diff --git a/scripture/kjv/05/23/25/scripture.html b/scripture/kjv/05/23/25/scripture.html new file mode 100644 index 00000000..b5c2d154 --- /dev/null +++ b/scripture/kjv/05/23/25/scripture.html @@ -0,0 +1,3 @@ +John 15:12
+12 This is my commandment, That ye love one another, as I have loved you.

+Friday 23-May, 2025 diff --git a/scripture/kjv/05/23/25/scripture.json b/scripture/kjv/05/23/25/scripture.json new file mode 100644 index 00000000..62031643 --- /dev/null +++ b/scripture/kjv/05/23/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "15", + "date": "Friday 23-May, 2025", + "getbible": "https://getbible.life/kjv/John/15/12", + "name": "John 15:12", + "scripture": [ + { + "nr": "12", + "text": "This is my commandment, That ye love one another, as I have loved you." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/05/23/25/scripture.md b/scripture/kjv/05/23/25/scripture.md new file mode 100644 index 00000000..639b69ce --- /dev/null +++ b/scripture/kjv/05/23/25/scripture.md @@ -0,0 +1,5 @@ +**John 15:12** + +12 This is my commandment, That ye love one another, as I have loved you. + +[Friday 23-May, 2025](https://getbible.life/kjv/John/15/12) diff --git a/scripture/kjv/05/23/25/scripture.tg b/scripture/kjv/05/23/25/scripture.tg new file mode 100644 index 00000000..193c1deb --- /dev/null +++ b/scripture/kjv/05/23/25/scripture.tg @@ -0,0 +1,4 @@ +John 15:12 +12 This is my commandment, That ye love one another, as I have loved you. + +Friday 23-May, 2025 diff --git a/scripture/kjv/05/23/25/scripture.tg.id b/scripture/kjv/05/23/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/23/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/23/25/scripture.today b/scripture/kjv/05/23/25/scripture.today new file mode 100644 index 00000000..5b5c57cd --- /dev/null +++ b/scripture/kjv/05/23/25/scripture.today @@ -0,0 +1 @@ +43 15:12 diff --git a/scripture/kjv/05/23/26/scripture.html b/scripture/kjv/05/23/26/scripture.html new file mode 100644 index 00000000..a0753f26 --- /dev/null +++ b/scripture/kjv/05/23/26/scripture.html @@ -0,0 +1,3 @@ +Jude 1:3
+3 Beloved, when I gave all diligence to write unto you of the common salvation, it was needful for me to write unto you, and exhort you that ye should earnestly contend for the faith which was once delivered unto the saints.

+Saturday 23-May, 2026 diff --git a/scripture/kjv/05/23/26/scripture.json b/scripture/kjv/05/23/26/scripture.json new file mode 100644 index 00000000..7400c4dc --- /dev/null +++ b/scripture/kjv/05/23/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Jude", + "chapter": "1", + "date": "Saturday 23-May, 2026", + "getbible": "https://getbible.life/kjv/Jude/1/3", + "name": "Jude 1:3", + "scripture": [ + { + "nr": "3", + "text": "Beloved, when I gave all diligence to write unto you of the common salvation, it was needful for me to write unto you, and exhort you that ye should earnestly contend for the faith which was once delivered unto the saints." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3", + "version": "kjv" +} diff --git a/scripture/kjv/05/23/26/scripture.md b/scripture/kjv/05/23/26/scripture.md new file mode 100644 index 00000000..e2fa3286 --- /dev/null +++ b/scripture/kjv/05/23/26/scripture.md @@ -0,0 +1,5 @@ +**Jude 1:3** + +3 Beloved, when I gave all diligence to write unto you of the common salvation, it was needful for me to write unto you, and exhort you that ye should earnestly contend for the faith which was once delivered unto the saints. + +[Saturday 23-May, 2026](https://getbible.life/kjv/Jude/1/3) diff --git a/scripture/kjv/05/23/26/scripture.tg b/scripture/kjv/05/23/26/scripture.tg new file mode 100644 index 00000000..ddb5b7f4 --- /dev/null +++ b/scripture/kjv/05/23/26/scripture.tg @@ -0,0 +1,4 @@ +Jude 1:3 +3 Beloved, when I gave all diligence to write unto you of the common salvation, it was needful for me to write unto you, and exhort you that ye should earnestly contend for the faith which was once delivered unto the saints. + +Saturday 23-May, 2026 diff --git a/scripture/kjv/05/23/26/scripture.tg.id b/scripture/kjv/05/23/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/23/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/23/26/scripture.today b/scripture/kjv/05/23/26/scripture.today new file mode 100644 index 00000000..e3a99a59 --- /dev/null +++ b/scripture/kjv/05/23/26/scripture.today @@ -0,0 +1 @@ +65 1:3 diff --git a/scripture/kjv/05/24/23/scripture.html b/scripture/kjv/05/24/23/scripture.html new file mode 100644 index 00000000..2ee0723e --- /dev/null +++ b/scripture/kjv/05/24/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 28:13
+13 He that covereth his sins shall not prosper: but whoso confesseth and forsaketh them shall have mercy.

+Wednesday 24-May, 2023 diff --git a/scripture/kjv/05/24/23/scripture.json b/scripture/kjv/05/24/23/scripture.json new file mode 100644 index 00000000..b45de9ef --- /dev/null +++ b/scripture/kjv/05/24/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Wednesday 24-May, 2023", + "name": "Proverbs 28:13", + "scripture": [ + { + "nr": "13", + "text": "He that covereth his sins shall not prosper: but whoso confesseth and forsaketh them shall have mercy." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/24/23/scripture.md b/scripture/kjv/05/24/23/scripture.md new file mode 100644 index 00000000..2448df1a --- /dev/null +++ b/scripture/kjv/05/24/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 28:13** + +13 He that covereth his sins shall not prosper: but whoso confesseth and forsaketh them shall have mercy. + +[Wednesday 24-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/24/23/scripture.tg b/scripture/kjv/05/24/23/scripture.tg new file mode 100644 index 00000000..5290962e --- /dev/null +++ b/scripture/kjv/05/24/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 28:13 +13 He that covereth his sins shall not prosper: but whoso confesseth and forsaketh them shall have mercy. + +Wednesday 24-May, 2023 diff --git a/scripture/kjv/05/24/23/scripture.tg.id b/scripture/kjv/05/24/23/scripture.tg.id new file mode 100644 index 00000000..1c0f77af --- /dev/null +++ b/scripture/kjv/05/24/23/scripture.tg.id @@ -0,0 +1 @@ +958 diff --git a/scripture/kjv/05/24/23/scripture.today b/scripture/kjv/05/24/23/scripture.today new file mode 100644 index 00000000..ee426676 --- /dev/null +++ b/scripture/kjv/05/24/23/scripture.today @@ -0,0 +1 @@ +20 28:13 diff --git a/scripture/kjv/05/24/24/scripture.html b/scripture/kjv/05/24/24/scripture.html new file mode 100644 index 00000000..b7c60034 --- /dev/null +++ b/scripture/kjv/05/24/24/scripture.html @@ -0,0 +1,3 @@ +Mark 15:28
+28 And the scripture was fulfilled, which saith, And he was numbered with the transgressors.

+Friday 24-May, 2024 diff --git a/scripture/kjv/05/24/24/scripture.json b/scripture/kjv/05/24/24/scripture.json new file mode 100644 index 00000000..1fa4eec8 --- /dev/null +++ b/scripture/kjv/05/24/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Mark", + "chapter": "15", + "date": "Friday 24-May, 2024", + "getbible": "https://getbible.life/kjv/Mark/15/28", + "name": "Mark 15:28", + "scripture": [ + { + "nr": "28", + "text": "And the scripture was fulfilled, which saith, And he was numbered with the transgressors." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "28", + "version": "kjv" +} diff --git a/scripture/kjv/05/24/24/scripture.md b/scripture/kjv/05/24/24/scripture.md new file mode 100644 index 00000000..f80ba3f0 --- /dev/null +++ b/scripture/kjv/05/24/24/scripture.md @@ -0,0 +1,5 @@ +**Mark 15:28** + +28 And the scripture was fulfilled, which saith, And he was numbered with the transgressors. + +[Friday 24-May, 2024](https://getbible.life/kjv/Mark/15/28) diff --git a/scripture/kjv/05/24/24/scripture.tg b/scripture/kjv/05/24/24/scripture.tg new file mode 100644 index 00000000..54338cae --- /dev/null +++ b/scripture/kjv/05/24/24/scripture.tg @@ -0,0 +1,4 @@ +Mark 15:28 +28 And the scripture was fulfilled, which saith, And he was numbered with the transgressors. + +Friday 24-May, 2024 diff --git a/scripture/kjv/05/24/24/scripture.tg.id b/scripture/kjv/05/24/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/24/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/24/24/scripture.today b/scripture/kjv/05/24/24/scripture.today new file mode 100644 index 00000000..ec09d4d0 --- /dev/null +++ b/scripture/kjv/05/24/24/scripture.today @@ -0,0 +1 @@ +41 15:28 diff --git a/scripture/kjv/05/24/25/scripture.html b/scripture/kjv/05/24/25/scripture.html new file mode 100644 index 00000000..f0e6df8d --- /dev/null +++ b/scripture/kjv/05/24/25/scripture.html @@ -0,0 +1,3 @@ +John 12:25
+25 He that loveth his life shall lose it; and he that hateth his life in this world shall keep it unto life eternal.

+Saturday 24-May, 2025 diff --git a/scripture/kjv/05/24/25/scripture.json b/scripture/kjv/05/24/25/scripture.json new file mode 100644 index 00000000..abfb32a4 --- /dev/null +++ b/scripture/kjv/05/24/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "12", + "date": "Saturday 24-May, 2025", + "getbible": "https://getbible.life/kjv/John/12/25", + "name": "John 12:25", + "scripture": [ + { + "nr": "25", + "text": "He that loveth his life shall lose it; and he that hateth his life in this world shall keep it unto life eternal." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "25", + "version": "kjv" +} diff --git a/scripture/kjv/05/24/25/scripture.md b/scripture/kjv/05/24/25/scripture.md new file mode 100644 index 00000000..4051a1d2 --- /dev/null +++ b/scripture/kjv/05/24/25/scripture.md @@ -0,0 +1,5 @@ +**John 12:25** + +25 He that loveth his life shall lose it; and he that hateth his life in this world shall keep it unto life eternal. + +[Saturday 24-May, 2025](https://getbible.life/kjv/John/12/25) diff --git a/scripture/kjv/05/24/25/scripture.tg b/scripture/kjv/05/24/25/scripture.tg new file mode 100644 index 00000000..abdcef8b --- /dev/null +++ b/scripture/kjv/05/24/25/scripture.tg @@ -0,0 +1,4 @@ +John 12:25 +25 He that loveth his life shall lose it; and he that hateth his life in this world shall keep it unto life eternal. + +Saturday 24-May, 2025 diff --git a/scripture/kjv/05/24/25/scripture.tg.id b/scripture/kjv/05/24/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/24/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/24/25/scripture.today b/scripture/kjv/05/24/25/scripture.today new file mode 100644 index 00000000..b54cf479 --- /dev/null +++ b/scripture/kjv/05/24/25/scripture.today @@ -0,0 +1 @@ +43 12:25 diff --git a/scripture/kjv/05/24/26/scripture.html b/scripture/kjv/05/24/26/scripture.html new file mode 100644 index 00000000..48fd50e0 --- /dev/null +++ b/scripture/kjv/05/24/26/scripture.html @@ -0,0 +1,3 @@ +Psalms 68:24-26
+24 They have seen thy goings, O God; even the goings of my God, my King, in the sanctuary. 25 The singers went before, the players on instruments followed after; among them were the damsels playing with timbrels. 26 Bless ye God in the congregations, even the Lord, from the fountain of Israel.

+Sunday 24-May, 2026 diff --git a/scripture/kjv/05/24/26/scripture.json b/scripture/kjv/05/24/26/scripture.json new file mode 100644 index 00000000..6bcba827 --- /dev/null +++ b/scripture/kjv/05/24/26/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Psalms", + "chapter": "68", + "date": "Sunday 24-May, 2026", + "getbible": "https://getbible.life/kjv/Psalms/68/24-26", + "name": "Psalms 68:24-26", + "scripture": [ + { + "nr": "24", + "text": "They have seen thy goings, O God; even the goings of my God, my King, in the sanctuary." + }, + { + "nr": "25", + "text": "The singers went before, the players on instruments followed after; among them were the damsels playing with timbrels." + }, + { + "nr": "26", + "text": "Bless ye God in the congregations, even the Lord, from the fountain of Israel." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "24-26", + "version": "kjv" +} diff --git a/scripture/kjv/05/24/26/scripture.md b/scripture/kjv/05/24/26/scripture.md new file mode 100644 index 00000000..96f6a0fa --- /dev/null +++ b/scripture/kjv/05/24/26/scripture.md @@ -0,0 +1,5 @@ +**Psalms 68:24-26** + +24 They have seen thy goings, O God; even the goings of my God, my King, in the sanctuary. 25 The singers went before, the players on instruments followed after; among them were the damsels playing with timbrels. 26 Bless ye God in the congregations, even the Lord, from the fountain of Israel. + +[Sunday 24-May, 2026](https://getbible.life/kjv/Psalms/68/24-26) diff --git a/scripture/kjv/05/24/26/scripture.tg b/scripture/kjv/05/24/26/scripture.tg new file mode 100644 index 00000000..586a4164 --- /dev/null +++ b/scripture/kjv/05/24/26/scripture.tg @@ -0,0 +1,4 @@ +Psalms 68:24-26 +24 They have seen thy goings, O God; even the goings of my God, my King, in the sanctuary. 25 The singers went before, the players on instruments followed after; among them were the damsels playing with timbrels. 26 Bless ye God in the congregations, even the Lord, from the fountain of Israel. + +Sunday 24-May, 2026 diff --git a/scripture/kjv/05/24/26/scripture.tg.id b/scripture/kjv/05/24/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/24/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/24/26/scripture.today b/scripture/kjv/05/24/26/scripture.today new file mode 100644 index 00000000..bc596eb1 --- /dev/null +++ b/scripture/kjv/05/24/26/scripture.today @@ -0,0 +1 @@ +19 68:24-26 diff --git a/scripture/kjv/05/25/23/scripture.html b/scripture/kjv/05/25/23/scripture.html new file mode 100644 index 00000000..22458eab --- /dev/null +++ b/scripture/kjv/05/25/23/scripture.html @@ -0,0 +1,3 @@ +Hebrews 11:6
+6 But without faith it is impossible to please him: for he that cometh to God must believe that he is, and that he is a rewarder of them that diligently seek him.

+Thursday 25-May, 2023 diff --git a/scripture/kjv/05/25/23/scripture.json b/scripture/kjv/05/25/23/scripture.json new file mode 100644 index 00000000..6e1d0396 --- /dev/null +++ b/scripture/kjv/05/25/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Thursday 25-May, 2023", + "name": "Hebrews 11:6", + "scripture": [ + { + "nr": "6", + "text": "But without faith it is impossible to please him: for he that cometh to God must believe that he is, and that he is a rewarder of them that diligently seek him." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/25/23/scripture.md b/scripture/kjv/05/25/23/scripture.md new file mode 100644 index 00000000..27937c72 --- /dev/null +++ b/scripture/kjv/05/25/23/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 11:6** + +6 But without faith it is impossible to please him: for he that cometh to God must believe that he is, and that he is a rewarder of them that diligently seek him. + +[Thursday 25-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/25/23/scripture.tg b/scripture/kjv/05/25/23/scripture.tg new file mode 100644 index 00000000..35f8dbc1 --- /dev/null +++ b/scripture/kjv/05/25/23/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 11:6 +6 But without faith it is impossible to please him: for he that cometh to God must believe that he is, and that he is a rewarder of them that diligently seek him. + +Thursday 25-May, 2023 diff --git a/scripture/kjv/05/25/23/scripture.tg.id b/scripture/kjv/05/25/23/scripture.tg.id new file mode 100644 index 00000000..3857e0ee --- /dev/null +++ b/scripture/kjv/05/25/23/scripture.tg.id @@ -0,0 +1 @@ +959 diff --git a/scripture/kjv/05/25/23/scripture.today b/scripture/kjv/05/25/23/scripture.today new file mode 100644 index 00000000..d82f55e5 --- /dev/null +++ b/scripture/kjv/05/25/23/scripture.today @@ -0,0 +1 @@ +58 11:6 diff --git a/scripture/kjv/05/25/24/scripture.html b/scripture/kjv/05/25/24/scripture.html new file mode 100644 index 00000000..9f64ab88 --- /dev/null +++ b/scripture/kjv/05/25/24/scripture.html @@ -0,0 +1,3 @@ +Job 5:26
+26 Thou shalt come to thy grave in a full age, like as a shock of corn cometh in in his season.

+Saturday 25-May, 2024 diff --git a/scripture/kjv/05/25/24/scripture.json b/scripture/kjv/05/25/24/scripture.json new file mode 100644 index 00000000..4cdd1619 --- /dev/null +++ b/scripture/kjv/05/25/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Job", + "chapter": "5", + "date": "Saturday 25-May, 2024", + "getbible": "https://getbible.life/kjv/Job/5/26", + "name": "Job 5:26", + "scripture": [ + { + "nr": "26", + "text": "Thou shalt come to thy grave in a full age, like as a shock of corn cometh in in his season." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "26", + "version": "kjv" +} diff --git a/scripture/kjv/05/25/24/scripture.md b/scripture/kjv/05/25/24/scripture.md new file mode 100644 index 00000000..96b6e44e --- /dev/null +++ b/scripture/kjv/05/25/24/scripture.md @@ -0,0 +1,5 @@ +**Job 5:26** + +26 Thou shalt come to thy grave in a full age, like as a shock of corn cometh in in his season. + +[Saturday 25-May, 2024](https://getbible.life/kjv/Job/5/26) diff --git a/scripture/kjv/05/25/24/scripture.tg b/scripture/kjv/05/25/24/scripture.tg new file mode 100644 index 00000000..757b141e --- /dev/null +++ b/scripture/kjv/05/25/24/scripture.tg @@ -0,0 +1,4 @@ +Job 5:26 +26 Thou shalt come to thy grave in a full age, like as a shock of corn cometh in in his season. + +Saturday 25-May, 2024 diff --git a/scripture/kjv/05/25/24/scripture.tg.id b/scripture/kjv/05/25/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/25/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/25/24/scripture.today b/scripture/kjv/05/25/24/scripture.today new file mode 100644 index 00000000..333d1ce1 --- /dev/null +++ b/scripture/kjv/05/25/24/scripture.today @@ -0,0 +1 @@ +18 5:26 diff --git a/scripture/kjv/05/25/25/scripture.html b/scripture/kjv/05/25/25/scripture.html new file mode 100644 index 00000000..0e7a04fa --- /dev/null +++ b/scripture/kjv/05/25/25/scripture.html @@ -0,0 +1,3 @@ +Revelation 3:2
+2 Be watchful, and strengthen the things which remain, that are ready to die: for I have not found thy works perfect before God.

+Sunday 25-May, 2025 diff --git a/scripture/kjv/05/25/25/scripture.json b/scripture/kjv/05/25/25/scripture.json new file mode 100644 index 00000000..498cd23d --- /dev/null +++ b/scripture/kjv/05/25/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Revelation", + "chapter": "3", + "date": "Sunday 25-May, 2025", + "getbible": "https://getbible.life/kjv/Revelation/3/2", + "name": "Revelation 3:2", + "scripture": [ + { + "nr": "2", + "text": "Be watchful, and strengthen the things which remain, that are ready to die: for I have not found thy works perfect before God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "2", + "version": "kjv" +} diff --git a/scripture/kjv/05/25/25/scripture.md b/scripture/kjv/05/25/25/scripture.md new file mode 100644 index 00000000..471dbff2 --- /dev/null +++ b/scripture/kjv/05/25/25/scripture.md @@ -0,0 +1,5 @@ +**Revelation 3:2** + +2 Be watchful, and strengthen the things which remain, that are ready to die: for I have not found thy works perfect before God. + +[Sunday 25-May, 2025](https://getbible.life/kjv/Revelation/3/2) diff --git a/scripture/kjv/05/25/25/scripture.tg b/scripture/kjv/05/25/25/scripture.tg new file mode 100644 index 00000000..5427dbd9 --- /dev/null +++ b/scripture/kjv/05/25/25/scripture.tg @@ -0,0 +1,4 @@ +Revelation 3:2 +2 Be watchful, and strengthen the things which remain, that are ready to die: for I have not found thy works perfect before God. + +Sunday 25-May, 2025 diff --git a/scripture/kjv/05/25/25/scripture.tg.id b/scripture/kjv/05/25/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/25/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/25/25/scripture.today b/scripture/kjv/05/25/25/scripture.today new file mode 100644 index 00000000..865dc2c6 --- /dev/null +++ b/scripture/kjv/05/25/25/scripture.today @@ -0,0 +1 @@ +66 3:2 diff --git a/scripture/kjv/05/25/26/scripture.html b/scripture/kjv/05/25/26/scripture.html new file mode 100644 index 00000000..24d630bd --- /dev/null +++ b/scripture/kjv/05/25/26/scripture.html @@ -0,0 +1,3 @@ +Matthew 12:35-37
+35 A good man out of the good treasure of the heart bringeth forth good things: and an evil man out of the evil treasure bringeth forth evil things. 36 But I say unto you, That every idle word that men shall speak, they shall give account thereof in the day of judgment. 37 For by thy words thou shalt be justified, and by thy words thou shalt be condemned.

+Monday 25-May, 2026 diff --git a/scripture/kjv/05/25/26/scripture.json b/scripture/kjv/05/25/26/scripture.json new file mode 100644 index 00000000..617bad63 --- /dev/null +++ b/scripture/kjv/05/25/26/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Matthew", + "chapter": "12", + "date": "Monday 25-May, 2026", + "getbible": "https://getbible.life/kjv/Matthew/12/35-37", + "name": "Matthew 12:35-37", + "scripture": [ + { + "nr": "35", + "text": "A good man out of the good treasure of the heart bringeth forth good things: and an evil man out of the evil treasure bringeth forth evil things." + }, + { + "nr": "36", + "text": "But I say unto you, That every idle word that men shall speak, they shall give account thereof in the day of judgment." + }, + { + "nr": "37", + "text": "For by thy words thou shalt be justified, and by thy words thou shalt be condemned." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "35-37", + "version": "kjv" +} diff --git a/scripture/kjv/05/25/26/scripture.md b/scripture/kjv/05/25/26/scripture.md new file mode 100644 index 00000000..d8fa25e9 --- /dev/null +++ b/scripture/kjv/05/25/26/scripture.md @@ -0,0 +1,5 @@ +**Matthew 12:35-37** + +35 A good man out of the good treasure of the heart bringeth forth good things: and an evil man out of the evil treasure bringeth forth evil things. 36 But I say unto you, That every idle word that men shall speak, they shall give account thereof in the day of judgment. 37 For by thy words thou shalt be justified, and by thy words thou shalt be condemned. + +[Monday 25-May, 2026](https://getbible.life/kjv/Matthew/12/35-37) diff --git a/scripture/kjv/05/25/26/scripture.tg b/scripture/kjv/05/25/26/scripture.tg new file mode 100644 index 00000000..2ae85ab1 --- /dev/null +++ b/scripture/kjv/05/25/26/scripture.tg @@ -0,0 +1,4 @@ +Matthew 12:35-37 +35 A good man out of the good treasure of the heart bringeth forth good things: and an evil man out of the evil treasure bringeth forth evil things. 36 But I say unto you, That every idle word that men shall speak, they shall give account thereof in the day of judgment. 37 For by thy words thou shalt be justified, and by thy words thou shalt be condemned. + +Monday 25-May, 2026 diff --git a/scripture/kjv/05/25/26/scripture.tg.id b/scripture/kjv/05/25/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/25/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/25/26/scripture.today b/scripture/kjv/05/25/26/scripture.today new file mode 100644 index 00000000..361c92a9 --- /dev/null +++ b/scripture/kjv/05/25/26/scripture.today @@ -0,0 +1 @@ +40 12:35-37 diff --git a/scripture/kjv/05/26/23/scripture.html b/scripture/kjv/05/26/23/scripture.html new file mode 100644 index 00000000..9266cb01 --- /dev/null +++ b/scripture/kjv/05/26/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 50:20-22
+20 Thou sittest and speakest against thy brother; thou slanderest thine own mother’s son. 21 These things hast thou done, and I kept silence; thou thoughtest that I was altogether such an one as thyself: but I will reprove thee, and set them in order before thine eyes. 22 Now consider this, ye that forget God, lest I tear you in pieces, and there be none to deliver.

+Friday 26-May, 2023 diff --git a/scripture/kjv/05/26/23/scripture.json b/scripture/kjv/05/26/23/scripture.json new file mode 100644 index 00000000..4e8a0945 --- /dev/null +++ b/scripture/kjv/05/26/23/scripture.json @@ -0,0 +1,21 @@ +{ + "date": "Friday 26-May, 2023", + "name": "Psalms 50:20-22", + "scripture": [ + { + "nr": "20", + "text": "Thou sittest and speakest against thy brother; thou slanderest thine own mother’s son." + }, + { + "nr": "21", + "text": "These things hast thou done, and I kept silence; thou thoughtest that I was altogether such an one as thyself: but I will reprove thee, and set them in order before thine eyes." + }, + { + "nr": "22", + "text": "Now consider this, ye that forget God, lest I tear you in pieces, and there be none to deliver." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/26/23/scripture.md b/scripture/kjv/05/26/23/scripture.md new file mode 100644 index 00000000..265c9b7b --- /dev/null +++ b/scripture/kjv/05/26/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 50:20-22** + +20 Thou sittest and speakest against thy brother; thou slanderest thine own mother’s son. 21 These things hast thou done, and I kept silence; thou thoughtest that I was altogether such an one as thyself: but I will reprove thee, and set them in order before thine eyes. 22 Now consider this, ye that forget God, lest I tear you in pieces, and there be none to deliver. + +[Friday 26-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/26/23/scripture.tg b/scripture/kjv/05/26/23/scripture.tg new file mode 100644 index 00000000..f1e9e8d7 --- /dev/null +++ b/scripture/kjv/05/26/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 50:20-22 +20 Thou sittest and speakest against thy brother; thou slanderest thine own mother’s son. 21 These things hast thou done, and I kept silence; thou thoughtest that I was altogether such an one as thyself: but I will reprove thee, and set them in order before thine eyes. 22 Now consider this, ye that forget God, lest I tear you in pieces, and there be none to deliver. + +Friday 26-May, 2023 diff --git a/scripture/kjv/05/26/23/scripture.tg.id b/scripture/kjv/05/26/23/scripture.tg.id new file mode 100644 index 00000000..6edead7c --- /dev/null +++ b/scripture/kjv/05/26/23/scripture.tg.id @@ -0,0 +1 @@ +960 diff --git a/scripture/kjv/05/26/23/scripture.today b/scripture/kjv/05/26/23/scripture.today new file mode 100644 index 00000000..eeeefe7e --- /dev/null +++ b/scripture/kjv/05/26/23/scripture.today @@ -0,0 +1 @@ +19 50:20-22 diff --git a/scripture/kjv/05/26/24/scripture.html b/scripture/kjv/05/26/24/scripture.html new file mode 100644 index 00000000..e06e2e8f --- /dev/null +++ b/scripture/kjv/05/26/24/scripture.html @@ -0,0 +1,3 @@ +Galatians 1:24
+24 And they glorified God in me.

+Sunday 26-May, 2024 diff --git a/scripture/kjv/05/26/24/scripture.json b/scripture/kjv/05/26/24/scripture.json new file mode 100644 index 00000000..a0c54524 --- /dev/null +++ b/scripture/kjv/05/26/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Galatians", + "chapter": "1", + "date": "Sunday 26-May, 2024", + "getbible": "https://getbible.life/kjv/Galatians/1/24", + "name": "Galatians 1:24", + "scripture": [ + { + "nr": "24", + "text": "And they glorified God in me. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "24", + "version": "kjv" +} diff --git a/scripture/kjv/05/26/24/scripture.md b/scripture/kjv/05/26/24/scripture.md new file mode 100644 index 00000000..50fa769d --- /dev/null +++ b/scripture/kjv/05/26/24/scripture.md @@ -0,0 +1,5 @@ +**Galatians 1:24** + +24 And they glorified God in me. + +[Sunday 26-May, 2024](https://getbible.life/kjv/Galatians/1/24) diff --git a/scripture/kjv/05/26/24/scripture.tg b/scripture/kjv/05/26/24/scripture.tg new file mode 100644 index 00000000..85009a21 --- /dev/null +++ b/scripture/kjv/05/26/24/scripture.tg @@ -0,0 +1,4 @@ +Galatians 1:24 +24 And they glorified God in me. + +Sunday 26-May, 2024 diff --git a/scripture/kjv/05/26/24/scripture.tg.id b/scripture/kjv/05/26/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/26/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/26/24/scripture.today b/scripture/kjv/05/26/24/scripture.today new file mode 100644 index 00000000..09634a52 --- /dev/null +++ b/scripture/kjv/05/26/24/scripture.today @@ -0,0 +1 @@ +48 1:24 diff --git a/scripture/kjv/05/26/25/scripture.html b/scripture/kjv/05/26/25/scripture.html new file mode 100644 index 00000000..798b0093 --- /dev/null +++ b/scripture/kjv/05/26/25/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 15:51-54
+51 Behold, I shew you a mystery; We shall not all sleep, but we shall all be changed, 52 In a moment, in the twinkling of an eye, at the last trump: for the trumpet shall sound, and the dead shall be raised incorruptible, and we shall be changed. 53 For this corruptible must put on incorruption, and this mortal must put on immortality. 54 So when this corruptible shall have put on incorruption, and this mortal shall have put on immortality, then shall be brought to pass the saying that is written, Death is swallowed up in victory.

+Monday 26-May, 2025 diff --git a/scripture/kjv/05/26/25/scripture.json b/scripture/kjv/05/26/25/scripture.json new file mode 100644 index 00000000..cf4441d1 --- /dev/null +++ b/scripture/kjv/05/26/25/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "1 Corinthians", + "chapter": "15", + "date": "Monday 26-May, 2025", + "getbible": "https://getbible.life/kjv/1 Corinthians/15/51-54", + "name": "1 Corinthians 15:51-54", + "scripture": [ + { + "nr": "51", + "text": "Behold, I shew you a mystery; We shall not all sleep, but we shall all be changed," + }, + { + "nr": "52", + "text": "In a moment, in the twinkling of an eye, at the last trump: for the trumpet shall sound, and the dead shall be raised incorruptible, and we shall be changed." + }, + { + "nr": "53", + "text": "For this corruptible must put on incorruption, and this mortal must put on immortality." + }, + { + "nr": "54", + "text": "So when this corruptible shall have put on incorruption, and this mortal shall have put on immortality, then shall be brought to pass the saying that is written, Death is swallowed up in victory." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "51-54", + "version": "kjv" +} diff --git a/scripture/kjv/05/26/25/scripture.md b/scripture/kjv/05/26/25/scripture.md new file mode 100644 index 00000000..48dceaa3 --- /dev/null +++ b/scripture/kjv/05/26/25/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 15:51-54** + +51 Behold, I shew you a mystery; We shall not all sleep, but we shall all be changed, 52 In a moment, in the twinkling of an eye, at the last trump: for the trumpet shall sound, and the dead shall be raised incorruptible, and we shall be changed. 53 For this corruptible must put on incorruption, and this mortal must put on immortality. 54 So when this corruptible shall have put on incorruption, and this mortal shall have put on immortality, then shall be brought to pass the saying that is written, Death is swallowed up in victory. + +[Monday 26-May, 2025](https://getbible.life/kjv/1 Corinthians/15/51-54) diff --git a/scripture/kjv/05/26/25/scripture.tg b/scripture/kjv/05/26/25/scripture.tg new file mode 100644 index 00000000..9da17c72 --- /dev/null +++ b/scripture/kjv/05/26/25/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 15:51-54 +51 Behold, I shew you a mystery; We shall not all sleep, but we shall all be changed, 52 In a moment, in the twinkling of an eye, at the last trump: for the trumpet shall sound, and the dead shall be raised incorruptible, and we shall be changed. 53 For this corruptible must put on incorruption, and this mortal must put on immortality. 54 So when this corruptible shall have put on incorruption, and this mortal shall have put on immortality, then shall be brought to pass the saying that is written, Death is swallowed up in victory. + +Monday 26-May, 2025 diff --git a/scripture/kjv/05/26/25/scripture.tg.id b/scripture/kjv/05/26/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/26/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/26/25/scripture.today b/scripture/kjv/05/26/25/scripture.today new file mode 100644 index 00000000..ba29d076 --- /dev/null +++ b/scripture/kjv/05/26/25/scripture.today @@ -0,0 +1 @@ +46 15:51-54 diff --git a/scripture/kjv/05/26/26/scripture.html b/scripture/kjv/05/26/26/scripture.html new file mode 100644 index 00000000..4bfd0e57 --- /dev/null +++ b/scripture/kjv/05/26/26/scripture.html @@ -0,0 +1,3 @@ +John 15:12
+12 This is my commandment, That ye love one another, as I have loved you.

+Tuesday 26-May, 2026 diff --git a/scripture/kjv/05/26/26/scripture.json b/scripture/kjv/05/26/26/scripture.json new file mode 100644 index 00000000..0474b284 --- /dev/null +++ b/scripture/kjv/05/26/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "15", + "date": "Tuesday 26-May, 2026", + "getbible": "https://getbible.life/kjv/John/15/12", + "name": "John 15:12", + "scripture": [ + { + "nr": "12", + "text": "This is my commandment, That ye love one another, as I have loved you." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/05/26/26/scripture.md b/scripture/kjv/05/26/26/scripture.md new file mode 100644 index 00000000..3357bf2b --- /dev/null +++ b/scripture/kjv/05/26/26/scripture.md @@ -0,0 +1,5 @@ +**John 15:12** + +12 This is my commandment, That ye love one another, as I have loved you. + +[Tuesday 26-May, 2026](https://getbible.life/kjv/John/15/12) diff --git a/scripture/kjv/05/26/26/scripture.tg b/scripture/kjv/05/26/26/scripture.tg new file mode 100644 index 00000000..246d99dd --- /dev/null +++ b/scripture/kjv/05/26/26/scripture.tg @@ -0,0 +1,4 @@ +John 15:12 +12 This is my commandment, That ye love one another, as I have loved you. + +Tuesday 26-May, 2026 diff --git a/scripture/kjv/05/26/26/scripture.tg.id b/scripture/kjv/05/26/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/26/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/26/26/scripture.today b/scripture/kjv/05/26/26/scripture.today new file mode 100644 index 00000000..5b5c57cd --- /dev/null +++ b/scripture/kjv/05/26/26/scripture.today @@ -0,0 +1 @@ +43 15:12 diff --git a/scripture/kjv/05/27/23/scripture.html b/scripture/kjv/05/27/23/scripture.html new file mode 100644 index 00000000..e6f0285b --- /dev/null +++ b/scripture/kjv/05/27/23/scripture.html @@ -0,0 +1,3 @@ +Luke 17:26-30
+26 And as it was in the days of Noe, so shall it be also in the days of the Son of man. 27 They did eat, they drank, they married wives, they were given in marriage, until the day that Noe entered into the ark, and the flood came, and destroyed them all. 28 Likewise also as it was in the days of Lot; they did eat, they drank, they bought, they sold, they planted, they builded; 29 But the same day that Lot went out of Sodom it rained fire and brimstone from heaven, and destroyed them all. 30 Even thus shall it be in the day when the Son of man is revealed.

+Saturday 27-May, 2023 diff --git a/scripture/kjv/05/27/23/scripture.json b/scripture/kjv/05/27/23/scripture.json new file mode 100644 index 00000000..26c4f4a0 --- /dev/null +++ b/scripture/kjv/05/27/23/scripture.json @@ -0,0 +1,29 @@ +{ + "date": "Saturday 27-May, 2023", + "name": "Luke 17:26-30", + "scripture": [ + { + "nr": "26", + "text": "And as it was in the days of Noe, so shall it be also in the days of the Son of man." + }, + { + "nr": "27", + "text": "They did eat, they drank, they married wives, they were given in marriage, until the day that Noe entered into the ark, and the flood came, and destroyed them all." + }, + { + "nr": "28", + "text": "Likewise also as it was in the days of Lot; they did eat, they drank, they bought, they sold, they planted, they builded;" + }, + { + "nr": "29", + "text": "But the same day that Lot went out of Sodom it rained fire and brimstone from heaven, and destroyed them all." + }, + { + "nr": "30", + "text": "Even thus shall it be in the day when the Son of man is revealed." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/27/23/scripture.md b/scripture/kjv/05/27/23/scripture.md new file mode 100644 index 00000000..21738e92 --- /dev/null +++ b/scripture/kjv/05/27/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 17:26-30** + +26 And as it was in the days of Noe, so shall it be also in the days of the Son of man. 27 They did eat, they drank, they married wives, they were given in marriage, until the day that Noe entered into the ark, and the flood came, and destroyed them all. 28 Likewise also as it was in the days of Lot; they did eat, they drank, they bought, they sold, they planted, they builded; 29 But the same day that Lot went out of Sodom it rained fire and brimstone from heaven, and destroyed them all. 30 Even thus shall it be in the day when the Son of man is revealed. + +[Saturday 27-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/27/23/scripture.tg b/scripture/kjv/05/27/23/scripture.tg new file mode 100644 index 00000000..e3838168 --- /dev/null +++ b/scripture/kjv/05/27/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 17:26-30 +26 And as it was in the days of Noe, so shall it be also in the days of the Son of man. 27 They did eat, they drank, they married wives, they were given in marriage, until the day that Noe entered into the ark, and the flood came, and destroyed them all. 28 Likewise also as it was in the days of Lot; they did eat, they drank, they bought, they sold, they planted, they builded; 29 But the same day that Lot went out of Sodom it rained fire and brimstone from heaven, and destroyed them all. 30 Even thus shall it be in the day when the Son of man is revealed. + +Saturday 27-May, 2023 diff --git a/scripture/kjv/05/27/23/scripture.tg.id b/scripture/kjv/05/27/23/scripture.tg.id new file mode 100644 index 00000000..612eb51c --- /dev/null +++ b/scripture/kjv/05/27/23/scripture.tg.id @@ -0,0 +1 @@ +961 diff --git a/scripture/kjv/05/27/23/scripture.today b/scripture/kjv/05/27/23/scripture.today new file mode 100644 index 00000000..1ed3b360 --- /dev/null +++ b/scripture/kjv/05/27/23/scripture.today @@ -0,0 +1 @@ +42 17:26-30 diff --git a/scripture/kjv/05/27/24/scripture.html b/scripture/kjv/05/27/24/scripture.html new file mode 100644 index 00000000..352785ed --- /dev/null +++ b/scripture/kjv/05/27/24/scripture.html @@ -0,0 +1,3 @@ +Daniel 5:20
+20 But when his heart was lifted up, and his mind hardened in pride, he was deposed from his kingly throne, and they took his glory from him:

+Monday 27-May, 2024 diff --git a/scripture/kjv/05/27/24/scripture.json b/scripture/kjv/05/27/24/scripture.json new file mode 100644 index 00000000..b40545b4 --- /dev/null +++ b/scripture/kjv/05/27/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Daniel", + "chapter": "5", + "date": "Monday 27-May, 2024", + "getbible": "https://getbible.life/kjv/Daniel/5/20", + "name": "Daniel 5:20", + "scripture": [ + { + "nr": "20", + "text": "But when his heart was lifted up, and his mind hardened in pride, he was deposed from his kingly throne, and they took his glory from him:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20", + "version": "kjv" +} diff --git a/scripture/kjv/05/27/24/scripture.md b/scripture/kjv/05/27/24/scripture.md new file mode 100644 index 00000000..c6f32f76 --- /dev/null +++ b/scripture/kjv/05/27/24/scripture.md @@ -0,0 +1,5 @@ +**Daniel 5:20** + +20 But when his heart was lifted up, and his mind hardened in pride, he was deposed from his kingly throne, and they took his glory from him: + +[Monday 27-May, 2024](https://getbible.life/kjv/Daniel/5/20) diff --git a/scripture/kjv/05/27/24/scripture.tg b/scripture/kjv/05/27/24/scripture.tg new file mode 100644 index 00000000..ab3dbde6 --- /dev/null +++ b/scripture/kjv/05/27/24/scripture.tg @@ -0,0 +1,4 @@ +Daniel 5:20 +20 But when his heart was lifted up, and his mind hardened in pride, he was deposed from his kingly throne, and they took his glory from him: + +Monday 27-May, 2024 diff --git a/scripture/kjv/05/27/24/scripture.tg.id b/scripture/kjv/05/27/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/27/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/27/24/scripture.today b/scripture/kjv/05/27/24/scripture.today new file mode 100644 index 00000000..dc152fb4 --- /dev/null +++ b/scripture/kjv/05/27/24/scripture.today @@ -0,0 +1 @@ +27 5:20 diff --git a/scripture/kjv/05/27/25/scripture.html b/scripture/kjv/05/27/25/scripture.html new file mode 100644 index 00000000..b37c55e7 --- /dev/null +++ b/scripture/kjv/05/27/25/scripture.html @@ -0,0 +1,3 @@ +Philippians 4:23
+23 The grace of our Lord Jesus Christ be with you all. Amen. It was written to the Philippians from Rome by Epaphroditus.

+Tuesday 27-May, 2025 diff --git a/scripture/kjv/05/27/25/scripture.json b/scripture/kjv/05/27/25/scripture.json new file mode 100644 index 00000000..ee8f1981 --- /dev/null +++ b/scripture/kjv/05/27/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Philippians", + "chapter": "4", + "date": "Tuesday 27-May, 2025", + "getbible": "https://getbible.life/kjv/Philippians/4/23", + "name": "Philippians 4:23", + "scripture": [ + { + "nr": "23", + "text": "The grace of our Lord Jesus Christ be with you all. Amen. It was written to the Philippians from Rome by Epaphroditus. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "23", + "version": "kjv" +} diff --git a/scripture/kjv/05/27/25/scripture.md b/scripture/kjv/05/27/25/scripture.md new file mode 100644 index 00000000..6e9815ac --- /dev/null +++ b/scripture/kjv/05/27/25/scripture.md @@ -0,0 +1,5 @@ +**Philippians 4:23** + +23 The grace of our Lord Jesus Christ be with you all. Amen. It was written to the Philippians from Rome by Epaphroditus. + +[Tuesday 27-May, 2025](https://getbible.life/kjv/Philippians/4/23) diff --git a/scripture/kjv/05/27/25/scripture.tg b/scripture/kjv/05/27/25/scripture.tg new file mode 100644 index 00000000..e56ab751 --- /dev/null +++ b/scripture/kjv/05/27/25/scripture.tg @@ -0,0 +1,4 @@ +Philippians 4:23 +23 The grace of our Lord Jesus Christ be with you all. Amen. It was written to the Philippians from Rome by Epaphroditus. + +Tuesday 27-May, 2025 diff --git a/scripture/kjv/05/27/25/scripture.tg.id b/scripture/kjv/05/27/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/27/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/27/25/scripture.today b/scripture/kjv/05/27/25/scripture.today new file mode 100644 index 00000000..507ad5be --- /dev/null +++ b/scripture/kjv/05/27/25/scripture.today @@ -0,0 +1 @@ +50 4:23 diff --git a/scripture/kjv/05/27/26/scripture.html b/scripture/kjv/05/27/26/scripture.html new file mode 100644 index 00000000..0f3935b8 --- /dev/null +++ b/scripture/kjv/05/27/26/scripture.html @@ -0,0 +1,3 @@ +Mark 12:10-11
+10 And have ye not read this scripture; The stone which the builders rejected is become the head of the corner: 11 This was the Lord’s doing, and it is marvellous in our eyes?

+Wednesday 27-May, 2026 diff --git a/scripture/kjv/05/27/26/scripture.json b/scripture/kjv/05/27/26/scripture.json new file mode 100644 index 00000000..21a669a6 --- /dev/null +++ b/scripture/kjv/05/27/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Mark", + "chapter": "12", + "date": "Wednesday 27-May, 2026", + "getbible": "https://getbible.life/kjv/Mark/12/10-11", + "name": "Mark 12:10-11", + "scripture": [ + { + "nr": "10", + "text": "And have ye not read this scripture; The stone which the builders rejected is become the head of the corner:" + }, + { + "nr": "11", + "text": "This was the Lord’s doing, and it is marvellous in our eyes?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10-11", + "version": "kjv" +} diff --git a/scripture/kjv/05/27/26/scripture.md b/scripture/kjv/05/27/26/scripture.md new file mode 100644 index 00000000..00b5c2fd --- /dev/null +++ b/scripture/kjv/05/27/26/scripture.md @@ -0,0 +1,5 @@ +**Mark 12:10-11** + +10 And have ye not read this scripture; The stone which the builders rejected is become the head of the corner: 11 This was the Lord’s doing, and it is marvellous in our eyes? + +[Wednesday 27-May, 2026](https://getbible.life/kjv/Mark/12/10-11) diff --git a/scripture/kjv/05/27/26/scripture.tg b/scripture/kjv/05/27/26/scripture.tg new file mode 100644 index 00000000..30410314 --- /dev/null +++ b/scripture/kjv/05/27/26/scripture.tg @@ -0,0 +1,4 @@ +Mark 12:10-11 +10 And have ye not read this scripture; The stone which the builders rejected is become the head of the corner: 11 This was the Lord’s doing, and it is marvellous in our eyes? + +Wednesday 27-May, 2026 diff --git a/scripture/kjv/05/27/26/scripture.tg.id b/scripture/kjv/05/27/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/27/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/27/26/scripture.today b/scripture/kjv/05/27/26/scripture.today new file mode 100644 index 00000000..e77998ef --- /dev/null +++ b/scripture/kjv/05/27/26/scripture.today @@ -0,0 +1 @@ +41 12:10-11 diff --git a/scripture/kjv/05/28/23/scripture.html b/scripture/kjv/05/28/23/scripture.html new file mode 100644 index 00000000..cd348e5f --- /dev/null +++ b/scripture/kjv/05/28/23/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 16:2
+2 Upon the first day of the week let every one of you lay by him in store, as God hath prospered him, that there be no gatherings when I come.

+Sunday 28-May, 2023 diff --git a/scripture/kjv/05/28/23/scripture.json b/scripture/kjv/05/28/23/scripture.json new file mode 100644 index 00000000..de66f17a --- /dev/null +++ b/scripture/kjv/05/28/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Sunday 28-May, 2023", + "name": "1 Corinthians 16:2", + "scripture": [ + { + "nr": "2", + "text": "Upon the first day of the week let every one of you lay by him in store, as God hath prospered him, that there be no gatherings when I come." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/28/23/scripture.md b/scripture/kjv/05/28/23/scripture.md new file mode 100644 index 00000000..364368c5 --- /dev/null +++ b/scripture/kjv/05/28/23/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 16:2** + +2 Upon the first day of the week let every one of you lay by him in store, as God hath prospered him, that there be no gatherings when I come. + +[Sunday 28-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/28/23/scripture.tg b/scripture/kjv/05/28/23/scripture.tg new file mode 100644 index 00000000..e9f7d0e5 --- /dev/null +++ b/scripture/kjv/05/28/23/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 16:2 +2 Upon the first day of the week let every one of you lay by him in store, as God hath prospered him, that there be no gatherings when I come. + +Sunday 28-May, 2023 diff --git a/scripture/kjv/05/28/23/scripture.tg.id b/scripture/kjv/05/28/23/scripture.tg.id new file mode 100644 index 00000000..754d8e03 --- /dev/null +++ b/scripture/kjv/05/28/23/scripture.tg.id @@ -0,0 +1 @@ +962 diff --git a/scripture/kjv/05/28/23/scripture.today b/scripture/kjv/05/28/23/scripture.today new file mode 100644 index 00000000..7303b308 --- /dev/null +++ b/scripture/kjv/05/28/23/scripture.today @@ -0,0 +1 @@ +46 16:2 diff --git a/scripture/kjv/05/28/24/scripture.html b/scripture/kjv/05/28/24/scripture.html new file mode 100644 index 00000000..ae09a8fb --- /dev/null +++ b/scripture/kjv/05/28/24/scripture.html @@ -0,0 +1,3 @@ +John 18:20
+20 Jesus answered him, I spake openly to the world; I ever taught in the synagogue, and in the temple, whither the Jews always resort; and in secret have I said nothing.

+Tuesday 28-May, 2024 diff --git a/scripture/kjv/05/28/24/scripture.json b/scripture/kjv/05/28/24/scripture.json new file mode 100644 index 00000000..b54bd21a --- /dev/null +++ b/scripture/kjv/05/28/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "18", + "date": "Tuesday 28-May, 2024", + "getbible": "https://getbible.life/kjv/John/18/20", + "name": "John 18:20", + "scripture": [ + { + "nr": "20", + "text": "Jesus answered him, I spake openly to the world; I ever taught in the synagogue, and in the temple, whither the Jews always resort; and in secret have I said nothing." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20", + "version": "kjv" +} diff --git a/scripture/kjv/05/28/24/scripture.md b/scripture/kjv/05/28/24/scripture.md new file mode 100644 index 00000000..6406aaa5 --- /dev/null +++ b/scripture/kjv/05/28/24/scripture.md @@ -0,0 +1,5 @@ +**John 18:20** + +20 Jesus answered him, I spake openly to the world; I ever taught in the synagogue, and in the temple, whither the Jews always resort; and in secret have I said nothing. + +[Tuesday 28-May, 2024](https://getbible.life/kjv/John/18/20) diff --git a/scripture/kjv/05/28/24/scripture.tg b/scripture/kjv/05/28/24/scripture.tg new file mode 100644 index 00000000..62c1dc21 --- /dev/null +++ b/scripture/kjv/05/28/24/scripture.tg @@ -0,0 +1,4 @@ +John 18:20 +20 Jesus answered him, I spake openly to the world; I ever taught in the synagogue, and in the temple, whither the Jews always resort; and in secret have I said nothing. + +Tuesday 28-May, 2024 diff --git a/scripture/kjv/05/28/24/scripture.tg.id b/scripture/kjv/05/28/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/28/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/28/24/scripture.today b/scripture/kjv/05/28/24/scripture.today new file mode 100644 index 00000000..f4ebe0fd --- /dev/null +++ b/scripture/kjv/05/28/24/scripture.today @@ -0,0 +1 @@ +43 18:20 diff --git a/scripture/kjv/05/28/25/scripture.html b/scripture/kjv/05/28/25/scripture.html new file mode 100644 index 00000000..86a609fe --- /dev/null +++ b/scripture/kjv/05/28/25/scripture.html @@ -0,0 +1,3 @@ +Revelation 6:15-17
+15 And the kings of the earth, and the great men, and the rich men, and the chief captains, and the mighty men, and every bondman, and every free man, hid themselves in the dens and in the rocks of the mountains; 16 And said to the mountains and rocks, Fall on us, and hide us from the face of him that sitteth on the throne, and from the wrath of the Lamb: 17 For the great day of his wrath is come; and who shall be able to stand?

+Wednesday 28-May, 2025 diff --git a/scripture/kjv/05/28/25/scripture.json b/scripture/kjv/05/28/25/scripture.json new file mode 100644 index 00000000..9d0aaa43 --- /dev/null +++ b/scripture/kjv/05/28/25/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Revelation", + "chapter": "6", + "date": "Wednesday 28-May, 2025", + "getbible": "https://getbible.life/kjv/Revelation/6/15-17", + "name": "Revelation 6:15-17", + "scripture": [ + { + "nr": "15", + "text": "And the kings of the earth, and the great men, and the rich men, and the chief captains, and the mighty men, and every bondman, and every free man, hid themselves in the dens and in the rocks of the mountains;" + }, + { + "nr": "16", + "text": "And said to the mountains and rocks, Fall on us, and hide us from the face of him that sitteth on the throne, and from the wrath of the Lamb:" + }, + { + "nr": "17", + "text": "For the great day of his wrath is come; and who shall be able to stand? " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15-17", + "version": "kjv" +} diff --git a/scripture/kjv/05/28/25/scripture.md b/scripture/kjv/05/28/25/scripture.md new file mode 100644 index 00000000..ecc54988 --- /dev/null +++ b/scripture/kjv/05/28/25/scripture.md @@ -0,0 +1,5 @@ +**Revelation 6:15-17** + +15 And the kings of the earth, and the great men, and the rich men, and the chief captains, and the mighty men, and every bondman, and every free man, hid themselves in the dens and in the rocks of the mountains; 16 And said to the mountains and rocks, Fall on us, and hide us from the face of him that sitteth on the throne, and from the wrath of the Lamb: 17 For the great day of his wrath is come; and who shall be able to stand? + +[Wednesday 28-May, 2025](https://getbible.life/kjv/Revelation/6/15-17) diff --git a/scripture/kjv/05/28/25/scripture.tg b/scripture/kjv/05/28/25/scripture.tg new file mode 100644 index 00000000..55a014e3 --- /dev/null +++ b/scripture/kjv/05/28/25/scripture.tg @@ -0,0 +1,4 @@ +Revelation 6:15-17 +15 And the kings of the earth, and the great men, and the rich men, and the chief captains, and the mighty men, and every bondman, and every free man, hid themselves in the dens and in the rocks of the mountains; 16 And said to the mountains and rocks, Fall on us, and hide us from the face of him that sitteth on the throne, and from the wrath of the Lamb: 17 For the great day of his wrath is come; and who shall be able to stand? + +Wednesday 28-May, 2025 diff --git a/scripture/kjv/05/28/25/scripture.tg.id b/scripture/kjv/05/28/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/28/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/28/25/scripture.today b/scripture/kjv/05/28/25/scripture.today new file mode 100644 index 00000000..92936941 --- /dev/null +++ b/scripture/kjv/05/28/25/scripture.today @@ -0,0 +1 @@ +66 6:15-17 diff --git a/scripture/kjv/05/28/26/scripture.html b/scripture/kjv/05/28/26/scripture.html new file mode 100644 index 00000000..5041d9cf --- /dev/null +++ b/scripture/kjv/05/28/26/scripture.html @@ -0,0 +1,3 @@ +Luke 24:53
+53 And were continually in the temple, praising and blessing God. Amen.

+Thursday 28-May, 2026 diff --git a/scripture/kjv/05/28/26/scripture.json b/scripture/kjv/05/28/26/scripture.json new file mode 100644 index 00000000..4573a245 --- /dev/null +++ b/scripture/kjv/05/28/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "24", + "date": "Thursday 28-May, 2026", + "getbible": "https://getbible.life/kjv/Luke/24/53", + "name": "Luke 24:53", + "scripture": [ + { + "nr": "53", + "text": "And were continually in the temple, praising and blessing God. Amen. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "53", + "version": "kjv" +} diff --git a/scripture/kjv/05/28/26/scripture.md b/scripture/kjv/05/28/26/scripture.md new file mode 100644 index 00000000..59924fbf --- /dev/null +++ b/scripture/kjv/05/28/26/scripture.md @@ -0,0 +1,5 @@ +**Luke 24:53** + +53 And were continually in the temple, praising and blessing God. Amen. + +[Thursday 28-May, 2026](https://getbible.life/kjv/Luke/24/53) diff --git a/scripture/kjv/05/28/26/scripture.tg b/scripture/kjv/05/28/26/scripture.tg new file mode 100644 index 00000000..bf9a0e10 --- /dev/null +++ b/scripture/kjv/05/28/26/scripture.tg @@ -0,0 +1,4 @@ +Luke 24:53 +53 And were continually in the temple, praising and blessing God. Amen. + +Thursday 28-May, 2026 diff --git a/scripture/kjv/05/28/26/scripture.tg.id b/scripture/kjv/05/28/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/28/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/28/26/scripture.today b/scripture/kjv/05/28/26/scripture.today new file mode 100644 index 00000000..6adc873e --- /dev/null +++ b/scripture/kjv/05/28/26/scripture.today @@ -0,0 +1 @@ +42 24:53 diff --git a/scripture/kjv/05/29/23/scripture.html b/scripture/kjv/05/29/23/scripture.html new file mode 100644 index 00000000..b8a664da --- /dev/null +++ b/scripture/kjv/05/29/23/scripture.html @@ -0,0 +1,3 @@ +Isaiah 55:10-11
+10 For as the rain cometh down, and the snow from heaven, and returneth not thither, but watereth the earth, and maketh it bring forth and bud, that it may give seed to the sower, and bread to the eater: 11 So shall my word be that goeth forth out of my mouth: it shall not return unto me void, but it shall accomplish that which I please, and it shall prosper in the thing whereto I sent it.

+Monday 29-May, 2023 diff --git a/scripture/kjv/05/29/23/scripture.json b/scripture/kjv/05/29/23/scripture.json new file mode 100644 index 00000000..48b36918 --- /dev/null +++ b/scripture/kjv/05/29/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Monday 29-May, 2023", + "name": "Isaiah 55:10-11", + "scripture": [ + { + "nr": "10", + "text": "For as the rain cometh down, and the snow from heaven, and returneth not thither, but watereth the earth, and maketh it bring forth and bud, that it may give seed to the sower, and bread to the eater:" + }, + { + "nr": "11", + "text": "So shall my word be that goeth forth out of my mouth: it shall not return unto me void, but it shall accomplish that which I please, and it shall prosper in the thing whereto I sent it." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/29/23/scripture.md b/scripture/kjv/05/29/23/scripture.md new file mode 100644 index 00000000..eee2a841 --- /dev/null +++ b/scripture/kjv/05/29/23/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 55:10-11** + +10 For as the rain cometh down, and the snow from heaven, and returneth not thither, but watereth the earth, and maketh it bring forth and bud, that it may give seed to the sower, and bread to the eater: 11 So shall my word be that goeth forth out of my mouth: it shall not return unto me void, but it shall accomplish that which I please, and it shall prosper in the thing whereto I sent it. + +[Monday 29-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/29/23/scripture.tg b/scripture/kjv/05/29/23/scripture.tg new file mode 100644 index 00000000..42bf4f60 --- /dev/null +++ b/scripture/kjv/05/29/23/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 55:10-11 +10 For as the rain cometh down, and the snow from heaven, and returneth not thither, but watereth the earth, and maketh it bring forth and bud, that it may give seed to the sower, and bread to the eater: 11 So shall my word be that goeth forth out of my mouth: it shall not return unto me void, but it shall accomplish that which I please, and it shall prosper in the thing whereto I sent it. + +Monday 29-May, 2023 diff --git a/scripture/kjv/05/29/23/scripture.tg.id b/scripture/kjv/05/29/23/scripture.tg.id new file mode 100644 index 00000000..e12ce0f8 --- /dev/null +++ b/scripture/kjv/05/29/23/scripture.tg.id @@ -0,0 +1 @@ +963 diff --git a/scripture/kjv/05/29/23/scripture.today b/scripture/kjv/05/29/23/scripture.today new file mode 100644 index 00000000..52b8c658 --- /dev/null +++ b/scripture/kjv/05/29/23/scripture.today @@ -0,0 +1 @@ +23 55:10-11 diff --git a/scripture/kjv/05/29/24/scripture.html b/scripture/kjv/05/29/24/scripture.html new file mode 100644 index 00000000..caae46c2 --- /dev/null +++ b/scripture/kjv/05/29/24/scripture.html @@ -0,0 +1,3 @@ +Philemon 1:15
+15 For perhaps he therefore departed for a season, that thou shouldest receive him for ever;

+Wednesday 29-May, 2024 diff --git a/scripture/kjv/05/29/24/scripture.json b/scripture/kjv/05/29/24/scripture.json new file mode 100644 index 00000000..5baeab4c --- /dev/null +++ b/scripture/kjv/05/29/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Philemon", + "chapter": "1", + "date": "Wednesday 29-May, 2024", + "getbible": "https://getbible.life/kjv/Philemon/1/15", + "name": "Philemon 1:15", + "scripture": [ + { + "nr": "15", + "text": "For perhaps he therefore departed for a season, that thou shouldest receive him for ever;" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15", + "version": "kjv" +} diff --git a/scripture/kjv/05/29/24/scripture.md b/scripture/kjv/05/29/24/scripture.md new file mode 100644 index 00000000..6b85f95f --- /dev/null +++ b/scripture/kjv/05/29/24/scripture.md @@ -0,0 +1,5 @@ +**Philemon 1:15** + +15 For perhaps he therefore departed for a season, that thou shouldest receive him for ever; + +[Wednesday 29-May, 2024](https://getbible.life/kjv/Philemon/1/15) diff --git a/scripture/kjv/05/29/24/scripture.tg b/scripture/kjv/05/29/24/scripture.tg new file mode 100644 index 00000000..46d00217 --- /dev/null +++ b/scripture/kjv/05/29/24/scripture.tg @@ -0,0 +1,4 @@ +Philemon 1:15 +15 For perhaps he therefore departed for a season, that thou shouldest receive him for ever; + +Wednesday 29-May, 2024 diff --git a/scripture/kjv/05/29/24/scripture.tg.id b/scripture/kjv/05/29/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/29/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/29/24/scripture.today b/scripture/kjv/05/29/24/scripture.today new file mode 100644 index 00000000..14eded2b --- /dev/null +++ b/scripture/kjv/05/29/24/scripture.today @@ -0,0 +1 @@ +57 1:15 diff --git a/scripture/kjv/05/29/25/scripture.html b/scripture/kjv/05/29/25/scripture.html new file mode 100644 index 00000000..60bfbf67 --- /dev/null +++ b/scripture/kjv/05/29/25/scripture.html @@ -0,0 +1,3 @@ +Matthew 23:13
+13 But woe unto you, scribes and Pharisees, hypocrites! for ye shut up the kingdom of heaven against men: for ye neither go in yourselves, neither suffer ye them that are entering to go in.

+Thursday 29-May, 2025 diff --git a/scripture/kjv/05/29/25/scripture.json b/scripture/kjv/05/29/25/scripture.json new file mode 100644 index 00000000..8bc2f9fb --- /dev/null +++ b/scripture/kjv/05/29/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Matthew", + "chapter": "23", + "date": "Thursday 29-May, 2025", + "getbible": "https://getbible.life/kjv/Matthew/23/13", + "name": "Matthew 23:13", + "scripture": [ + { + "nr": "13", + "text": "But woe unto you, scribes and Pharisees, hypocrites! for ye shut up the kingdom of heaven against men: for ye neither go in yourselves, neither suffer ye them that are entering to go in." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13", + "version": "kjv" +} diff --git a/scripture/kjv/05/29/25/scripture.md b/scripture/kjv/05/29/25/scripture.md new file mode 100644 index 00000000..6738859c --- /dev/null +++ b/scripture/kjv/05/29/25/scripture.md @@ -0,0 +1,5 @@ +**Matthew 23:13** + +13 But woe unto you, scribes and Pharisees, hypocrites! for ye shut up the kingdom of heaven against men: for ye neither go in yourselves, neither suffer ye them that are entering to go in. + +[Thursday 29-May, 2025](https://getbible.life/kjv/Matthew/23/13) diff --git a/scripture/kjv/05/29/25/scripture.tg b/scripture/kjv/05/29/25/scripture.tg new file mode 100644 index 00000000..e6f209af --- /dev/null +++ b/scripture/kjv/05/29/25/scripture.tg @@ -0,0 +1,4 @@ +Matthew 23:13 +13 But woe unto you, scribes and Pharisees, hypocrites! for ye shut up the kingdom of heaven against men: for ye neither go in yourselves, neither suffer ye them that are entering to go in. + +Thursday 29-May, 2025 diff --git a/scripture/kjv/05/29/25/scripture.tg.id b/scripture/kjv/05/29/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/29/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/29/25/scripture.today b/scripture/kjv/05/29/25/scripture.today new file mode 100644 index 00000000..770b2b2b --- /dev/null +++ b/scripture/kjv/05/29/25/scripture.today @@ -0,0 +1 @@ +40 23:13 diff --git a/scripture/kjv/05/29/26/scripture.html b/scripture/kjv/05/29/26/scripture.html new file mode 100644 index 00000000..4ffb6d93 --- /dev/null +++ b/scripture/kjv/05/29/26/scripture.html @@ -0,0 +1,3 @@ +Proverbs 29:20
+20 Seest thou a man that is hasty in his words? there is more hope of a fool than of him.

+Friday 29-May, 2026 diff --git a/scripture/kjv/05/29/26/scripture.json b/scripture/kjv/05/29/26/scripture.json new file mode 100644 index 00000000..179da483 --- /dev/null +++ b/scripture/kjv/05/29/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "29", + "date": "Friday 29-May, 2026", + "getbible": "https://getbible.life/kjv/Proverbs/29/20", + "name": "Proverbs 29:20", + "scripture": [ + { + "nr": "20", + "text": "Seest thou a man that is hasty in his words? there is more hope of a fool than of him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20", + "version": "kjv" +} diff --git a/scripture/kjv/05/29/26/scripture.md b/scripture/kjv/05/29/26/scripture.md new file mode 100644 index 00000000..2ca52aba --- /dev/null +++ b/scripture/kjv/05/29/26/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 29:20** + +20 Seest thou a man that is hasty in his words? there is more hope of a fool than of him. + +[Friday 29-May, 2026](https://getbible.life/kjv/Proverbs/29/20) diff --git a/scripture/kjv/05/29/26/scripture.tg b/scripture/kjv/05/29/26/scripture.tg new file mode 100644 index 00000000..3053dab4 --- /dev/null +++ b/scripture/kjv/05/29/26/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 29:20 +20 Seest thou a man that is hasty in his words? there is more hope of a fool than of him. + +Friday 29-May, 2026 diff --git a/scripture/kjv/05/29/26/scripture.tg.id b/scripture/kjv/05/29/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/29/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/29/26/scripture.today b/scripture/kjv/05/29/26/scripture.today new file mode 100644 index 00000000..4c3b5037 --- /dev/null +++ b/scripture/kjv/05/29/26/scripture.today @@ -0,0 +1 @@ +20 29:20 diff --git a/scripture/kjv/05/30/23/scripture.html b/scripture/kjv/05/30/23/scripture.html new file mode 100644 index 00000000..f06bdcd3 --- /dev/null +++ b/scripture/kjv/05/30/23/scripture.html @@ -0,0 +1,3 @@ +1 Timothy 4:13
+13 Till I come, give attendance to reading, to exhortation, to doctrine.

+Tuesday 30-May, 2023 diff --git a/scripture/kjv/05/30/23/scripture.json b/scripture/kjv/05/30/23/scripture.json new file mode 100644 index 00000000..1c5e5f3c --- /dev/null +++ b/scripture/kjv/05/30/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Tuesday 30-May, 2023", + "name": "1 Timothy 4:13", + "scripture": [ + { + "nr": "13", + "text": "Till I come, give attendance to reading, to exhortation, to doctrine." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/30/23/scripture.md b/scripture/kjv/05/30/23/scripture.md new file mode 100644 index 00000000..159f0d1b --- /dev/null +++ b/scripture/kjv/05/30/23/scripture.md @@ -0,0 +1,5 @@ +**1 Timothy 4:13** + +13 Till I come, give attendance to reading, to exhortation, to doctrine. + +[Tuesday 30-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/30/23/scripture.tg b/scripture/kjv/05/30/23/scripture.tg new file mode 100644 index 00000000..835c1c15 --- /dev/null +++ b/scripture/kjv/05/30/23/scripture.tg @@ -0,0 +1,4 @@ +1 Timothy 4:13 +13 Till I come, give attendance to reading, to exhortation, to doctrine. + +Tuesday 30-May, 2023 diff --git a/scripture/kjv/05/30/23/scripture.tg.id b/scripture/kjv/05/30/23/scripture.tg.id new file mode 100644 index 00000000..03b7719c --- /dev/null +++ b/scripture/kjv/05/30/23/scripture.tg.id @@ -0,0 +1 @@ +964 diff --git a/scripture/kjv/05/30/23/scripture.today b/scripture/kjv/05/30/23/scripture.today new file mode 100644 index 00000000..ec5816aa --- /dev/null +++ b/scripture/kjv/05/30/23/scripture.today @@ -0,0 +1 @@ +54 4:13 diff --git a/scripture/kjv/05/30/24/scripture.html b/scripture/kjv/05/30/24/scripture.html new file mode 100644 index 00000000..336def12 --- /dev/null +++ b/scripture/kjv/05/30/24/scripture.html @@ -0,0 +1,3 @@ +Haggai 1:4-11
+4 Is it time for you, O ye, to dwell in your cieled houses, and this house lie waste? 5 Now therefore thus saith the Lord of hosts; Consider your ways. 6 Ye have sown much, and bring in little; ye eat, but ye have not enough; ye drink, but ye are not filled with drink; ye clothe you, but there is none warm; and he that earneth wages earneth wages to put it into a bag with holes. 7 Thus saith the Lord of hosts; Consider your ways. 8 Go up to the mountain, and bring wood, and build the house; and I will take pleasure in it, and I will be glorified, saith the Lord. 9 Ye looked for much, and, lo, it came to little; and when ye brought it home, I did blow upon it. Why? saith the Lord of hosts. Because of mine house that is waste, and ye run every man unto his own house. 10 Therefore the heaven over you is stayed from dew, and the earth is stayed from her fruit. 11 And I called for a drought upon the land, and upon the mountains, and upon the corn, and upon the new wine, and upon the oil, and upon that which the ground bringeth forth, and upon men, and upon cattle, and upon all the labour of the hands.

+Thursday 30-May, 2024 diff --git a/scripture/kjv/05/30/24/scripture.json b/scripture/kjv/05/30/24/scripture.json new file mode 100644 index 00000000..7d976a99 --- /dev/null +++ b/scripture/kjv/05/30/24/scripture.json @@ -0,0 +1,45 @@ +{ + "book": "Haggai", + "chapter": "1", + "date": "Thursday 30-May, 2024", + "getbible": "https://getbible.life/kjv/Haggai/1/4-11", + "name": "Haggai 1:4-11", + "scripture": [ + { + "nr": "4", + "text": "Is it time for you, O ye, to dwell in your cieled houses, and this house lie waste?" + }, + { + "nr": "5", + "text": "Now therefore thus saith the Lord of hosts; Consider your ways." + }, + { + "nr": "6", + "text": "Ye have sown much, and bring in little; ye eat, but ye have not enough; ye drink, but ye are not filled with drink; ye clothe you, but there is none warm; and he that earneth wages earneth wages to put it into a bag with holes." + }, + { + "nr": "7", + "text": "Thus saith the Lord of hosts; Consider your ways." + }, + { + "nr": "8", + "text": "Go up to the mountain, and bring wood, and build the house; and I will take pleasure in it, and I will be glorified, saith the Lord." + }, + { + "nr": "9", + "text": "Ye looked for much, and, lo, it came to little; and when ye brought it home, I did blow upon it. Why? saith the Lord of hosts. Because of mine house that is waste, and ye run every man unto his own house." + }, + { + "nr": "10", + "text": "Therefore the heaven over you is stayed from dew, and the earth is stayed from her fruit." + }, + { + "nr": "11", + "text": "And I called for a drought upon the land, and upon the mountains, and upon the corn, and upon the new wine, and upon the oil, and upon that which the ground bringeth forth, and upon men, and upon cattle, and upon all the labour of the hands." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4-11", + "version": "kjv" +} diff --git a/scripture/kjv/05/30/24/scripture.md b/scripture/kjv/05/30/24/scripture.md new file mode 100644 index 00000000..1d47c915 --- /dev/null +++ b/scripture/kjv/05/30/24/scripture.md @@ -0,0 +1,5 @@ +**Haggai 1:4-11** + +4 Is it time for you, O ye, to dwell in your cieled houses, and this house lie waste? 5 Now therefore thus saith the Lord of hosts; Consider your ways. 6 Ye have sown much, and bring in little; ye eat, but ye have not enough; ye drink, but ye are not filled with drink; ye clothe you, but there is none warm; and he that earneth wages earneth wages to put it into a bag with holes. 7 Thus saith the Lord of hosts; Consider your ways. 8 Go up to the mountain, and bring wood, and build the house; and I will take pleasure in it, and I will be glorified, saith the Lord. 9 Ye looked for much, and, lo, it came to little; and when ye brought it home, I did blow upon it. Why? saith the Lord of hosts. Because of mine house that is waste, and ye run every man unto his own house. 10 Therefore the heaven over you is stayed from dew, and the earth is stayed from her fruit. 11 And I called for a drought upon the land, and upon the mountains, and upon the corn, and upon the new wine, and upon the oil, and upon that which the ground bringeth forth, and upon men, and upon cattle, and upon all the labour of the hands. + +[Thursday 30-May, 2024](https://getbible.life/kjv/Haggai/1/4-11) diff --git a/scripture/kjv/05/30/24/scripture.tg b/scripture/kjv/05/30/24/scripture.tg new file mode 100644 index 00000000..621f9efe --- /dev/null +++ b/scripture/kjv/05/30/24/scripture.tg @@ -0,0 +1,4 @@ +Haggai 1:4-11 +4 Is it time for you, O ye, to dwell in your cieled houses, and this house lie waste? 5 Now therefore thus saith the Lord of hosts; Consider your ways. 6 Ye have sown much, and bring in little; ye eat, but ye have not enough; ye drink, but ye are not filled with drink; ye clothe you, but there is none warm; and he that earneth wages earneth wages to put it into a bag with holes. 7 Thus saith the Lord of hosts; Consider your ways. 8 Go up to the mountain, and bring wood, and build the house; and I will take pleasure in it, and I will be glorified, saith the Lord. 9 Ye looked for much, and, lo, it came to little; and when ye brought it home, I did blow upon it. Why? saith the Lord of hosts. Because of mine house that is waste, and ye run every man unto his own house. 10 Therefore the heaven over you is stayed from dew, and the earth is stayed from her fruit. 11 And I called for a drought upon the land, and upon the mountains, and upon the corn, and upon the new wine, and upon the oil, and upon that which the ground bringeth forth, and upon men, and upon cattle, and upon all the labour of the hands. + +Thursday 30-May, 2024 diff --git a/scripture/kjv/05/30/24/scripture.tg.id b/scripture/kjv/05/30/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/30/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/30/24/scripture.today b/scripture/kjv/05/30/24/scripture.today new file mode 100644 index 00000000..835ae0ca --- /dev/null +++ b/scripture/kjv/05/30/24/scripture.today @@ -0,0 +1 @@ +37 1:4-11 diff --git a/scripture/kjv/05/30/25/scripture.html b/scripture/kjv/05/30/25/scripture.html new file mode 100644 index 00000000..b8167816 --- /dev/null +++ b/scripture/kjv/05/30/25/scripture.html @@ -0,0 +1,3 @@ +Isaiah 1:13
+13 Bring no more vain oblations; incense is an abomination unto me; the new moons and sabbaths, the calling of assemblies, I cannot away with; it is iniquity, even the solemn meeting.

+Friday 30-May, 2025 diff --git a/scripture/kjv/05/30/25/scripture.json b/scripture/kjv/05/30/25/scripture.json new file mode 100644 index 00000000..7eab9488 --- /dev/null +++ b/scripture/kjv/05/30/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "1", + "date": "Friday 30-May, 2025", + "getbible": "https://getbible.life/kjv/Isaiah/1/13", + "name": "Isaiah 1:13", + "scripture": [ + { + "nr": "13", + "text": "Bring no more vain oblations; incense is an abomination unto me; the new moons and sabbaths, the calling of assemblies, I cannot away with; it is iniquity, even the solemn meeting." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13", + "version": "kjv" +} diff --git a/scripture/kjv/05/30/25/scripture.md b/scripture/kjv/05/30/25/scripture.md new file mode 100644 index 00000000..153c7595 --- /dev/null +++ b/scripture/kjv/05/30/25/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 1:13** + +13 Bring no more vain oblations; incense is an abomination unto me; the new moons and sabbaths, the calling of assemblies, I cannot away with; it is iniquity, even the solemn meeting. + +[Friday 30-May, 2025](https://getbible.life/kjv/Isaiah/1/13) diff --git a/scripture/kjv/05/30/25/scripture.tg b/scripture/kjv/05/30/25/scripture.tg new file mode 100644 index 00000000..c49f7384 --- /dev/null +++ b/scripture/kjv/05/30/25/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 1:13 +13 Bring no more vain oblations; incense is an abomination unto me; the new moons and sabbaths, the calling of assemblies, I cannot away with; it is iniquity, even the solemn meeting. + +Friday 30-May, 2025 diff --git a/scripture/kjv/05/30/25/scripture.tg.id b/scripture/kjv/05/30/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/30/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/30/25/scripture.today b/scripture/kjv/05/30/25/scripture.today new file mode 100644 index 00000000..82e11684 --- /dev/null +++ b/scripture/kjv/05/30/25/scripture.today @@ -0,0 +1 @@ +23 1:13 diff --git a/scripture/kjv/05/30/26/scripture.html b/scripture/kjv/05/30/26/scripture.html new file mode 100644 index 00000000..27775837 --- /dev/null +++ b/scripture/kjv/05/30/26/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 5:9
+9 Wherefore we labour, that, whether present or absent, we may be accepted of him.

+Saturday 30-May, 2026 diff --git a/scripture/kjv/05/30/26/scripture.json b/scripture/kjv/05/30/26/scripture.json new file mode 100644 index 00000000..c61d4b64 --- /dev/null +++ b/scripture/kjv/05/30/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "5", + "date": "Saturday 30-May, 2026", + "getbible": "https://getbible.life/kjv/2 Corinthians/5/9", + "name": "2 Corinthians 5:9", + "scripture": [ + { + "nr": "9", + "text": "Wherefore we labour, that, whether present or absent, we may be accepted of him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9", + "version": "kjv" +} diff --git a/scripture/kjv/05/30/26/scripture.md b/scripture/kjv/05/30/26/scripture.md new file mode 100644 index 00000000..a194f94c --- /dev/null +++ b/scripture/kjv/05/30/26/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 5:9** + +9 Wherefore we labour, that, whether present or absent, we may be accepted of him. + +[Saturday 30-May, 2026](https://getbible.life/kjv/2 Corinthians/5/9) diff --git a/scripture/kjv/05/30/26/scripture.tg b/scripture/kjv/05/30/26/scripture.tg new file mode 100644 index 00000000..76edf8be --- /dev/null +++ b/scripture/kjv/05/30/26/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 5:9 +9 Wherefore we labour, that, whether present or absent, we may be accepted of him. + +Saturday 30-May, 2026 diff --git a/scripture/kjv/05/30/26/scripture.tg.id b/scripture/kjv/05/30/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/30/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/30/26/scripture.today b/scripture/kjv/05/30/26/scripture.today new file mode 100644 index 00000000..c72e2523 --- /dev/null +++ b/scripture/kjv/05/30/26/scripture.today @@ -0,0 +1 @@ +47 5:9 diff --git a/scripture/kjv/05/31/23/scripture.html b/scripture/kjv/05/31/23/scripture.html new file mode 100644 index 00000000..97077509 --- /dev/null +++ b/scripture/kjv/05/31/23/scripture.html @@ -0,0 +1,3 @@ +Romans 12:16
+16 Be of the same mind one toward another. Mind not high things, but condescend to men of low estate. Be not wise in your own conceits.

+Wednesday 31-May, 2023 diff --git a/scripture/kjv/05/31/23/scripture.json b/scripture/kjv/05/31/23/scripture.json new file mode 100644 index 00000000..aa1cbc50 --- /dev/null +++ b/scripture/kjv/05/31/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Wednesday 31-May, 2023", + "name": "Romans 12:16", + "scripture": [ + { + "nr": "16", + "text": "Be of the same mind one toward another. Mind not high things, but condescend to men of low estate. Be not wise in your own conceits." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/05/31/23/scripture.md b/scripture/kjv/05/31/23/scripture.md new file mode 100644 index 00000000..b51f9d65 --- /dev/null +++ b/scripture/kjv/05/31/23/scripture.md @@ -0,0 +1,5 @@ +**Romans 12:16** + +16 Be of the same mind one toward another. Mind not high things, but condescend to men of low estate. Be not wise in your own conceits. + +[Wednesday 31-May, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/05/31/23/scripture.tg b/scripture/kjv/05/31/23/scripture.tg new file mode 100644 index 00000000..ce63f4fd --- /dev/null +++ b/scripture/kjv/05/31/23/scripture.tg @@ -0,0 +1,4 @@ +Romans 12:16 +16 Be of the same mind one toward another. Mind not high things, but condescend to men of low estate. Be not wise in your own conceits. + +Wednesday 31-May, 2023 diff --git a/scripture/kjv/05/31/23/scripture.tg.id b/scripture/kjv/05/31/23/scripture.tg.id new file mode 100644 index 00000000..aa5bea4e --- /dev/null +++ b/scripture/kjv/05/31/23/scripture.tg.id @@ -0,0 +1 @@ +965 diff --git a/scripture/kjv/05/31/23/scripture.today b/scripture/kjv/05/31/23/scripture.today new file mode 100644 index 00000000..1dd3779a --- /dev/null +++ b/scripture/kjv/05/31/23/scripture.today @@ -0,0 +1 @@ +45 12:16 diff --git a/scripture/kjv/05/31/24/scripture.html b/scripture/kjv/05/31/24/scripture.html new file mode 100644 index 00000000..8ce441ee --- /dev/null +++ b/scripture/kjv/05/31/24/scripture.html @@ -0,0 +1,3 @@ +3 John 1:9-10
+9 I wrote unto the church: but Diotrephes, who loveth to have the preeminence among them, receiveth us not. 10 Wherefore, if I come, I will remember his deeds which he doeth, prating against us with malicious words: and not content therewith, neither doth he himself receive the brethren, and forbiddeth them that would, and casteth them out of the church.

+Friday 31-May, 2024 diff --git a/scripture/kjv/05/31/24/scripture.json b/scripture/kjv/05/31/24/scripture.json new file mode 100644 index 00000000..3261192e --- /dev/null +++ b/scripture/kjv/05/31/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "3 John", + "chapter": "1", + "date": "Friday 31-May, 2024", + "getbible": "https://getbible.life/kjv/3 John/1/9-10", + "name": "3 John 1:9-10", + "scripture": [ + { + "nr": "9", + "text": "I wrote unto the church: but Diotrephes, who loveth to have the preeminence among them, receiveth us not." + }, + { + "nr": "10", + "text": "Wherefore, if I come, I will remember his deeds which he doeth, prating against us with malicious words: and not content therewith, neither doth he himself receive the brethren, and forbiddeth them that would, and casteth them out of the church." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9-10", + "version": "kjv" +} diff --git a/scripture/kjv/05/31/24/scripture.md b/scripture/kjv/05/31/24/scripture.md new file mode 100644 index 00000000..011a550c --- /dev/null +++ b/scripture/kjv/05/31/24/scripture.md @@ -0,0 +1,5 @@ +**3 John 1:9-10** + +9 I wrote unto the church: but Diotrephes, who loveth to have the preeminence among them, receiveth us not. 10 Wherefore, if I come, I will remember his deeds which he doeth, prating against us with malicious words: and not content therewith, neither doth he himself receive the brethren, and forbiddeth them that would, and casteth them out of the church. + +[Friday 31-May, 2024](https://getbible.life/kjv/3 John/1/9-10) diff --git a/scripture/kjv/05/31/24/scripture.tg b/scripture/kjv/05/31/24/scripture.tg new file mode 100644 index 00000000..301a6e81 --- /dev/null +++ b/scripture/kjv/05/31/24/scripture.tg @@ -0,0 +1,4 @@ +3 John 1:9-10 +9 I wrote unto the church: but Diotrephes, who loveth to have the preeminence among them, receiveth us not. 10 Wherefore, if I come, I will remember his deeds which he doeth, prating against us with malicious words: and not content therewith, neither doth he himself receive the brethren, and forbiddeth them that would, and casteth them out of the church. + +Friday 31-May, 2024 diff --git a/scripture/kjv/05/31/24/scripture.tg.id b/scripture/kjv/05/31/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/31/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/31/24/scripture.today b/scripture/kjv/05/31/24/scripture.today new file mode 100644 index 00000000..7e5bcf24 --- /dev/null +++ b/scripture/kjv/05/31/24/scripture.today @@ -0,0 +1 @@ +64 1:9-10 diff --git a/scripture/kjv/05/31/25/scripture.html b/scripture/kjv/05/31/25/scripture.html new file mode 100644 index 00000000..6a5a87c7 --- /dev/null +++ b/scripture/kjv/05/31/25/scripture.html @@ -0,0 +1,3 @@ +Ephesians 5:31-32
+31 For this cause shall a man leave his father and mother, and shall be joined unto his wife, and they two shall be one flesh. 32 This is a great mystery: but I speak concerning Christ and the church.

+Saturday 31-May, 2025 diff --git a/scripture/kjv/05/31/25/scripture.json b/scripture/kjv/05/31/25/scripture.json new file mode 100644 index 00000000..5abf311f --- /dev/null +++ b/scripture/kjv/05/31/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Ephesians", + "chapter": "5", + "date": "Saturday 31-May, 2025", + "getbible": "https://getbible.life/kjv/Ephesians/5/31-32", + "name": "Ephesians 5:31-32", + "scripture": [ + { + "nr": "31", + "text": "For this cause shall a man leave his father and mother, and shall be joined unto his wife, and they two shall be one flesh." + }, + { + "nr": "32", + "text": "This is a great mystery: but I speak concerning Christ and the church." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "31-32", + "version": "kjv" +} diff --git a/scripture/kjv/05/31/25/scripture.md b/scripture/kjv/05/31/25/scripture.md new file mode 100644 index 00000000..a4aeb98a --- /dev/null +++ b/scripture/kjv/05/31/25/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 5:31-32** + +31 For this cause shall a man leave his father and mother, and shall be joined unto his wife, and they two shall be one flesh. 32 This is a great mystery: but I speak concerning Christ and the church. + +[Saturday 31-May, 2025](https://getbible.life/kjv/Ephesians/5/31-32) diff --git a/scripture/kjv/05/31/25/scripture.tg b/scripture/kjv/05/31/25/scripture.tg new file mode 100644 index 00000000..920b642d --- /dev/null +++ b/scripture/kjv/05/31/25/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 5:31-32 +31 For this cause shall a man leave his father and mother, and shall be joined unto his wife, and they two shall be one flesh. 32 This is a great mystery: but I speak concerning Christ and the church. + +Saturday 31-May, 2025 diff --git a/scripture/kjv/05/31/25/scripture.tg.id b/scripture/kjv/05/31/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/31/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/31/25/scripture.today b/scripture/kjv/05/31/25/scripture.today new file mode 100644 index 00000000..2208a949 --- /dev/null +++ b/scripture/kjv/05/31/25/scripture.today @@ -0,0 +1 @@ +49 5:31-32 diff --git a/scripture/kjv/05/31/26/scripture.html b/scripture/kjv/05/31/26/scripture.html new file mode 100644 index 00000000..b36a2a1d --- /dev/null +++ b/scripture/kjv/05/31/26/scripture.html @@ -0,0 +1,3 @@ +Psalms 32:3-5
+3 When I kept silence, my bones waxed old through my roaring all the day long. 4 For day and night thy hand was heavy upon me: my moisture is turned into the drought of summer. Selah. 5 I acknowledged my sin unto thee, and mine iniquity have I not hid. I said, I will confess my transgressions unto the Lord; and thou forgavest the iniquity of my sin. Selah.

+Sunday 31-May, 2026 diff --git a/scripture/kjv/05/31/26/scripture.json b/scripture/kjv/05/31/26/scripture.json new file mode 100644 index 00000000..a6f57ca2 --- /dev/null +++ b/scripture/kjv/05/31/26/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Psalms", + "chapter": "32", + "date": "Sunday 31-May, 2026", + "getbible": "https://getbible.life/kjv/Psalms/32/3-5", + "name": "Psalms 32:3-5", + "scripture": [ + { + "nr": "3", + "text": "When I kept silence, my bones waxed old through my roaring all the day long." + }, + { + "nr": "4", + "text": "For day and night thy hand was heavy upon me: my moisture is turned into the drought of summer. Selah." + }, + { + "nr": "5", + "text": "I acknowledged my sin unto thee, and mine iniquity have I not hid. I said, I will confess my transgressions unto the Lord; and thou forgavest the iniquity of my sin. Selah." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3-5", + "version": "kjv" +} diff --git a/scripture/kjv/05/31/26/scripture.md b/scripture/kjv/05/31/26/scripture.md new file mode 100644 index 00000000..aebbc835 --- /dev/null +++ b/scripture/kjv/05/31/26/scripture.md @@ -0,0 +1,5 @@ +**Psalms 32:3-5** + +3 When I kept silence, my bones waxed old through my roaring all the day long. 4 For day and night thy hand was heavy upon me: my moisture is turned into the drought of summer. Selah. 5 I acknowledged my sin unto thee, and mine iniquity have I not hid. I said, I will confess my transgressions unto the Lord; and thou forgavest the iniquity of my sin. Selah. + +[Sunday 31-May, 2026](https://getbible.life/kjv/Psalms/32/3-5) diff --git a/scripture/kjv/05/31/26/scripture.tg b/scripture/kjv/05/31/26/scripture.tg new file mode 100644 index 00000000..09ccba73 --- /dev/null +++ b/scripture/kjv/05/31/26/scripture.tg @@ -0,0 +1,4 @@ +Psalms 32:3-5 +3 When I kept silence, my bones waxed old through my roaring all the day long. 4 For day and night thy hand was heavy upon me: my moisture is turned into the drought of summer. Selah. 5 I acknowledged my sin unto thee, and mine iniquity have I not hid. I said, I will confess my transgressions unto the Lord; and thou forgavest the iniquity of my sin. Selah. + +Sunday 31-May, 2026 diff --git a/scripture/kjv/05/31/26/scripture.tg.id b/scripture/kjv/05/31/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/05/31/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/05/31/26/scripture.today b/scripture/kjv/05/31/26/scripture.today new file mode 100644 index 00000000..9c7efc5d --- /dev/null +++ b/scripture/kjv/05/31/26/scripture.today @@ -0,0 +1 @@ +19 32:3-5 diff --git a/scripture/kjv/06/01/23/scripture.html b/scripture/kjv/06/01/23/scripture.html new file mode 100644 index 00000000..9501497d --- /dev/null +++ b/scripture/kjv/06/01/23/scripture.html @@ -0,0 +1,3 @@ +Isaiah 57:10
+10 Thou art wearied in the greatness of thy way; yet saidst thou not, There is no hope: thou hast found the life of thine hand; therefore thou wast not grieved.

+Thursday 01-June, 2023 diff --git a/scripture/kjv/06/01/23/scripture.json b/scripture/kjv/06/01/23/scripture.json new file mode 100644 index 00000000..19f5f747 --- /dev/null +++ b/scripture/kjv/06/01/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Thursday 01-June, 2023", + "name": "Isaiah 57:10", + "scripture": [ + { + "nr": "10", + "text": "Thou art wearied in the greatness of thy way; yet saidst thou not, There is no hope: thou hast found the life of thine hand; therefore thou wast not grieved." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/01/23/scripture.md b/scripture/kjv/06/01/23/scripture.md new file mode 100644 index 00000000..ec0110db --- /dev/null +++ b/scripture/kjv/06/01/23/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 57:10** + +10 Thou art wearied in the greatness of thy way; yet saidst thou not, There is no hope: thou hast found the life of thine hand; therefore thou wast not grieved. + +[Thursday 01-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/01/23/scripture.tg b/scripture/kjv/06/01/23/scripture.tg new file mode 100644 index 00000000..a8a53b95 --- /dev/null +++ b/scripture/kjv/06/01/23/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 57:10 +10 Thou art wearied in the greatness of thy way; yet saidst thou not, There is no hope: thou hast found the life of thine hand; therefore thou wast not grieved. + +Thursday 01-June, 2023 diff --git a/scripture/kjv/06/01/23/scripture.tg.id b/scripture/kjv/06/01/23/scripture.tg.id new file mode 100644 index 00000000..0b8de634 --- /dev/null +++ b/scripture/kjv/06/01/23/scripture.tg.id @@ -0,0 +1 @@ +966 diff --git a/scripture/kjv/06/01/23/scripture.today b/scripture/kjv/06/01/23/scripture.today new file mode 100644 index 00000000..eb135aff --- /dev/null +++ b/scripture/kjv/06/01/23/scripture.today @@ -0,0 +1 @@ +23 57:10 diff --git a/scripture/kjv/06/01/24/scripture.html b/scripture/kjv/06/01/24/scripture.html new file mode 100644 index 00000000..0bca85eb --- /dev/null +++ b/scripture/kjv/06/01/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 24:32
+32 Then I saw, and considered it well: I looked upon it, and received instruction.

+Saturday 01-June, 2024 diff --git a/scripture/kjv/06/01/24/scripture.json b/scripture/kjv/06/01/24/scripture.json new file mode 100644 index 00000000..47473c3f --- /dev/null +++ b/scripture/kjv/06/01/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "24", + "date": "Saturday 01-June, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/24/32", + "name": "Proverbs 24:32", + "scripture": [ + { + "nr": "32", + "text": "Then I saw, and considered it well: I looked upon it, and received instruction." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "32", + "version": "kjv" +} diff --git a/scripture/kjv/06/01/24/scripture.md b/scripture/kjv/06/01/24/scripture.md new file mode 100644 index 00000000..73a7bc90 --- /dev/null +++ b/scripture/kjv/06/01/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 24:32** + +32 Then I saw, and considered it well: I looked upon it, and received instruction. + +[Saturday 01-June, 2024](https://getbible.life/kjv/Proverbs/24/32) diff --git a/scripture/kjv/06/01/24/scripture.tg b/scripture/kjv/06/01/24/scripture.tg new file mode 100644 index 00000000..effdb9b0 --- /dev/null +++ b/scripture/kjv/06/01/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 24:32 +32 Then I saw, and considered it well: I looked upon it, and received instruction. + +Saturday 01-June, 2024 diff --git a/scripture/kjv/06/01/24/scripture.tg.id b/scripture/kjv/06/01/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/01/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/01/24/scripture.today b/scripture/kjv/06/01/24/scripture.today new file mode 100644 index 00000000..379939b1 --- /dev/null +++ b/scripture/kjv/06/01/24/scripture.today @@ -0,0 +1 @@ +20 24:32 diff --git a/scripture/kjv/06/01/25/scripture.html b/scripture/kjv/06/01/25/scripture.html new file mode 100644 index 00000000..36198c02 --- /dev/null +++ b/scripture/kjv/06/01/25/scripture.html @@ -0,0 +1,3 @@ +1 John 2:25
+25 And this is the promise that he hath promised us, even eternal life.

+Sunday 01-June, 2025 diff --git a/scripture/kjv/06/01/25/scripture.json b/scripture/kjv/06/01/25/scripture.json new file mode 100644 index 00000000..c4c2854d --- /dev/null +++ b/scripture/kjv/06/01/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 John", + "chapter": "2", + "date": "Sunday 01-June, 2025", + "getbible": "https://getbible.life/kjv/1 John/2/25", + "name": "1 John 2:25", + "scripture": [ + { + "nr": "25", + "text": "And this is the promise that he hath promised us, even eternal life." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "25", + "version": "kjv" +} diff --git a/scripture/kjv/06/01/25/scripture.md b/scripture/kjv/06/01/25/scripture.md new file mode 100644 index 00000000..753b81d7 --- /dev/null +++ b/scripture/kjv/06/01/25/scripture.md @@ -0,0 +1,5 @@ +**1 John 2:25** + +25 And this is the promise that he hath promised us, even eternal life. + +[Sunday 01-June, 2025](https://getbible.life/kjv/1 John/2/25) diff --git a/scripture/kjv/06/01/25/scripture.tg b/scripture/kjv/06/01/25/scripture.tg new file mode 100644 index 00000000..03148599 --- /dev/null +++ b/scripture/kjv/06/01/25/scripture.tg @@ -0,0 +1,4 @@ +1 John 2:25 +25 And this is the promise that he hath promised us, even eternal life. + +Sunday 01-June, 2025 diff --git a/scripture/kjv/06/01/25/scripture.tg.id b/scripture/kjv/06/01/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/01/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/01/25/scripture.today b/scripture/kjv/06/01/25/scripture.today new file mode 100644 index 00000000..05434b9b --- /dev/null +++ b/scripture/kjv/06/01/25/scripture.today @@ -0,0 +1 @@ +62 2:25 diff --git a/scripture/kjv/06/01/26/scripture.html b/scripture/kjv/06/01/26/scripture.html new file mode 100644 index 00000000..d7824fe8 --- /dev/null +++ b/scripture/kjv/06/01/26/scripture.html @@ -0,0 +1,3 @@ +Psalms 127:1-2
+1 Except the Lord build the house, they labour in vain that build it: except the Lord keep the city, the watchman waketh but in vain. 2 It is vain for you to rise up early, to sit up late, to eat the bread of sorrows: for so he giveth his beloved sleep.

+Monday 01-June, 2026 diff --git a/scripture/kjv/06/01/26/scripture.json b/scripture/kjv/06/01/26/scripture.json new file mode 100644 index 00000000..b7f236ec --- /dev/null +++ b/scripture/kjv/06/01/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Psalms", + "chapter": "127", + "date": "Monday 01-June, 2026", + "getbible": "https://getbible.life/kjv/Psalms/127/1-2", + "name": "Psalms 127:1-2", + "scripture": [ + { + "nr": "1", + "text": "Except the Lord build the house, they labour in vain that build it: except the Lord keep the city, the watchman waketh but in vain." + }, + { + "nr": "2", + "text": "It is vain for you to rise up early, to sit up late, to eat the bread of sorrows: for so he giveth his beloved sleep." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-2", + "version": "kjv" +} diff --git a/scripture/kjv/06/01/26/scripture.md b/scripture/kjv/06/01/26/scripture.md new file mode 100644 index 00000000..f8ff69ba --- /dev/null +++ b/scripture/kjv/06/01/26/scripture.md @@ -0,0 +1,5 @@ +**Psalms 127:1-2** + +1 Except the Lord build the house, they labour in vain that build it: except the Lord keep the city, the watchman waketh but in vain. 2 It is vain for you to rise up early, to sit up late, to eat the bread of sorrows: for so he giveth his beloved sleep. + +[Monday 01-June, 2026](https://getbible.life/kjv/Psalms/127/1-2) diff --git a/scripture/kjv/06/01/26/scripture.tg b/scripture/kjv/06/01/26/scripture.tg new file mode 100644 index 00000000..fcfe48d1 --- /dev/null +++ b/scripture/kjv/06/01/26/scripture.tg @@ -0,0 +1,4 @@ +Psalms 127:1-2 +1 Except the Lord build the house, they labour in vain that build it: except the Lord keep the city, the watchman waketh but in vain. 2 It is vain for you to rise up early, to sit up late, to eat the bread of sorrows: for so he giveth his beloved sleep. + +Monday 01-June, 2026 diff --git a/scripture/kjv/06/01/26/scripture.tg.id b/scripture/kjv/06/01/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/01/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/01/26/scripture.today b/scripture/kjv/06/01/26/scripture.today new file mode 100644 index 00000000..07d6bcbd --- /dev/null +++ b/scripture/kjv/06/01/26/scripture.today @@ -0,0 +1 @@ +19 127:1-2 diff --git a/scripture/kjv/06/02/23/scripture.html b/scripture/kjv/06/02/23/scripture.html new file mode 100644 index 00000000..3d527a42 --- /dev/null +++ b/scripture/kjv/06/02/23/scripture.html @@ -0,0 +1,3 @@ +Luke 17:3
+3 Take heed to yourselves: If thy brother trespass against thee, rebuke him; and if he repent, forgive him.

+Friday 02-June, 2023 diff --git a/scripture/kjv/06/02/23/scripture.json b/scripture/kjv/06/02/23/scripture.json new file mode 100644 index 00000000..17be126a --- /dev/null +++ b/scripture/kjv/06/02/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Friday 02-June, 2023", + "name": "Luke 17:3", + "scripture": [ + { + "nr": "3", + "text": "Take heed to yourselves: If thy brother trespass against thee, rebuke him; and if he repent, forgive him." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/02/23/scripture.md b/scripture/kjv/06/02/23/scripture.md new file mode 100644 index 00000000..8743c9c7 --- /dev/null +++ b/scripture/kjv/06/02/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 17:3** + +3 Take heed to yourselves: If thy brother trespass against thee, rebuke him; and if he repent, forgive him. + +[Friday 02-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/02/23/scripture.tg b/scripture/kjv/06/02/23/scripture.tg new file mode 100644 index 00000000..8cd2d4b0 --- /dev/null +++ b/scripture/kjv/06/02/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 17:3 +3 Take heed to yourselves: If thy brother trespass against thee, rebuke him; and if he repent, forgive him. + +Friday 02-June, 2023 diff --git a/scripture/kjv/06/02/23/scripture.tg.id b/scripture/kjv/06/02/23/scripture.tg.id new file mode 100644 index 00000000..ccb8fd57 --- /dev/null +++ b/scripture/kjv/06/02/23/scripture.tg.id @@ -0,0 +1 @@ +967 diff --git a/scripture/kjv/06/02/23/scripture.today b/scripture/kjv/06/02/23/scripture.today new file mode 100644 index 00000000..dadcd7a2 --- /dev/null +++ b/scripture/kjv/06/02/23/scripture.today @@ -0,0 +1 @@ +42 17:3 diff --git a/scripture/kjv/06/02/24/scripture.html b/scripture/kjv/06/02/24/scripture.html new file mode 100644 index 00000000..92535afa --- /dev/null +++ b/scripture/kjv/06/02/24/scripture.html @@ -0,0 +1,3 @@ +Malachi 3:1-3
+1 Behold, I will send my messenger, and he shall prepare the way before me: and the Lord, whom ye seek, shall suddenly come to his temple, even the messenger of the covenant, whom ye delight in: behold, he shall come, saith the Lord of hosts. 2 But who may abide the day of his coming? and who shall stand when he appeareth? for he is like a refiner’s fire, and like fullers’ soap: 3 And he shall sit as a refiner and purifier of silver: and he shall purify the sons of Levi, and purge them as gold and silver, that they may offer unto the Lord an offering in righteousness.

+Sunday 02-June, 2024 diff --git a/scripture/kjv/06/02/24/scripture.json b/scripture/kjv/06/02/24/scripture.json new file mode 100644 index 00000000..edb462cf --- /dev/null +++ b/scripture/kjv/06/02/24/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Malachi", + "chapter": "3", + "date": "Sunday 02-June, 2024", + "getbible": "https://getbible.life/kjv/Malachi/3/1-3", + "name": "Malachi 3:1-3", + "scripture": [ + { + "nr": "1", + "text": "Behold, I will send my messenger, and he shall prepare the way before me: and the Lord, whom ye seek, shall suddenly come to his temple, even the messenger of the covenant, whom ye delight in: behold, he shall come, saith the Lord of hosts." + }, + { + "nr": "2", + "text": "But who may abide the day of his coming? and who shall stand when he appeareth? for he is like a refiner’s fire, and like fullers’ soap:" + }, + { + "nr": "3", + "text": "And he shall sit as a refiner and purifier of silver: and he shall purify the sons of Levi, and purge them as gold and silver, that they may offer unto the Lord an offering in righteousness." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-3", + "version": "kjv" +} diff --git a/scripture/kjv/06/02/24/scripture.md b/scripture/kjv/06/02/24/scripture.md new file mode 100644 index 00000000..b3b3a644 --- /dev/null +++ b/scripture/kjv/06/02/24/scripture.md @@ -0,0 +1,5 @@ +**Malachi 3:1-3** + +1 Behold, I will send my messenger, and he shall prepare the way before me: and the Lord, whom ye seek, shall suddenly come to his temple, even the messenger of the covenant, whom ye delight in: behold, he shall come, saith the Lord of hosts. 2 But who may abide the day of his coming? and who shall stand when he appeareth? for he is like a refiner’s fire, and like fullers’ soap: 3 And he shall sit as a refiner and purifier of silver: and he shall purify the sons of Levi, and purge them as gold and silver, that they may offer unto the Lord an offering in righteousness. + +[Sunday 02-June, 2024](https://getbible.life/kjv/Malachi/3/1-3) diff --git a/scripture/kjv/06/02/24/scripture.tg b/scripture/kjv/06/02/24/scripture.tg new file mode 100644 index 00000000..6aadac40 --- /dev/null +++ b/scripture/kjv/06/02/24/scripture.tg @@ -0,0 +1,4 @@ +Malachi 3:1-3 +1 Behold, I will send my messenger, and he shall prepare the way before me: and the Lord, whom ye seek, shall suddenly come to his temple, even the messenger of the covenant, whom ye delight in: behold, he shall come, saith the Lord of hosts. 2 But who may abide the day of his coming? and who shall stand when he appeareth? for he is like a refiner’s fire, and like fullers’ soap: 3 And he shall sit as a refiner and purifier of silver: and he shall purify the sons of Levi, and purge them as gold and silver, that they may offer unto the Lord an offering in righteousness. + +Sunday 02-June, 2024 diff --git a/scripture/kjv/06/02/24/scripture.tg.id b/scripture/kjv/06/02/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/02/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/02/24/scripture.today b/scripture/kjv/06/02/24/scripture.today new file mode 100644 index 00000000..7ad6bf92 --- /dev/null +++ b/scripture/kjv/06/02/24/scripture.today @@ -0,0 +1 @@ +39 3:1-3 diff --git a/scripture/kjv/06/02/25/scripture.html b/scripture/kjv/06/02/25/scripture.html new file mode 100644 index 00000000..473cf8de --- /dev/null +++ b/scripture/kjv/06/02/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 19:12
+12 Who can understand his errors? cleanse thou me from secret faults.

+Monday 02-June, 2025 diff --git a/scripture/kjv/06/02/25/scripture.json b/scripture/kjv/06/02/25/scripture.json new file mode 100644 index 00000000..6285df63 --- /dev/null +++ b/scripture/kjv/06/02/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "19", + "date": "Monday 02-June, 2025", + "getbible": "https://getbible.life/kjv/Psalms/19/12", + "name": "Psalms 19:12", + "scripture": [ + { + "nr": "12", + "text": "Who can understand his errors? cleanse thou me from secret faults." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/06/02/25/scripture.md b/scripture/kjv/06/02/25/scripture.md new file mode 100644 index 00000000..52d4bfb8 --- /dev/null +++ b/scripture/kjv/06/02/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 19:12** + +12 Who can understand his errors? cleanse thou me from secret faults. + +[Monday 02-June, 2025](https://getbible.life/kjv/Psalms/19/12) diff --git a/scripture/kjv/06/02/25/scripture.tg b/scripture/kjv/06/02/25/scripture.tg new file mode 100644 index 00000000..460b5728 --- /dev/null +++ b/scripture/kjv/06/02/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 19:12 +12 Who can understand his errors? cleanse thou me from secret faults. + +Monday 02-June, 2025 diff --git a/scripture/kjv/06/02/25/scripture.tg.id b/scripture/kjv/06/02/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/02/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/02/25/scripture.today b/scripture/kjv/06/02/25/scripture.today new file mode 100644 index 00000000..e2d286cd --- /dev/null +++ b/scripture/kjv/06/02/25/scripture.today @@ -0,0 +1 @@ +19 19:12 diff --git a/scripture/kjv/06/02/26/scripture.html b/scripture/kjv/06/02/26/scripture.html new file mode 100644 index 00000000..fd852b6a --- /dev/null +++ b/scripture/kjv/06/02/26/scripture.html @@ -0,0 +1,3 @@ +Matthew 14:23
+23 And when he had sent the multitudes away, he went up into a mountain apart to pray: and when the evening was come, he was there alone.

+Tuesday 02-June, 2026 diff --git a/scripture/kjv/06/02/26/scripture.json b/scripture/kjv/06/02/26/scripture.json new file mode 100644 index 00000000..02ecc2d7 --- /dev/null +++ b/scripture/kjv/06/02/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Matthew", + "chapter": "14", + "date": "Tuesday 02-June, 2026", + "getbible": "https://getbible.life/kjv/Matthew/14/23", + "name": "Matthew 14:23", + "scripture": [ + { + "nr": "23", + "text": "And when he had sent the multitudes away, he went up into a mountain apart to pray: and when the evening was come, he was there alone." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "23", + "version": "kjv" +} diff --git a/scripture/kjv/06/02/26/scripture.md b/scripture/kjv/06/02/26/scripture.md new file mode 100644 index 00000000..0a07ce21 --- /dev/null +++ b/scripture/kjv/06/02/26/scripture.md @@ -0,0 +1,5 @@ +**Matthew 14:23** + +23 And when he had sent the multitudes away, he went up into a mountain apart to pray: and when the evening was come, he was there alone. + +[Tuesday 02-June, 2026](https://getbible.life/kjv/Matthew/14/23) diff --git a/scripture/kjv/06/02/26/scripture.tg b/scripture/kjv/06/02/26/scripture.tg new file mode 100644 index 00000000..f9f981b6 --- /dev/null +++ b/scripture/kjv/06/02/26/scripture.tg @@ -0,0 +1,4 @@ +Matthew 14:23 +23 And when he had sent the multitudes away, he went up into a mountain apart to pray: and when the evening was come, he was there alone. + +Tuesday 02-June, 2026 diff --git a/scripture/kjv/06/02/26/scripture.tg.id b/scripture/kjv/06/02/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/02/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/02/26/scripture.today b/scripture/kjv/06/02/26/scripture.today new file mode 100644 index 00000000..1f2046dc --- /dev/null +++ b/scripture/kjv/06/02/26/scripture.today @@ -0,0 +1 @@ +40 14:23 diff --git a/scripture/kjv/06/03/23/scripture.html b/scripture/kjv/06/03/23/scripture.html new file mode 100644 index 00000000..c6ba4f45 --- /dev/null +++ b/scripture/kjv/06/03/23/scripture.html @@ -0,0 +1,3 @@ +Philippians 4:7
+7 And the peace of God, which passeth all understanding, shall keep your hearts and minds through Christ Jesus.

+Saturday 03-June, 2023 diff --git a/scripture/kjv/06/03/23/scripture.json b/scripture/kjv/06/03/23/scripture.json new file mode 100644 index 00000000..d85aeef5 --- /dev/null +++ b/scripture/kjv/06/03/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Saturday 03-June, 2023", + "name": "Philippians 4:7", + "scripture": [ + { + "nr": "7", + "text": "And the peace of God, which passeth all understanding, shall keep your hearts and minds through Christ Jesus." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/03/23/scripture.md b/scripture/kjv/06/03/23/scripture.md new file mode 100644 index 00000000..9d4d6784 --- /dev/null +++ b/scripture/kjv/06/03/23/scripture.md @@ -0,0 +1,5 @@ +**Philippians 4:7** + +7 And the peace of God, which passeth all understanding, shall keep your hearts and minds through Christ Jesus. + +[Saturday 03-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/03/23/scripture.tg b/scripture/kjv/06/03/23/scripture.tg new file mode 100644 index 00000000..d0291e48 --- /dev/null +++ b/scripture/kjv/06/03/23/scripture.tg @@ -0,0 +1,4 @@ +Philippians 4:7 +7 And the peace of God, which passeth all understanding, shall keep your hearts and minds through Christ Jesus. + +Saturday 03-June, 2023 diff --git a/scripture/kjv/06/03/23/scripture.tg.id b/scripture/kjv/06/03/23/scripture.tg.id new file mode 100644 index 00000000..63e305ab --- /dev/null +++ b/scripture/kjv/06/03/23/scripture.tg.id @@ -0,0 +1 @@ +968 diff --git a/scripture/kjv/06/03/23/scripture.today b/scripture/kjv/06/03/23/scripture.today new file mode 100644 index 00000000..c4cd1fb1 --- /dev/null +++ b/scripture/kjv/06/03/23/scripture.today @@ -0,0 +1 @@ +50 4:7 diff --git a/scripture/kjv/06/03/24/scripture.html b/scripture/kjv/06/03/24/scripture.html new file mode 100644 index 00000000..3402d6ec --- /dev/null +++ b/scripture/kjv/06/03/24/scripture.html @@ -0,0 +1,3 @@ +Isaiah 60:15
+15 Whereas thou hast been forsaken and hated, so that no man went through thee, I will make thee an eternal excellency, a joy of many generations.

+Monday 03-June, 2024 diff --git a/scripture/kjv/06/03/24/scripture.json b/scripture/kjv/06/03/24/scripture.json new file mode 100644 index 00000000..fdc16fe8 --- /dev/null +++ b/scripture/kjv/06/03/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "60", + "date": "Monday 03-June, 2024", + "getbible": "https://getbible.life/kjv/Isaiah/60/15", + "name": "Isaiah 60:15", + "scripture": [ + { + "nr": "15", + "text": "Whereas thou hast been forsaken and hated, so that no man went through thee, I will make thee an eternal excellency, a joy of many generations." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15", + "version": "kjv" +} diff --git a/scripture/kjv/06/03/24/scripture.md b/scripture/kjv/06/03/24/scripture.md new file mode 100644 index 00000000..cf96bf12 --- /dev/null +++ b/scripture/kjv/06/03/24/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 60:15** + +15 Whereas thou hast been forsaken and hated, so that no man went through thee, I will make thee an eternal excellency, a joy of many generations. + +[Monday 03-June, 2024](https://getbible.life/kjv/Isaiah/60/15) diff --git a/scripture/kjv/06/03/24/scripture.tg b/scripture/kjv/06/03/24/scripture.tg new file mode 100644 index 00000000..ed1ddced --- /dev/null +++ b/scripture/kjv/06/03/24/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 60:15 +15 Whereas thou hast been forsaken and hated, so that no man went through thee, I will make thee an eternal excellency, a joy of many generations. + +Monday 03-June, 2024 diff --git a/scripture/kjv/06/03/24/scripture.tg.id b/scripture/kjv/06/03/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/03/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/03/24/scripture.today b/scripture/kjv/06/03/24/scripture.today new file mode 100644 index 00000000..adc2ef85 --- /dev/null +++ b/scripture/kjv/06/03/24/scripture.today @@ -0,0 +1 @@ +23 60:15 diff --git a/scripture/kjv/06/03/25/scripture.html b/scripture/kjv/06/03/25/scripture.html new file mode 100644 index 00000000..1db31550 --- /dev/null +++ b/scripture/kjv/06/03/25/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 34:20
+20 Therefore thus saith the Lord God unto them; Behold, I, even I, will judge between the fat cattle and between the lean cattle.

+Tuesday 03-June, 2025 diff --git a/scripture/kjv/06/03/25/scripture.json b/scripture/kjv/06/03/25/scripture.json new file mode 100644 index 00000000..377e90a3 --- /dev/null +++ b/scripture/kjv/06/03/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ezekiel", + "chapter": "34", + "date": "Tuesday 03-June, 2025", + "getbible": "https://getbible.life/kjv/Ezekiel/34/20", + "name": "Ezekiel 34:20", + "scripture": [ + { + "nr": "20", + "text": "Therefore thus saith the Lord God unto them; Behold, I, even I, will judge between the fat cattle and between the lean cattle." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20", + "version": "kjv" +} diff --git a/scripture/kjv/06/03/25/scripture.md b/scripture/kjv/06/03/25/scripture.md new file mode 100644 index 00000000..e221c3bf --- /dev/null +++ b/scripture/kjv/06/03/25/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 34:20** + +20 Therefore thus saith the Lord God unto them; Behold, I, even I, will judge between the fat cattle and between the lean cattle. + +[Tuesday 03-June, 2025](https://getbible.life/kjv/Ezekiel/34/20) diff --git a/scripture/kjv/06/03/25/scripture.tg b/scripture/kjv/06/03/25/scripture.tg new file mode 100644 index 00000000..cf88ca1f --- /dev/null +++ b/scripture/kjv/06/03/25/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 34:20 +20 Therefore thus saith the Lord God unto them; Behold, I, even I, will judge between the fat cattle and between the lean cattle. + +Tuesday 03-June, 2025 diff --git a/scripture/kjv/06/03/25/scripture.tg.id b/scripture/kjv/06/03/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/03/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/03/25/scripture.today b/scripture/kjv/06/03/25/scripture.today new file mode 100644 index 00000000..fc965bd0 --- /dev/null +++ b/scripture/kjv/06/03/25/scripture.today @@ -0,0 +1 @@ +26 34:20 diff --git a/scripture/kjv/06/03/26/scripture.html b/scripture/kjv/06/03/26/scripture.html new file mode 100644 index 00000000..8841197a --- /dev/null +++ b/scripture/kjv/06/03/26/scripture.html @@ -0,0 +1,3 @@ +Proverbs 3:35
+35 The wise shall inherit glory: but shame shall be the promotion of fools.

+Wednesday 03-June, 2026 diff --git a/scripture/kjv/06/03/26/scripture.json b/scripture/kjv/06/03/26/scripture.json new file mode 100644 index 00000000..dca4c84b --- /dev/null +++ b/scripture/kjv/06/03/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "3", + "date": "Wednesday 03-June, 2026", + "getbible": "https://getbible.life/kjv/Proverbs/3/35", + "name": "Proverbs 3:35", + "scripture": [ + { + "nr": "35", + "text": "The wise shall inherit glory: but shame shall be the promotion of fools. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "35", + "version": "kjv" +} diff --git a/scripture/kjv/06/03/26/scripture.md b/scripture/kjv/06/03/26/scripture.md new file mode 100644 index 00000000..907a7f94 --- /dev/null +++ b/scripture/kjv/06/03/26/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 3:35** + +35 The wise shall inherit glory: but shame shall be the promotion of fools. + +[Wednesday 03-June, 2026](https://getbible.life/kjv/Proverbs/3/35) diff --git a/scripture/kjv/06/03/26/scripture.tg b/scripture/kjv/06/03/26/scripture.tg new file mode 100644 index 00000000..d37d9cf6 --- /dev/null +++ b/scripture/kjv/06/03/26/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 3:35 +35 The wise shall inherit glory: but shame shall be the promotion of fools. + +Wednesday 03-June, 2026 diff --git a/scripture/kjv/06/03/26/scripture.tg.id b/scripture/kjv/06/03/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/03/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/03/26/scripture.today b/scripture/kjv/06/03/26/scripture.today new file mode 100644 index 00000000..3f942376 --- /dev/null +++ b/scripture/kjv/06/03/26/scripture.today @@ -0,0 +1 @@ +20 3:35 diff --git a/scripture/kjv/06/04/23/scripture.html b/scripture/kjv/06/04/23/scripture.html new file mode 100644 index 00000000..cabd1c2f --- /dev/null +++ b/scripture/kjv/06/04/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 12:27
+27 The slothful man roasteth not that which he took in hunting: but the substance of a diligent man is precious.

+Sunday 04-June, 2023 diff --git a/scripture/kjv/06/04/23/scripture.json b/scripture/kjv/06/04/23/scripture.json new file mode 100644 index 00000000..4b346887 --- /dev/null +++ b/scripture/kjv/06/04/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Sunday 04-June, 2023", + "name": "Proverbs 12:27", + "scripture": [ + { + "nr": "27", + "text": "The slothful man roasteth not that which he took in hunting: but the substance of a diligent man is precious." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/04/23/scripture.md b/scripture/kjv/06/04/23/scripture.md new file mode 100644 index 00000000..46618412 --- /dev/null +++ b/scripture/kjv/06/04/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 12:27** + +27 The slothful man roasteth not that which he took in hunting: but the substance of a diligent man is precious. + +[Sunday 04-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/04/23/scripture.tg b/scripture/kjv/06/04/23/scripture.tg new file mode 100644 index 00000000..1f0f0dd1 --- /dev/null +++ b/scripture/kjv/06/04/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 12:27 +27 The slothful man roasteth not that which he took in hunting: but the substance of a diligent man is precious. + +Sunday 04-June, 2023 diff --git a/scripture/kjv/06/04/23/scripture.tg.id b/scripture/kjv/06/04/23/scripture.tg.id new file mode 100644 index 00000000..6dee8187 --- /dev/null +++ b/scripture/kjv/06/04/23/scripture.tg.id @@ -0,0 +1 @@ +969 diff --git a/scripture/kjv/06/04/23/scripture.today b/scripture/kjv/06/04/23/scripture.today new file mode 100644 index 00000000..d6090fbc --- /dev/null +++ b/scripture/kjv/06/04/23/scripture.today @@ -0,0 +1 @@ +20 12:27 diff --git a/scripture/kjv/06/04/24/scripture.html b/scripture/kjv/06/04/24/scripture.html new file mode 100644 index 00000000..8c76b5a2 --- /dev/null +++ b/scripture/kjv/06/04/24/scripture.html @@ -0,0 +1,3 @@ +Luke 19:8-9
+8 And Zaccheus stood, and said unto the Lord; Behold, Lord, the half of my goods I give to the poor; and if I have taken any thing from any man by false accusation, I restore him fourfold. 9 And Jesus said unto him, This day is salvation come to this house, forsomuch as he also is a son of Abraham.

+Tuesday 04-June, 2024 diff --git a/scripture/kjv/06/04/24/scripture.json b/scripture/kjv/06/04/24/scripture.json new file mode 100644 index 00000000..fc174b78 --- /dev/null +++ b/scripture/kjv/06/04/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Luke", + "chapter": "19", + "date": "Tuesday 04-June, 2024", + "getbible": "https://getbible.life/kjv/Luke/19/8-9", + "name": "Luke 19:8-9", + "scripture": [ + { + "nr": "8", + "text": "And Zaccheus stood, and said unto the Lord; Behold, Lord, the half of my goods I give to the poor; and if I have taken any thing from any man by false accusation, I restore him fourfold." + }, + { + "nr": "9", + "text": "And Jesus said unto him, This day is salvation come to this house, forsomuch as he also is a son of Abraham." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8-9", + "version": "kjv" +} diff --git a/scripture/kjv/06/04/24/scripture.md b/scripture/kjv/06/04/24/scripture.md new file mode 100644 index 00000000..ef1fe26f --- /dev/null +++ b/scripture/kjv/06/04/24/scripture.md @@ -0,0 +1,5 @@ +**Luke 19:8-9** + +8 And Zaccheus stood, and said unto the Lord; Behold, Lord, the half of my goods I give to the poor; and if I have taken any thing from any man by false accusation, I restore him fourfold. 9 And Jesus said unto him, This day is salvation come to this house, forsomuch as he also is a son of Abraham. + +[Tuesday 04-June, 2024](https://getbible.life/kjv/Luke/19/8-9) diff --git a/scripture/kjv/06/04/24/scripture.tg b/scripture/kjv/06/04/24/scripture.tg new file mode 100644 index 00000000..89dac260 --- /dev/null +++ b/scripture/kjv/06/04/24/scripture.tg @@ -0,0 +1,4 @@ +Luke 19:8-9 +8 And Zaccheus stood, and said unto the Lord; Behold, Lord, the half of my goods I give to the poor; and if I have taken any thing from any man by false accusation, I restore him fourfold. 9 And Jesus said unto him, This day is salvation come to this house, forsomuch as he also is a son of Abraham. + +Tuesday 04-June, 2024 diff --git a/scripture/kjv/06/04/24/scripture.tg.id b/scripture/kjv/06/04/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/04/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/04/24/scripture.today b/scripture/kjv/06/04/24/scripture.today new file mode 100644 index 00000000..2b4ccb01 --- /dev/null +++ b/scripture/kjv/06/04/24/scripture.today @@ -0,0 +1 @@ +42 19:8-9 diff --git a/scripture/kjv/06/04/25/scripture.html b/scripture/kjv/06/04/25/scripture.html new file mode 100644 index 00000000..d828bcfe --- /dev/null +++ b/scripture/kjv/06/04/25/scripture.html @@ -0,0 +1,3 @@ +Matthew 10:34-39
+34 Think not that I am come to send peace on earth: I came not to send peace, but a sword. 35 For I am come to set a man at variance against his father, and the daughter against her mother, and the daughter in law against her mother in law. 36 And a man’s foes shall be they of his own household. 37 He that loveth father or mother more than me is not worthy of me: and he that loveth son or daughter more than me is not worthy of me. 38 And he that taketh not his cross, and followeth after me, is not worthy of me. 39 He that findeth his life shall lose it: and he that loseth his life for my sake shall find it.

+Wednesday 04-June, 2025 diff --git a/scripture/kjv/06/04/25/scripture.json b/scripture/kjv/06/04/25/scripture.json new file mode 100644 index 00000000..9357cefd --- /dev/null +++ b/scripture/kjv/06/04/25/scripture.json @@ -0,0 +1,37 @@ +{ + "book": "Matthew", + "chapter": "10", + "date": "Wednesday 04-June, 2025", + "getbible": "https://getbible.life/kjv/Matthew/10/34-39", + "name": "Matthew 10:34-39", + "scripture": [ + { + "nr": "34", + "text": "Think not that I am come to send peace on earth: I came not to send peace, but a sword." + }, + { + "nr": "35", + "text": "For I am come to set a man at variance against his father, and the daughter against her mother, and the daughter in law against her mother in law." + }, + { + "nr": "36", + "text": "And a man’s foes shall be they of his own household." + }, + { + "nr": "37", + "text": "He that loveth father or mother more than me is not worthy of me: and he that loveth son or daughter more than me is not worthy of me." + }, + { + "nr": "38", + "text": "And he that taketh not his cross, and followeth after me, is not worthy of me." + }, + { + "nr": "39", + "text": "He that findeth his life shall lose it: and he that loseth his life for my sake shall find it." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "34-39", + "version": "kjv" +} diff --git a/scripture/kjv/06/04/25/scripture.md b/scripture/kjv/06/04/25/scripture.md new file mode 100644 index 00000000..5581de5c --- /dev/null +++ b/scripture/kjv/06/04/25/scripture.md @@ -0,0 +1,5 @@ +**Matthew 10:34-39** + +34 Think not that I am come to send peace on earth: I came not to send peace, but a sword. 35 For I am come to set a man at variance against his father, and the daughter against her mother, and the daughter in law against her mother in law. 36 And a man’s foes shall be they of his own household. 37 He that loveth father or mother more than me is not worthy of me: and he that loveth son or daughter more than me is not worthy of me. 38 And he that taketh not his cross, and followeth after me, is not worthy of me. 39 He that findeth his life shall lose it: and he that loseth his life for my sake shall find it. + +[Wednesday 04-June, 2025](https://getbible.life/kjv/Matthew/10/34-39) diff --git a/scripture/kjv/06/04/25/scripture.tg b/scripture/kjv/06/04/25/scripture.tg new file mode 100644 index 00000000..352764f0 --- /dev/null +++ b/scripture/kjv/06/04/25/scripture.tg @@ -0,0 +1,4 @@ +Matthew 10:34-39 +34 Think not that I am come to send peace on earth: I came not to send peace, but a sword. 35 For I am come to set a man at variance against his father, and the daughter against her mother, and the daughter in law against her mother in law. 36 And a man’s foes shall be they of his own household. 37 He that loveth father or mother more than me is not worthy of me: and he that loveth son or daughter more than me is not worthy of me. 38 And he that taketh not his cross, and followeth after me, is not worthy of me. 39 He that findeth his life shall lose it: and he that loseth his life for my sake shall find it. + +Wednesday 04-June, 2025 diff --git a/scripture/kjv/06/04/25/scripture.tg.id b/scripture/kjv/06/04/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/04/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/04/25/scripture.today b/scripture/kjv/06/04/25/scripture.today new file mode 100644 index 00000000..8744ecbb --- /dev/null +++ b/scripture/kjv/06/04/25/scripture.today @@ -0,0 +1 @@ +40 10:34-39 diff --git a/scripture/kjv/06/04/26/scripture.html b/scripture/kjv/06/04/26/scripture.html new file mode 100644 index 00000000..8d93a946 --- /dev/null +++ b/scripture/kjv/06/04/26/scripture.html @@ -0,0 +1,3 @@ +Matthew 5:3
+3 Blessed are the poor in spirit: for theirs is the kingdom of heaven.

+Thursday 04-June, 2026 diff --git a/scripture/kjv/06/04/26/scripture.json b/scripture/kjv/06/04/26/scripture.json new file mode 100644 index 00000000..c8970e3f --- /dev/null +++ b/scripture/kjv/06/04/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Matthew", + "chapter": "5", + "date": "Thursday 04-June, 2026", + "getbible": "https://getbible.life/kjv/Matthew/5/3", + "name": "Matthew 5:3", + "scripture": [ + { + "nr": "3", + "text": "Blessed are the poor in spirit: for theirs is the kingdom of heaven." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3", + "version": "kjv" +} diff --git a/scripture/kjv/06/04/26/scripture.md b/scripture/kjv/06/04/26/scripture.md new file mode 100644 index 00000000..acfe842d --- /dev/null +++ b/scripture/kjv/06/04/26/scripture.md @@ -0,0 +1,5 @@ +**Matthew 5:3** + +3 Blessed are the poor in spirit: for theirs is the kingdom of heaven. + +[Thursday 04-June, 2026](https://getbible.life/kjv/Matthew/5/3) diff --git a/scripture/kjv/06/04/26/scripture.tg b/scripture/kjv/06/04/26/scripture.tg new file mode 100644 index 00000000..81615e73 --- /dev/null +++ b/scripture/kjv/06/04/26/scripture.tg @@ -0,0 +1,4 @@ +Matthew 5:3 +3 Blessed are the poor in spirit: for theirs is the kingdom of heaven. + +Thursday 04-June, 2026 diff --git a/scripture/kjv/06/04/26/scripture.tg.id b/scripture/kjv/06/04/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/04/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/04/26/scripture.today b/scripture/kjv/06/04/26/scripture.today new file mode 100644 index 00000000..f3b2fd38 --- /dev/null +++ b/scripture/kjv/06/04/26/scripture.today @@ -0,0 +1 @@ +40 5:3 diff --git a/scripture/kjv/06/05/23/scripture.html b/scripture/kjv/06/05/23/scripture.html new file mode 100644 index 00000000..2a9a2277 --- /dev/null +++ b/scripture/kjv/06/05/23/scripture.html @@ -0,0 +1,3 @@ +Titus 2:1
+1 But speak thou the things which become sound doctrine:

+Monday 05-June, 2023 diff --git a/scripture/kjv/06/05/23/scripture.json b/scripture/kjv/06/05/23/scripture.json new file mode 100644 index 00000000..3603c14a --- /dev/null +++ b/scripture/kjv/06/05/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Monday 05-June, 2023", + "name": "Titus 2:1", + "scripture": [ + { + "nr": "1", + "text": "But speak thou the things which become sound doctrine:" + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/05/23/scripture.md b/scripture/kjv/06/05/23/scripture.md new file mode 100644 index 00000000..8193c719 --- /dev/null +++ b/scripture/kjv/06/05/23/scripture.md @@ -0,0 +1,5 @@ +**Titus 2:1** + +1 But speak thou the things which become sound doctrine: + +[Monday 05-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/05/23/scripture.tg b/scripture/kjv/06/05/23/scripture.tg new file mode 100644 index 00000000..69301f22 --- /dev/null +++ b/scripture/kjv/06/05/23/scripture.tg @@ -0,0 +1,4 @@ +Titus 2:1 +1 But speak thou the things which become sound doctrine: + +Monday 05-June, 2023 diff --git a/scripture/kjv/06/05/23/scripture.tg.id b/scripture/kjv/06/05/23/scripture.tg.id new file mode 100644 index 00000000..e5979870 --- /dev/null +++ b/scripture/kjv/06/05/23/scripture.tg.id @@ -0,0 +1 @@ +970 diff --git a/scripture/kjv/06/05/23/scripture.today b/scripture/kjv/06/05/23/scripture.today new file mode 100644 index 00000000..015c0584 --- /dev/null +++ b/scripture/kjv/06/05/23/scripture.today @@ -0,0 +1 @@ +56 2:1 diff --git a/scripture/kjv/06/05/24/scripture.html b/scripture/kjv/06/05/24/scripture.html new file mode 100644 index 00000000..08ee2c29 --- /dev/null +++ b/scripture/kjv/06/05/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 31:8-9
+8 Open thy mouth for the dumb in the cause of all such as are appointed to destruction. 9 Open thy mouth, judge righteously, and plead the cause of the poor and needy.

+Wednesday 05-June, 2024 diff --git a/scripture/kjv/06/05/24/scripture.json b/scripture/kjv/06/05/24/scripture.json new file mode 100644 index 00000000..25937c6c --- /dev/null +++ b/scripture/kjv/06/05/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Proverbs", + "chapter": "31", + "date": "Wednesday 05-June, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/31/8-9", + "name": "Proverbs 31:8-9", + "scripture": [ + { + "nr": "8", + "text": "Open thy mouth for the dumb in the cause of all such as are appointed to destruction." + }, + { + "nr": "9", + "text": "Open thy mouth, judge righteously, and plead the cause of the poor and needy." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8-9", + "version": "kjv" +} diff --git a/scripture/kjv/06/05/24/scripture.md b/scripture/kjv/06/05/24/scripture.md new file mode 100644 index 00000000..ab112e95 --- /dev/null +++ b/scripture/kjv/06/05/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 31:8-9** + +8 Open thy mouth for the dumb in the cause of all such as are appointed to destruction. 9 Open thy mouth, judge righteously, and plead the cause of the poor and needy. + +[Wednesday 05-June, 2024](https://getbible.life/kjv/Proverbs/31/8-9) diff --git a/scripture/kjv/06/05/24/scripture.tg b/scripture/kjv/06/05/24/scripture.tg new file mode 100644 index 00000000..4772038f --- /dev/null +++ b/scripture/kjv/06/05/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 31:8-9 +8 Open thy mouth for the dumb in the cause of all such as are appointed to destruction. 9 Open thy mouth, judge righteously, and plead the cause of the poor and needy. + +Wednesday 05-June, 2024 diff --git a/scripture/kjv/06/05/24/scripture.tg.id b/scripture/kjv/06/05/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/05/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/05/24/scripture.today b/scripture/kjv/06/05/24/scripture.today new file mode 100644 index 00000000..4e283d99 --- /dev/null +++ b/scripture/kjv/06/05/24/scripture.today @@ -0,0 +1 @@ +20 31:8-9 diff --git a/scripture/kjv/06/05/25/scripture.html b/scripture/kjv/06/05/25/scripture.html new file mode 100644 index 00000000..de003cb7 --- /dev/null +++ b/scripture/kjv/06/05/25/scripture.html @@ -0,0 +1,3 @@ +Leviticus 19:19
+19 Ye shall keep my statutes. Thou shalt not let thy cattle gender with a diverse kind: thou shalt not sow thy field with mingled seed: neither shall a garment mingled of linen and woollen come upon thee.

+Thursday 05-June, 2025 diff --git a/scripture/kjv/06/05/25/scripture.json b/scripture/kjv/06/05/25/scripture.json new file mode 100644 index 00000000..284d114e --- /dev/null +++ b/scripture/kjv/06/05/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Leviticus", + "chapter": "19", + "date": "Thursday 05-June, 2025", + "getbible": "https://getbible.life/kjv/Leviticus/19/19", + "name": "Leviticus 19:19", + "scripture": [ + { + "nr": "19", + "text": "Ye shall keep my statutes. Thou shalt not let thy cattle gender with a diverse kind: thou shalt not sow thy field with mingled seed: neither shall a garment mingled of linen and woollen come upon thee." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "19", + "version": "kjv" +} diff --git a/scripture/kjv/06/05/25/scripture.md b/scripture/kjv/06/05/25/scripture.md new file mode 100644 index 00000000..0b07234c --- /dev/null +++ b/scripture/kjv/06/05/25/scripture.md @@ -0,0 +1,5 @@ +**Leviticus 19:19** + +19 Ye shall keep my statutes. Thou shalt not let thy cattle gender with a diverse kind: thou shalt not sow thy field with mingled seed: neither shall a garment mingled of linen and woollen come upon thee. + +[Thursday 05-June, 2025](https://getbible.life/kjv/Leviticus/19/19) diff --git a/scripture/kjv/06/05/25/scripture.tg b/scripture/kjv/06/05/25/scripture.tg new file mode 100644 index 00000000..e4f93a73 --- /dev/null +++ b/scripture/kjv/06/05/25/scripture.tg @@ -0,0 +1,4 @@ +Leviticus 19:19 +19 Ye shall keep my statutes. Thou shalt not let thy cattle gender with a diverse kind: thou shalt not sow thy field with mingled seed: neither shall a garment mingled of linen and woollen come upon thee. + +Thursday 05-June, 2025 diff --git a/scripture/kjv/06/05/25/scripture.tg.id b/scripture/kjv/06/05/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/05/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/05/25/scripture.today b/scripture/kjv/06/05/25/scripture.today new file mode 100644 index 00000000..2c9ece99 --- /dev/null +++ b/scripture/kjv/06/05/25/scripture.today @@ -0,0 +1 @@ +3 19:19 diff --git a/scripture/kjv/06/05/26/scripture.html b/scripture/kjv/06/05/26/scripture.html new file mode 100644 index 00000000..e3581c89 --- /dev/null +++ b/scripture/kjv/06/05/26/scripture.html @@ -0,0 +1,3 @@ +Daniel 3:27
+27 And the princes, governors, and captains, and the king’s counsellors, being gathered together, saw these men, upon whose bodies the fire had no power, nor was an hair of their head singed, neither were their coats changed, nor the smell of fire had passed on them.

+Friday 05-June, 2026 diff --git a/scripture/kjv/06/05/26/scripture.json b/scripture/kjv/06/05/26/scripture.json new file mode 100644 index 00000000..b35f20c2 --- /dev/null +++ b/scripture/kjv/06/05/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Daniel", + "chapter": "3", + "date": "Friday 05-June, 2026", + "getbible": "https://getbible.life/kjv/Daniel/3/27", + "name": "Daniel 3:27", + "scripture": [ + { + "nr": "27", + "text": "And the princes, governors, and captains, and the king’s counsellors, being gathered together, saw these men, upon whose bodies the fire had no power, nor was an hair of their head singed, neither were their coats changed, nor the smell of fire had passed on them." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "27", + "version": "kjv" +} diff --git a/scripture/kjv/06/05/26/scripture.md b/scripture/kjv/06/05/26/scripture.md new file mode 100644 index 00000000..cd3b56fb --- /dev/null +++ b/scripture/kjv/06/05/26/scripture.md @@ -0,0 +1,5 @@ +**Daniel 3:27** + +27 And the princes, governors, and captains, and the king’s counsellors, being gathered together, saw these men, upon whose bodies the fire had no power, nor was an hair of their head singed, neither were their coats changed, nor the smell of fire had passed on them. + +[Friday 05-June, 2026](https://getbible.life/kjv/Daniel/3/27) diff --git a/scripture/kjv/06/05/26/scripture.tg b/scripture/kjv/06/05/26/scripture.tg new file mode 100644 index 00000000..19416314 --- /dev/null +++ b/scripture/kjv/06/05/26/scripture.tg @@ -0,0 +1,4 @@ +Daniel 3:27 +27 And the princes, governors, and captains, and the king’s counsellors, being gathered together, saw these men, upon whose bodies the fire had no power, nor was an hair of their head singed, neither were their coats changed, nor the smell of fire had passed on them. + +Friday 05-June, 2026 diff --git a/scripture/kjv/06/05/26/scripture.tg.id b/scripture/kjv/06/05/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/05/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/05/26/scripture.today b/scripture/kjv/06/05/26/scripture.today new file mode 100644 index 00000000..a2d4f272 --- /dev/null +++ b/scripture/kjv/06/05/26/scripture.today @@ -0,0 +1 @@ +27 3:27 diff --git a/scripture/kjv/06/06/23/scripture.html b/scripture/kjv/06/06/23/scripture.html new file mode 100644 index 00000000..56241a2b --- /dev/null +++ b/scripture/kjv/06/06/23/scripture.html @@ -0,0 +1,3 @@ +John 12:46
+46 I am come a light into the world, that whosoever believeth on me should not abide in darkness.

+Tuesday 06-June, 2023 diff --git a/scripture/kjv/06/06/23/scripture.json b/scripture/kjv/06/06/23/scripture.json new file mode 100644 index 00000000..ba3221a6 --- /dev/null +++ b/scripture/kjv/06/06/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Tuesday 06-June, 2023", + "name": "John 12:46", + "scripture": [ + { + "nr": "46", + "text": "I am come a light into the world, that whosoever believeth on me should not abide in darkness." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/06/23/scripture.md b/scripture/kjv/06/06/23/scripture.md new file mode 100644 index 00000000..c4d8508a --- /dev/null +++ b/scripture/kjv/06/06/23/scripture.md @@ -0,0 +1,5 @@ +**John 12:46** + +46 I am come a light into the world, that whosoever believeth on me should not abide in darkness. + +[Tuesday 06-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/06/23/scripture.tg b/scripture/kjv/06/06/23/scripture.tg new file mode 100644 index 00000000..6b4242ac --- /dev/null +++ b/scripture/kjv/06/06/23/scripture.tg @@ -0,0 +1,4 @@ +John 12:46 +46 I am come a light into the world, that whosoever believeth on me should not abide in darkness. + +Tuesday 06-June, 2023 diff --git a/scripture/kjv/06/06/23/scripture.tg.id b/scripture/kjv/06/06/23/scripture.tg.id new file mode 100644 index 00000000..3d78d3c5 --- /dev/null +++ b/scripture/kjv/06/06/23/scripture.tg.id @@ -0,0 +1 @@ +971 diff --git a/scripture/kjv/06/06/23/scripture.today b/scripture/kjv/06/06/23/scripture.today new file mode 100644 index 00000000..eee6e8e8 --- /dev/null +++ b/scripture/kjv/06/06/23/scripture.today @@ -0,0 +1 @@ +43 12:46 diff --git a/scripture/kjv/06/06/24/scripture.html b/scripture/kjv/06/06/24/scripture.html new file mode 100644 index 00000000..cd9e0a4b --- /dev/null +++ b/scripture/kjv/06/06/24/scripture.html @@ -0,0 +1,3 @@ +Matthew 26:36-45
+36 Then cometh Jesus with them unto a place called Gethsemane, and saith unto the disciples, Sit ye here, while I go and pray yonder. 37 And he took with him Peter and the two sons of Zebedee, and began to be sorrowful and very heavy. 38 Then saith he unto them, My soul is exceeding sorrowful, even unto death: tarry ye here, and watch with me. 39 And he went a little further, and fell on his face, and prayed, saying, O my Father, if it be possible, let this cup pass from me: nevertheless not as I will, but as thou wilt. 40 And he cometh unto the disciples, and findeth them asleep, and saith unto Peter, What, could ye not watch with me one hour? 41 Watch and pray, that ye enter not into temptation: the spirit indeed is willing, but the flesh is weak. 42 He went away again the second time, and prayed, saying, O my Father, if this cup may not pass away from me, except I drink it, thy will be done. 43 And he came and found them asleep again: for their eyes were heavy. 44 And he left them, and went away again, and prayed the third time, saying the same words. 45 Then cometh he to his disciples, and saith unto them, Sleep on now, and take your rest: behold, the hour is at hand, and the Son of man is betrayed into the hands of sinners.

+Thursday 06-June, 2024 diff --git a/scripture/kjv/06/06/24/scripture.json b/scripture/kjv/06/06/24/scripture.json new file mode 100644 index 00000000..ede638eb --- /dev/null +++ b/scripture/kjv/06/06/24/scripture.json @@ -0,0 +1,53 @@ +{ + "book": "Matthew", + "chapter": "26", + "date": "Thursday 06-June, 2024", + "getbible": "https://getbible.life/kjv/Matthew/26/36-45", + "name": "Matthew 26:36-45", + "scripture": [ + { + "nr": "36", + "text": "Then cometh Jesus with them unto a place called Gethsemane, and saith unto the disciples, Sit ye here, while I go and pray yonder." + }, + { + "nr": "37", + "text": "And he took with him Peter and the two sons of Zebedee, and began to be sorrowful and very heavy." + }, + { + "nr": "38", + "text": "Then saith he unto them, My soul is exceeding sorrowful, even unto death: tarry ye here, and watch with me." + }, + { + "nr": "39", + "text": "And he went a little further, and fell on his face, and prayed, saying, O my Father, if it be possible, let this cup pass from me: nevertheless not as I will, but as thou wilt." + }, + { + "nr": "40", + "text": "And he cometh unto the disciples, and findeth them asleep, and saith unto Peter, What, could ye not watch with me one hour?" + }, + { + "nr": "41", + "text": "Watch and pray, that ye enter not into temptation: the spirit indeed is willing, but the flesh is weak." + }, + { + "nr": "42", + "text": "He went away again the second time, and prayed, saying, O my Father, if this cup may not pass away from me, except I drink it, thy will be done." + }, + { + "nr": "43", + "text": "And he came and found them asleep again: for their eyes were heavy." + }, + { + "nr": "44", + "text": "And he left them, and went away again, and prayed the third time, saying the same words." + }, + { + "nr": "45", + "text": "Then cometh he to his disciples, and saith unto them, Sleep on now, and take your rest: behold, the hour is at hand, and the Son of man is betrayed into the hands of sinners." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "36-45", + "version": "kjv" +} diff --git a/scripture/kjv/06/06/24/scripture.md b/scripture/kjv/06/06/24/scripture.md new file mode 100644 index 00000000..ccc88a37 --- /dev/null +++ b/scripture/kjv/06/06/24/scripture.md @@ -0,0 +1,5 @@ +**Matthew 26:36-45** + +36 Then cometh Jesus with them unto a place called Gethsemane, and saith unto the disciples, Sit ye here, while I go and pray yonder. 37 And he took with him Peter and the two sons of Zebedee, and began to be sorrowful and very heavy. 38 Then saith he unto them, My soul is exceeding sorrowful, even unto death: tarry ye here, and watch with me. 39 And he went a little further, and fell on his face, and prayed, saying, O my Father, if it be possible, let this cup pass from me: nevertheless not as I will, but as thou wilt. 40 And he cometh unto the disciples, and findeth them asleep, and saith unto Peter, What, could ye not watch with me one hour? 41 Watch and pray, that ye enter not into temptation: the spirit indeed is willing, but the flesh is weak. 42 He went away again the second time, and prayed, saying, O my Father, if this cup may not pass away from me, except I drink it, thy will be done. 43 And he came and found them asleep again: for their eyes were heavy. 44 And he left them, and went away again, and prayed the third time, saying the same words. 45 Then cometh he to his disciples, and saith unto them, Sleep on now, and take your rest: behold, the hour is at hand, and the Son of man is betrayed into the hands of sinners. + +[Thursday 06-June, 2024](https://getbible.life/kjv/Matthew/26/36-45) diff --git a/scripture/kjv/06/06/24/scripture.tg b/scripture/kjv/06/06/24/scripture.tg new file mode 100644 index 00000000..f979eb35 --- /dev/null +++ b/scripture/kjv/06/06/24/scripture.tg @@ -0,0 +1,4 @@ +Matthew 26:36-45 +36 Then cometh Jesus with them unto a place called Gethsemane, and saith unto the disciples, Sit ye here, while I go and pray yonder. 37 And he took with him Peter and the two sons of Zebedee, and began to be sorrowful and very heavy. 38 Then saith he unto them, My soul is exceeding sorrowful, even unto death: tarry ye here, and watch with me. 39 And he went a little further, and fell on his face, and prayed, saying, O my Father, if it be possible, let this cup pass from me: nevertheless not as I will, but as thou wilt. 40 And he cometh unto the disciples, and findeth them asleep, and saith unto Peter, What, could ye not watch with me one hour? 41 Watch and pray, that ye enter not into temptation: the spirit indeed is willing, but the flesh is weak. 42 He went away again the second time, and prayed, saying, O my Father, if this cup may not pass away from me, except I drink it, thy will be done. 43 And he came and found them asleep again: for their eyes were heavy. 44 And he left them, and went away again, and prayed the third time, saying the same words. 45 Then cometh he to his disciples, and saith unto them, Sleep on now, and take your rest: behold, the hour is at hand, and the Son of man is betrayed into the hands of sinners. + +Thursday 06-June, 2024 diff --git a/scripture/kjv/06/06/24/scripture.tg.id b/scripture/kjv/06/06/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/06/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/06/24/scripture.today b/scripture/kjv/06/06/24/scripture.today new file mode 100644 index 00000000..34234d00 --- /dev/null +++ b/scripture/kjv/06/06/24/scripture.today @@ -0,0 +1 @@ +40 26:36-45 diff --git a/scripture/kjv/06/06/25/scripture.html b/scripture/kjv/06/06/25/scripture.html new file mode 100644 index 00000000..c26fbb4b --- /dev/null +++ b/scripture/kjv/06/06/25/scripture.html @@ -0,0 +1,3 @@ +Proverbs 19:6
+6 Many will intreat the favour of the prince: and every man is a friend to him that giveth gifts.

+Friday 06-June, 2025 diff --git a/scripture/kjv/06/06/25/scripture.json b/scripture/kjv/06/06/25/scripture.json new file mode 100644 index 00000000..e5ddd460 --- /dev/null +++ b/scripture/kjv/06/06/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "19", + "date": "Friday 06-June, 2025", + "getbible": "https://getbible.life/kjv/Proverbs/19/6", + "name": "Proverbs 19:6", + "scripture": [ + { + "nr": "6", + "text": "Many will intreat the favour of the prince: and every man is a friend to him that giveth gifts." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6", + "version": "kjv" +} diff --git a/scripture/kjv/06/06/25/scripture.md b/scripture/kjv/06/06/25/scripture.md new file mode 100644 index 00000000..17f57cb4 --- /dev/null +++ b/scripture/kjv/06/06/25/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 19:6** + +6 Many will intreat the favour of the prince: and every man is a friend to him that giveth gifts. + +[Friday 06-June, 2025](https://getbible.life/kjv/Proverbs/19/6) diff --git a/scripture/kjv/06/06/25/scripture.tg b/scripture/kjv/06/06/25/scripture.tg new file mode 100644 index 00000000..97b79e16 --- /dev/null +++ b/scripture/kjv/06/06/25/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 19:6 +6 Many will intreat the favour of the prince: and every man is a friend to him that giveth gifts. + +Friday 06-June, 2025 diff --git a/scripture/kjv/06/06/25/scripture.tg.id b/scripture/kjv/06/06/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/06/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/06/25/scripture.today b/scripture/kjv/06/06/25/scripture.today new file mode 100644 index 00000000..f0dceab2 --- /dev/null +++ b/scripture/kjv/06/06/25/scripture.today @@ -0,0 +1 @@ +20 19:6 diff --git a/scripture/kjv/06/06/26/scripture.html b/scripture/kjv/06/06/26/scripture.html new file mode 100644 index 00000000..355d35bf --- /dev/null +++ b/scripture/kjv/06/06/26/scripture.html @@ -0,0 +1,3 @@ +Luke 1:45
+45 And blessed is she that believed: for there shall be a performance of those things which were told her from the Lord.

+Saturday 06-June, 2026 diff --git a/scripture/kjv/06/06/26/scripture.json b/scripture/kjv/06/06/26/scripture.json new file mode 100644 index 00000000..6e1a70a6 --- /dev/null +++ b/scripture/kjv/06/06/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "1", + "date": "Saturday 06-June, 2026", + "getbible": "https://getbible.life/kjv/Luke/1/45", + "name": "Luke 1:45", + "scripture": [ + { + "nr": "45", + "text": "And blessed is she that believed: for there shall be a performance of those things which were told her from the Lord." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "45", + "version": "kjv" +} diff --git a/scripture/kjv/06/06/26/scripture.md b/scripture/kjv/06/06/26/scripture.md new file mode 100644 index 00000000..484d7b27 --- /dev/null +++ b/scripture/kjv/06/06/26/scripture.md @@ -0,0 +1,5 @@ +**Luke 1:45** + +45 And blessed is she that believed: for there shall be a performance of those things which were told her from the Lord. + +[Saturday 06-June, 2026](https://getbible.life/kjv/Luke/1/45) diff --git a/scripture/kjv/06/06/26/scripture.tg b/scripture/kjv/06/06/26/scripture.tg new file mode 100644 index 00000000..259ec446 --- /dev/null +++ b/scripture/kjv/06/06/26/scripture.tg @@ -0,0 +1,4 @@ +Luke 1:45 +45 And blessed is she that believed: for there shall be a performance of those things which were told her from the Lord. + +Saturday 06-June, 2026 diff --git a/scripture/kjv/06/06/26/scripture.tg.id b/scripture/kjv/06/06/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/06/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/06/26/scripture.today b/scripture/kjv/06/06/26/scripture.today new file mode 100644 index 00000000..24796fb0 --- /dev/null +++ b/scripture/kjv/06/06/26/scripture.today @@ -0,0 +1 @@ +42 1:45 diff --git a/scripture/kjv/06/07/23/scripture.html b/scripture/kjv/06/07/23/scripture.html new file mode 100644 index 00000000..eae9fb71 --- /dev/null +++ b/scripture/kjv/06/07/23/scripture.html @@ -0,0 +1,3 @@ +Acts 4:14
+14 And beholding the man which was healed standing with them, they could say nothing against it.

+Wednesday 07-June, 2023 diff --git a/scripture/kjv/06/07/23/scripture.json b/scripture/kjv/06/07/23/scripture.json new file mode 100644 index 00000000..3e6ffd64 --- /dev/null +++ b/scripture/kjv/06/07/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Wednesday 07-June, 2023", + "name": "Acts 4:14", + "scripture": [ + { + "nr": "14", + "text": "And beholding the man which was healed standing with them, they could say nothing against it." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/07/23/scripture.md b/scripture/kjv/06/07/23/scripture.md new file mode 100644 index 00000000..0c0046d8 --- /dev/null +++ b/scripture/kjv/06/07/23/scripture.md @@ -0,0 +1,5 @@ +**Acts 4:14** + +14 And beholding the man which was healed standing with them, they could say nothing against it. + +[Wednesday 07-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/07/23/scripture.tg b/scripture/kjv/06/07/23/scripture.tg new file mode 100644 index 00000000..73e7a79c --- /dev/null +++ b/scripture/kjv/06/07/23/scripture.tg @@ -0,0 +1,4 @@ +Acts 4:14 +14 And beholding the man which was healed standing with them, they could say nothing against it. + +Wednesday 07-June, 2023 diff --git a/scripture/kjv/06/07/23/scripture.tg.id b/scripture/kjv/06/07/23/scripture.tg.id new file mode 100644 index 00000000..66ae0255 --- /dev/null +++ b/scripture/kjv/06/07/23/scripture.tg.id @@ -0,0 +1 @@ +972 diff --git a/scripture/kjv/06/07/23/scripture.today b/scripture/kjv/06/07/23/scripture.today new file mode 100644 index 00000000..ac9433a8 --- /dev/null +++ b/scripture/kjv/06/07/23/scripture.today @@ -0,0 +1 @@ +44 4:14 diff --git a/scripture/kjv/06/07/24/scripture.html b/scripture/kjv/06/07/24/scripture.html new file mode 100644 index 00000000..0a841381 --- /dev/null +++ b/scripture/kjv/06/07/24/scripture.html @@ -0,0 +1,3 @@ +2 Thessalonians 3:3
+3 But the Lord is faithful, who shall stablish you, and keep you from evil.

+Friday 07-June, 2024 diff --git a/scripture/kjv/06/07/24/scripture.json b/scripture/kjv/06/07/24/scripture.json new file mode 100644 index 00000000..eceb8417 --- /dev/null +++ b/scripture/kjv/06/07/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Thessalonians", + "chapter": "3", + "date": "Friday 07-June, 2024", + "getbible": "https://getbible.life/kjv/2 Thessalonians/3/3", + "name": "2 Thessalonians 3:3", + "scripture": [ + { + "nr": "3", + "text": "But the Lord is faithful, who shall stablish you, and keep you from evil." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3", + "version": "kjv" +} diff --git a/scripture/kjv/06/07/24/scripture.md b/scripture/kjv/06/07/24/scripture.md new file mode 100644 index 00000000..ed93270e --- /dev/null +++ b/scripture/kjv/06/07/24/scripture.md @@ -0,0 +1,5 @@ +**2 Thessalonians 3:3** + +3 But the Lord is faithful, who shall stablish you, and keep you from evil. + +[Friday 07-June, 2024](https://getbible.life/kjv/2 Thessalonians/3/3) diff --git a/scripture/kjv/06/07/24/scripture.tg b/scripture/kjv/06/07/24/scripture.tg new file mode 100644 index 00000000..7f764553 --- /dev/null +++ b/scripture/kjv/06/07/24/scripture.tg @@ -0,0 +1,4 @@ +2 Thessalonians 3:3 +3 But the Lord is faithful, who shall stablish you, and keep you from evil. + +Friday 07-June, 2024 diff --git a/scripture/kjv/06/07/24/scripture.tg.id b/scripture/kjv/06/07/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/07/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/07/24/scripture.today b/scripture/kjv/06/07/24/scripture.today new file mode 100644 index 00000000..56da6651 --- /dev/null +++ b/scripture/kjv/06/07/24/scripture.today @@ -0,0 +1 @@ +53 3:3 diff --git a/scripture/kjv/06/07/25/scripture.html b/scripture/kjv/06/07/25/scripture.html new file mode 100644 index 00000000..3b3e97c6 --- /dev/null +++ b/scripture/kjv/06/07/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 119:15
+15 I will meditate in thy precepts, and have respect unto thy ways.

+Saturday 07-June, 2025 diff --git a/scripture/kjv/06/07/25/scripture.json b/scripture/kjv/06/07/25/scripture.json new file mode 100644 index 00000000..4a40a5d9 --- /dev/null +++ b/scripture/kjv/06/07/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "119", + "date": "Saturday 07-June, 2025", + "getbible": "https://getbible.life/kjv/Psalms/119/15", + "name": "Psalms 119:15", + "scripture": [ + { + "nr": "15", + "text": "I will meditate in thy precepts, and have respect unto thy ways." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15", + "version": "kjv" +} diff --git a/scripture/kjv/06/07/25/scripture.md b/scripture/kjv/06/07/25/scripture.md new file mode 100644 index 00000000..ee6c978e --- /dev/null +++ b/scripture/kjv/06/07/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 119:15** + +15 I will meditate in thy precepts, and have respect unto thy ways. + +[Saturday 07-June, 2025](https://getbible.life/kjv/Psalms/119/15) diff --git a/scripture/kjv/06/07/25/scripture.tg b/scripture/kjv/06/07/25/scripture.tg new file mode 100644 index 00000000..6715ce39 --- /dev/null +++ b/scripture/kjv/06/07/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 119:15 +15 I will meditate in thy precepts, and have respect unto thy ways. + +Saturday 07-June, 2025 diff --git a/scripture/kjv/06/07/25/scripture.tg.id b/scripture/kjv/06/07/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/07/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/07/25/scripture.today b/scripture/kjv/06/07/25/scripture.today new file mode 100644 index 00000000..fc2be9b6 --- /dev/null +++ b/scripture/kjv/06/07/25/scripture.today @@ -0,0 +1 @@ +19 119:15 diff --git a/scripture/kjv/06/07/26/scripture.html b/scripture/kjv/06/07/26/scripture.html new file mode 100644 index 00000000..6fd4ae93 --- /dev/null +++ b/scripture/kjv/06/07/26/scripture.html @@ -0,0 +1,3 @@ +Matthew 23:28
+28 Even so ye also outwardly appear righteous unto men, but within ye are full of hypocrisy and iniquity.

+Sunday 07-June, 2026 diff --git a/scripture/kjv/06/07/26/scripture.json b/scripture/kjv/06/07/26/scripture.json new file mode 100644 index 00000000..e2fb4db9 --- /dev/null +++ b/scripture/kjv/06/07/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Matthew", + "chapter": "23", + "date": "Sunday 07-June, 2026", + "getbible": "https://getbible.life/kjv/Matthew/23/28", + "name": "Matthew 23:28", + "scripture": [ + { + "nr": "28", + "text": "Even so ye also outwardly appear righteous unto men, but within ye are full of hypocrisy and iniquity." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "28", + "version": "kjv" +} diff --git a/scripture/kjv/06/07/26/scripture.md b/scripture/kjv/06/07/26/scripture.md new file mode 100644 index 00000000..d03b53e5 --- /dev/null +++ b/scripture/kjv/06/07/26/scripture.md @@ -0,0 +1,5 @@ +**Matthew 23:28** + +28 Even so ye also outwardly appear righteous unto men, but within ye are full of hypocrisy and iniquity. + +[Sunday 07-June, 2026](https://getbible.life/kjv/Matthew/23/28) diff --git a/scripture/kjv/06/07/26/scripture.tg b/scripture/kjv/06/07/26/scripture.tg new file mode 100644 index 00000000..719d0a1d --- /dev/null +++ b/scripture/kjv/06/07/26/scripture.tg @@ -0,0 +1,4 @@ +Matthew 23:28 +28 Even so ye also outwardly appear righteous unto men, but within ye are full of hypocrisy and iniquity. + +Sunday 07-June, 2026 diff --git a/scripture/kjv/06/07/26/scripture.tg.id b/scripture/kjv/06/07/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/07/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/07/26/scripture.today b/scripture/kjv/06/07/26/scripture.today new file mode 100644 index 00000000..37d49fee --- /dev/null +++ b/scripture/kjv/06/07/26/scripture.today @@ -0,0 +1 @@ +40 23:28 diff --git a/scripture/kjv/06/08/23/scripture.html b/scripture/kjv/06/08/23/scripture.html new file mode 100644 index 00000000..70bc7a31 --- /dev/null +++ b/scripture/kjv/06/08/23/scripture.html @@ -0,0 +1,3 @@ +Colossians 2:16-17
+16 Let no man therefore judge you in meat, or in drink, or in respect of an holyday, or of the new moon, or of the sabbath days: 17 Which are a shadow of things to come; but the body is of Christ.

+Thursday 08-June, 2023 diff --git a/scripture/kjv/06/08/23/scripture.json b/scripture/kjv/06/08/23/scripture.json new file mode 100644 index 00000000..b65f743d --- /dev/null +++ b/scripture/kjv/06/08/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Thursday 08-June, 2023", + "name": "Colossians 2:16-17", + "scripture": [ + { + "nr": "16", + "text": "Let no man therefore judge you in meat, or in drink, or in respect of an holyday, or of the new moon, or of the sabbath days:" + }, + { + "nr": "17", + "text": "Which are a shadow of things to come; but the body is of Christ." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/08/23/scripture.md b/scripture/kjv/06/08/23/scripture.md new file mode 100644 index 00000000..62120b86 --- /dev/null +++ b/scripture/kjv/06/08/23/scripture.md @@ -0,0 +1,5 @@ +**Colossians 2:16-17** + +16 Let no man therefore judge you in meat, or in drink, or in respect of an holyday, or of the new moon, or of the sabbath days: 17 Which are a shadow of things to come; but the body is of Christ. + +[Thursday 08-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/08/23/scripture.tg b/scripture/kjv/06/08/23/scripture.tg new file mode 100644 index 00000000..33c9e138 --- /dev/null +++ b/scripture/kjv/06/08/23/scripture.tg @@ -0,0 +1,4 @@ +Colossians 2:16-17 +16 Let no man therefore judge you in meat, or in drink, or in respect of an holyday, or of the new moon, or of the sabbath days: 17 Which are a shadow of things to come; but the body is of Christ. + +Thursday 08-June, 2023 diff --git a/scripture/kjv/06/08/23/scripture.tg.id b/scripture/kjv/06/08/23/scripture.tg.id new file mode 100644 index 00000000..835c5f1d --- /dev/null +++ b/scripture/kjv/06/08/23/scripture.tg.id @@ -0,0 +1 @@ +973 diff --git a/scripture/kjv/06/08/23/scripture.today b/scripture/kjv/06/08/23/scripture.today new file mode 100644 index 00000000..3639dfd0 --- /dev/null +++ b/scripture/kjv/06/08/23/scripture.today @@ -0,0 +1 @@ +51 2:16-17 diff --git a/scripture/kjv/06/08/24/scripture.html b/scripture/kjv/06/08/24/scripture.html new file mode 100644 index 00000000..f8e24ae2 --- /dev/null +++ b/scripture/kjv/06/08/24/scripture.html @@ -0,0 +1,3 @@ +Revelation 2:17
+17 He that hath an ear, let him hear what the Spirit saith unto the churches; To him that overcometh will I give to eat of the hidden manna, and will give him a white stone, and in the stone a new name written, which no man knoweth saving he that receiveth it.

+Saturday 08-June, 2024 diff --git a/scripture/kjv/06/08/24/scripture.json b/scripture/kjv/06/08/24/scripture.json new file mode 100644 index 00000000..641fa426 --- /dev/null +++ b/scripture/kjv/06/08/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Revelation", + "chapter": "2", + "date": "Saturday 08-June, 2024", + "getbible": "https://getbible.life/kjv/Revelation/2/17", + "name": "Revelation 2:17", + "scripture": [ + { + "nr": "17", + "text": "He that hath an ear, let him hear what the Spirit saith unto the churches; To him that overcometh will I give to eat of the hidden manna, and will give him a white stone, and in the stone a new name written, which no man knoweth saving he that receiveth it." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17", + "version": "kjv" +} diff --git a/scripture/kjv/06/08/24/scripture.md b/scripture/kjv/06/08/24/scripture.md new file mode 100644 index 00000000..a20b8a20 --- /dev/null +++ b/scripture/kjv/06/08/24/scripture.md @@ -0,0 +1,5 @@ +**Revelation 2:17** + +17 He that hath an ear, let him hear what the Spirit saith unto the churches; To him that overcometh will I give to eat of the hidden manna, and will give him a white stone, and in the stone a new name written, which no man knoweth saving he that receiveth it. + +[Saturday 08-June, 2024](https://getbible.life/kjv/Revelation/2/17) diff --git a/scripture/kjv/06/08/24/scripture.tg b/scripture/kjv/06/08/24/scripture.tg new file mode 100644 index 00000000..fa0a6d57 --- /dev/null +++ b/scripture/kjv/06/08/24/scripture.tg @@ -0,0 +1,4 @@ +Revelation 2:17 +17 He that hath an ear, let him hear what the Spirit saith unto the churches; To him that overcometh will I give to eat of the hidden manna, and will give him a white stone, and in the stone a new name written, which no man knoweth saving he that receiveth it. + +Saturday 08-June, 2024 diff --git a/scripture/kjv/06/08/24/scripture.tg.id b/scripture/kjv/06/08/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/08/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/08/24/scripture.today b/scripture/kjv/06/08/24/scripture.today new file mode 100644 index 00000000..49be5dfe --- /dev/null +++ b/scripture/kjv/06/08/24/scripture.today @@ -0,0 +1 @@ +66 2:17 diff --git a/scripture/kjv/06/08/25/scripture.html b/scripture/kjv/06/08/25/scripture.html new file mode 100644 index 00000000..c55a48d4 --- /dev/null +++ b/scripture/kjv/06/08/25/scripture.html @@ -0,0 +1,3 @@ +Daniel 9:19
+19 O Lord, hear; O Lord, forgive; O Lord, hearken and do; defer not, for thine own sake, O my God: for thy city and thy people are called by thy name.

+Sunday 08-June, 2025 diff --git a/scripture/kjv/06/08/25/scripture.json b/scripture/kjv/06/08/25/scripture.json new file mode 100644 index 00000000..2c77d94c --- /dev/null +++ b/scripture/kjv/06/08/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Daniel", + "chapter": "9", + "date": "Sunday 08-June, 2025", + "getbible": "https://getbible.life/kjv/Daniel/9/19", + "name": "Daniel 9:19", + "scripture": [ + { + "nr": "19", + "text": "O Lord, hear; O Lord, forgive; O Lord, hearken and do; defer not, for thine own sake, O my God: for thy city and thy people are called by thy name." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "19", + "version": "kjv" +} diff --git a/scripture/kjv/06/08/25/scripture.md b/scripture/kjv/06/08/25/scripture.md new file mode 100644 index 00000000..20a53670 --- /dev/null +++ b/scripture/kjv/06/08/25/scripture.md @@ -0,0 +1,5 @@ +**Daniel 9:19** + +19 O Lord, hear; O Lord, forgive; O Lord, hearken and do; defer not, for thine own sake, O my God: for thy city and thy people are called by thy name. + +[Sunday 08-June, 2025](https://getbible.life/kjv/Daniel/9/19) diff --git a/scripture/kjv/06/08/25/scripture.tg b/scripture/kjv/06/08/25/scripture.tg new file mode 100644 index 00000000..b46719de --- /dev/null +++ b/scripture/kjv/06/08/25/scripture.tg @@ -0,0 +1,4 @@ +Daniel 9:19 +19 O Lord, hear; O Lord, forgive; O Lord, hearken and do; defer not, for thine own sake, O my God: for thy city and thy people are called by thy name. + +Sunday 08-June, 2025 diff --git a/scripture/kjv/06/08/25/scripture.tg.id b/scripture/kjv/06/08/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/08/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/08/25/scripture.today b/scripture/kjv/06/08/25/scripture.today new file mode 100644 index 00000000..2f656017 --- /dev/null +++ b/scripture/kjv/06/08/25/scripture.today @@ -0,0 +1 @@ +27 9:19 diff --git a/scripture/kjv/06/08/26/scripture.html b/scripture/kjv/06/08/26/scripture.html new file mode 100644 index 00000000..0d1e927c --- /dev/null +++ b/scripture/kjv/06/08/26/scripture.html @@ -0,0 +1,3 @@ +Luke 24:49
+49 And, behold, I send the promise of my Father upon you: but tarry ye in the city of Jerusalem, until ye be endued with power from on high.

+Monday 08-June, 2026 diff --git a/scripture/kjv/06/08/26/scripture.json b/scripture/kjv/06/08/26/scripture.json new file mode 100644 index 00000000..1bca9604 --- /dev/null +++ b/scripture/kjv/06/08/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "24", + "date": "Monday 08-June, 2026", + "getbible": "https://getbible.life/kjv/Luke/24/49", + "name": "Luke 24:49", + "scripture": [ + { + "nr": "49", + "text": "And, behold, I send the promise of my Father upon you: but tarry ye in the city of Jerusalem, until ye be endued with power from on high." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "49", + "version": "kjv" +} diff --git a/scripture/kjv/06/08/26/scripture.md b/scripture/kjv/06/08/26/scripture.md new file mode 100644 index 00000000..deef60d7 --- /dev/null +++ b/scripture/kjv/06/08/26/scripture.md @@ -0,0 +1,5 @@ +**Luke 24:49** + +49 And, behold, I send the promise of my Father upon you: but tarry ye in the city of Jerusalem, until ye be endued with power from on high. + +[Monday 08-June, 2026](https://getbible.life/kjv/Luke/24/49) diff --git a/scripture/kjv/06/08/26/scripture.tg b/scripture/kjv/06/08/26/scripture.tg new file mode 100644 index 00000000..d6ebe39c --- /dev/null +++ b/scripture/kjv/06/08/26/scripture.tg @@ -0,0 +1,4 @@ +Luke 24:49 +49 And, behold, I send the promise of my Father upon you: but tarry ye in the city of Jerusalem, until ye be endued with power from on high. + +Monday 08-June, 2026 diff --git a/scripture/kjv/06/08/26/scripture.tg.id b/scripture/kjv/06/08/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/08/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/08/26/scripture.today b/scripture/kjv/06/08/26/scripture.today new file mode 100644 index 00000000..1dddb3a5 --- /dev/null +++ b/scripture/kjv/06/08/26/scripture.today @@ -0,0 +1 @@ +42 24:49 diff --git a/scripture/kjv/06/09/23/scripture.html b/scripture/kjv/06/09/23/scripture.html new file mode 100644 index 00000000..abfdb8f4 --- /dev/null +++ b/scripture/kjv/06/09/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 37:1-2
+1 Fret not thyself because of evildoers, neither be thou envious against the workers of iniquity. 2 For they shall soon be cut down like the grass, and wither as the green herb.

+Friday 09-June, 2023 diff --git a/scripture/kjv/06/09/23/scripture.json b/scripture/kjv/06/09/23/scripture.json new file mode 100644 index 00000000..9ac5d325 --- /dev/null +++ b/scripture/kjv/06/09/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Friday 09-June, 2023", + "name": "Psalms 37:1-2", + "scripture": [ + { + "nr": "1", + "text": "Fret not thyself because of evildoers, neither be thou envious against the workers of iniquity." + }, + { + "nr": "2", + "text": "For they shall soon be cut down like the grass, and wither as the green herb." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/09/23/scripture.md b/scripture/kjv/06/09/23/scripture.md new file mode 100644 index 00000000..e71c34a1 --- /dev/null +++ b/scripture/kjv/06/09/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 37:1-2** + +1 Fret not thyself because of evildoers, neither be thou envious against the workers of iniquity. 2 For they shall soon be cut down like the grass, and wither as the green herb. + +[Friday 09-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/09/23/scripture.tg b/scripture/kjv/06/09/23/scripture.tg new file mode 100644 index 00000000..8a7c94a3 --- /dev/null +++ b/scripture/kjv/06/09/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 37:1-2 +1 Fret not thyself because of evildoers, neither be thou envious against the workers of iniquity. 2 For they shall soon be cut down like the grass, and wither as the green herb. + +Friday 09-June, 2023 diff --git a/scripture/kjv/06/09/23/scripture.tg.id b/scripture/kjv/06/09/23/scripture.tg.id new file mode 100644 index 00000000..7f1114fc --- /dev/null +++ b/scripture/kjv/06/09/23/scripture.tg.id @@ -0,0 +1 @@ +974 diff --git a/scripture/kjv/06/09/23/scripture.today b/scripture/kjv/06/09/23/scripture.today new file mode 100644 index 00000000..feeda4b3 --- /dev/null +++ b/scripture/kjv/06/09/23/scripture.today @@ -0,0 +1 @@ +19 37:1-2 diff --git a/scripture/kjv/06/09/24/scripture.html b/scripture/kjv/06/09/24/scripture.html new file mode 100644 index 00000000..aefd2574 --- /dev/null +++ b/scripture/kjv/06/09/24/scripture.html @@ -0,0 +1,3 @@ +Matthew 16:26
+26 For what is a man profited, if he shall gain the whole world, and lose his own soul? or what shall a man give in exchange for his soul?

+Sunday 09-June, 2024 diff --git a/scripture/kjv/06/09/24/scripture.json b/scripture/kjv/06/09/24/scripture.json new file mode 100644 index 00000000..a371686a --- /dev/null +++ b/scripture/kjv/06/09/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Matthew", + "chapter": "16", + "date": "Sunday 09-June, 2024", + "getbible": "https://getbible.life/kjv/Matthew/16/26", + "name": "Matthew 16:26", + "scripture": [ + { + "nr": "26", + "text": "For what is a man profited, if he shall gain the whole world, and lose his own soul? or what shall a man give in exchange for his soul?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "26", + "version": "kjv" +} diff --git a/scripture/kjv/06/09/24/scripture.md b/scripture/kjv/06/09/24/scripture.md new file mode 100644 index 00000000..b38ec339 --- /dev/null +++ b/scripture/kjv/06/09/24/scripture.md @@ -0,0 +1,5 @@ +**Matthew 16:26** + +26 For what is a man profited, if he shall gain the whole world, and lose his own soul? or what shall a man give in exchange for his soul? + +[Sunday 09-June, 2024](https://getbible.life/kjv/Matthew/16/26) diff --git a/scripture/kjv/06/09/24/scripture.tg b/scripture/kjv/06/09/24/scripture.tg new file mode 100644 index 00000000..213fb7b6 --- /dev/null +++ b/scripture/kjv/06/09/24/scripture.tg @@ -0,0 +1,4 @@ +Matthew 16:26 +26 For what is a man profited, if he shall gain the whole world, and lose his own soul? or what shall a man give in exchange for his soul? + +Sunday 09-June, 2024 diff --git a/scripture/kjv/06/09/24/scripture.tg.id b/scripture/kjv/06/09/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/09/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/09/24/scripture.today b/scripture/kjv/06/09/24/scripture.today new file mode 100644 index 00000000..5689c201 --- /dev/null +++ b/scripture/kjv/06/09/24/scripture.today @@ -0,0 +1 @@ +40 16:26 diff --git a/scripture/kjv/06/09/25/scripture.html b/scripture/kjv/06/09/25/scripture.html new file mode 100644 index 00000000..56d77417 --- /dev/null +++ b/scripture/kjv/06/09/25/scripture.html @@ -0,0 +1,3 @@ +Hebrews 9:13-14
+13 For if the blood of bulls and of goats, and the ashes of an heifer sprinkling the unclean, sanctifieth to the purifying of the flesh: 14 How much more shall the blood of Christ, who through the eternal Spirit offered himself without spot to God, purge your conscience from dead works to serve the living God?

+Monday 09-June, 2025 diff --git a/scripture/kjv/06/09/25/scripture.json b/scripture/kjv/06/09/25/scripture.json new file mode 100644 index 00000000..206028e3 --- /dev/null +++ b/scripture/kjv/06/09/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Hebrews", + "chapter": "9", + "date": "Monday 09-June, 2025", + "getbible": "https://getbible.life/kjv/Hebrews/9/13-14", + "name": "Hebrews 9:13-14", + "scripture": [ + { + "nr": "13", + "text": "For if the blood of bulls and of goats, and the ashes of an heifer sprinkling the unclean, sanctifieth to the purifying of the flesh:" + }, + { + "nr": "14", + "text": "How much more shall the blood of Christ, who through the eternal Spirit offered himself without spot to God, purge your conscience from dead works to serve the living God?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13-14", + "version": "kjv" +} diff --git a/scripture/kjv/06/09/25/scripture.md b/scripture/kjv/06/09/25/scripture.md new file mode 100644 index 00000000..e744c371 --- /dev/null +++ b/scripture/kjv/06/09/25/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 9:13-14** + +13 For if the blood of bulls and of goats, and the ashes of an heifer sprinkling the unclean, sanctifieth to the purifying of the flesh: 14 How much more shall the blood of Christ, who through the eternal Spirit offered himself without spot to God, purge your conscience from dead works to serve the living God? + +[Monday 09-June, 2025](https://getbible.life/kjv/Hebrews/9/13-14) diff --git a/scripture/kjv/06/09/25/scripture.tg b/scripture/kjv/06/09/25/scripture.tg new file mode 100644 index 00000000..20fcee7d --- /dev/null +++ b/scripture/kjv/06/09/25/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 9:13-14 +13 For if the blood of bulls and of goats, and the ashes of an heifer sprinkling the unclean, sanctifieth to the purifying of the flesh: 14 How much more shall the blood of Christ, who through the eternal Spirit offered himself without spot to God, purge your conscience from dead works to serve the living God? + +Monday 09-June, 2025 diff --git a/scripture/kjv/06/09/25/scripture.tg.id b/scripture/kjv/06/09/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/09/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/09/25/scripture.today b/scripture/kjv/06/09/25/scripture.today new file mode 100644 index 00000000..fa53cc35 --- /dev/null +++ b/scripture/kjv/06/09/25/scripture.today @@ -0,0 +1 @@ +58 9:13-14 diff --git a/scripture/kjv/06/09/26/scripture.html b/scripture/kjv/06/09/26/scripture.html new file mode 100644 index 00000000..16d8b59c --- /dev/null +++ b/scripture/kjv/06/09/26/scripture.html @@ -0,0 +1,3 @@ +Proverbs 22:20-21
+20 Have not I written to thee excellent things in counsels and knowledge, 21 That I might make thee know the certainty of the words of truth; that thou mightest answer the words of truth to them that send unto thee?

+Tuesday 09-June, 2026 diff --git a/scripture/kjv/06/09/26/scripture.json b/scripture/kjv/06/09/26/scripture.json new file mode 100644 index 00000000..bf236e29 --- /dev/null +++ b/scripture/kjv/06/09/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Proverbs", + "chapter": "22", + "date": "Tuesday 09-June, 2026", + "getbible": "https://getbible.life/kjv/Proverbs/22/20-21", + "name": "Proverbs 22:20-21", + "scripture": [ + { + "nr": "20", + "text": "Have not I written to thee excellent things in counsels and knowledge," + }, + { + "nr": "21", + "text": "That I might make thee know the certainty of the words of truth; that thou mightest answer the words of truth to them that send unto thee?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20-21", + "version": "kjv" +} diff --git a/scripture/kjv/06/09/26/scripture.md b/scripture/kjv/06/09/26/scripture.md new file mode 100644 index 00000000..02b8fc8f --- /dev/null +++ b/scripture/kjv/06/09/26/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 22:20-21** + +20 Have not I written to thee excellent things in counsels and knowledge, 21 That I might make thee know the certainty of the words of truth; that thou mightest answer the words of truth to them that send unto thee? + +[Tuesday 09-June, 2026](https://getbible.life/kjv/Proverbs/22/20-21) diff --git a/scripture/kjv/06/09/26/scripture.tg b/scripture/kjv/06/09/26/scripture.tg new file mode 100644 index 00000000..66607b4e --- /dev/null +++ b/scripture/kjv/06/09/26/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 22:20-21 +20 Have not I written to thee excellent things in counsels and knowledge, 21 That I might make thee know the certainty of the words of truth; that thou mightest answer the words of truth to them that send unto thee? + +Tuesday 09-June, 2026 diff --git a/scripture/kjv/06/09/26/scripture.tg.id b/scripture/kjv/06/09/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/09/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/09/26/scripture.today b/scripture/kjv/06/09/26/scripture.today new file mode 100644 index 00000000..580d53aa --- /dev/null +++ b/scripture/kjv/06/09/26/scripture.today @@ -0,0 +1 @@ +20 22:20-21 diff --git a/scripture/kjv/06/10/23/scripture.html b/scripture/kjv/06/10/23/scripture.html new file mode 100644 index 00000000..237bb808 --- /dev/null +++ b/scripture/kjv/06/10/23/scripture.html @@ -0,0 +1,3 @@ +Acts 15:36
+36 And some days after Paul said unto Barnabas, Let us go again and visit our brethren in every city where we have preached the word of the Lord, and see how they do.

+Saturday 10-June, 2023 diff --git a/scripture/kjv/06/10/23/scripture.json b/scripture/kjv/06/10/23/scripture.json new file mode 100644 index 00000000..b016ea52 --- /dev/null +++ b/scripture/kjv/06/10/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Saturday 10-June, 2023", + "name": "Acts 15:36", + "scripture": [ + { + "nr": "36", + "text": "And some days after Paul said unto Barnabas, Let us go again and visit our brethren in every city where we have preached the word of the Lord, and see how they do." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/10/23/scripture.md b/scripture/kjv/06/10/23/scripture.md new file mode 100644 index 00000000..47c2d841 --- /dev/null +++ b/scripture/kjv/06/10/23/scripture.md @@ -0,0 +1,5 @@ +**Acts 15:36** + +36 And some days after Paul said unto Barnabas, Let us go again and visit our brethren in every city where we have preached the word of the Lord, and see how they do. + +[Saturday 10-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/10/23/scripture.tg b/scripture/kjv/06/10/23/scripture.tg new file mode 100644 index 00000000..81a46c96 --- /dev/null +++ b/scripture/kjv/06/10/23/scripture.tg @@ -0,0 +1,4 @@ +Acts 15:36 +36 And some days after Paul said unto Barnabas, Let us go again and visit our brethren in every city where we have preached the word of the Lord, and see how they do. + +Saturday 10-June, 2023 diff --git a/scripture/kjv/06/10/23/scripture.tg.id b/scripture/kjv/06/10/23/scripture.tg.id new file mode 100644 index 00000000..37cdd416 --- /dev/null +++ b/scripture/kjv/06/10/23/scripture.tg.id @@ -0,0 +1 @@ +975 diff --git a/scripture/kjv/06/10/23/scripture.today b/scripture/kjv/06/10/23/scripture.today new file mode 100644 index 00000000..dc666f63 --- /dev/null +++ b/scripture/kjv/06/10/23/scripture.today @@ -0,0 +1 @@ +44 15:36 diff --git a/scripture/kjv/06/10/24/scripture.html b/scripture/kjv/06/10/24/scripture.html new file mode 100644 index 00000000..8e5f3d70 --- /dev/null +++ b/scripture/kjv/06/10/24/scripture.html @@ -0,0 +1,3 @@ +Luke 11:5-13
+5 And he said unto them, Which of you shall have a friend, and shall go unto him at midnight, and say unto him, Friend, lend me three loaves; 6 For a friend of mine in his journey is come to me, and I have nothing to set before him? 7 And he from within shall answer and say, Trouble me not: the door is now shut, and my children are with me in bed; I cannot rise and give thee. 8 I say unto you, Though he will not rise and give him, because he is his friend, yet because of his importunity he will rise and give him as many as he needeth. 9 And I say unto you, Ask, and it shall be given you; seek, and ye shall find; knock, and it shall be opened unto you. 10 For every one that asketh receiveth; and he that seeketh findeth; and to him that knocketh it shall be opened. 11 If a son shall ask bread of any of you that is a father, will he give him a stone? or if he ask a fish, will he for a fish give him a serpent? 12 Or if he shall ask an egg, will he offer him a scorpion? 13 If ye then, being evil, know how to give good gifts unto your children: how much more shall your heavenly Father give the Holy Spirit to them that ask him?

+Monday 10-June, 2024 diff --git a/scripture/kjv/06/10/24/scripture.json b/scripture/kjv/06/10/24/scripture.json new file mode 100644 index 00000000..c4c5bc8b --- /dev/null +++ b/scripture/kjv/06/10/24/scripture.json @@ -0,0 +1,49 @@ +{ + "book": "Luke", + "chapter": "11", + "date": "Monday 10-June, 2024", + "getbible": "https://getbible.life/kjv/Luke/11/5-13", + "name": "Luke 11:5-13", + "scripture": [ + { + "nr": "5", + "text": "And he said unto them, Which of you shall have a friend, and shall go unto him at midnight, and say unto him, Friend, lend me three loaves;" + }, + { + "nr": "6", + "text": "For a friend of mine in his journey is come to me, and I have nothing to set before him?" + }, + { + "nr": "7", + "text": "And he from within shall answer and say, Trouble me not: the door is now shut, and my children are with me in bed; I cannot rise and give thee." + }, + { + "nr": "8", + "text": "I say unto you, Though he will not rise and give him, because he is his friend, yet because of his importunity he will rise and give him as many as he needeth." + }, + { + "nr": "9", + "text": "And I say unto you, Ask, and it shall be given you; seek, and ye shall find; knock, and it shall be opened unto you." + }, + { + "nr": "10", + "text": "For every one that asketh receiveth; and he that seeketh findeth; and to him that knocketh it shall be opened." + }, + { + "nr": "11", + "text": "If a son shall ask bread of any of you that is a father, will he give him a stone? or if he ask a fish, will he for a fish give him a serpent?" + }, + { + "nr": "12", + "text": "Or if he shall ask an egg, will he offer him a scorpion?" + }, + { + "nr": "13", + "text": "If ye then, being evil, know how to give good gifts unto your children: how much more shall your heavenly Father give the Holy Spirit to them that ask him?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5-13", + "version": "kjv" +} diff --git a/scripture/kjv/06/10/24/scripture.md b/scripture/kjv/06/10/24/scripture.md new file mode 100644 index 00000000..5f3458f1 --- /dev/null +++ b/scripture/kjv/06/10/24/scripture.md @@ -0,0 +1,5 @@ +**Luke 11:5-13** + +5 And he said unto them, Which of you shall have a friend, and shall go unto him at midnight, and say unto him, Friend, lend me three loaves; 6 For a friend of mine in his journey is come to me, and I have nothing to set before him? 7 And he from within shall answer and say, Trouble me not: the door is now shut, and my children are with me in bed; I cannot rise and give thee. 8 I say unto you, Though he will not rise and give him, because he is his friend, yet because of his importunity he will rise and give him as many as he needeth. 9 And I say unto you, Ask, and it shall be given you; seek, and ye shall find; knock, and it shall be opened unto you. 10 For every one that asketh receiveth; and he that seeketh findeth; and to him that knocketh it shall be opened. 11 If a son shall ask bread of any of you that is a father, will he give him a stone? or if he ask a fish, will he for a fish give him a serpent? 12 Or if he shall ask an egg, will he offer him a scorpion? 13 If ye then, being evil, know how to give good gifts unto your children: how much more shall your heavenly Father give the Holy Spirit to them that ask him? + +[Monday 10-June, 2024](https://getbible.life/kjv/Luke/11/5-13) diff --git a/scripture/kjv/06/10/24/scripture.tg b/scripture/kjv/06/10/24/scripture.tg new file mode 100644 index 00000000..2d834993 --- /dev/null +++ b/scripture/kjv/06/10/24/scripture.tg @@ -0,0 +1,4 @@ +Luke 11:5-13 +5 And he said unto them, Which of you shall have a friend, and shall go unto him at midnight, and say unto him, Friend, lend me three loaves; 6 For a friend of mine in his journey is come to me, and I have nothing to set before him? 7 And he from within shall answer and say, Trouble me not: the door is now shut, and my children are with me in bed; I cannot rise and give thee. 8 I say unto you, Though he will not rise and give him, because he is his friend, yet because of his importunity he will rise and give him as many as he needeth. 9 And I say unto you, Ask, and it shall be given you; seek, and ye shall find; knock, and it shall be opened unto you. 10 For every one that asketh receiveth; and he that seeketh findeth; and to him that knocketh it shall be opened. 11 If a son shall ask bread of any of you that is a father, will he give him a stone? or if he ask a fish, will he for a fish give him a serpent? 12 Or if he shall ask an egg, will he offer him a scorpion? 13 If ye then, being evil, know how to give good gifts unto your children: how much more shall your heavenly Father give the Holy Spirit to them that ask him? + +Monday 10-June, 2024 diff --git a/scripture/kjv/06/10/24/scripture.tg.id b/scripture/kjv/06/10/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/10/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/10/24/scripture.today b/scripture/kjv/06/10/24/scripture.today new file mode 100644 index 00000000..43b755c6 --- /dev/null +++ b/scripture/kjv/06/10/24/scripture.today @@ -0,0 +1 @@ +42 11:5-13 diff --git a/scripture/kjv/06/10/25/scripture.html b/scripture/kjv/06/10/25/scripture.html new file mode 100644 index 00000000..35e64a83 --- /dev/null +++ b/scripture/kjv/06/10/25/scripture.html @@ -0,0 +1,3 @@ +John 3:21
+21 But he that doeth truth cometh to the light, that his deeds may be made manifest, that they are wrought in God.

+Tuesday 10-June, 2025 diff --git a/scripture/kjv/06/10/25/scripture.json b/scripture/kjv/06/10/25/scripture.json new file mode 100644 index 00000000..04a242fa --- /dev/null +++ b/scripture/kjv/06/10/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "3", + "date": "Tuesday 10-June, 2025", + "getbible": "https://getbible.life/kjv/John/3/21", + "name": "John 3:21", + "scripture": [ + { + "nr": "21", + "text": "But he that doeth truth cometh to the light, that his deeds may be made manifest, that they are wrought in God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "21", + "version": "kjv" +} diff --git a/scripture/kjv/06/10/25/scripture.md b/scripture/kjv/06/10/25/scripture.md new file mode 100644 index 00000000..59663ef3 --- /dev/null +++ b/scripture/kjv/06/10/25/scripture.md @@ -0,0 +1,5 @@ +**John 3:21** + +21 But he that doeth truth cometh to the light, that his deeds may be made manifest, that they are wrought in God. + +[Tuesday 10-June, 2025](https://getbible.life/kjv/John/3/21) diff --git a/scripture/kjv/06/10/25/scripture.tg b/scripture/kjv/06/10/25/scripture.tg new file mode 100644 index 00000000..f61e20b7 --- /dev/null +++ b/scripture/kjv/06/10/25/scripture.tg @@ -0,0 +1,4 @@ +John 3:21 +21 But he that doeth truth cometh to the light, that his deeds may be made manifest, that they are wrought in God. + +Tuesday 10-June, 2025 diff --git a/scripture/kjv/06/10/25/scripture.tg.id b/scripture/kjv/06/10/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/10/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/10/25/scripture.today b/scripture/kjv/06/10/25/scripture.today new file mode 100644 index 00000000..8f96a23f --- /dev/null +++ b/scripture/kjv/06/10/25/scripture.today @@ -0,0 +1 @@ +43 3:21 diff --git a/scripture/kjv/06/10/26/scripture.html b/scripture/kjv/06/10/26/scripture.html new file mode 100644 index 00000000..3217e644 --- /dev/null +++ b/scripture/kjv/06/10/26/scripture.html @@ -0,0 +1,3 @@ +Acts 9:32
+32 And it came to pass, as Peter passed throughout all quarters, he came down also to the saints which dwelt at Lydda.

+Wednesday 10-June, 2026 diff --git a/scripture/kjv/06/10/26/scripture.json b/scripture/kjv/06/10/26/scripture.json new file mode 100644 index 00000000..9c8b4102 --- /dev/null +++ b/scripture/kjv/06/10/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Acts", + "chapter": "9", + "date": "Wednesday 10-June, 2026", + "getbible": "https://getbible.life/kjv/Acts/9/32", + "name": "Acts 9:32", + "scripture": [ + { + "nr": "32", + "text": "And it came to pass, as Peter passed throughout all quarters, he came down also to the saints which dwelt at Lydda." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "32", + "version": "kjv" +} diff --git a/scripture/kjv/06/10/26/scripture.md b/scripture/kjv/06/10/26/scripture.md new file mode 100644 index 00000000..ad258f38 --- /dev/null +++ b/scripture/kjv/06/10/26/scripture.md @@ -0,0 +1,5 @@ +**Acts 9:32** + +32 And it came to pass, as Peter passed throughout all quarters, he came down also to the saints which dwelt at Lydda. + +[Wednesday 10-June, 2026](https://getbible.life/kjv/Acts/9/32) diff --git a/scripture/kjv/06/10/26/scripture.tg b/scripture/kjv/06/10/26/scripture.tg new file mode 100644 index 00000000..5c9240df --- /dev/null +++ b/scripture/kjv/06/10/26/scripture.tg @@ -0,0 +1,4 @@ +Acts 9:32 +32 And it came to pass, as Peter passed throughout all quarters, he came down also to the saints which dwelt at Lydda. + +Wednesday 10-June, 2026 diff --git a/scripture/kjv/06/10/26/scripture.tg.id b/scripture/kjv/06/10/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/10/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/10/26/scripture.today b/scripture/kjv/06/10/26/scripture.today new file mode 100644 index 00000000..ee8daed4 --- /dev/null +++ b/scripture/kjv/06/10/26/scripture.today @@ -0,0 +1 @@ +44 9:32 diff --git a/scripture/kjv/06/11/23/scripture.html b/scripture/kjv/06/11/23/scripture.html new file mode 100644 index 00000000..77bdc93e --- /dev/null +++ b/scripture/kjv/06/11/23/scripture.html @@ -0,0 +1,3 @@ +Hosea 8:5
+5 Thy calf, O Samaria, hath cast thee off; mine anger is kindled against them: how long will it be ere they attain to innocency?

+Sunday 11-June, 2023 diff --git a/scripture/kjv/06/11/23/scripture.json b/scripture/kjv/06/11/23/scripture.json new file mode 100644 index 00000000..66769ece --- /dev/null +++ b/scripture/kjv/06/11/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Sunday 11-June, 2023", + "name": "Hosea 8:5", + "scripture": [ + { + "nr": "5", + "text": "Thy calf, O Samaria, hath cast thee off; mine anger is kindled against them: how long will it be ere they attain to innocency?" + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/11/23/scripture.md b/scripture/kjv/06/11/23/scripture.md new file mode 100644 index 00000000..2f1d9ab4 --- /dev/null +++ b/scripture/kjv/06/11/23/scripture.md @@ -0,0 +1,5 @@ +**Hosea 8:5** + +5 Thy calf, O Samaria, hath cast thee off; mine anger is kindled against them: how long will it be ere they attain to innocency? + +[Sunday 11-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/11/23/scripture.tg b/scripture/kjv/06/11/23/scripture.tg new file mode 100644 index 00000000..e6df9972 --- /dev/null +++ b/scripture/kjv/06/11/23/scripture.tg @@ -0,0 +1,4 @@ +Hosea 8:5 +5 Thy calf, O Samaria, hath cast thee off; mine anger is kindled against them: how long will it be ere they attain to innocency? + +Sunday 11-June, 2023 diff --git a/scripture/kjv/06/11/23/scripture.tg.id b/scripture/kjv/06/11/23/scripture.tg.id new file mode 100644 index 00000000..df142c67 --- /dev/null +++ b/scripture/kjv/06/11/23/scripture.tg.id @@ -0,0 +1 @@ +976 diff --git a/scripture/kjv/06/11/23/scripture.today b/scripture/kjv/06/11/23/scripture.today new file mode 100644 index 00000000..0a215f42 --- /dev/null +++ b/scripture/kjv/06/11/23/scripture.today @@ -0,0 +1 @@ +28 8:5 diff --git a/scripture/kjv/06/11/24/scripture.html b/scripture/kjv/06/11/24/scripture.html new file mode 100644 index 00000000..87ceb279 --- /dev/null +++ b/scripture/kjv/06/11/24/scripture.html @@ -0,0 +1,3 @@ +John 15:9
+9 As the Father hath loved me, so have I loved you: continue ye in my love.

+Tuesday 11-June, 2024 diff --git a/scripture/kjv/06/11/24/scripture.json b/scripture/kjv/06/11/24/scripture.json new file mode 100644 index 00000000..b59c5d65 --- /dev/null +++ b/scripture/kjv/06/11/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "15", + "date": "Tuesday 11-June, 2024", + "getbible": "https://getbible.life/kjv/John/15/9", + "name": "John 15:9", + "scripture": [ + { + "nr": "9", + "text": "As the Father hath loved me, so have I loved you: continue ye in my love." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9", + "version": "kjv" +} diff --git a/scripture/kjv/06/11/24/scripture.md b/scripture/kjv/06/11/24/scripture.md new file mode 100644 index 00000000..a1250491 --- /dev/null +++ b/scripture/kjv/06/11/24/scripture.md @@ -0,0 +1,5 @@ +**John 15:9** + +9 As the Father hath loved me, so have I loved you: continue ye in my love. + +[Tuesday 11-June, 2024](https://getbible.life/kjv/John/15/9) diff --git a/scripture/kjv/06/11/24/scripture.tg b/scripture/kjv/06/11/24/scripture.tg new file mode 100644 index 00000000..c148e6b0 --- /dev/null +++ b/scripture/kjv/06/11/24/scripture.tg @@ -0,0 +1,4 @@ +John 15:9 +9 As the Father hath loved me, so have I loved you: continue ye in my love. + +Tuesday 11-June, 2024 diff --git a/scripture/kjv/06/11/24/scripture.tg.id b/scripture/kjv/06/11/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/11/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/11/24/scripture.today b/scripture/kjv/06/11/24/scripture.today new file mode 100644 index 00000000..13892216 --- /dev/null +++ b/scripture/kjv/06/11/24/scripture.today @@ -0,0 +1 @@ +43 15:9 diff --git a/scripture/kjv/06/11/25/scripture.html b/scripture/kjv/06/11/25/scripture.html new file mode 100644 index 00000000..7bcdf29a --- /dev/null +++ b/scripture/kjv/06/11/25/scripture.html @@ -0,0 +1,3 @@ +Isaiah 1:26-27
+26 And I will restore thy judges as at the first, and thy counsellors as at the beginning: afterward thou shalt be called, The city of righteousness, the faithful city. 27 Zion shall be redeemed with judgment, and her converts with righteousness.

+Wednesday 11-June, 2025 diff --git a/scripture/kjv/06/11/25/scripture.json b/scripture/kjv/06/11/25/scripture.json new file mode 100644 index 00000000..3f211f3f --- /dev/null +++ b/scripture/kjv/06/11/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Isaiah", + "chapter": "1", + "date": "Wednesday 11-June, 2025", + "getbible": "https://getbible.life/kjv/Isaiah/1/26-27", + "name": "Isaiah 1:26-27", + "scripture": [ + { + "nr": "26", + "text": "And I will restore thy judges as at the first, and thy counsellors as at the beginning: afterward thou shalt be called, The city of righteousness, the faithful city." + }, + { + "nr": "27", + "text": "Zion shall be redeemed with judgment, and her converts with righteousness." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "26-27", + "version": "kjv" +} diff --git a/scripture/kjv/06/11/25/scripture.md b/scripture/kjv/06/11/25/scripture.md new file mode 100644 index 00000000..20402b36 --- /dev/null +++ b/scripture/kjv/06/11/25/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 1:26-27** + +26 And I will restore thy judges as at the first, and thy counsellors as at the beginning: afterward thou shalt be called, The city of righteousness, the faithful city. 27 Zion shall be redeemed with judgment, and her converts with righteousness. + +[Wednesday 11-June, 2025](https://getbible.life/kjv/Isaiah/1/26-27) diff --git a/scripture/kjv/06/11/25/scripture.tg b/scripture/kjv/06/11/25/scripture.tg new file mode 100644 index 00000000..5e6baec0 --- /dev/null +++ b/scripture/kjv/06/11/25/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 1:26-27 +26 And I will restore thy judges as at the first, and thy counsellors as at the beginning: afterward thou shalt be called, The city of righteousness, the faithful city. 27 Zion shall be redeemed with judgment, and her converts with righteousness. + +Wednesday 11-June, 2025 diff --git a/scripture/kjv/06/11/25/scripture.tg.id b/scripture/kjv/06/11/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/11/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/11/25/scripture.today b/scripture/kjv/06/11/25/scripture.today new file mode 100644 index 00000000..131e3ba0 --- /dev/null +++ b/scripture/kjv/06/11/25/scripture.today @@ -0,0 +1 @@ +23 1:26-27 diff --git a/scripture/kjv/06/11/26/scripture.html b/scripture/kjv/06/11/26/scripture.html new file mode 100644 index 00000000..6393bb2a --- /dev/null +++ b/scripture/kjv/06/11/26/scripture.html @@ -0,0 +1,3 @@ +Daniel 4:26
+26 And whereas they commanded to leave the stump of the tree roots; thy kingdom shall be sure unto thee, after that thou shalt have known that the heavens do rule.

+Thursday 11-June, 2026 diff --git a/scripture/kjv/06/11/26/scripture.json b/scripture/kjv/06/11/26/scripture.json new file mode 100644 index 00000000..1446eef3 --- /dev/null +++ b/scripture/kjv/06/11/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Daniel", + "chapter": "4", + "date": "Thursday 11-June, 2026", + "getbible": "https://getbible.life/kjv/Daniel/4/26", + "name": "Daniel 4:26", + "scripture": [ + { + "nr": "26", + "text": "And whereas they commanded to leave the stump of the tree roots; thy kingdom shall be sure unto thee, after that thou shalt have known that the heavens do rule." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "26", + "version": "kjv" +} diff --git a/scripture/kjv/06/11/26/scripture.md b/scripture/kjv/06/11/26/scripture.md new file mode 100644 index 00000000..7e78d94d --- /dev/null +++ b/scripture/kjv/06/11/26/scripture.md @@ -0,0 +1,5 @@ +**Daniel 4:26** + +26 And whereas they commanded to leave the stump of the tree roots; thy kingdom shall be sure unto thee, after that thou shalt have known that the heavens do rule. + +[Thursday 11-June, 2026](https://getbible.life/kjv/Daniel/4/26) diff --git a/scripture/kjv/06/11/26/scripture.tg b/scripture/kjv/06/11/26/scripture.tg new file mode 100644 index 00000000..413e59e5 --- /dev/null +++ b/scripture/kjv/06/11/26/scripture.tg @@ -0,0 +1,4 @@ +Daniel 4:26 +26 And whereas they commanded to leave the stump of the tree roots; thy kingdom shall be sure unto thee, after that thou shalt have known that the heavens do rule. + +Thursday 11-June, 2026 diff --git a/scripture/kjv/06/11/26/scripture.tg.id b/scripture/kjv/06/11/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/11/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/11/26/scripture.today b/scripture/kjv/06/11/26/scripture.today new file mode 100644 index 00000000..e61c101b --- /dev/null +++ b/scripture/kjv/06/11/26/scripture.today @@ -0,0 +1 @@ +27 4:26 diff --git a/scripture/kjv/06/12/23/scripture.html b/scripture/kjv/06/12/23/scripture.html new file mode 100644 index 00000000..e907b67c --- /dev/null +++ b/scripture/kjv/06/12/23/scripture.html @@ -0,0 +1,3 @@ +Luke 22:31-32
+31 And the Lord said, Simon, Simon, behold, Satan hath desired to have you, that he may sift you as wheat: 32 But I have prayed for thee, that thy faith fail not: and when thou art converted, strengthen thy brethren.

+Monday 12-June, 2023 diff --git a/scripture/kjv/06/12/23/scripture.json b/scripture/kjv/06/12/23/scripture.json new file mode 100644 index 00000000..dd607b57 --- /dev/null +++ b/scripture/kjv/06/12/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Monday 12-June, 2023", + "name": "Luke 22:31-32", + "scripture": [ + { + "nr": "31", + "text": "And the Lord said, Simon, Simon, behold, Satan hath desired to have you, that he may sift you as wheat:" + }, + { + "nr": "32", + "text": "But I have prayed for thee, that thy faith fail not: and when thou art converted, strengthen thy brethren." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/12/23/scripture.md b/scripture/kjv/06/12/23/scripture.md new file mode 100644 index 00000000..1e235d4c --- /dev/null +++ b/scripture/kjv/06/12/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 22:31-32** + +31 And the Lord said, Simon, Simon, behold, Satan hath desired to have you, that he may sift you as wheat: 32 But I have prayed for thee, that thy faith fail not: and when thou art converted, strengthen thy brethren. + +[Monday 12-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/12/23/scripture.tg b/scripture/kjv/06/12/23/scripture.tg new file mode 100644 index 00000000..5d836e31 --- /dev/null +++ b/scripture/kjv/06/12/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 22:31-32 +31 And the Lord said, Simon, Simon, behold, Satan hath desired to have you, that he may sift you as wheat: 32 But I have prayed for thee, that thy faith fail not: and when thou art converted, strengthen thy brethren. + +Monday 12-June, 2023 diff --git a/scripture/kjv/06/12/23/scripture.tg.id b/scripture/kjv/06/12/23/scripture.tg.id new file mode 100644 index 00000000..366e0a0b --- /dev/null +++ b/scripture/kjv/06/12/23/scripture.tg.id @@ -0,0 +1 @@ +977 diff --git a/scripture/kjv/06/12/23/scripture.today b/scripture/kjv/06/12/23/scripture.today new file mode 100644 index 00000000..8abb2adc --- /dev/null +++ b/scripture/kjv/06/12/23/scripture.today @@ -0,0 +1 @@ +42 22:31-32 diff --git a/scripture/kjv/06/12/24/scripture.html b/scripture/kjv/06/12/24/scripture.html new file mode 100644 index 00000000..7cad980f --- /dev/null +++ b/scripture/kjv/06/12/24/scripture.html @@ -0,0 +1,3 @@ +John 14:15
+15 If ye love me, keep my commandments.

+Wednesday 12-June, 2024 diff --git a/scripture/kjv/06/12/24/scripture.json b/scripture/kjv/06/12/24/scripture.json new file mode 100644 index 00000000..d705b747 --- /dev/null +++ b/scripture/kjv/06/12/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "14", + "date": "Wednesday 12-June, 2024", + "getbible": "https://getbible.life/kjv/John/14/15", + "name": "John 14:15", + "scripture": [ + { + "nr": "15", + "text": "If ye love me, keep my commandments." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15", + "version": "kjv" +} diff --git a/scripture/kjv/06/12/24/scripture.md b/scripture/kjv/06/12/24/scripture.md new file mode 100644 index 00000000..64c86622 --- /dev/null +++ b/scripture/kjv/06/12/24/scripture.md @@ -0,0 +1,5 @@ +**John 14:15** + +15 If ye love me, keep my commandments. + +[Wednesday 12-June, 2024](https://getbible.life/kjv/John/14/15) diff --git a/scripture/kjv/06/12/24/scripture.tg b/scripture/kjv/06/12/24/scripture.tg new file mode 100644 index 00000000..dece320c --- /dev/null +++ b/scripture/kjv/06/12/24/scripture.tg @@ -0,0 +1,4 @@ +John 14:15 +15 If ye love me, keep my commandments. + +Wednesday 12-June, 2024 diff --git a/scripture/kjv/06/12/24/scripture.tg.id b/scripture/kjv/06/12/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/12/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/12/24/scripture.today b/scripture/kjv/06/12/24/scripture.today new file mode 100644 index 00000000..2de47c57 --- /dev/null +++ b/scripture/kjv/06/12/24/scripture.today @@ -0,0 +1 @@ +43 14:15 diff --git a/scripture/kjv/06/12/25/scripture.html b/scripture/kjv/06/12/25/scripture.html new file mode 100644 index 00000000..b7423c53 --- /dev/null +++ b/scripture/kjv/06/12/25/scripture.html @@ -0,0 +1,3 @@ +Proverbs 28:23
+23 He that rebuketh a man afterwards shall find more favour than he that flattereth with the tongue.

+Thursday 12-June, 2025 diff --git a/scripture/kjv/06/12/25/scripture.json b/scripture/kjv/06/12/25/scripture.json new file mode 100644 index 00000000..bc5398aa --- /dev/null +++ b/scripture/kjv/06/12/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "28", + "date": "Thursday 12-June, 2025", + "getbible": "https://getbible.life/kjv/Proverbs/28/23", + "name": "Proverbs 28:23", + "scripture": [ + { + "nr": "23", + "text": "He that rebuketh a man afterwards shall find more favour than he that flattereth with the tongue." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "23", + "version": "kjv" +} diff --git a/scripture/kjv/06/12/25/scripture.md b/scripture/kjv/06/12/25/scripture.md new file mode 100644 index 00000000..19f687df --- /dev/null +++ b/scripture/kjv/06/12/25/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 28:23** + +23 He that rebuketh a man afterwards shall find more favour than he that flattereth with the tongue. + +[Thursday 12-June, 2025](https://getbible.life/kjv/Proverbs/28/23) diff --git a/scripture/kjv/06/12/25/scripture.tg b/scripture/kjv/06/12/25/scripture.tg new file mode 100644 index 00000000..89ac220a --- /dev/null +++ b/scripture/kjv/06/12/25/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 28:23 +23 He that rebuketh a man afterwards shall find more favour than he that flattereth with the tongue. + +Thursday 12-June, 2025 diff --git a/scripture/kjv/06/12/25/scripture.tg.id b/scripture/kjv/06/12/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/12/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/12/25/scripture.today b/scripture/kjv/06/12/25/scripture.today new file mode 100644 index 00000000..2c4b5a43 --- /dev/null +++ b/scripture/kjv/06/12/25/scripture.today @@ -0,0 +1 @@ +20 28:23 diff --git a/scripture/kjv/06/12/26/scripture.html b/scripture/kjv/06/12/26/scripture.html new file mode 100644 index 00000000..0d2caa3c --- /dev/null +++ b/scripture/kjv/06/12/26/scripture.html @@ -0,0 +1,3 @@ +Matthew 22:41-45
+41 While the Pharisees were gathered together, Jesus asked them, 42 Saying, What think ye of Christ? whose son is he? They say unto him, The Son of David. 43 He saith unto them, How then doth David in spirit call him Lord, saying, 44 The Lord said unto my Lord, Sit thou on my right hand, till I make thine enemies thy footstool? 45 If David then call him Lord, how is he his son?

+Friday 12-June, 2026 diff --git a/scripture/kjv/06/12/26/scripture.json b/scripture/kjv/06/12/26/scripture.json new file mode 100644 index 00000000..814bb2fc --- /dev/null +++ b/scripture/kjv/06/12/26/scripture.json @@ -0,0 +1,33 @@ +{ + "book": "Matthew", + "chapter": "22", + "date": "Friday 12-June, 2026", + "getbible": "https://getbible.life/kjv/Matthew/22/41-45", + "name": "Matthew 22:41-45", + "scripture": [ + { + "nr": "41", + "text": "While the Pharisees were gathered together, Jesus asked them," + }, + { + "nr": "42", + "text": "Saying, What think ye of Christ? whose son is he? They say unto him, The Son of David." + }, + { + "nr": "43", + "text": "He saith unto them, How then doth David in spirit call him Lord, saying," + }, + { + "nr": "44", + "text": "The Lord said unto my Lord, Sit thou on my right hand, till I make thine enemies thy footstool?" + }, + { + "nr": "45", + "text": "If David then call him Lord, how is he his son?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "41-45", + "version": "kjv" +} diff --git a/scripture/kjv/06/12/26/scripture.md b/scripture/kjv/06/12/26/scripture.md new file mode 100644 index 00000000..9dce3359 --- /dev/null +++ b/scripture/kjv/06/12/26/scripture.md @@ -0,0 +1,5 @@ +**Matthew 22:41-45** + +41 While the Pharisees were gathered together, Jesus asked them, 42 Saying, What think ye of Christ? whose son is he? They say unto him, The Son of David. 43 He saith unto them, How then doth David in spirit call him Lord, saying, 44 The Lord said unto my Lord, Sit thou on my right hand, till I make thine enemies thy footstool? 45 If David then call him Lord, how is he his son? + +[Friday 12-June, 2026](https://getbible.life/kjv/Matthew/22/41-45) diff --git a/scripture/kjv/06/12/26/scripture.tg b/scripture/kjv/06/12/26/scripture.tg new file mode 100644 index 00000000..e8050623 --- /dev/null +++ b/scripture/kjv/06/12/26/scripture.tg @@ -0,0 +1,4 @@ +Matthew 22:41-45 +41 While the Pharisees were gathered together, Jesus asked them, 42 Saying, What think ye of Christ? whose son is he? They say unto him, The Son of David. 43 He saith unto them, How then doth David in spirit call him Lord, saying, 44 The Lord said unto my Lord, Sit thou on my right hand, till I make thine enemies thy footstool? 45 If David then call him Lord, how is he his son? + +Friday 12-June, 2026 diff --git a/scripture/kjv/06/12/26/scripture.tg.id b/scripture/kjv/06/12/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/12/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/12/26/scripture.today b/scripture/kjv/06/12/26/scripture.today new file mode 100644 index 00000000..dc9b6044 --- /dev/null +++ b/scripture/kjv/06/12/26/scripture.today @@ -0,0 +1 @@ +40 22:41-45 diff --git a/scripture/kjv/06/13/23/scripture.html b/scripture/kjv/06/13/23/scripture.html new file mode 100644 index 00000000..56851e72 --- /dev/null +++ b/scripture/kjv/06/13/23/scripture.html @@ -0,0 +1,3 @@ +Job 34:11-12
+11 For the work of a man shall he render unto him, and cause every man to find according to his ways. 12 Yea, surely God will not do wickedly, neither will the Almighty pervert judgment.

+Tuesday 13-June, 2023 diff --git a/scripture/kjv/06/13/23/scripture.json b/scripture/kjv/06/13/23/scripture.json new file mode 100644 index 00000000..030e8132 --- /dev/null +++ b/scripture/kjv/06/13/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Tuesday 13-June, 2023", + "name": "Job 34:11-12", + "scripture": [ + { + "nr": "11", + "text": "For the work of a man shall he render unto him, and cause every man to find according to his ways." + }, + { + "nr": "12", + "text": "Yea, surely God will not do wickedly, neither will the Almighty pervert judgment." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/13/23/scripture.md b/scripture/kjv/06/13/23/scripture.md new file mode 100644 index 00000000..97b7665c --- /dev/null +++ b/scripture/kjv/06/13/23/scripture.md @@ -0,0 +1,5 @@ +**Job 34:11-12** + +11 For the work of a man shall he render unto him, and cause every man to find according to his ways. 12 Yea, surely God will not do wickedly, neither will the Almighty pervert judgment. + +[Tuesday 13-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/13/23/scripture.tg b/scripture/kjv/06/13/23/scripture.tg new file mode 100644 index 00000000..8527e6f1 --- /dev/null +++ b/scripture/kjv/06/13/23/scripture.tg @@ -0,0 +1,4 @@ +Job 34:11-12 +11 For the work of a man shall he render unto him, and cause every man to find according to his ways. 12 Yea, surely God will not do wickedly, neither will the Almighty pervert judgment. + +Tuesday 13-June, 2023 diff --git a/scripture/kjv/06/13/23/scripture.tg.id b/scripture/kjv/06/13/23/scripture.tg.id new file mode 100644 index 00000000..e052697f --- /dev/null +++ b/scripture/kjv/06/13/23/scripture.tg.id @@ -0,0 +1 @@ +978 diff --git a/scripture/kjv/06/13/23/scripture.today b/scripture/kjv/06/13/23/scripture.today new file mode 100644 index 00000000..5db83fa7 --- /dev/null +++ b/scripture/kjv/06/13/23/scripture.today @@ -0,0 +1 @@ +18 34:11-12 diff --git a/scripture/kjv/06/13/24/scripture.html b/scripture/kjv/06/13/24/scripture.html new file mode 100644 index 00000000..0608265c --- /dev/null +++ b/scripture/kjv/06/13/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 16:11
+11 Thou wilt shew me the path of life: in thy presence is fulness of joy; at thy right hand there are pleasures for evermore.

+Thursday 13-June, 2024 diff --git a/scripture/kjv/06/13/24/scripture.json b/scripture/kjv/06/13/24/scripture.json new file mode 100644 index 00000000..25b8c88b --- /dev/null +++ b/scripture/kjv/06/13/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "16", + "date": "Thursday 13-June, 2024", + "getbible": "https://getbible.life/kjv/Psalms/16/11", + "name": "Psalms 16:11", + "scripture": [ + { + "nr": "11", + "text": "Thou wilt shew me the path of life: in thy presence is fulness of joy; at thy right hand there are pleasures for evermore. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/06/13/24/scripture.md b/scripture/kjv/06/13/24/scripture.md new file mode 100644 index 00000000..4d36bd19 --- /dev/null +++ b/scripture/kjv/06/13/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 16:11** + +11 Thou wilt shew me the path of life: in thy presence is fulness of joy; at thy right hand there are pleasures for evermore. + +[Thursday 13-June, 2024](https://getbible.life/kjv/Psalms/16/11) diff --git a/scripture/kjv/06/13/24/scripture.tg b/scripture/kjv/06/13/24/scripture.tg new file mode 100644 index 00000000..6322774b --- /dev/null +++ b/scripture/kjv/06/13/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 16:11 +11 Thou wilt shew me the path of life: in thy presence is fulness of joy; at thy right hand there are pleasures for evermore. + +Thursday 13-June, 2024 diff --git a/scripture/kjv/06/13/24/scripture.tg.id b/scripture/kjv/06/13/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/13/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/13/24/scripture.today b/scripture/kjv/06/13/24/scripture.today new file mode 100644 index 00000000..0472607f --- /dev/null +++ b/scripture/kjv/06/13/24/scripture.today @@ -0,0 +1 @@ +19 16:11 diff --git a/scripture/kjv/06/13/25/scripture.html b/scripture/kjv/06/13/25/scripture.html new file mode 100644 index 00000000..07c95741 --- /dev/null +++ b/scripture/kjv/06/13/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 107:40-43
+40 He poureth contempt upon princes, and causeth them to wander in the wilderness, where there is no way. 41 Yet setteth he the poor on high from affliction, and maketh him families like a flock. 42 The righteous shall see it, and rejoice: and all iniquity shall stop her mouth. 43 Whoso is wise, and will observe these things, even they shall understand the lovingkindness of the Lord.

+Friday 13-June, 2025 diff --git a/scripture/kjv/06/13/25/scripture.json b/scripture/kjv/06/13/25/scripture.json new file mode 100644 index 00000000..539b93a7 --- /dev/null +++ b/scripture/kjv/06/13/25/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "Psalms", + "chapter": "107", + "date": "Friday 13-June, 2025", + "getbible": "https://getbible.life/kjv/Psalms/107/40-43", + "name": "Psalms 107:40-43", + "scripture": [ + { + "nr": "40", + "text": "He poureth contempt upon princes, and causeth them to wander in the wilderness, where there is no way." + }, + { + "nr": "41", + "text": "Yet setteth he the poor on high from affliction, and maketh him families like a flock." + }, + { + "nr": "42", + "text": "The righteous shall see it, and rejoice: and all iniquity shall stop her mouth." + }, + { + "nr": "43", + "text": "Whoso is wise, and will observe these things, even they shall understand the lovingkindness of the Lord. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "40-43", + "version": "kjv" +} diff --git a/scripture/kjv/06/13/25/scripture.md b/scripture/kjv/06/13/25/scripture.md new file mode 100644 index 00000000..af34579b --- /dev/null +++ b/scripture/kjv/06/13/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 107:40-43** + +40 He poureth contempt upon princes, and causeth them to wander in the wilderness, where there is no way. 41 Yet setteth he the poor on high from affliction, and maketh him families like a flock. 42 The righteous shall see it, and rejoice: and all iniquity shall stop her mouth. 43 Whoso is wise, and will observe these things, even they shall understand the lovingkindness of the Lord. + +[Friday 13-June, 2025](https://getbible.life/kjv/Psalms/107/40-43) diff --git a/scripture/kjv/06/13/25/scripture.tg b/scripture/kjv/06/13/25/scripture.tg new file mode 100644 index 00000000..3bda3233 --- /dev/null +++ b/scripture/kjv/06/13/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 107:40-43 +40 He poureth contempt upon princes, and causeth them to wander in the wilderness, where there is no way. 41 Yet setteth he the poor on high from affliction, and maketh him families like a flock. 42 The righteous shall see it, and rejoice: and all iniquity shall stop her mouth. 43 Whoso is wise, and will observe these things, even they shall understand the lovingkindness of the Lord. + +Friday 13-June, 2025 diff --git a/scripture/kjv/06/13/25/scripture.tg.id b/scripture/kjv/06/13/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/13/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/13/25/scripture.today b/scripture/kjv/06/13/25/scripture.today new file mode 100644 index 00000000..f472fdb0 --- /dev/null +++ b/scripture/kjv/06/13/25/scripture.today @@ -0,0 +1 @@ +19 107:40-43 diff --git a/scripture/kjv/06/13/26/scripture.html b/scripture/kjv/06/13/26/scripture.html new file mode 100644 index 00000000..47f4363e --- /dev/null +++ b/scripture/kjv/06/13/26/scripture.html @@ -0,0 +1,3 @@ +Luke 12:2-3
+2 For there is nothing covered, that shall not be revealed; neither hid, that shall not be known. 3 Therefore whatsoever ye have spoken in darkness shall be heard in the light; and that which ye have spoken in the ear in closets shall be proclaimed upon the housetops.

+Saturday 13-June, 2026 diff --git a/scripture/kjv/06/13/26/scripture.json b/scripture/kjv/06/13/26/scripture.json new file mode 100644 index 00000000..083220d8 --- /dev/null +++ b/scripture/kjv/06/13/26/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Luke", + "chapter": "12", + "date": "Saturday 13-June, 2026", + "getbible": "https://getbible.life/kjv/Luke/12/2-3", + "name": "Luke 12:2-3", + "scripture": [ + { + "nr": "2", + "text": "For there is nothing covered, that shall not be revealed; neither hid, that shall not be known." + }, + { + "nr": "3", + "text": "Therefore whatsoever ye have spoken in darkness shall be heard in the light; and that which ye have spoken in the ear in closets shall be proclaimed upon the housetops." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "2-3", + "version": "kjv" +} diff --git a/scripture/kjv/06/13/26/scripture.md b/scripture/kjv/06/13/26/scripture.md new file mode 100644 index 00000000..9bd540d4 --- /dev/null +++ b/scripture/kjv/06/13/26/scripture.md @@ -0,0 +1,5 @@ +**Luke 12:2-3** + +2 For there is nothing covered, that shall not be revealed; neither hid, that shall not be known. 3 Therefore whatsoever ye have spoken in darkness shall be heard in the light; and that which ye have spoken in the ear in closets shall be proclaimed upon the housetops. + +[Saturday 13-June, 2026](https://getbible.life/kjv/Luke/12/2-3) diff --git a/scripture/kjv/06/13/26/scripture.tg b/scripture/kjv/06/13/26/scripture.tg new file mode 100644 index 00000000..ea4a6994 --- /dev/null +++ b/scripture/kjv/06/13/26/scripture.tg @@ -0,0 +1,4 @@ +Luke 12:2-3 +2 For there is nothing covered, that shall not be revealed; neither hid, that shall not be known. 3 Therefore whatsoever ye have spoken in darkness shall be heard in the light; and that which ye have spoken in the ear in closets shall be proclaimed upon the housetops. + +Saturday 13-June, 2026 diff --git a/scripture/kjv/06/13/26/scripture.tg.id b/scripture/kjv/06/13/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/13/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/13/26/scripture.today b/scripture/kjv/06/13/26/scripture.today new file mode 100644 index 00000000..62ab8923 --- /dev/null +++ b/scripture/kjv/06/13/26/scripture.today @@ -0,0 +1 @@ +42 12:2-3 diff --git a/scripture/kjv/06/14/23/scripture.html b/scripture/kjv/06/14/23/scripture.html new file mode 100644 index 00000000..11113835 --- /dev/null +++ b/scripture/kjv/06/14/23/scripture.html @@ -0,0 +1,3 @@ +Job 31:1-9
+1 I made a covenant with mine eyes; why then should I think upon a maid? 2 For what portion of God is there from above? and what inheritance of the Almighty from on high? 3 Is not destruction to the wicked? and a strange punishment to the workers of iniquity? 4 Doth not he see my ways, and count all my steps? 5 If I have walked with vanity, or if my foot hath hasted to deceit; 6 Let me be weighed in an even balance, that God may know mine integrity. 7 If my step hath turned out of the way, and mine heart walked after mine eyes, and if any blot hath cleaved to mine hands; 8 Then let me sow, and let another eat; yea, let my offspring be rooted out. 9 If mine heart have been deceived by a woman, or if I have laid wait at my neighbour’s door;

+Wednesday 14-June, 2023 diff --git a/scripture/kjv/06/14/23/scripture.json b/scripture/kjv/06/14/23/scripture.json new file mode 100644 index 00000000..3b5bce4a --- /dev/null +++ b/scripture/kjv/06/14/23/scripture.json @@ -0,0 +1,45 @@ +{ + "date": "Wednesday 14-June, 2023", + "name": "Job 31:1-9", + "scripture": [ + { + "nr": "1", + "text": "I made a covenant with mine eyes; why then should I think upon a maid?" + }, + { + "nr": "2", + "text": "For what portion of God is there from above? and what inheritance of the Almighty from on high?" + }, + { + "nr": "3", + "text": "Is not destruction to the wicked? and a strange punishment to the workers of iniquity?" + }, + { + "nr": "4", + "text": "Doth not he see my ways, and count all my steps?" + }, + { + "nr": "5", + "text": "If I have walked with vanity, or if my foot hath hasted to deceit;" + }, + { + "nr": "6", + "text": "Let me be weighed in an even balance, that God may know mine integrity." + }, + { + "nr": "7", + "text": "If my step hath turned out of the way, and mine heart walked after mine eyes, and if any blot hath cleaved to mine hands;" + }, + { + "nr": "8", + "text": "Then let me sow, and let another eat; yea, let my offspring be rooted out." + }, + { + "nr": "9", + "text": "If mine heart have been deceived by a woman, or if I have laid wait at my neighbour’s door;" + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/14/23/scripture.md b/scripture/kjv/06/14/23/scripture.md new file mode 100644 index 00000000..c3a6ade0 --- /dev/null +++ b/scripture/kjv/06/14/23/scripture.md @@ -0,0 +1,5 @@ +**Job 31:1-9** + +1 I made a covenant with mine eyes; why then should I think upon a maid? 2 For what portion of God is there from above? and what inheritance of the Almighty from on high? 3 Is not destruction to the wicked? and a strange punishment to the workers of iniquity? 4 Doth not he see my ways, and count all my steps? 5 If I have walked with vanity, or if my foot hath hasted to deceit; 6 Let me be weighed in an even balance, that God may know mine integrity. 7 If my step hath turned out of the way, and mine heart walked after mine eyes, and if any blot hath cleaved to mine hands; 8 Then let me sow, and let another eat; yea, let my offspring be rooted out. 9 If mine heart have been deceived by a woman, or if I have laid wait at my neighbour’s door; + +[Wednesday 14-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/14/23/scripture.tg b/scripture/kjv/06/14/23/scripture.tg new file mode 100644 index 00000000..36563be8 --- /dev/null +++ b/scripture/kjv/06/14/23/scripture.tg @@ -0,0 +1,4 @@ +Job 31:1-9 +1 I made a covenant with mine eyes; why then should I think upon a maid? 2 For what portion of God is there from above? and what inheritance of the Almighty from on high? 3 Is not destruction to the wicked? and a strange punishment to the workers of iniquity? 4 Doth not he see my ways, and count all my steps? 5 If I have walked with vanity, or if my foot hath hasted to deceit; 6 Let me be weighed in an even balance, that God may know mine integrity. 7 If my step hath turned out of the way, and mine heart walked after mine eyes, and if any blot hath cleaved to mine hands; 8 Then let me sow, and let another eat; yea, let my offspring be rooted out. 9 If mine heart have been deceived by a woman, or if I have laid wait at my neighbour’s door; + +Wednesday 14-June, 2023 diff --git a/scripture/kjv/06/14/23/scripture.tg.id b/scripture/kjv/06/14/23/scripture.tg.id new file mode 100644 index 00000000..c93af1a9 --- /dev/null +++ b/scripture/kjv/06/14/23/scripture.tg.id @@ -0,0 +1 @@ +979 diff --git a/scripture/kjv/06/14/23/scripture.today b/scripture/kjv/06/14/23/scripture.today new file mode 100644 index 00000000..355554de --- /dev/null +++ b/scripture/kjv/06/14/23/scripture.today @@ -0,0 +1 @@ +18 31:1-9 diff --git a/scripture/kjv/06/14/24/scripture.html b/scripture/kjv/06/14/24/scripture.html new file mode 100644 index 00000000..6669bc8f --- /dev/null +++ b/scripture/kjv/06/14/24/scripture.html @@ -0,0 +1,3 @@ +1 Thessalonians 5:16
+16 Rejoice evermore.

+Friday 14-June, 2024 diff --git a/scripture/kjv/06/14/24/scripture.json b/scripture/kjv/06/14/24/scripture.json new file mode 100644 index 00000000..b380a23f --- /dev/null +++ b/scripture/kjv/06/14/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Thessalonians", + "chapter": "5", + "date": "Friday 14-June, 2024", + "getbible": "https://getbible.life/kjv/1 Thessalonians/5/16", + "name": "1 Thessalonians 5:16", + "scripture": [ + { + "nr": "16", + "text": "Rejoice evermore." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16", + "version": "kjv" +} diff --git a/scripture/kjv/06/14/24/scripture.md b/scripture/kjv/06/14/24/scripture.md new file mode 100644 index 00000000..d35e667e --- /dev/null +++ b/scripture/kjv/06/14/24/scripture.md @@ -0,0 +1,5 @@ +**1 Thessalonians 5:16** + +16 Rejoice evermore. + +[Friday 14-June, 2024](https://getbible.life/kjv/1 Thessalonians/5/16) diff --git a/scripture/kjv/06/14/24/scripture.tg b/scripture/kjv/06/14/24/scripture.tg new file mode 100644 index 00000000..6574592d --- /dev/null +++ b/scripture/kjv/06/14/24/scripture.tg @@ -0,0 +1,4 @@ +1 Thessalonians 5:16 +16 Rejoice evermore. + +Friday 14-June, 2024 diff --git a/scripture/kjv/06/14/24/scripture.tg.id b/scripture/kjv/06/14/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/14/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/14/24/scripture.today b/scripture/kjv/06/14/24/scripture.today new file mode 100644 index 00000000..791230a3 --- /dev/null +++ b/scripture/kjv/06/14/24/scripture.today @@ -0,0 +1 @@ +52 5:16 diff --git a/scripture/kjv/06/14/25/scripture.html b/scripture/kjv/06/14/25/scripture.html new file mode 100644 index 00000000..55e61531 --- /dev/null +++ b/scripture/kjv/06/14/25/scripture.html @@ -0,0 +1,3 @@ +Deuteronomy 32:12
+12 So the Lord alone did lead him, and there was no strange god with him.

+Saturday 14-June, 2025 diff --git a/scripture/kjv/06/14/25/scripture.json b/scripture/kjv/06/14/25/scripture.json new file mode 100644 index 00000000..2f2137b3 --- /dev/null +++ b/scripture/kjv/06/14/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Deuteronomy", + "chapter": "32", + "date": "Saturday 14-June, 2025", + "getbible": "https://getbible.life/kjv/Deuteronomy/32/12", + "name": "Deuteronomy 32:12", + "scripture": [ + { + "nr": "12", + "text": "So the Lord alone did lead him, and there was no strange god with him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/06/14/25/scripture.md b/scripture/kjv/06/14/25/scripture.md new file mode 100644 index 00000000..876ac5db --- /dev/null +++ b/scripture/kjv/06/14/25/scripture.md @@ -0,0 +1,5 @@ +**Deuteronomy 32:12** + +12 So the Lord alone did lead him, and there was no strange god with him. + +[Saturday 14-June, 2025](https://getbible.life/kjv/Deuteronomy/32/12) diff --git a/scripture/kjv/06/14/25/scripture.tg b/scripture/kjv/06/14/25/scripture.tg new file mode 100644 index 00000000..c8b238ae --- /dev/null +++ b/scripture/kjv/06/14/25/scripture.tg @@ -0,0 +1,4 @@ +Deuteronomy 32:12 +12 So the Lord alone did lead him, and there was no strange god with him. + +Saturday 14-June, 2025 diff --git a/scripture/kjv/06/14/25/scripture.tg.id b/scripture/kjv/06/14/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/14/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/14/25/scripture.today b/scripture/kjv/06/14/25/scripture.today new file mode 100644 index 00000000..3a6dd1a0 --- /dev/null +++ b/scripture/kjv/06/14/25/scripture.today @@ -0,0 +1 @@ +5 32:12 diff --git a/scripture/kjv/06/14/26/scripture.html b/scripture/kjv/06/14/26/scripture.html new file mode 100644 index 00000000..aa2be943 --- /dev/null +++ b/scripture/kjv/06/14/26/scripture.html @@ -0,0 +1,3 @@ +John 1:33
+33 And I knew him not: but he that sent me to baptize with water, the same said unto me, Upon whom thou shalt see the Spirit descending, and remaining on him, the same is he which baptizeth with the Holy Ghost.

+Sunday 14-June, 2026 diff --git a/scripture/kjv/06/14/26/scripture.json b/scripture/kjv/06/14/26/scripture.json new file mode 100644 index 00000000..d85e3724 --- /dev/null +++ b/scripture/kjv/06/14/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "1", + "date": "Sunday 14-June, 2026", + "getbible": "https://getbible.life/kjv/John/1/33", + "name": "John 1:33", + "scripture": [ + { + "nr": "33", + "text": "And I knew him not: but he that sent me to baptize with water, the same said unto me, Upon whom thou shalt see the Spirit descending, and remaining on him, the same is he which baptizeth with the Holy Ghost." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "33", + "version": "kjv" +} diff --git a/scripture/kjv/06/14/26/scripture.md b/scripture/kjv/06/14/26/scripture.md new file mode 100644 index 00000000..5124c61d --- /dev/null +++ b/scripture/kjv/06/14/26/scripture.md @@ -0,0 +1,5 @@ +**John 1:33** + +33 And I knew him not: but he that sent me to baptize with water, the same said unto me, Upon whom thou shalt see the Spirit descending, and remaining on him, the same is he which baptizeth with the Holy Ghost. + +[Sunday 14-June, 2026](https://getbible.life/kjv/John/1/33) diff --git a/scripture/kjv/06/14/26/scripture.tg b/scripture/kjv/06/14/26/scripture.tg new file mode 100644 index 00000000..37fc0b6d --- /dev/null +++ b/scripture/kjv/06/14/26/scripture.tg @@ -0,0 +1,4 @@ +John 1:33 +33 And I knew him not: but he that sent me to baptize with water, the same said unto me, Upon whom thou shalt see the Spirit descending, and remaining on him, the same is he which baptizeth with the Holy Ghost. + +Sunday 14-June, 2026 diff --git a/scripture/kjv/06/14/26/scripture.tg.id b/scripture/kjv/06/14/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/14/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/14/26/scripture.today b/scripture/kjv/06/14/26/scripture.today new file mode 100644 index 00000000..be1e4a7b --- /dev/null +++ b/scripture/kjv/06/14/26/scripture.today @@ -0,0 +1 @@ +43 1:33 diff --git a/scripture/kjv/06/15/23/scripture.html b/scripture/kjv/06/15/23/scripture.html new file mode 100644 index 00000000..58619b6b --- /dev/null +++ b/scripture/kjv/06/15/23/scripture.html @@ -0,0 +1,3 @@ +James 3:1-2
+1 My brethren, be not many masters, knowing that we shall receive the greater condemnation. 2 For in many things we offend all. If any man offend not in word, the same is a perfect man, and able also to bridle the whole body.

+Thursday 15-June, 2023 diff --git a/scripture/kjv/06/15/23/scripture.json b/scripture/kjv/06/15/23/scripture.json new file mode 100644 index 00000000..5a9240d9 --- /dev/null +++ b/scripture/kjv/06/15/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Thursday 15-June, 2023", + "name": "James 3:1-2", + "scripture": [ + { + "nr": "1", + "text": "My brethren, be not many masters, knowing that we shall receive the greater condemnation." + }, + { + "nr": "2", + "text": "For in many things we offend all. If any man offend not in word, the same is a perfect man, and able also to bridle the whole body." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/15/23/scripture.md b/scripture/kjv/06/15/23/scripture.md new file mode 100644 index 00000000..29c6058f --- /dev/null +++ b/scripture/kjv/06/15/23/scripture.md @@ -0,0 +1,5 @@ +**James 3:1-2** + +1 My brethren, be not many masters, knowing that we shall receive the greater condemnation. 2 For in many things we offend all. If any man offend not in word, the same is a perfect man, and able also to bridle the whole body. + +[Thursday 15-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/15/23/scripture.tg b/scripture/kjv/06/15/23/scripture.tg new file mode 100644 index 00000000..7da71302 --- /dev/null +++ b/scripture/kjv/06/15/23/scripture.tg @@ -0,0 +1,4 @@ +James 3:1-2 +1 My brethren, be not many masters, knowing that we shall receive the greater condemnation. 2 For in many things we offend all. If any man offend not in word, the same is a perfect man, and able also to bridle the whole body. + +Thursday 15-June, 2023 diff --git a/scripture/kjv/06/15/23/scripture.tg.id b/scripture/kjv/06/15/23/scripture.tg.id new file mode 100644 index 00000000..da8e2a42 --- /dev/null +++ b/scripture/kjv/06/15/23/scripture.tg.id @@ -0,0 +1 @@ +980 diff --git a/scripture/kjv/06/15/23/scripture.today b/scripture/kjv/06/15/23/scripture.today new file mode 100644 index 00000000..f7a2134e --- /dev/null +++ b/scripture/kjv/06/15/23/scripture.today @@ -0,0 +1 @@ +59 3:1-2 diff --git a/scripture/kjv/06/15/24/scripture.html b/scripture/kjv/06/15/24/scripture.html new file mode 100644 index 00000000..6575c99f --- /dev/null +++ b/scripture/kjv/06/15/24/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 2:7
+7 But we speak the wisdom of God in a mystery, even the hidden wisdom, which God ordained before the world unto our glory:

+Saturday 15-June, 2024 diff --git a/scripture/kjv/06/15/24/scripture.json b/scripture/kjv/06/15/24/scripture.json new file mode 100644 index 00000000..e6289ff9 --- /dev/null +++ b/scripture/kjv/06/15/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "2", + "date": "Saturday 15-June, 2024", + "getbible": "https://getbible.life/kjv/1 Corinthians/2/7", + "name": "1 Corinthians 2:7", + "scripture": [ + { + "nr": "7", + "text": "But we speak the wisdom of God in a mystery, even the hidden wisdom, which God ordained before the world unto our glory:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7", + "version": "kjv" +} diff --git a/scripture/kjv/06/15/24/scripture.md b/scripture/kjv/06/15/24/scripture.md new file mode 100644 index 00000000..321b0908 --- /dev/null +++ b/scripture/kjv/06/15/24/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 2:7** + +7 But we speak the wisdom of God in a mystery, even the hidden wisdom, which God ordained before the world unto our glory: + +[Saturday 15-June, 2024](https://getbible.life/kjv/1 Corinthians/2/7) diff --git a/scripture/kjv/06/15/24/scripture.tg b/scripture/kjv/06/15/24/scripture.tg new file mode 100644 index 00000000..e680480e --- /dev/null +++ b/scripture/kjv/06/15/24/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 2:7 +7 But we speak the wisdom of God in a mystery, even the hidden wisdom, which God ordained before the world unto our glory: + +Saturday 15-June, 2024 diff --git a/scripture/kjv/06/15/24/scripture.tg.id b/scripture/kjv/06/15/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/15/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/15/24/scripture.today b/scripture/kjv/06/15/24/scripture.today new file mode 100644 index 00000000..d7465e9e --- /dev/null +++ b/scripture/kjv/06/15/24/scripture.today @@ -0,0 +1 @@ +46 2:7 diff --git a/scripture/kjv/06/15/25/scripture.html b/scripture/kjv/06/15/25/scripture.html new file mode 100644 index 00000000..17aeeba2 --- /dev/null +++ b/scripture/kjv/06/15/25/scripture.html @@ -0,0 +1,3 @@ +Mark 12:41-44
+41 And Jesus sat over against the treasury, and beheld how the people cast money into the treasury: and many that were rich cast in much. 42 And there came a certain poor widow, and she threw in two mites, which make a farthing. 43 And he called unto him his disciples, and saith unto them, Verily I say unto you, That this poor widow hath cast more in, than all they which have cast into the treasury: 44 For all they did cast in of their abundance; but she of her want did cast in all that she had, even all her living.

+Sunday 15-June, 2025 diff --git a/scripture/kjv/06/15/25/scripture.json b/scripture/kjv/06/15/25/scripture.json new file mode 100644 index 00000000..12772dff --- /dev/null +++ b/scripture/kjv/06/15/25/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "Mark", + "chapter": "12", + "date": "Sunday 15-June, 2025", + "getbible": "https://getbible.life/kjv/Mark/12/41-44", + "name": "Mark 12:41-44", + "scripture": [ + { + "nr": "41", + "text": "And Jesus sat over against the treasury, and beheld how the people cast money into the treasury: and many that were rich cast in much." + }, + { + "nr": "42", + "text": "And there came a certain poor widow, and she threw in two mites, which make a farthing." + }, + { + "nr": "43", + "text": "And he called unto him his disciples, and saith unto them, Verily I say unto you, That this poor widow hath cast more in, than all they which have cast into the treasury:" + }, + { + "nr": "44", + "text": "For all they did cast in of their abundance; but she of her want did cast in all that she had, even all her living. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "41-44", + "version": "kjv" +} diff --git a/scripture/kjv/06/15/25/scripture.md b/scripture/kjv/06/15/25/scripture.md new file mode 100644 index 00000000..349eadca --- /dev/null +++ b/scripture/kjv/06/15/25/scripture.md @@ -0,0 +1,5 @@ +**Mark 12:41-44** + +41 And Jesus sat over against the treasury, and beheld how the people cast money into the treasury: and many that were rich cast in much. 42 And there came a certain poor widow, and she threw in two mites, which make a farthing. 43 And he called unto him his disciples, and saith unto them, Verily I say unto you, That this poor widow hath cast more in, than all they which have cast into the treasury: 44 For all they did cast in of their abundance; but she of her want did cast in all that she had, even all her living. + +[Sunday 15-June, 2025](https://getbible.life/kjv/Mark/12/41-44) diff --git a/scripture/kjv/06/15/25/scripture.tg b/scripture/kjv/06/15/25/scripture.tg new file mode 100644 index 00000000..bc58c292 --- /dev/null +++ b/scripture/kjv/06/15/25/scripture.tg @@ -0,0 +1,4 @@ +Mark 12:41-44 +41 And Jesus sat over against the treasury, and beheld how the people cast money into the treasury: and many that were rich cast in much. 42 And there came a certain poor widow, and she threw in two mites, which make a farthing. 43 And he called unto him his disciples, and saith unto them, Verily I say unto you, That this poor widow hath cast more in, than all they which have cast into the treasury: 44 For all they did cast in of their abundance; but she of her want did cast in all that she had, even all her living. + +Sunday 15-June, 2025 diff --git a/scripture/kjv/06/15/25/scripture.tg.id b/scripture/kjv/06/15/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/15/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/15/25/scripture.today b/scripture/kjv/06/15/25/scripture.today new file mode 100644 index 00000000..cb8cef38 --- /dev/null +++ b/scripture/kjv/06/15/25/scripture.today @@ -0,0 +1 @@ +41 12:41-44 diff --git a/scripture/kjv/06/15/26/scripture.html b/scripture/kjv/06/15/26/scripture.html new file mode 100644 index 00000000..5dc2b3a7 --- /dev/null +++ b/scripture/kjv/06/15/26/scripture.html @@ -0,0 +1,3 @@ +Job 11:13-19
+13 If thou prepare thine heart, and stretch out thine hands toward him; 14 If iniquity be in thine hand, put it far away, and let not wickedness dwell in thy tabernacles. 15 For then shalt thou lift up thy face without spot; yea, thou shalt be stedfast, and shalt not fear: 16 Because thou shalt forget thy misery, and remember it as waters that pass away: 17 And thine age shall be clearer than the noonday; thou shalt shine forth, thou shalt be as the morning. 18 And thou shalt be secure, because there is hope; yea, thou shalt dig about thee, and thou shalt take thy rest in safety. 19 Also thou shalt lie down, and none shall make thee afraid; yea, many shall make suit unto thee.

+Monday 15-June, 2026 diff --git a/scripture/kjv/06/15/26/scripture.json b/scripture/kjv/06/15/26/scripture.json new file mode 100644 index 00000000..cd5a721f --- /dev/null +++ b/scripture/kjv/06/15/26/scripture.json @@ -0,0 +1,41 @@ +{ + "book": "Job", + "chapter": "11", + "date": "Monday 15-June, 2026", + "getbible": "https://getbible.life/kjv/Job/11/13-19", + "name": "Job 11:13-19", + "scripture": [ + { + "nr": "13", + "text": "If thou prepare thine heart, and stretch out thine hands toward him;" + }, + { + "nr": "14", + "text": "If iniquity be in thine hand, put it far away, and let not wickedness dwell in thy tabernacles." + }, + { + "nr": "15", + "text": "For then shalt thou lift up thy face without spot; yea, thou shalt be stedfast, and shalt not fear:" + }, + { + "nr": "16", + "text": "Because thou shalt forget thy misery, and remember it as waters that pass away:" + }, + { + "nr": "17", + "text": "And thine age shall be clearer than the noonday; thou shalt shine forth, thou shalt be as the morning." + }, + { + "nr": "18", + "text": "And thou shalt be secure, because there is hope; yea, thou shalt dig about thee, and thou shalt take thy rest in safety." + }, + { + "nr": "19", + "text": "Also thou shalt lie down, and none shall make thee afraid; yea, many shall make suit unto thee." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13-19", + "version": "kjv" +} diff --git a/scripture/kjv/06/15/26/scripture.md b/scripture/kjv/06/15/26/scripture.md new file mode 100644 index 00000000..e6b58aeb --- /dev/null +++ b/scripture/kjv/06/15/26/scripture.md @@ -0,0 +1,5 @@ +**Job 11:13-19** + +13 If thou prepare thine heart, and stretch out thine hands toward him; 14 If iniquity be in thine hand, put it far away, and let not wickedness dwell in thy tabernacles. 15 For then shalt thou lift up thy face without spot; yea, thou shalt be stedfast, and shalt not fear: 16 Because thou shalt forget thy misery, and remember it as waters that pass away: 17 And thine age shall be clearer than the noonday; thou shalt shine forth, thou shalt be as the morning. 18 And thou shalt be secure, because there is hope; yea, thou shalt dig about thee, and thou shalt take thy rest in safety. 19 Also thou shalt lie down, and none shall make thee afraid; yea, many shall make suit unto thee. + +[Monday 15-June, 2026](https://getbible.life/kjv/Job/11/13-19) diff --git a/scripture/kjv/06/15/26/scripture.tg b/scripture/kjv/06/15/26/scripture.tg new file mode 100644 index 00000000..5dc2d106 --- /dev/null +++ b/scripture/kjv/06/15/26/scripture.tg @@ -0,0 +1,4 @@ +Job 11:13-19 +13 If thou prepare thine heart, and stretch out thine hands toward him; 14 If iniquity be in thine hand, put it far away, and let not wickedness dwell in thy tabernacles. 15 For then shalt thou lift up thy face without spot; yea, thou shalt be stedfast, and shalt not fear: 16 Because thou shalt forget thy misery, and remember it as waters that pass away: 17 And thine age shall be clearer than the noonday; thou shalt shine forth, thou shalt be as the morning. 18 And thou shalt be secure, because there is hope; yea, thou shalt dig about thee, and thou shalt take thy rest in safety. 19 Also thou shalt lie down, and none shall make thee afraid; yea, many shall make suit unto thee. + +Monday 15-June, 2026 diff --git a/scripture/kjv/06/15/26/scripture.tg.id b/scripture/kjv/06/15/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/15/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/15/26/scripture.today b/scripture/kjv/06/15/26/scripture.today new file mode 100644 index 00000000..cdd72b49 --- /dev/null +++ b/scripture/kjv/06/15/26/scripture.today @@ -0,0 +1 @@ +18 11:13-19 diff --git a/scripture/kjv/06/16/23/scripture.html b/scripture/kjv/06/16/23/scripture.html new file mode 100644 index 00000000..d2af2d1c --- /dev/null +++ b/scripture/kjv/06/16/23/scripture.html @@ -0,0 +1,3 @@ +1 Timothy 5:8
+8 But if any provide not for his own, and specially for those of his own house, he hath denied the faith, and is worse than an infidel.

+Friday 16-June, 2023 diff --git a/scripture/kjv/06/16/23/scripture.json b/scripture/kjv/06/16/23/scripture.json new file mode 100644 index 00000000..100cfd55 --- /dev/null +++ b/scripture/kjv/06/16/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Friday 16-June, 2023", + "name": "1 Timothy 5:8", + "scripture": [ + { + "nr": "8", + "text": "But if any provide not for his own, and specially for those of his own house, he hath denied the faith, and is worse than an infidel." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/16/23/scripture.md b/scripture/kjv/06/16/23/scripture.md new file mode 100644 index 00000000..96dd6a3a --- /dev/null +++ b/scripture/kjv/06/16/23/scripture.md @@ -0,0 +1,5 @@ +**1 Timothy 5:8** + +8 But if any provide not for his own, and specially for those of his own house, he hath denied the faith, and is worse than an infidel. + +[Friday 16-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/16/23/scripture.tg b/scripture/kjv/06/16/23/scripture.tg new file mode 100644 index 00000000..044b995d --- /dev/null +++ b/scripture/kjv/06/16/23/scripture.tg @@ -0,0 +1,4 @@ +1 Timothy 5:8 +8 But if any provide not for his own, and specially for those of his own house, he hath denied the faith, and is worse than an infidel. + +Friday 16-June, 2023 diff --git a/scripture/kjv/06/16/23/scripture.tg.id b/scripture/kjv/06/16/23/scripture.tg.id new file mode 100644 index 00000000..7db0976b --- /dev/null +++ b/scripture/kjv/06/16/23/scripture.tg.id @@ -0,0 +1 @@ +981 diff --git a/scripture/kjv/06/16/23/scripture.today b/scripture/kjv/06/16/23/scripture.today new file mode 100644 index 00000000..0502e972 --- /dev/null +++ b/scripture/kjv/06/16/23/scripture.today @@ -0,0 +1 @@ +54 5:8 diff --git a/scripture/kjv/06/16/24/scripture.html b/scripture/kjv/06/16/24/scripture.html new file mode 100644 index 00000000..72be4d26 --- /dev/null +++ b/scripture/kjv/06/16/24/scripture.html @@ -0,0 +1,3 @@ +Ephesians 2:1
+1 And you hath he quickened, who were dead in trespasses and sins;

+Sunday 16-June, 2024 diff --git a/scripture/kjv/06/16/24/scripture.json b/scripture/kjv/06/16/24/scripture.json new file mode 100644 index 00000000..85bbd997 --- /dev/null +++ b/scripture/kjv/06/16/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ephesians", + "chapter": "2", + "date": "Sunday 16-June, 2024", + "getbible": "https://getbible.life/kjv/Ephesians/2/1", + "name": "Ephesians 2:1", + "scripture": [ + { + "nr": "1", + "text": "And you hath he quickened, who were dead in trespasses and sins;" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1", + "version": "kjv" +} diff --git a/scripture/kjv/06/16/24/scripture.md b/scripture/kjv/06/16/24/scripture.md new file mode 100644 index 00000000..1bd3d14b --- /dev/null +++ b/scripture/kjv/06/16/24/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 2:1** + +1 And you hath he quickened, who were dead in trespasses and sins; + +[Sunday 16-June, 2024](https://getbible.life/kjv/Ephesians/2/1) diff --git a/scripture/kjv/06/16/24/scripture.tg b/scripture/kjv/06/16/24/scripture.tg new file mode 100644 index 00000000..f014391c --- /dev/null +++ b/scripture/kjv/06/16/24/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 2:1 +1 And you hath he quickened, who were dead in trespasses and sins; + +Sunday 16-June, 2024 diff --git a/scripture/kjv/06/16/24/scripture.tg.id b/scripture/kjv/06/16/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/16/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/16/24/scripture.today b/scripture/kjv/06/16/24/scripture.today new file mode 100644 index 00000000..07d6409b --- /dev/null +++ b/scripture/kjv/06/16/24/scripture.today @@ -0,0 +1 @@ +49 2:1 diff --git a/scripture/kjv/06/16/25/scripture.html b/scripture/kjv/06/16/25/scripture.html new file mode 100644 index 00000000..8a5cce7d --- /dev/null +++ b/scripture/kjv/06/16/25/scripture.html @@ -0,0 +1,3 @@ +Proverbs 21:13
+13 Whoso stoppeth his ears at the cry of the poor, he also shall cry himself, but shall not be heard.

+Monday 16-June, 2025 diff --git a/scripture/kjv/06/16/25/scripture.json b/scripture/kjv/06/16/25/scripture.json new file mode 100644 index 00000000..7d66f0a5 --- /dev/null +++ b/scripture/kjv/06/16/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "21", + "date": "Monday 16-June, 2025", + "getbible": "https://getbible.life/kjv/Proverbs/21/13", + "name": "Proverbs 21:13", + "scripture": [ + { + "nr": "13", + "text": "Whoso stoppeth his ears at the cry of the poor, he also shall cry himself, but shall not be heard." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13", + "version": "kjv" +} diff --git a/scripture/kjv/06/16/25/scripture.md b/scripture/kjv/06/16/25/scripture.md new file mode 100644 index 00000000..96dfe9e5 --- /dev/null +++ b/scripture/kjv/06/16/25/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 21:13** + +13 Whoso stoppeth his ears at the cry of the poor, he also shall cry himself, but shall not be heard. + +[Monday 16-June, 2025](https://getbible.life/kjv/Proverbs/21/13) diff --git a/scripture/kjv/06/16/25/scripture.tg b/scripture/kjv/06/16/25/scripture.tg new file mode 100644 index 00000000..8f624abb --- /dev/null +++ b/scripture/kjv/06/16/25/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 21:13 +13 Whoso stoppeth his ears at the cry of the poor, he also shall cry himself, but shall not be heard. + +Monday 16-June, 2025 diff --git a/scripture/kjv/06/16/25/scripture.tg.id b/scripture/kjv/06/16/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/16/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/16/25/scripture.today b/scripture/kjv/06/16/25/scripture.today new file mode 100644 index 00000000..0037f8ce --- /dev/null +++ b/scripture/kjv/06/16/25/scripture.today @@ -0,0 +1 @@ +20 21:13 diff --git a/scripture/kjv/06/16/26/scripture.html b/scripture/kjv/06/16/26/scripture.html new file mode 100644 index 00000000..83a52f51 --- /dev/null +++ b/scripture/kjv/06/16/26/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 2:7
+7 But we speak the wisdom of God in a mystery, even the hidden wisdom, which God ordained before the world unto our glory:

+Tuesday 16-June, 2026 diff --git a/scripture/kjv/06/16/26/scripture.json b/scripture/kjv/06/16/26/scripture.json new file mode 100644 index 00000000..3e6f74fa --- /dev/null +++ b/scripture/kjv/06/16/26/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "2", + "date": "Tuesday 16-June, 2026", + "getbible": "https://getbible.life/kjv/1 Corinthians/2/7", + "name": "1 Corinthians 2:7", + "scripture": [ + { + "nr": "7", + "text": "But we speak the wisdom of God in a mystery, even the hidden wisdom, which God ordained before the world unto our glory:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7", + "version": "kjv" +} diff --git a/scripture/kjv/06/16/26/scripture.md b/scripture/kjv/06/16/26/scripture.md new file mode 100644 index 00000000..9f17282d --- /dev/null +++ b/scripture/kjv/06/16/26/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 2:7** + +7 But we speak the wisdom of God in a mystery, even the hidden wisdom, which God ordained before the world unto our glory: + +[Tuesday 16-June, 2026](https://getbible.life/kjv/1 Corinthians/2/7) diff --git a/scripture/kjv/06/16/26/scripture.tg b/scripture/kjv/06/16/26/scripture.tg new file mode 100644 index 00000000..2ba9e667 --- /dev/null +++ b/scripture/kjv/06/16/26/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 2:7 +7 But we speak the wisdom of God in a mystery, even the hidden wisdom, which God ordained before the world unto our glory: + +Tuesday 16-June, 2026 diff --git a/scripture/kjv/06/16/26/scripture.tg.id b/scripture/kjv/06/16/26/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/16/26/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/16/26/scripture.today b/scripture/kjv/06/16/26/scripture.today new file mode 100644 index 00000000..d7465e9e --- /dev/null +++ b/scripture/kjv/06/16/26/scripture.today @@ -0,0 +1 @@ +46 2:7 diff --git a/scripture/kjv/06/17/23/scripture.html b/scripture/kjv/06/17/23/scripture.html new file mode 100644 index 00000000..842a8bb9 --- /dev/null +++ b/scripture/kjv/06/17/23/scripture.html @@ -0,0 +1,3 @@ +Matthew 18:11
+11 For the Son of man is come to save that which was lost.

+Saturday 17-June, 2023 diff --git a/scripture/kjv/06/17/23/scripture.json b/scripture/kjv/06/17/23/scripture.json new file mode 100644 index 00000000..af365a1f --- /dev/null +++ b/scripture/kjv/06/17/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Saturday 17-June, 2023", + "name": "Matthew 18:11", + "scripture": [ + { + "nr": "11", + "text": "For the Son of man is come to save that which was lost." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/17/23/scripture.md b/scripture/kjv/06/17/23/scripture.md new file mode 100644 index 00000000..a6cc6ca4 --- /dev/null +++ b/scripture/kjv/06/17/23/scripture.md @@ -0,0 +1,5 @@ +**Matthew 18:11** + +11 For the Son of man is come to save that which was lost. + +[Saturday 17-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/17/23/scripture.tg b/scripture/kjv/06/17/23/scripture.tg new file mode 100644 index 00000000..7d93fcf6 --- /dev/null +++ b/scripture/kjv/06/17/23/scripture.tg @@ -0,0 +1,4 @@ +Matthew 18:11 +11 For the Son of man is come to save that which was lost. + +Saturday 17-June, 2023 diff --git a/scripture/kjv/06/17/23/scripture.tg.id b/scripture/kjv/06/17/23/scripture.tg.id new file mode 100644 index 00000000..acbef433 --- /dev/null +++ b/scripture/kjv/06/17/23/scripture.tg.id @@ -0,0 +1 @@ +982 diff --git a/scripture/kjv/06/17/23/scripture.today b/scripture/kjv/06/17/23/scripture.today new file mode 100644 index 00000000..5d09a213 --- /dev/null +++ b/scripture/kjv/06/17/23/scripture.today @@ -0,0 +1 @@ +40 18:11 diff --git a/scripture/kjv/06/17/24/scripture.html b/scripture/kjv/06/17/24/scripture.html new file mode 100644 index 00000000..370a9b04 --- /dev/null +++ b/scripture/kjv/06/17/24/scripture.html @@ -0,0 +1,3 @@ +Ephesians 5:25
+25 Husbands, love your wives, even as Christ also loved the church, and gave himself for it;

+Monday 17-June, 2024 diff --git a/scripture/kjv/06/17/24/scripture.json b/scripture/kjv/06/17/24/scripture.json new file mode 100644 index 00000000..31231b7d --- /dev/null +++ b/scripture/kjv/06/17/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ephesians", + "chapter": "5", + "date": "Monday 17-June, 2024", + "getbible": "https://getbible.life/kjv/Ephesians/5/25", + "name": "Ephesians 5:25", + "scripture": [ + { + "nr": "25", + "text": "Husbands, love your wives, even as Christ also loved the church, and gave himself for it;" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "25", + "version": "kjv" +} diff --git a/scripture/kjv/06/17/24/scripture.md b/scripture/kjv/06/17/24/scripture.md new file mode 100644 index 00000000..423d6f10 --- /dev/null +++ b/scripture/kjv/06/17/24/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 5:25** + +25 Husbands, love your wives, even as Christ also loved the church, and gave himself for it; + +[Monday 17-June, 2024](https://getbible.life/kjv/Ephesians/5/25) diff --git a/scripture/kjv/06/17/24/scripture.tg b/scripture/kjv/06/17/24/scripture.tg new file mode 100644 index 00000000..66c82b8e --- /dev/null +++ b/scripture/kjv/06/17/24/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 5:25 +25 Husbands, love your wives, even as Christ also loved the church, and gave himself for it; + +Monday 17-June, 2024 diff --git a/scripture/kjv/06/17/24/scripture.tg.id b/scripture/kjv/06/17/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/17/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/17/24/scripture.today b/scripture/kjv/06/17/24/scripture.today new file mode 100644 index 00000000..4d66da25 --- /dev/null +++ b/scripture/kjv/06/17/24/scripture.today @@ -0,0 +1 @@ +49 5:25 diff --git a/scripture/kjv/06/17/25/scripture.html b/scripture/kjv/06/17/25/scripture.html new file mode 100644 index 00000000..9c173e36 --- /dev/null +++ b/scripture/kjv/06/17/25/scripture.html @@ -0,0 +1,3 @@ +Matthew 24:12-13
+12 And because iniquity shall abound, the love of many shall wax cold. 13 But he that shall endure unto the end, the same shall be saved.

+Tuesday 17-June, 2025 diff --git a/scripture/kjv/06/17/25/scripture.json b/scripture/kjv/06/17/25/scripture.json new file mode 100644 index 00000000..ab93ca88 --- /dev/null +++ b/scripture/kjv/06/17/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Matthew", + "chapter": "24", + "date": "Tuesday 17-June, 2025", + "getbible": "https://getbible.life/kjv/Matthew/24/12-13", + "name": "Matthew 24:12-13", + "scripture": [ + { + "nr": "12", + "text": "And because iniquity shall abound, the love of many shall wax cold." + }, + { + "nr": "13", + "text": "But he that shall endure unto the end, the same shall be saved." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12-13", + "version": "kjv" +} diff --git a/scripture/kjv/06/17/25/scripture.md b/scripture/kjv/06/17/25/scripture.md new file mode 100644 index 00000000..883cac2f --- /dev/null +++ b/scripture/kjv/06/17/25/scripture.md @@ -0,0 +1,5 @@ +**Matthew 24:12-13** + +12 And because iniquity shall abound, the love of many shall wax cold. 13 But he that shall endure unto the end, the same shall be saved. + +[Tuesday 17-June, 2025](https://getbible.life/kjv/Matthew/24/12-13) diff --git a/scripture/kjv/06/17/25/scripture.tg b/scripture/kjv/06/17/25/scripture.tg new file mode 100644 index 00000000..9eaf0b61 --- /dev/null +++ b/scripture/kjv/06/17/25/scripture.tg @@ -0,0 +1,4 @@ +Matthew 24:12-13 +12 And because iniquity shall abound, the love of many shall wax cold. 13 But he that shall endure unto the end, the same shall be saved. + +Tuesday 17-June, 2025 diff --git a/scripture/kjv/06/17/25/scripture.tg.id b/scripture/kjv/06/17/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/17/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/17/25/scripture.today b/scripture/kjv/06/17/25/scripture.today new file mode 100644 index 00000000..e21d189e --- /dev/null +++ b/scripture/kjv/06/17/25/scripture.today @@ -0,0 +1 @@ +40 24:12-13 diff --git a/scripture/kjv/06/18/23/scripture.html b/scripture/kjv/06/18/23/scripture.html new file mode 100644 index 00000000..7a327354 --- /dev/null +++ b/scripture/kjv/06/18/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 112:1-2
+1 Praise ye the Lord. Blessed is the man that feareth the Lord, that delighteth greatly in his commandments. 2 His seed shall be mighty upon earth: the generation of the upright shall be blessed.

+Sunday 18-June, 2023 diff --git a/scripture/kjv/06/18/23/scripture.json b/scripture/kjv/06/18/23/scripture.json new file mode 100644 index 00000000..74da4e69 --- /dev/null +++ b/scripture/kjv/06/18/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Sunday 18-June, 2023", + "name": "Psalms 112:1-2", + "scripture": [ + { + "nr": "1", + "text": "Praise ye the Lord. Blessed is the man that feareth the Lord, that delighteth greatly in his commandments." + }, + { + "nr": "2", + "text": "His seed shall be mighty upon earth: the generation of the upright shall be blessed." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/18/23/scripture.md b/scripture/kjv/06/18/23/scripture.md new file mode 100644 index 00000000..efc0e5df --- /dev/null +++ b/scripture/kjv/06/18/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 112:1-2** + +1 Praise ye the Lord. Blessed is the man that feareth the Lord, that delighteth greatly in his commandments. 2 His seed shall be mighty upon earth: the generation of the upright shall be blessed. + +[Sunday 18-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/18/23/scripture.tg b/scripture/kjv/06/18/23/scripture.tg new file mode 100644 index 00000000..8590480d --- /dev/null +++ b/scripture/kjv/06/18/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 112:1-2 +1 Praise ye the Lord. Blessed is the man that feareth the Lord, that delighteth greatly in his commandments. 2 His seed shall be mighty upon earth: the generation of the upright shall be blessed. + +Sunday 18-June, 2023 diff --git a/scripture/kjv/06/18/23/scripture.tg.id b/scripture/kjv/06/18/23/scripture.tg.id new file mode 100644 index 00000000..9f0c87b5 --- /dev/null +++ b/scripture/kjv/06/18/23/scripture.tg.id @@ -0,0 +1 @@ +983 diff --git a/scripture/kjv/06/18/23/scripture.today b/scripture/kjv/06/18/23/scripture.today new file mode 100644 index 00000000..9d82b543 --- /dev/null +++ b/scripture/kjv/06/18/23/scripture.today @@ -0,0 +1 @@ +19 112:1-2 diff --git a/scripture/kjv/06/18/24/scripture.html b/scripture/kjv/06/18/24/scripture.html new file mode 100644 index 00000000..fa3d2754 --- /dev/null +++ b/scripture/kjv/06/18/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 40:12-13
+12 For innumerable evils have compassed me about: mine iniquities have taken hold upon me, so that I am not able to look up; they are more than the hairs of mine head: therefore my heart faileth me. 13 Be pleased, O Lord, to deliver me: O Lord, make haste to help me.

+Tuesday 18-June, 2024 diff --git a/scripture/kjv/06/18/24/scripture.json b/scripture/kjv/06/18/24/scripture.json new file mode 100644 index 00000000..299e05b5 --- /dev/null +++ b/scripture/kjv/06/18/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Psalms", + "chapter": "40", + "date": "Tuesday 18-June, 2024", + "getbible": "https://getbible.life/kjv/Psalms/40/12-13", + "name": "Psalms 40:12-13", + "scripture": [ + { + "nr": "12", + "text": "For innumerable evils have compassed me about: mine iniquities have taken hold upon me, so that I am not able to look up; they are more than the hairs of mine head: therefore my heart faileth me." + }, + { + "nr": "13", + "text": "Be pleased, O Lord, to deliver me: O Lord, make haste to help me." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12-13", + "version": "kjv" +} diff --git a/scripture/kjv/06/18/24/scripture.md b/scripture/kjv/06/18/24/scripture.md new file mode 100644 index 00000000..8f91af2e --- /dev/null +++ b/scripture/kjv/06/18/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 40:12-13** + +12 For innumerable evils have compassed me about: mine iniquities have taken hold upon me, so that I am not able to look up; they are more than the hairs of mine head: therefore my heart faileth me. 13 Be pleased, O Lord, to deliver me: O Lord, make haste to help me. + +[Tuesday 18-June, 2024](https://getbible.life/kjv/Psalms/40/12-13) diff --git a/scripture/kjv/06/18/24/scripture.tg b/scripture/kjv/06/18/24/scripture.tg new file mode 100644 index 00000000..bfa90c15 --- /dev/null +++ b/scripture/kjv/06/18/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 40:12-13 +12 For innumerable evils have compassed me about: mine iniquities have taken hold upon me, so that I am not able to look up; they are more than the hairs of mine head: therefore my heart faileth me. 13 Be pleased, O Lord, to deliver me: O Lord, make haste to help me. + +Tuesday 18-June, 2024 diff --git a/scripture/kjv/06/18/24/scripture.tg.id b/scripture/kjv/06/18/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/18/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/18/24/scripture.today b/scripture/kjv/06/18/24/scripture.today new file mode 100644 index 00000000..c8308bbb --- /dev/null +++ b/scripture/kjv/06/18/24/scripture.today @@ -0,0 +1 @@ +19 40:12-13 diff --git a/scripture/kjv/06/18/25/scripture.html b/scripture/kjv/06/18/25/scripture.html new file mode 100644 index 00000000..f8337f96 --- /dev/null +++ b/scripture/kjv/06/18/25/scripture.html @@ -0,0 +1,3 @@ +Job 6:14
+14 To him that is afflicted pity should be shewed from his friend; but he forsaketh the fear of the Almighty.

+Wednesday 18-June, 2025 diff --git a/scripture/kjv/06/18/25/scripture.json b/scripture/kjv/06/18/25/scripture.json new file mode 100644 index 00000000..4fcf91e2 --- /dev/null +++ b/scripture/kjv/06/18/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Job", + "chapter": "6", + "date": "Wednesday 18-June, 2025", + "getbible": "https://getbible.life/kjv/Job/6/14", + "name": "Job 6:14", + "scripture": [ + { + "nr": "14", + "text": "To him that is afflicted pity should be shewed from his friend; but he forsaketh the fear of the Almighty." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/06/18/25/scripture.md b/scripture/kjv/06/18/25/scripture.md new file mode 100644 index 00000000..498f9e1a --- /dev/null +++ b/scripture/kjv/06/18/25/scripture.md @@ -0,0 +1,5 @@ +**Job 6:14** + +14 To him that is afflicted pity should be shewed from his friend; but he forsaketh the fear of the Almighty. + +[Wednesday 18-June, 2025](https://getbible.life/kjv/Job/6/14) diff --git a/scripture/kjv/06/18/25/scripture.tg b/scripture/kjv/06/18/25/scripture.tg new file mode 100644 index 00000000..254f5d3f --- /dev/null +++ b/scripture/kjv/06/18/25/scripture.tg @@ -0,0 +1,4 @@ +Job 6:14 +14 To him that is afflicted pity should be shewed from his friend; but he forsaketh the fear of the Almighty. + +Wednesday 18-June, 2025 diff --git a/scripture/kjv/06/18/25/scripture.tg.id b/scripture/kjv/06/18/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/18/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/18/25/scripture.today b/scripture/kjv/06/18/25/scripture.today new file mode 100644 index 00000000..12ba583a --- /dev/null +++ b/scripture/kjv/06/18/25/scripture.today @@ -0,0 +1 @@ +18 6:14 diff --git a/scripture/kjv/06/19/23/scripture.html b/scripture/kjv/06/19/23/scripture.html new file mode 100644 index 00000000..faed6ffc --- /dev/null +++ b/scripture/kjv/06/19/23/scripture.html @@ -0,0 +1,3 @@ +Deuteronomy 33:13-16
+13 And of Joseph he said, Blessed of the Lord be his land, for the precious things of heaven, for the dew, and for the deep that coucheth beneath, 14 And for the precious fruits brought forth by the sun, and for the precious things put forth by the moon, 15 And for the chief things of the ancient mountains, and for the precious things of the lasting hills, 16 And for the precious things of the earth and fulness thereof, and for the good will of him that dwelt in the bush: let the blessing come upon the head of Joseph, and upon the top of the head of him that was separated from his brethren.

+Monday 19-June, 2023 diff --git a/scripture/kjv/06/19/23/scripture.json b/scripture/kjv/06/19/23/scripture.json new file mode 100644 index 00000000..aaea37ac --- /dev/null +++ b/scripture/kjv/06/19/23/scripture.json @@ -0,0 +1,25 @@ +{ + "date": "Monday 19-June, 2023", + "name": "Deuteronomy 33:13-16", + "scripture": [ + { + "nr": "13", + "text": "And of Joseph he said, Blessed of the Lord be his land, for the precious things of heaven, for the dew, and for the deep that coucheth beneath," + }, + { + "nr": "14", + "text": "And for the precious fruits brought forth by the sun, and for the precious things put forth by the moon," + }, + { + "nr": "15", + "text": "And for the chief things of the ancient mountains, and for the precious things of the lasting hills," + }, + { + "nr": "16", + "text": "And for the precious things of the earth and fulness thereof, and for the good will of him that dwelt in the bush: let the blessing come upon the head of Joseph, and upon the top of the head of him that was separated from his brethren." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/19/23/scripture.md b/scripture/kjv/06/19/23/scripture.md new file mode 100644 index 00000000..39075e01 --- /dev/null +++ b/scripture/kjv/06/19/23/scripture.md @@ -0,0 +1,5 @@ +**Deuteronomy 33:13-16** + +13 And of Joseph he said, Blessed of the Lord be his land, for the precious things of heaven, for the dew, and for the deep that coucheth beneath, 14 And for the precious fruits brought forth by the sun, and for the precious things put forth by the moon, 15 And for the chief things of the ancient mountains, and for the precious things of the lasting hills, 16 And for the precious things of the earth and fulness thereof, and for the good will of him that dwelt in the bush: let the blessing come upon the head of Joseph, and upon the top of the head of him that was separated from his brethren. + +[Monday 19-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/19/23/scripture.tg b/scripture/kjv/06/19/23/scripture.tg new file mode 100644 index 00000000..eec063de --- /dev/null +++ b/scripture/kjv/06/19/23/scripture.tg @@ -0,0 +1,4 @@ +Deuteronomy 33:13-16 +13 And of Joseph he said, Blessed of the Lord be his land, for the precious things of heaven, for the dew, and for the deep that coucheth beneath, 14 And for the precious fruits brought forth by the sun, and for the precious things put forth by the moon, 15 And for the chief things of the ancient mountains, and for the precious things of the lasting hills, 16 And for the precious things of the earth and fulness thereof, and for the good will of him that dwelt in the bush: let the blessing come upon the head of Joseph, and upon the top of the head of him that was separated from his brethren. + +Monday 19-June, 2023 diff --git a/scripture/kjv/06/19/23/scripture.tg.id b/scripture/kjv/06/19/23/scripture.tg.id new file mode 100644 index 00000000..a8a1a965 --- /dev/null +++ b/scripture/kjv/06/19/23/scripture.tg.id @@ -0,0 +1 @@ +985 diff --git a/scripture/kjv/06/19/23/scripture.today b/scripture/kjv/06/19/23/scripture.today new file mode 100644 index 00000000..c27c1bcf --- /dev/null +++ b/scripture/kjv/06/19/23/scripture.today @@ -0,0 +1 @@ +5 33:13-16 diff --git a/scripture/kjv/06/19/24/scripture.html b/scripture/kjv/06/19/24/scripture.html new file mode 100644 index 00000000..2fb4fa34 --- /dev/null +++ b/scripture/kjv/06/19/24/scripture.html @@ -0,0 +1,3 @@ +Isaiah 1:13
+13 Bring no more vain oblations; incense is an abomination unto me; the new moons and sabbaths, the calling of assemblies, I cannot away with; it is iniquity, even the solemn meeting.

+Wednesday 19-June, 2024 diff --git a/scripture/kjv/06/19/24/scripture.json b/scripture/kjv/06/19/24/scripture.json new file mode 100644 index 00000000..357837bb --- /dev/null +++ b/scripture/kjv/06/19/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "1", + "date": "Wednesday 19-June, 2024", + "getbible": "https://getbible.life/kjv/Isaiah/1/13", + "name": "Isaiah 1:13", + "scripture": [ + { + "nr": "13", + "text": "Bring no more vain oblations; incense is an abomination unto me; the new moons and sabbaths, the calling of assemblies, I cannot away with; it is iniquity, even the solemn meeting." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13", + "version": "kjv" +} diff --git a/scripture/kjv/06/19/24/scripture.md b/scripture/kjv/06/19/24/scripture.md new file mode 100644 index 00000000..3358fff0 --- /dev/null +++ b/scripture/kjv/06/19/24/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 1:13** + +13 Bring no more vain oblations; incense is an abomination unto me; the new moons and sabbaths, the calling of assemblies, I cannot away with; it is iniquity, even the solemn meeting. + +[Wednesday 19-June, 2024](https://getbible.life/kjv/Isaiah/1/13) diff --git a/scripture/kjv/06/19/24/scripture.tg b/scripture/kjv/06/19/24/scripture.tg new file mode 100644 index 00000000..2195f302 --- /dev/null +++ b/scripture/kjv/06/19/24/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 1:13 +13 Bring no more vain oblations; incense is an abomination unto me; the new moons and sabbaths, the calling of assemblies, I cannot away with; it is iniquity, even the solemn meeting. + +Wednesday 19-June, 2024 diff --git a/scripture/kjv/06/19/24/scripture.tg.id b/scripture/kjv/06/19/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/19/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/19/24/scripture.today b/scripture/kjv/06/19/24/scripture.today new file mode 100644 index 00000000..82e11684 --- /dev/null +++ b/scripture/kjv/06/19/24/scripture.today @@ -0,0 +1 @@ +23 1:13 diff --git a/scripture/kjv/06/19/25/scripture.html b/scripture/kjv/06/19/25/scripture.html new file mode 100644 index 00000000..8c35c88f --- /dev/null +++ b/scripture/kjv/06/19/25/scripture.html @@ -0,0 +1,3 @@ +Colossians 3:3-5
+3 For ye are dead, and your life is hid with Christ in God. 4 When Christ, who is our life, shall appear, then shall ye also appear with him in glory. 5 Mortify therefore your members which are upon the earth; fornication, uncleanness, inordinate affection, evil concupiscence, and covetousness, which is idolatry:

+Thursday 19-June, 2025 diff --git a/scripture/kjv/06/19/25/scripture.json b/scripture/kjv/06/19/25/scripture.json new file mode 100644 index 00000000..c8e32722 --- /dev/null +++ b/scripture/kjv/06/19/25/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Colossians", + "chapter": "3", + "date": "Thursday 19-June, 2025", + "getbible": "https://getbible.life/kjv/Colossians/3/3-5", + "name": "Colossians 3:3-5", + "scripture": [ + { + "nr": "3", + "text": "For ye are dead, and your life is hid with Christ in God." + }, + { + "nr": "4", + "text": "When Christ, who is our life, shall appear, then shall ye also appear with him in glory." + }, + { + "nr": "5", + "text": "Mortify therefore your members which are upon the earth; fornication, uncleanness, inordinate affection, evil concupiscence, and covetousness, which is idolatry:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3-5", + "version": "kjv" +} diff --git a/scripture/kjv/06/19/25/scripture.md b/scripture/kjv/06/19/25/scripture.md new file mode 100644 index 00000000..331e85c0 --- /dev/null +++ b/scripture/kjv/06/19/25/scripture.md @@ -0,0 +1,5 @@ +**Colossians 3:3-5** + +3 For ye are dead, and your life is hid with Christ in God. 4 When Christ, who is our life, shall appear, then shall ye also appear with him in glory. 5 Mortify therefore your members which are upon the earth; fornication, uncleanness, inordinate affection, evil concupiscence, and covetousness, which is idolatry: + +[Thursday 19-June, 2025](https://getbible.life/kjv/Colossians/3/3-5) diff --git a/scripture/kjv/06/19/25/scripture.tg b/scripture/kjv/06/19/25/scripture.tg new file mode 100644 index 00000000..10019609 --- /dev/null +++ b/scripture/kjv/06/19/25/scripture.tg @@ -0,0 +1,4 @@ +Colossians 3:3-5 +3 For ye are dead, and your life is hid with Christ in God. 4 When Christ, who is our life, shall appear, then shall ye also appear with him in glory. 5 Mortify therefore your members which are upon the earth; fornication, uncleanness, inordinate affection, evil concupiscence, and covetousness, which is idolatry: + +Thursday 19-June, 2025 diff --git a/scripture/kjv/06/19/25/scripture.tg.id b/scripture/kjv/06/19/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/19/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/19/25/scripture.today b/scripture/kjv/06/19/25/scripture.today new file mode 100644 index 00000000..13cabf72 --- /dev/null +++ b/scripture/kjv/06/19/25/scripture.today @@ -0,0 +1 @@ +51 3:3-5 diff --git a/scripture/kjv/06/20/23/scripture.html b/scripture/kjv/06/20/23/scripture.html new file mode 100644 index 00000000..7835dd71 --- /dev/null +++ b/scripture/kjv/06/20/23/scripture.html @@ -0,0 +1,3 @@ +Romans 6:12
+12 Let not sin therefore reign in your mortal body, that ye should obey it in the lusts thereof.

+Tuesday 20-June, 2023 diff --git a/scripture/kjv/06/20/23/scripture.json b/scripture/kjv/06/20/23/scripture.json new file mode 100644 index 00000000..614e094d --- /dev/null +++ b/scripture/kjv/06/20/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Tuesday 20-June, 2023", + "name": "Romans 6:12", + "scripture": [ + { + "nr": "12", + "text": "Let not sin therefore reign in your mortal body, that ye should obey it in the lusts thereof." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/20/23/scripture.md b/scripture/kjv/06/20/23/scripture.md new file mode 100644 index 00000000..37c24ab4 --- /dev/null +++ b/scripture/kjv/06/20/23/scripture.md @@ -0,0 +1,5 @@ +**Romans 6:12** + +12 Let not sin therefore reign in your mortal body, that ye should obey it in the lusts thereof. + +[Tuesday 20-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/20/23/scripture.tg b/scripture/kjv/06/20/23/scripture.tg new file mode 100644 index 00000000..e0e1af1c --- /dev/null +++ b/scripture/kjv/06/20/23/scripture.tg @@ -0,0 +1,4 @@ +Romans 6:12 +12 Let not sin therefore reign in your mortal body, that ye should obey it in the lusts thereof. + +Tuesday 20-June, 2023 diff --git a/scripture/kjv/06/20/23/scripture.tg.id b/scripture/kjv/06/20/23/scripture.tg.id new file mode 100644 index 00000000..4c747c12 --- /dev/null +++ b/scripture/kjv/06/20/23/scripture.tg.id @@ -0,0 +1 @@ +986 diff --git a/scripture/kjv/06/20/23/scripture.today b/scripture/kjv/06/20/23/scripture.today new file mode 100644 index 00000000..40e3b7ea --- /dev/null +++ b/scripture/kjv/06/20/23/scripture.today @@ -0,0 +1 @@ +45 6:12 diff --git a/scripture/kjv/06/20/24/scripture.html b/scripture/kjv/06/20/24/scripture.html new file mode 100644 index 00000000..ac65bd22 --- /dev/null +++ b/scripture/kjv/06/20/24/scripture.html @@ -0,0 +1,3 @@ +Acts 7:60
+60 And he kneeled down, and cried with a loud voice, Lord, lay not this sin to their charge. And when he had said this, he fell asleep.

+Thursday 20-June, 2024 diff --git a/scripture/kjv/06/20/24/scripture.json b/scripture/kjv/06/20/24/scripture.json new file mode 100644 index 00000000..18154657 --- /dev/null +++ b/scripture/kjv/06/20/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Acts", + "chapter": "7", + "date": "Thursday 20-June, 2024", + "getbible": "https://getbible.life/kjv/Acts/7/60", + "name": "Acts 7:60", + "scripture": [ + { + "nr": "60", + "text": "And he kneeled down, and cried with a loud voice, Lord, lay not this sin to their charge. And when he had said this, he fell asleep. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "60", + "version": "kjv" +} diff --git a/scripture/kjv/06/20/24/scripture.md b/scripture/kjv/06/20/24/scripture.md new file mode 100644 index 00000000..89a2273d --- /dev/null +++ b/scripture/kjv/06/20/24/scripture.md @@ -0,0 +1,5 @@ +**Acts 7:60** + +60 And he kneeled down, and cried with a loud voice, Lord, lay not this sin to their charge. And when he had said this, he fell asleep. + +[Thursday 20-June, 2024](https://getbible.life/kjv/Acts/7/60) diff --git a/scripture/kjv/06/20/24/scripture.tg b/scripture/kjv/06/20/24/scripture.tg new file mode 100644 index 00000000..0d9a8e0e --- /dev/null +++ b/scripture/kjv/06/20/24/scripture.tg @@ -0,0 +1,4 @@ +Acts 7:60 +60 And he kneeled down, and cried with a loud voice, Lord, lay not this sin to their charge. And when he had said this, he fell asleep. + +Thursday 20-June, 2024 diff --git a/scripture/kjv/06/20/24/scripture.tg.id b/scripture/kjv/06/20/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/20/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/20/24/scripture.today b/scripture/kjv/06/20/24/scripture.today new file mode 100644 index 00000000..52fec290 --- /dev/null +++ b/scripture/kjv/06/20/24/scripture.today @@ -0,0 +1 @@ +44 7:60 diff --git a/scripture/kjv/06/20/25/scripture.html b/scripture/kjv/06/20/25/scripture.html new file mode 100644 index 00000000..1f8832e7 --- /dev/null +++ b/scripture/kjv/06/20/25/scripture.html @@ -0,0 +1,3 @@ +Proverbs 25:12
+12 As an earring of gold, and an ornament of fine gold, so is a wise reprover upon an obedient ear.

+Friday 20-June, 2025 diff --git a/scripture/kjv/06/20/25/scripture.json b/scripture/kjv/06/20/25/scripture.json new file mode 100644 index 00000000..52cf3da1 --- /dev/null +++ b/scripture/kjv/06/20/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "25", + "date": "Friday 20-June, 2025", + "getbible": "https://getbible.life/kjv/Proverbs/25/12", + "name": "Proverbs 25:12", + "scripture": [ + { + "nr": "12", + "text": "As an earring of gold, and an ornament of fine gold, so is a wise reprover upon an obedient ear." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/06/20/25/scripture.md b/scripture/kjv/06/20/25/scripture.md new file mode 100644 index 00000000..c0891ca5 --- /dev/null +++ b/scripture/kjv/06/20/25/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 25:12** + +12 As an earring of gold, and an ornament of fine gold, so is a wise reprover upon an obedient ear. + +[Friday 20-June, 2025](https://getbible.life/kjv/Proverbs/25/12) diff --git a/scripture/kjv/06/20/25/scripture.tg b/scripture/kjv/06/20/25/scripture.tg new file mode 100644 index 00000000..754f37d3 --- /dev/null +++ b/scripture/kjv/06/20/25/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 25:12 +12 As an earring of gold, and an ornament of fine gold, so is a wise reprover upon an obedient ear. + +Friday 20-June, 2025 diff --git a/scripture/kjv/06/20/25/scripture.tg.id b/scripture/kjv/06/20/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/20/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/20/25/scripture.today b/scripture/kjv/06/20/25/scripture.today new file mode 100644 index 00000000..49da5981 --- /dev/null +++ b/scripture/kjv/06/20/25/scripture.today @@ -0,0 +1 @@ +20 25:12 diff --git a/scripture/kjv/06/21/23/scripture.html b/scripture/kjv/06/21/23/scripture.html new file mode 100644 index 00000000..b0b94a77 --- /dev/null +++ b/scripture/kjv/06/21/23/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 10:4-5
+4 (For the weapons of our warfare are not carnal, but mighty through God to the pulling down of strong holds;) 5 Casting down imaginations, and every high thing that exalteth itself against the knowledge of God, and bringing into captivity every thought to the obedience of Christ;

+Wednesday 21-June, 2023 diff --git a/scripture/kjv/06/21/23/scripture.json b/scripture/kjv/06/21/23/scripture.json new file mode 100644 index 00000000..05458fbb --- /dev/null +++ b/scripture/kjv/06/21/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Wednesday 21-June, 2023", + "name": "2 Corinthians 10:4-5", + "scripture": [ + { + "nr": "4", + "text": "(For the weapons of our warfare are not carnal, but mighty through God to the pulling down of strong holds;)" + }, + { + "nr": "5", + "text": "Casting down imaginations, and every high thing that exalteth itself against the knowledge of God, and bringing into captivity every thought to the obedience of Christ;" + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/21/23/scripture.md b/scripture/kjv/06/21/23/scripture.md new file mode 100644 index 00000000..44e23f3f --- /dev/null +++ b/scripture/kjv/06/21/23/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 10:4-5** + +4 (For the weapons of our warfare are not carnal, but mighty through God to the pulling down of strong holds;) 5 Casting down imaginations, and every high thing that exalteth itself against the knowledge of God, and bringing into captivity every thought to the obedience of Christ; + +[Wednesday 21-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/21/23/scripture.tg b/scripture/kjv/06/21/23/scripture.tg new file mode 100644 index 00000000..4dd691e2 --- /dev/null +++ b/scripture/kjv/06/21/23/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 10:4-5 +4 (For the weapons of our warfare are not carnal, but mighty through God to the pulling down of strong holds;) 5 Casting down imaginations, and every high thing that exalteth itself against the knowledge of God, and bringing into captivity every thought to the obedience of Christ; + +Wednesday 21-June, 2023 diff --git a/scripture/kjv/06/21/23/scripture.tg.id b/scripture/kjv/06/21/23/scripture.tg.id new file mode 100644 index 00000000..45b0f829 --- /dev/null +++ b/scripture/kjv/06/21/23/scripture.tg.id @@ -0,0 +1 @@ +987 diff --git a/scripture/kjv/06/21/23/scripture.today b/scripture/kjv/06/21/23/scripture.today new file mode 100644 index 00000000..a4ccd8f7 --- /dev/null +++ b/scripture/kjv/06/21/23/scripture.today @@ -0,0 +1 @@ +47 10:4-5 diff --git a/scripture/kjv/06/21/24/scripture.html b/scripture/kjv/06/21/24/scripture.html new file mode 100644 index 00000000..4cf725b0 --- /dev/null +++ b/scripture/kjv/06/21/24/scripture.html @@ -0,0 +1,3 @@ +Ephesians 6:19-20
+19 And for me, that utterance may be given unto me, that I may open my mouth boldly, to make known the mystery of the gospel, 20 For which I am an ambassador in bonds: that therein I may speak boldly, as I ought to speak.

+Friday 21-June, 2024 diff --git a/scripture/kjv/06/21/24/scripture.json b/scripture/kjv/06/21/24/scripture.json new file mode 100644 index 00000000..703519d9 --- /dev/null +++ b/scripture/kjv/06/21/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Ephesians", + "chapter": "6", + "date": "Friday 21-June, 2024", + "getbible": "https://getbible.life/kjv/Ephesians/6/19-20", + "name": "Ephesians 6:19-20", + "scripture": [ + { + "nr": "19", + "text": "And for me, that utterance may be given unto me, that I may open my mouth boldly, to make known the mystery of the gospel," + }, + { + "nr": "20", + "text": "For which I am an ambassador in bonds: that therein I may speak boldly, as I ought to speak." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "19-20", + "version": "kjv" +} diff --git a/scripture/kjv/06/21/24/scripture.md b/scripture/kjv/06/21/24/scripture.md new file mode 100644 index 00000000..5c4aeff6 --- /dev/null +++ b/scripture/kjv/06/21/24/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 6:19-20** + +19 And for me, that utterance may be given unto me, that I may open my mouth boldly, to make known the mystery of the gospel, 20 For which I am an ambassador in bonds: that therein I may speak boldly, as I ought to speak. + +[Friday 21-June, 2024](https://getbible.life/kjv/Ephesians/6/19-20) diff --git a/scripture/kjv/06/21/24/scripture.tg b/scripture/kjv/06/21/24/scripture.tg new file mode 100644 index 00000000..e148235a --- /dev/null +++ b/scripture/kjv/06/21/24/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 6:19-20 +19 And for me, that utterance may be given unto me, that I may open my mouth boldly, to make known the mystery of the gospel, 20 For which I am an ambassador in bonds: that therein I may speak boldly, as I ought to speak. + +Friday 21-June, 2024 diff --git a/scripture/kjv/06/21/24/scripture.tg.id b/scripture/kjv/06/21/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/21/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/21/24/scripture.today b/scripture/kjv/06/21/24/scripture.today new file mode 100644 index 00000000..4ffc44b0 --- /dev/null +++ b/scripture/kjv/06/21/24/scripture.today @@ -0,0 +1 @@ +49 6:19-20 diff --git a/scripture/kjv/06/21/25/scripture.html b/scripture/kjv/06/21/25/scripture.html new file mode 100644 index 00000000..7b7fb1f9 --- /dev/null +++ b/scripture/kjv/06/21/25/scripture.html @@ -0,0 +1,3 @@ +Galatians 4:18
+18 But it is good to be zealously affected always in a good thing, and not only when I am present with you.

+Saturday 21-June, 2025 diff --git a/scripture/kjv/06/21/25/scripture.json b/scripture/kjv/06/21/25/scripture.json new file mode 100644 index 00000000..a87394b5 --- /dev/null +++ b/scripture/kjv/06/21/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Galatians", + "chapter": "4", + "date": "Saturday 21-June, 2025", + "getbible": "https://getbible.life/kjv/Galatians/4/18", + "name": "Galatians 4:18", + "scripture": [ + { + "nr": "18", + "text": "But it is good to be zealously affected always in a good thing, and not only when I am present with you." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18", + "version": "kjv" +} diff --git a/scripture/kjv/06/21/25/scripture.md b/scripture/kjv/06/21/25/scripture.md new file mode 100644 index 00000000..0d4bb75f --- /dev/null +++ b/scripture/kjv/06/21/25/scripture.md @@ -0,0 +1,5 @@ +**Galatians 4:18** + +18 But it is good to be zealously affected always in a good thing, and not only when I am present with you. + +[Saturday 21-June, 2025](https://getbible.life/kjv/Galatians/4/18) diff --git a/scripture/kjv/06/21/25/scripture.tg b/scripture/kjv/06/21/25/scripture.tg new file mode 100644 index 00000000..c9d987bf --- /dev/null +++ b/scripture/kjv/06/21/25/scripture.tg @@ -0,0 +1,4 @@ +Galatians 4:18 +18 But it is good to be zealously affected always in a good thing, and not only when I am present with you. + +Saturday 21-June, 2025 diff --git a/scripture/kjv/06/21/25/scripture.tg.id b/scripture/kjv/06/21/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/21/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/21/25/scripture.today b/scripture/kjv/06/21/25/scripture.today new file mode 100644 index 00000000..8c28e2c7 --- /dev/null +++ b/scripture/kjv/06/21/25/scripture.today @@ -0,0 +1 @@ +48 4:18 diff --git a/scripture/kjv/06/22/23/scripture.html b/scripture/kjv/06/22/23/scripture.html new file mode 100644 index 00000000..54639185 --- /dev/null +++ b/scripture/kjv/06/22/23/scripture.html @@ -0,0 +1,3 @@ +Revelation 3:17-19
+17 Because thou sayest, I am rich, and increased with goods, and have need of nothing; and knowest not that thou art wretched, and miserable, and poor, and blind, and naked: 18 I counsel thee to buy of me gold tried in the fire, that thou mayest be rich; and white raiment, that thou mayest be clothed, and that the shame of thy nakedness do not appear; and anoint thine eyes with eyesalve, that thou mayest see. 19 As many as I love, I rebuke and chasten: be zealous therefore, and repent.

+Thursday 22-June, 2023 diff --git a/scripture/kjv/06/22/23/scripture.json b/scripture/kjv/06/22/23/scripture.json new file mode 100644 index 00000000..da8b1568 --- /dev/null +++ b/scripture/kjv/06/22/23/scripture.json @@ -0,0 +1,21 @@ +{ + "date": "Thursday 22-June, 2023", + "name": "Revelation 3:17-19", + "scripture": [ + { + "nr": "17", + "text": "Because thou sayest, I am rich, and increased with goods, and have need of nothing; and knowest not that thou art wretched, and miserable, and poor, and blind, and naked:" + }, + { + "nr": "18", + "text": "I counsel thee to buy of me gold tried in the fire, that thou mayest be rich; and white raiment, that thou mayest be clothed, and that the shame of thy nakedness do not appear; and anoint thine eyes with eyesalve, that thou mayest see." + }, + { + "nr": "19", + "text": "As many as I love, I rebuke and chasten: be zealous therefore, and repent." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/22/23/scripture.md b/scripture/kjv/06/22/23/scripture.md new file mode 100644 index 00000000..8826fdea --- /dev/null +++ b/scripture/kjv/06/22/23/scripture.md @@ -0,0 +1,5 @@ +**Revelation 3:17-19** + +17 Because thou sayest, I am rich, and increased with goods, and have need of nothing; and knowest not that thou art wretched, and miserable, and poor, and blind, and naked: 18 I counsel thee to buy of me gold tried in the fire, that thou mayest be rich; and white raiment, that thou mayest be clothed, and that the shame of thy nakedness do not appear; and anoint thine eyes with eyesalve, that thou mayest see. 19 As many as I love, I rebuke and chasten: be zealous therefore, and repent. + +[Thursday 22-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/22/23/scripture.tg b/scripture/kjv/06/22/23/scripture.tg new file mode 100644 index 00000000..0257bae1 --- /dev/null +++ b/scripture/kjv/06/22/23/scripture.tg @@ -0,0 +1,4 @@ +Revelation 3:17-19 +17 Because thou sayest, I am rich, and increased with goods, and have need of nothing; and knowest not that thou art wretched, and miserable, and poor, and blind, and naked: 18 I counsel thee to buy of me gold tried in the fire, that thou mayest be rich; and white raiment, that thou mayest be clothed, and that the shame of thy nakedness do not appear; and anoint thine eyes with eyesalve, that thou mayest see. 19 As many as I love, I rebuke and chasten: be zealous therefore, and repent. + +Thursday 22-June, 2023 diff --git a/scripture/kjv/06/22/23/scripture.tg.id b/scripture/kjv/06/22/23/scripture.tg.id new file mode 100644 index 00000000..60d44837 --- /dev/null +++ b/scripture/kjv/06/22/23/scripture.tg.id @@ -0,0 +1 @@ +988 diff --git a/scripture/kjv/06/22/23/scripture.today b/scripture/kjv/06/22/23/scripture.today new file mode 100644 index 00000000..5c82650f --- /dev/null +++ b/scripture/kjv/06/22/23/scripture.today @@ -0,0 +1 @@ +66 3:17-19 diff --git a/scripture/kjv/06/22/24/scripture.html b/scripture/kjv/06/22/24/scripture.html new file mode 100644 index 00000000..674a0f48 --- /dev/null +++ b/scripture/kjv/06/22/24/scripture.html @@ -0,0 +1,3 @@ +Hebrews 12:14
+14 Follow peace with all men, and holiness, without which no man shall see the Lord:

+Saturday 22-June, 2024 diff --git a/scripture/kjv/06/22/24/scripture.json b/scripture/kjv/06/22/24/scripture.json new file mode 100644 index 00000000..5c3e9a87 --- /dev/null +++ b/scripture/kjv/06/22/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Hebrews", + "chapter": "12", + "date": "Saturday 22-June, 2024", + "getbible": "https://getbible.life/kjv/Hebrews/12/14", + "name": "Hebrews 12:14", + "scripture": [ + { + "nr": "14", + "text": "Follow peace with all men, and holiness, without which no man shall see the Lord:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/06/22/24/scripture.md b/scripture/kjv/06/22/24/scripture.md new file mode 100644 index 00000000..b0909916 --- /dev/null +++ b/scripture/kjv/06/22/24/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 12:14** + +14 Follow peace with all men, and holiness, without which no man shall see the Lord: + +[Saturday 22-June, 2024](https://getbible.life/kjv/Hebrews/12/14) diff --git a/scripture/kjv/06/22/24/scripture.tg b/scripture/kjv/06/22/24/scripture.tg new file mode 100644 index 00000000..69369f52 --- /dev/null +++ b/scripture/kjv/06/22/24/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 12:14 +14 Follow peace with all men, and holiness, without which no man shall see the Lord: + +Saturday 22-June, 2024 diff --git a/scripture/kjv/06/22/24/scripture.tg.id b/scripture/kjv/06/22/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/22/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/22/24/scripture.today b/scripture/kjv/06/22/24/scripture.today new file mode 100644 index 00000000..0a2fc493 --- /dev/null +++ b/scripture/kjv/06/22/24/scripture.today @@ -0,0 +1 @@ +58 12:14 diff --git a/scripture/kjv/06/22/25/scripture.html b/scripture/kjv/06/22/25/scripture.html new file mode 100644 index 00000000..4d36c587 --- /dev/null +++ b/scripture/kjv/06/22/25/scripture.html @@ -0,0 +1,3 @@ +Ephesians 4:22-24
+22 That ye put off concerning the former conversation the old man, which is corrupt according to the deceitful lusts; 23 And be renewed in the spirit of your mind; 24 And that ye put on the new man, which after God is created in righteousness and true holiness.

+Sunday 22-June, 2025 diff --git a/scripture/kjv/06/22/25/scripture.json b/scripture/kjv/06/22/25/scripture.json new file mode 100644 index 00000000..b40afba8 --- /dev/null +++ b/scripture/kjv/06/22/25/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Ephesians", + "chapter": "4", + "date": "Sunday 22-June, 2025", + "getbible": "https://getbible.life/kjv/Ephesians/4/22-24", + "name": "Ephesians 4:22-24", + "scripture": [ + { + "nr": "22", + "text": "That ye put off concerning the former conversation the old man, which is corrupt according to the deceitful lusts;" + }, + { + "nr": "23", + "text": "And be renewed in the spirit of your mind;" + }, + { + "nr": "24", + "text": "And that ye put on the new man, which after God is created in righteousness and true holiness." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "22-24", + "version": "kjv" +} diff --git a/scripture/kjv/06/22/25/scripture.md b/scripture/kjv/06/22/25/scripture.md new file mode 100644 index 00000000..229a6ce5 --- /dev/null +++ b/scripture/kjv/06/22/25/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 4:22-24** + +22 That ye put off concerning the former conversation the old man, which is corrupt according to the deceitful lusts; 23 And be renewed in the spirit of your mind; 24 And that ye put on the new man, which after God is created in righteousness and true holiness. + +[Sunday 22-June, 2025](https://getbible.life/kjv/Ephesians/4/22-24) diff --git a/scripture/kjv/06/22/25/scripture.tg b/scripture/kjv/06/22/25/scripture.tg new file mode 100644 index 00000000..af1f2c00 --- /dev/null +++ b/scripture/kjv/06/22/25/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 4:22-24 +22 That ye put off concerning the former conversation the old man, which is corrupt according to the deceitful lusts; 23 And be renewed in the spirit of your mind; 24 And that ye put on the new man, which after God is created in righteousness and true holiness. + +Sunday 22-June, 2025 diff --git a/scripture/kjv/06/22/25/scripture.tg.id b/scripture/kjv/06/22/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/22/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/22/25/scripture.today b/scripture/kjv/06/22/25/scripture.today new file mode 100644 index 00000000..630fcaa4 --- /dev/null +++ b/scripture/kjv/06/22/25/scripture.today @@ -0,0 +1 @@ +49 4:22-24 diff --git a/scripture/kjv/06/23/23/scripture.html b/scripture/kjv/06/23/23/scripture.html new file mode 100644 index 00000000..01af9451 --- /dev/null +++ b/scripture/kjv/06/23/23/scripture.html @@ -0,0 +1,3 @@ +Hebrews 4:11
+11 Let us labour therefore to enter into that rest, lest any man fall after the same example of unbelief.

+Friday 23-June, 2023 diff --git a/scripture/kjv/06/23/23/scripture.json b/scripture/kjv/06/23/23/scripture.json new file mode 100644 index 00000000..ad65ba68 --- /dev/null +++ b/scripture/kjv/06/23/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Friday 23-June, 2023", + "name": "Hebrews 4:11", + "scripture": [ + { + "nr": "11", + "text": "Let us labour therefore to enter into that rest, lest any man fall after the same example of unbelief." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/23/23/scripture.md b/scripture/kjv/06/23/23/scripture.md new file mode 100644 index 00000000..22128af0 --- /dev/null +++ b/scripture/kjv/06/23/23/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 4:11** + +11 Let us labour therefore to enter into that rest, lest any man fall after the same example of unbelief. + +[Friday 23-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/23/23/scripture.tg b/scripture/kjv/06/23/23/scripture.tg new file mode 100644 index 00000000..58ce4d8b --- /dev/null +++ b/scripture/kjv/06/23/23/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 4:11 +11 Let us labour therefore to enter into that rest, lest any man fall after the same example of unbelief. + +Friday 23-June, 2023 diff --git a/scripture/kjv/06/23/23/scripture.tg.id b/scripture/kjv/06/23/23/scripture.tg.id new file mode 100644 index 00000000..6dbdf1f4 --- /dev/null +++ b/scripture/kjv/06/23/23/scripture.tg.id @@ -0,0 +1 @@ +989 diff --git a/scripture/kjv/06/23/23/scripture.today b/scripture/kjv/06/23/23/scripture.today new file mode 100644 index 00000000..a04ad96d --- /dev/null +++ b/scripture/kjv/06/23/23/scripture.today @@ -0,0 +1 @@ +58 4:11 diff --git a/scripture/kjv/06/23/24/scripture.html b/scripture/kjv/06/23/24/scripture.html new file mode 100644 index 00000000..58e0c464 --- /dev/null +++ b/scripture/kjv/06/23/24/scripture.html @@ -0,0 +1,3 @@ +John 12:42-43
+42 Nevertheless among the chief rulers also many believed on him; but because of the Pharisees they did not confess him, lest they should be put out of the synagogue: 43 For they loved the praise of men more than the praise of God.

+Sunday 23-June, 2024 diff --git a/scripture/kjv/06/23/24/scripture.json b/scripture/kjv/06/23/24/scripture.json new file mode 100644 index 00000000..2fffe9b0 --- /dev/null +++ b/scripture/kjv/06/23/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "John", + "chapter": "12", + "date": "Sunday 23-June, 2024", + "getbible": "https://getbible.life/kjv/John/12/42-43", + "name": "John 12:42-43", + "scripture": [ + { + "nr": "42", + "text": "Nevertheless among the chief rulers also many believed on him; but because of the Pharisees they did not confess him, lest they should be put out of the synagogue:" + }, + { + "nr": "43", + "text": "For they loved the praise of men more than the praise of God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "42-43", + "version": "kjv" +} diff --git a/scripture/kjv/06/23/24/scripture.md b/scripture/kjv/06/23/24/scripture.md new file mode 100644 index 00000000..84b84148 --- /dev/null +++ b/scripture/kjv/06/23/24/scripture.md @@ -0,0 +1,5 @@ +**John 12:42-43** + +42 Nevertheless among the chief rulers also many believed on him; but because of the Pharisees they did not confess him, lest they should be put out of the synagogue: 43 For they loved the praise of men more than the praise of God. + +[Sunday 23-June, 2024](https://getbible.life/kjv/John/12/42-43) diff --git a/scripture/kjv/06/23/24/scripture.tg b/scripture/kjv/06/23/24/scripture.tg new file mode 100644 index 00000000..e9342351 --- /dev/null +++ b/scripture/kjv/06/23/24/scripture.tg @@ -0,0 +1,4 @@ +John 12:42-43 +42 Nevertheless among the chief rulers also many believed on him; but because of the Pharisees they did not confess him, lest they should be put out of the synagogue: 43 For they loved the praise of men more than the praise of God. + +Sunday 23-June, 2024 diff --git a/scripture/kjv/06/23/24/scripture.tg.id b/scripture/kjv/06/23/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/23/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/23/24/scripture.today b/scripture/kjv/06/23/24/scripture.today new file mode 100644 index 00000000..a82e82cd --- /dev/null +++ b/scripture/kjv/06/23/24/scripture.today @@ -0,0 +1 @@ +43 12:42-43 diff --git a/scripture/kjv/06/23/25/scripture.html b/scripture/kjv/06/23/25/scripture.html new file mode 100644 index 00000000..94236d00 --- /dev/null +++ b/scripture/kjv/06/23/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 19:11-12
+11 Moreover by them is thy servant warned: and in keeping of them there is great reward. 12 Who can understand his errors? cleanse thou me from secret faults.

+Monday 23-June, 2025 diff --git a/scripture/kjv/06/23/25/scripture.json b/scripture/kjv/06/23/25/scripture.json new file mode 100644 index 00000000..6b263477 --- /dev/null +++ b/scripture/kjv/06/23/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Psalms", + "chapter": "19", + "date": "Monday 23-June, 2025", + "getbible": "https://getbible.life/kjv/Psalms/19/11-12", + "name": "Psalms 19:11-12", + "scripture": [ + { + "nr": "11", + "text": "Moreover by them is thy servant warned: and in keeping of them there is great reward." + }, + { + "nr": "12", + "text": "Who can understand his errors? cleanse thou me from secret faults." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11-12", + "version": "kjv" +} diff --git a/scripture/kjv/06/23/25/scripture.md b/scripture/kjv/06/23/25/scripture.md new file mode 100644 index 00000000..7d6e79e9 --- /dev/null +++ b/scripture/kjv/06/23/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 19:11-12** + +11 Moreover by them is thy servant warned: and in keeping of them there is great reward. 12 Who can understand his errors? cleanse thou me from secret faults. + +[Monday 23-June, 2025](https://getbible.life/kjv/Psalms/19/11-12) diff --git a/scripture/kjv/06/23/25/scripture.tg b/scripture/kjv/06/23/25/scripture.tg new file mode 100644 index 00000000..f7327d80 --- /dev/null +++ b/scripture/kjv/06/23/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 19:11-12 +11 Moreover by them is thy servant warned: and in keeping of them there is great reward. 12 Who can understand his errors? cleanse thou me from secret faults. + +Monday 23-June, 2025 diff --git a/scripture/kjv/06/23/25/scripture.tg.id b/scripture/kjv/06/23/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/23/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/23/25/scripture.today b/scripture/kjv/06/23/25/scripture.today new file mode 100644 index 00000000..45c3fba6 --- /dev/null +++ b/scripture/kjv/06/23/25/scripture.today @@ -0,0 +1 @@ +19 19:11-12 diff --git a/scripture/kjv/06/24/23/scripture.html b/scripture/kjv/06/24/23/scripture.html new file mode 100644 index 00000000..ac850f1e --- /dev/null +++ b/scripture/kjv/06/24/23/scripture.html @@ -0,0 +1,3 @@ +Matthew 9:12-13
+12 But when Jesus heard that, he said unto them, They that be whole need not a physician, but they that are sick. 13 But go ye and learn what that meaneth, I will have mercy, and not sacrifice: for I am not come to call the righteous, but sinners to repentance.

+Saturday 24-June, 2023 diff --git a/scripture/kjv/06/24/23/scripture.json b/scripture/kjv/06/24/23/scripture.json new file mode 100644 index 00000000..992e68f0 --- /dev/null +++ b/scripture/kjv/06/24/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Saturday 24-June, 2023", + "name": "Matthew 9:12-13", + "scripture": [ + { + "nr": "12", + "text": "But when Jesus heard that, he said unto them, They that be whole need not a physician, but they that are sick." + }, + { + "nr": "13", + "text": "But go ye and learn what that meaneth, I will have mercy, and not sacrifice: for I am not come to call the righteous, but sinners to repentance." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/24/23/scripture.md b/scripture/kjv/06/24/23/scripture.md new file mode 100644 index 00000000..eb82368b --- /dev/null +++ b/scripture/kjv/06/24/23/scripture.md @@ -0,0 +1,5 @@ +**Matthew 9:12-13** + +12 But when Jesus heard that, he said unto them, They that be whole need not a physician, but they that are sick. 13 But go ye and learn what that meaneth, I will have mercy, and not sacrifice: for I am not come to call the righteous, but sinners to repentance. + +[Saturday 24-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/24/23/scripture.tg b/scripture/kjv/06/24/23/scripture.tg new file mode 100644 index 00000000..206eaa89 --- /dev/null +++ b/scripture/kjv/06/24/23/scripture.tg @@ -0,0 +1,4 @@ +Matthew 9:12-13 +12 But when Jesus heard that, he said unto them, They that be whole need not a physician, but they that are sick. 13 But go ye and learn what that meaneth, I will have mercy, and not sacrifice: for I am not come to call the righteous, but sinners to repentance. + +Saturday 24-June, 2023 diff --git a/scripture/kjv/06/24/23/scripture.tg.id b/scripture/kjv/06/24/23/scripture.tg.id new file mode 100644 index 00000000..9ab4b905 --- /dev/null +++ b/scripture/kjv/06/24/23/scripture.tg.id @@ -0,0 +1 @@ +990 diff --git a/scripture/kjv/06/24/23/scripture.today b/scripture/kjv/06/24/23/scripture.today new file mode 100644 index 00000000..12a12612 --- /dev/null +++ b/scripture/kjv/06/24/23/scripture.today @@ -0,0 +1 @@ +40 9:12-13 diff --git a/scripture/kjv/06/24/24/scripture.html b/scripture/kjv/06/24/24/scripture.html new file mode 100644 index 00000000..93dac22b --- /dev/null +++ b/scripture/kjv/06/24/24/scripture.html @@ -0,0 +1,3 @@ +John 3:16-17
+16 For God so loved the world, that he gave his only begotten Son, that whosoever believeth in him should not perish, but have everlasting life. 17 For God sent not his Son into the world to condemn the world; but that the world through him might be saved.

+Monday 24-June, 2024 diff --git a/scripture/kjv/06/24/24/scripture.json b/scripture/kjv/06/24/24/scripture.json new file mode 100644 index 00000000..53bbe837 --- /dev/null +++ b/scripture/kjv/06/24/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "John", + "chapter": "3", + "date": "Monday 24-June, 2024", + "getbible": "https://getbible.life/kjv/John/3/16-17", + "name": "John 3:16-17", + "scripture": [ + { + "nr": "16", + "text": "For God so loved the world, that he gave his only begotten Son, that whosoever believeth in him should not perish, but have everlasting life." + }, + { + "nr": "17", + "text": "For God sent not his Son into the world to condemn the world; but that the world through him might be saved." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16-17", + "version": "kjv" +} diff --git a/scripture/kjv/06/24/24/scripture.md b/scripture/kjv/06/24/24/scripture.md new file mode 100644 index 00000000..6e1f7ec8 --- /dev/null +++ b/scripture/kjv/06/24/24/scripture.md @@ -0,0 +1,5 @@ +**John 3:16-17** + +16 For God so loved the world, that he gave his only begotten Son, that whosoever believeth in him should not perish, but have everlasting life. 17 For God sent not his Son into the world to condemn the world; but that the world through him might be saved. + +[Monday 24-June, 2024](https://getbible.life/kjv/John/3/16-17) diff --git a/scripture/kjv/06/24/24/scripture.tg b/scripture/kjv/06/24/24/scripture.tg new file mode 100644 index 00000000..91d259ff --- /dev/null +++ b/scripture/kjv/06/24/24/scripture.tg @@ -0,0 +1,4 @@ +John 3:16-17 +16 For God so loved the world, that he gave his only begotten Son, that whosoever believeth in him should not perish, but have everlasting life. 17 For God sent not his Son into the world to condemn the world; but that the world through him might be saved. + +Monday 24-June, 2024 diff --git a/scripture/kjv/06/24/24/scripture.tg.id b/scripture/kjv/06/24/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/24/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/24/24/scripture.today b/scripture/kjv/06/24/24/scripture.today new file mode 100644 index 00000000..47992629 --- /dev/null +++ b/scripture/kjv/06/24/24/scripture.today @@ -0,0 +1 @@ +43 3:16-17 diff --git a/scripture/kjv/06/24/25/scripture.html b/scripture/kjv/06/24/25/scripture.html new file mode 100644 index 00000000..2a8db646 --- /dev/null +++ b/scripture/kjv/06/24/25/scripture.html @@ -0,0 +1,3 @@ +Daniel 4:37
+37 Now I Nebuchadnezzar praise and extol and honour the King of heaven, all whose works are truth, and his ways judgment: and those that walk in pride he is able to abase.

+Tuesday 24-June, 2025 diff --git a/scripture/kjv/06/24/25/scripture.json b/scripture/kjv/06/24/25/scripture.json new file mode 100644 index 00000000..001a4899 --- /dev/null +++ b/scripture/kjv/06/24/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Daniel", + "chapter": "4", + "date": "Tuesday 24-June, 2025", + "getbible": "https://getbible.life/kjv/Daniel/4/37", + "name": "Daniel 4:37", + "scripture": [ + { + "nr": "37", + "text": "Now I Nebuchadnezzar praise and extol and honour the King of heaven, all whose works are truth, and his ways judgment: and those that walk in pride he is able to abase. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "37", + "version": "kjv" +} diff --git a/scripture/kjv/06/24/25/scripture.md b/scripture/kjv/06/24/25/scripture.md new file mode 100644 index 00000000..d31893a4 --- /dev/null +++ b/scripture/kjv/06/24/25/scripture.md @@ -0,0 +1,5 @@ +**Daniel 4:37** + +37 Now I Nebuchadnezzar praise and extol and honour the King of heaven, all whose works are truth, and his ways judgment: and those that walk in pride he is able to abase. + +[Tuesday 24-June, 2025](https://getbible.life/kjv/Daniel/4/37) diff --git a/scripture/kjv/06/24/25/scripture.tg b/scripture/kjv/06/24/25/scripture.tg new file mode 100644 index 00000000..efb78c3d --- /dev/null +++ b/scripture/kjv/06/24/25/scripture.tg @@ -0,0 +1,4 @@ +Daniel 4:37 +37 Now I Nebuchadnezzar praise and extol and honour the King of heaven, all whose works are truth, and his ways judgment: and those that walk in pride he is able to abase. + +Tuesday 24-June, 2025 diff --git a/scripture/kjv/06/24/25/scripture.tg.id b/scripture/kjv/06/24/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/24/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/24/25/scripture.today b/scripture/kjv/06/24/25/scripture.today new file mode 100644 index 00000000..4a4e8532 --- /dev/null +++ b/scripture/kjv/06/24/25/scripture.today @@ -0,0 +1 @@ +27 4:37 diff --git a/scripture/kjv/06/25/23/scripture.html b/scripture/kjv/06/25/23/scripture.html new file mode 100644 index 00000000..a5d149b8 --- /dev/null +++ b/scripture/kjv/06/25/23/scripture.html @@ -0,0 +1,3 @@ +Revelation 2:4-5
+4 Nevertheless I have somewhat against thee, because thou hast left thy first love. 5 Remember therefore from whence thou art fallen, and repent, and do the first works; or else I will come unto thee quickly, and will remove thy candlestick out of his place, except thou repent.

+Sunday 25-June, 2023 diff --git a/scripture/kjv/06/25/23/scripture.json b/scripture/kjv/06/25/23/scripture.json new file mode 100644 index 00000000..2990eab1 --- /dev/null +++ b/scripture/kjv/06/25/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Sunday 25-June, 2023", + "name": "Revelation 2:4-5", + "scripture": [ + { + "nr": "4", + "text": "Nevertheless I have somewhat against thee, because thou hast left thy first love." + }, + { + "nr": "5", + "text": "Remember therefore from whence thou art fallen, and repent, and do the first works; or else I will come unto thee quickly, and will remove thy candlestick out of his place, except thou repent." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/25/23/scripture.md b/scripture/kjv/06/25/23/scripture.md new file mode 100644 index 00000000..c75ea34e --- /dev/null +++ b/scripture/kjv/06/25/23/scripture.md @@ -0,0 +1,5 @@ +**Revelation 2:4-5** + +4 Nevertheless I have somewhat against thee, because thou hast left thy first love. 5 Remember therefore from whence thou art fallen, and repent, and do the first works; or else I will come unto thee quickly, and will remove thy candlestick out of his place, except thou repent. + +[Sunday 25-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/25/23/scripture.tg b/scripture/kjv/06/25/23/scripture.tg new file mode 100644 index 00000000..b021b5a7 --- /dev/null +++ b/scripture/kjv/06/25/23/scripture.tg @@ -0,0 +1,4 @@ +Revelation 2:4-5 +4 Nevertheless I have somewhat against thee, because thou hast left thy first love. 5 Remember therefore from whence thou art fallen, and repent, and do the first works; or else I will come unto thee quickly, and will remove thy candlestick out of his place, except thou repent. + +Sunday 25-June, 2023 diff --git a/scripture/kjv/06/25/23/scripture.tg.id b/scripture/kjv/06/25/23/scripture.tg.id new file mode 100644 index 00000000..c1724ded --- /dev/null +++ b/scripture/kjv/06/25/23/scripture.tg.id @@ -0,0 +1 @@ +991 diff --git a/scripture/kjv/06/25/23/scripture.today b/scripture/kjv/06/25/23/scripture.today new file mode 100644 index 00000000..8da6e7d3 --- /dev/null +++ b/scripture/kjv/06/25/23/scripture.today @@ -0,0 +1 @@ +66 2:4-5 diff --git a/scripture/kjv/06/25/24/scripture.html b/scripture/kjv/06/25/24/scripture.html new file mode 100644 index 00000000..3fe5beb4 --- /dev/null +++ b/scripture/kjv/06/25/24/scripture.html @@ -0,0 +1,3 @@ +Matthew 9:21-22
+21 For she said within herself, If I may but touch his garment, I shall be whole. 22 But Jesus turned him about, and when he saw her, he said, Daughter, be of good comfort; thy faith hath made thee whole. And the woman was made whole from that hour.

+Tuesday 25-June, 2024 diff --git a/scripture/kjv/06/25/24/scripture.json b/scripture/kjv/06/25/24/scripture.json new file mode 100644 index 00000000..71eadf71 --- /dev/null +++ b/scripture/kjv/06/25/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Matthew", + "chapter": "9", + "date": "Tuesday 25-June, 2024", + "getbible": "https://getbible.life/kjv/Matthew/9/21-22", + "name": "Matthew 9:21-22", + "scripture": [ + { + "nr": "21", + "text": "For she said within herself, If I may but touch his garment, I shall be whole." + }, + { + "nr": "22", + "text": "But Jesus turned him about, and when he saw her, he said, Daughter, be of good comfort; thy faith hath made thee whole. And the woman was made whole from that hour." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "21-22", + "version": "kjv" +} diff --git a/scripture/kjv/06/25/24/scripture.md b/scripture/kjv/06/25/24/scripture.md new file mode 100644 index 00000000..eaf2e013 --- /dev/null +++ b/scripture/kjv/06/25/24/scripture.md @@ -0,0 +1,5 @@ +**Matthew 9:21-22** + +21 For she said within herself, If I may but touch his garment, I shall be whole. 22 But Jesus turned him about, and when he saw her, he said, Daughter, be of good comfort; thy faith hath made thee whole. And the woman was made whole from that hour. + +[Tuesday 25-June, 2024](https://getbible.life/kjv/Matthew/9/21-22) diff --git a/scripture/kjv/06/25/24/scripture.tg b/scripture/kjv/06/25/24/scripture.tg new file mode 100644 index 00000000..fbb76dfe --- /dev/null +++ b/scripture/kjv/06/25/24/scripture.tg @@ -0,0 +1,4 @@ +Matthew 9:21-22 +21 For she said within herself, If I may but touch his garment, I shall be whole. 22 But Jesus turned him about, and when he saw her, he said, Daughter, be of good comfort; thy faith hath made thee whole. And the woman was made whole from that hour. + +Tuesday 25-June, 2024 diff --git a/scripture/kjv/06/25/24/scripture.tg.id b/scripture/kjv/06/25/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/25/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/25/24/scripture.today b/scripture/kjv/06/25/24/scripture.today new file mode 100644 index 00000000..a01ac485 --- /dev/null +++ b/scripture/kjv/06/25/24/scripture.today @@ -0,0 +1 @@ +40 9:21-22 diff --git a/scripture/kjv/06/25/25/scripture.html b/scripture/kjv/06/25/25/scripture.html new file mode 100644 index 00000000..dd4d4006 --- /dev/null +++ b/scripture/kjv/06/25/25/scripture.html @@ -0,0 +1,3 @@ +John 18:23
+23 Jesus answered him, If I have spoken evil, bear witness of the evil: but if well, why smitest thou me?

+Wednesday 25-June, 2025 diff --git a/scripture/kjv/06/25/25/scripture.json b/scripture/kjv/06/25/25/scripture.json new file mode 100644 index 00000000..d369ad75 --- /dev/null +++ b/scripture/kjv/06/25/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "18", + "date": "Wednesday 25-June, 2025", + "getbible": "https://getbible.life/kjv/John/18/23", + "name": "John 18:23", + "scripture": [ + { + "nr": "23", + "text": "Jesus answered him, If I have spoken evil, bear witness of the evil: but if well, why smitest thou me?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "23", + "version": "kjv" +} diff --git a/scripture/kjv/06/25/25/scripture.md b/scripture/kjv/06/25/25/scripture.md new file mode 100644 index 00000000..1aa2efbe --- /dev/null +++ b/scripture/kjv/06/25/25/scripture.md @@ -0,0 +1,5 @@ +**John 18:23** + +23 Jesus answered him, If I have spoken evil, bear witness of the evil: but if well, why smitest thou me? + +[Wednesday 25-June, 2025](https://getbible.life/kjv/John/18/23) diff --git a/scripture/kjv/06/25/25/scripture.tg b/scripture/kjv/06/25/25/scripture.tg new file mode 100644 index 00000000..6d7984f1 --- /dev/null +++ b/scripture/kjv/06/25/25/scripture.tg @@ -0,0 +1,4 @@ +John 18:23 +23 Jesus answered him, If I have spoken evil, bear witness of the evil: but if well, why smitest thou me? + +Wednesday 25-June, 2025 diff --git a/scripture/kjv/06/25/25/scripture.tg.id b/scripture/kjv/06/25/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/25/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/25/25/scripture.today b/scripture/kjv/06/25/25/scripture.today new file mode 100644 index 00000000..3dc42da5 --- /dev/null +++ b/scripture/kjv/06/25/25/scripture.today @@ -0,0 +1 @@ +43 18:23 diff --git a/scripture/kjv/06/26/23/scripture.html b/scripture/kjv/06/26/23/scripture.html new file mode 100644 index 00000000..1b516061 --- /dev/null +++ b/scripture/kjv/06/26/23/scripture.html @@ -0,0 +1,3 @@ +Isaiah 54:7-8
+7 For a small moment have I forsaken thee; but with great mercies will I gather thee. 8 In a little wrath I hid my face from thee for a moment; but with everlasting kindness will I have mercy on thee, saith the Lord thy Redeemer.

+Monday 26-June, 2023 diff --git a/scripture/kjv/06/26/23/scripture.json b/scripture/kjv/06/26/23/scripture.json new file mode 100644 index 00000000..d44f83b9 --- /dev/null +++ b/scripture/kjv/06/26/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Monday 26-June, 2023", + "name": "Isaiah 54:7-8", + "scripture": [ + { + "nr": "7", + "text": "For a small moment have I forsaken thee; but with great mercies will I gather thee." + }, + { + "nr": "8", + "text": "In a little wrath I hid my face from thee for a moment; but with everlasting kindness will I have mercy on thee, saith the Lord thy Redeemer." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/26/23/scripture.md b/scripture/kjv/06/26/23/scripture.md new file mode 100644 index 00000000..0a7b40ac --- /dev/null +++ b/scripture/kjv/06/26/23/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 54:7-8** + +7 For a small moment have I forsaken thee; but with great mercies will I gather thee. 8 In a little wrath I hid my face from thee for a moment; but with everlasting kindness will I have mercy on thee, saith the Lord thy Redeemer. + +[Monday 26-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/26/23/scripture.tg b/scripture/kjv/06/26/23/scripture.tg new file mode 100644 index 00000000..e9420148 --- /dev/null +++ b/scripture/kjv/06/26/23/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 54:7-8 +7 For a small moment have I forsaken thee; but with great mercies will I gather thee. 8 In a little wrath I hid my face from thee for a moment; but with everlasting kindness will I have mercy on thee, saith the Lord thy Redeemer. + +Monday 26-June, 2023 diff --git a/scripture/kjv/06/26/23/scripture.tg.id b/scripture/kjv/06/26/23/scripture.tg.id new file mode 100644 index 00000000..7f9d7e97 --- /dev/null +++ b/scripture/kjv/06/26/23/scripture.tg.id @@ -0,0 +1 @@ +992 diff --git a/scripture/kjv/06/26/23/scripture.today b/scripture/kjv/06/26/23/scripture.today new file mode 100644 index 00000000..916ff4d2 --- /dev/null +++ b/scripture/kjv/06/26/23/scripture.today @@ -0,0 +1 @@ +23 54:7-8 diff --git a/scripture/kjv/06/26/24/scripture.html b/scripture/kjv/06/26/24/scripture.html new file mode 100644 index 00000000..12bf4524 --- /dev/null +++ b/scripture/kjv/06/26/24/scripture.html @@ -0,0 +1,3 @@ +1 John 3:22
+22 And whatsoever we ask, we receive of him, because we keep his commandments, and do those things that are pleasing in his sight.

+Wednesday 26-June, 2024 diff --git a/scripture/kjv/06/26/24/scripture.json b/scripture/kjv/06/26/24/scripture.json new file mode 100644 index 00000000..a8045376 --- /dev/null +++ b/scripture/kjv/06/26/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 John", + "chapter": "3", + "date": "Wednesday 26-June, 2024", + "getbible": "https://getbible.life/kjv/1 John/3/22", + "name": "1 John 3:22", + "scripture": [ + { + "nr": "22", + "text": "And whatsoever we ask, we receive of him, because we keep his commandments, and do those things that are pleasing in his sight." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "22", + "version": "kjv" +} diff --git a/scripture/kjv/06/26/24/scripture.md b/scripture/kjv/06/26/24/scripture.md new file mode 100644 index 00000000..dbb4297e --- /dev/null +++ b/scripture/kjv/06/26/24/scripture.md @@ -0,0 +1,5 @@ +**1 John 3:22** + +22 And whatsoever we ask, we receive of him, because we keep his commandments, and do those things that are pleasing in his sight. + +[Wednesday 26-June, 2024](https://getbible.life/kjv/1 John/3/22) diff --git a/scripture/kjv/06/26/24/scripture.tg b/scripture/kjv/06/26/24/scripture.tg new file mode 100644 index 00000000..54f2d518 --- /dev/null +++ b/scripture/kjv/06/26/24/scripture.tg @@ -0,0 +1,4 @@ +1 John 3:22 +22 And whatsoever we ask, we receive of him, because we keep his commandments, and do those things that are pleasing in his sight. + +Wednesday 26-June, 2024 diff --git a/scripture/kjv/06/26/24/scripture.tg.id b/scripture/kjv/06/26/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/26/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/26/24/scripture.today b/scripture/kjv/06/26/24/scripture.today new file mode 100644 index 00000000..917a0898 --- /dev/null +++ b/scripture/kjv/06/26/24/scripture.today @@ -0,0 +1 @@ +62 3:22 diff --git a/scripture/kjv/06/26/25/scripture.html b/scripture/kjv/06/26/25/scripture.html new file mode 100644 index 00000000..07056db8 --- /dev/null +++ b/scripture/kjv/06/26/25/scripture.html @@ -0,0 +1,3 @@ +1 John 3:23
+23 And this is his commandment, That we should believe on the name of his Son Jesus Christ, and love one another, as he gave us commandment.

+Thursday 26-June, 2025 diff --git a/scripture/kjv/06/26/25/scripture.json b/scripture/kjv/06/26/25/scripture.json new file mode 100644 index 00000000..f7980f8f --- /dev/null +++ b/scripture/kjv/06/26/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 John", + "chapter": "3", + "date": "Thursday 26-June, 2025", + "getbible": "https://getbible.life/kjv/1 John/3/23", + "name": "1 John 3:23", + "scripture": [ + { + "nr": "23", + "text": "And this is his commandment, That we should believe on the name of his Son Jesus Christ, and love one another, as he gave us commandment." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "23", + "version": "kjv" +} diff --git a/scripture/kjv/06/26/25/scripture.md b/scripture/kjv/06/26/25/scripture.md new file mode 100644 index 00000000..9db4af9f --- /dev/null +++ b/scripture/kjv/06/26/25/scripture.md @@ -0,0 +1,5 @@ +**1 John 3:23** + +23 And this is his commandment, That we should believe on the name of his Son Jesus Christ, and love one another, as he gave us commandment. + +[Thursday 26-June, 2025](https://getbible.life/kjv/1 John/3/23) diff --git a/scripture/kjv/06/26/25/scripture.tg b/scripture/kjv/06/26/25/scripture.tg new file mode 100644 index 00000000..4bca0700 --- /dev/null +++ b/scripture/kjv/06/26/25/scripture.tg @@ -0,0 +1,4 @@ +1 John 3:23 +23 And this is his commandment, That we should believe on the name of his Son Jesus Christ, and love one another, as he gave us commandment. + +Thursday 26-June, 2025 diff --git a/scripture/kjv/06/26/25/scripture.tg.id b/scripture/kjv/06/26/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/26/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/26/25/scripture.today b/scripture/kjv/06/26/25/scripture.today new file mode 100644 index 00000000..112d490e --- /dev/null +++ b/scripture/kjv/06/26/25/scripture.today @@ -0,0 +1 @@ +62 3:23 diff --git a/scripture/kjv/06/27/23/scripture.html b/scripture/kjv/06/27/23/scripture.html new file mode 100644 index 00000000..f478bf91 --- /dev/null +++ b/scripture/kjv/06/27/23/scripture.html @@ -0,0 +1,3 @@ +Luke 19:8-9
+8 And Zacchæus stood, and said unto the Lord; Behold, Lord, the half of my goods I give to the poor; and if I have taken any thing from any man by false accusation, I restore him fourfold. 9 And Jesus said unto him, This day is salvation come to this house, forsomuch as he also is a son of Abraham.

+Tuesday 27-June, 2023 diff --git a/scripture/kjv/06/27/23/scripture.json b/scripture/kjv/06/27/23/scripture.json new file mode 100644 index 00000000..cc0d7066 --- /dev/null +++ b/scripture/kjv/06/27/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Tuesday 27-June, 2023", + "name": "Luke 19:8-9", + "scripture": [ + { + "nr": "8", + "text": "And Zacchæus stood, and said unto the Lord; Behold, Lord, the half of my goods I give to the poor; and if I have taken any thing from any man by false accusation, I restore him fourfold." + }, + { + "nr": "9", + "text": "And Jesus said unto him, This day is salvation come to this house, forsomuch as he also is a son of Abraham." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/27/23/scripture.md b/scripture/kjv/06/27/23/scripture.md new file mode 100644 index 00000000..9385c878 --- /dev/null +++ b/scripture/kjv/06/27/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 19:8-9** + +8 And Zacchæus stood, and said unto the Lord; Behold, Lord, the half of my goods I give to the poor; and if I have taken any thing from any man by false accusation, I restore him fourfold. 9 And Jesus said unto him, This day is salvation come to this house, forsomuch as he also is a son of Abraham. + +[Tuesday 27-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/27/23/scripture.tg b/scripture/kjv/06/27/23/scripture.tg new file mode 100644 index 00000000..202266b0 --- /dev/null +++ b/scripture/kjv/06/27/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 19:8-9 +8 And Zacchæus stood, and said unto the Lord; Behold, Lord, the half of my goods I give to the poor; and if I have taken any thing from any man by false accusation, I restore him fourfold. 9 And Jesus said unto him, This day is salvation come to this house, forsomuch as he also is a son of Abraham. + +Tuesday 27-June, 2023 diff --git a/scripture/kjv/06/27/23/scripture.tg.id b/scripture/kjv/06/27/23/scripture.tg.id new file mode 100644 index 00000000..783646df --- /dev/null +++ b/scripture/kjv/06/27/23/scripture.tg.id @@ -0,0 +1 @@ +993 diff --git a/scripture/kjv/06/27/23/scripture.today b/scripture/kjv/06/27/23/scripture.today new file mode 100644 index 00000000..2b4ccb01 --- /dev/null +++ b/scripture/kjv/06/27/23/scripture.today @@ -0,0 +1 @@ +42 19:8-9 diff --git a/scripture/kjv/06/27/24/scripture.html b/scripture/kjv/06/27/24/scripture.html new file mode 100644 index 00000000..c64bc226 --- /dev/null +++ b/scripture/kjv/06/27/24/scripture.html @@ -0,0 +1,3 @@ +1 John 4:12
+12 No man hath seen God at any time. If we love one another, God dwelleth in us, and his love is perfected in us.

+Thursday 27-June, 2024 diff --git a/scripture/kjv/06/27/24/scripture.json b/scripture/kjv/06/27/24/scripture.json new file mode 100644 index 00000000..4a58dfdc --- /dev/null +++ b/scripture/kjv/06/27/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 John", + "chapter": "4", + "date": "Thursday 27-June, 2024", + "getbible": "https://getbible.life/kjv/1 John/4/12", + "name": "1 John 4:12", + "scripture": [ + { + "nr": "12", + "text": "No man hath seen God at any time. If we love one another, God dwelleth in us, and his love is perfected in us." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/06/27/24/scripture.md b/scripture/kjv/06/27/24/scripture.md new file mode 100644 index 00000000..044c713d --- /dev/null +++ b/scripture/kjv/06/27/24/scripture.md @@ -0,0 +1,5 @@ +**1 John 4:12** + +12 No man hath seen God at any time. If we love one another, God dwelleth in us, and his love is perfected in us. + +[Thursday 27-June, 2024](https://getbible.life/kjv/1 John/4/12) diff --git a/scripture/kjv/06/27/24/scripture.tg b/scripture/kjv/06/27/24/scripture.tg new file mode 100644 index 00000000..eb5e0b8b --- /dev/null +++ b/scripture/kjv/06/27/24/scripture.tg @@ -0,0 +1,4 @@ +1 John 4:12 +12 No man hath seen God at any time. If we love one another, God dwelleth in us, and his love is perfected in us. + +Thursday 27-June, 2024 diff --git a/scripture/kjv/06/27/24/scripture.tg.id b/scripture/kjv/06/27/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/27/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/27/24/scripture.today b/scripture/kjv/06/27/24/scripture.today new file mode 100644 index 00000000..e4f0e3b9 --- /dev/null +++ b/scripture/kjv/06/27/24/scripture.today @@ -0,0 +1 @@ +62 4:12 diff --git a/scripture/kjv/06/27/25/scripture.html b/scripture/kjv/06/27/25/scripture.html new file mode 100644 index 00000000..a4add6ed --- /dev/null +++ b/scripture/kjv/06/27/25/scripture.html @@ -0,0 +1,3 @@ +Job 31:33-34
+33 If I covered my transgressions as Adam, by hiding mine iniquity in my bosom: 34 Did I fear a great multitude, or did the contempt of families terrify me, that I kept silence, and went not out of the door?

+Friday 27-June, 2025 diff --git a/scripture/kjv/06/27/25/scripture.json b/scripture/kjv/06/27/25/scripture.json new file mode 100644 index 00000000..7f988ec6 --- /dev/null +++ b/scripture/kjv/06/27/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Job", + "chapter": "31", + "date": "Friday 27-June, 2025", + "getbible": "https://getbible.life/kjv/Job/31/33-34", + "name": "Job 31:33-34", + "scripture": [ + { + "nr": "33", + "text": "If I covered my transgressions as Adam, by hiding mine iniquity in my bosom:" + }, + { + "nr": "34", + "text": "Did I fear a great multitude, or did the contempt of families terrify me, that I kept silence, and went not out of the door?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "33-34", + "version": "kjv" +} diff --git a/scripture/kjv/06/27/25/scripture.md b/scripture/kjv/06/27/25/scripture.md new file mode 100644 index 00000000..471a9c27 --- /dev/null +++ b/scripture/kjv/06/27/25/scripture.md @@ -0,0 +1,5 @@ +**Job 31:33-34** + +33 If I covered my transgressions as Adam, by hiding mine iniquity in my bosom: 34 Did I fear a great multitude, or did the contempt of families terrify me, that I kept silence, and went not out of the door? + +[Friday 27-June, 2025](https://getbible.life/kjv/Job/31/33-34) diff --git a/scripture/kjv/06/27/25/scripture.tg b/scripture/kjv/06/27/25/scripture.tg new file mode 100644 index 00000000..a9bb9ab7 --- /dev/null +++ b/scripture/kjv/06/27/25/scripture.tg @@ -0,0 +1,4 @@ +Job 31:33-34 +33 If I covered my transgressions as Adam, by hiding mine iniquity in my bosom: 34 Did I fear a great multitude, or did the contempt of families terrify me, that I kept silence, and went not out of the door? + +Friday 27-June, 2025 diff --git a/scripture/kjv/06/27/25/scripture.tg.id b/scripture/kjv/06/27/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/27/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/27/25/scripture.today b/scripture/kjv/06/27/25/scripture.today new file mode 100644 index 00000000..e5190540 --- /dev/null +++ b/scripture/kjv/06/27/25/scripture.today @@ -0,0 +1 @@ +18 31:33-34 diff --git a/scripture/kjv/06/28/23/scripture.html b/scripture/kjv/06/28/23/scripture.html new file mode 100644 index 00000000..f9d6af96 --- /dev/null +++ b/scripture/kjv/06/28/23/scripture.html @@ -0,0 +1,3 @@ +Luke 14:12-14
+12 Then said he also to him that bade him, When thou makest a dinner or a supper, call not thy friends, nor thy brethren, neither thy kinsmen, nor thy rich neighbours; lest they also bid thee again, and a recompence be made thee. 13 But when thou makest a feast, call the poor, the maimed, the lame, the blind: 14 And thou shalt be blessed; for they cannot recompense thee: for thou shalt be recompensed at the resurrection of the just.

+Wednesday 28-June, 2023 diff --git a/scripture/kjv/06/28/23/scripture.json b/scripture/kjv/06/28/23/scripture.json new file mode 100644 index 00000000..c3d3ebbd --- /dev/null +++ b/scripture/kjv/06/28/23/scripture.json @@ -0,0 +1,21 @@ +{ + "date": "Wednesday 28-June, 2023", + "name": "Luke 14:12-14", + "scripture": [ + { + "nr": "12", + "text": "Then said he also to him that bade him, When thou makest a dinner or a supper, call not thy friends, nor thy brethren, neither thy kinsmen, nor thy rich neighbours; lest they also bid thee again, and a recompence be made thee." + }, + { + "nr": "13", + "text": "But when thou makest a feast, call the poor, the maimed, the lame, the blind:" + }, + { + "nr": "14", + "text": "And thou shalt be blessed; for they cannot recompense thee: for thou shalt be recompensed at the resurrection of the just." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/28/23/scripture.md b/scripture/kjv/06/28/23/scripture.md new file mode 100644 index 00000000..01c84609 --- /dev/null +++ b/scripture/kjv/06/28/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 14:12-14** + +12 Then said he also to him that bade him, When thou makest a dinner or a supper, call not thy friends, nor thy brethren, neither thy kinsmen, nor thy rich neighbours; lest they also bid thee again, and a recompence be made thee. 13 But when thou makest a feast, call the poor, the maimed, the lame, the blind: 14 And thou shalt be blessed; for they cannot recompense thee: for thou shalt be recompensed at the resurrection of the just. + +[Wednesday 28-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/28/23/scripture.tg b/scripture/kjv/06/28/23/scripture.tg new file mode 100644 index 00000000..f00ffbf2 --- /dev/null +++ b/scripture/kjv/06/28/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 14:12-14 +12 Then said he also to him that bade him, When thou makest a dinner or a supper, call not thy friends, nor thy brethren, neither thy kinsmen, nor thy rich neighbours; lest they also bid thee again, and a recompence be made thee. 13 But when thou makest a feast, call the poor, the maimed, the lame, the blind: 14 And thou shalt be blessed; for they cannot recompense thee: for thou shalt be recompensed at the resurrection of the just. + +Wednesday 28-June, 2023 diff --git a/scripture/kjv/06/28/23/scripture.tg.id b/scripture/kjv/06/28/23/scripture.tg.id new file mode 100644 index 00000000..8de1e36f --- /dev/null +++ b/scripture/kjv/06/28/23/scripture.tg.id @@ -0,0 +1 @@ +994 diff --git a/scripture/kjv/06/28/23/scripture.today b/scripture/kjv/06/28/23/scripture.today new file mode 100644 index 00000000..236574d8 --- /dev/null +++ b/scripture/kjv/06/28/23/scripture.today @@ -0,0 +1 @@ +42 14:12-14 diff --git a/scripture/kjv/06/28/24/scripture.html b/scripture/kjv/06/28/24/scripture.html new file mode 100644 index 00000000..cb5e090b --- /dev/null +++ b/scripture/kjv/06/28/24/scripture.html @@ -0,0 +1,3 @@ +Jude 1:2
+2 Mercy unto you, and peace, and love, be multiplied.

+Friday 28-June, 2024 diff --git a/scripture/kjv/06/28/24/scripture.json b/scripture/kjv/06/28/24/scripture.json new file mode 100644 index 00000000..99ca3ac4 --- /dev/null +++ b/scripture/kjv/06/28/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Jude", + "chapter": "1", + "date": "Friday 28-June, 2024", + "getbible": "https://getbible.life/kjv/Jude/1/2", + "name": "Jude 1:2", + "scripture": [ + { + "nr": "2", + "text": "Mercy unto you, and peace, and love, be multiplied." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "2", + "version": "kjv" +} diff --git a/scripture/kjv/06/28/24/scripture.md b/scripture/kjv/06/28/24/scripture.md new file mode 100644 index 00000000..e0038e23 --- /dev/null +++ b/scripture/kjv/06/28/24/scripture.md @@ -0,0 +1,5 @@ +**Jude 1:2** + +2 Mercy unto you, and peace, and love, be multiplied. + +[Friday 28-June, 2024](https://getbible.life/kjv/Jude/1/2) diff --git a/scripture/kjv/06/28/24/scripture.tg b/scripture/kjv/06/28/24/scripture.tg new file mode 100644 index 00000000..b646cf11 --- /dev/null +++ b/scripture/kjv/06/28/24/scripture.tg @@ -0,0 +1,4 @@ +Jude 1:2 +2 Mercy unto you, and peace, and love, be multiplied. + +Friday 28-June, 2024 diff --git a/scripture/kjv/06/28/24/scripture.tg.id b/scripture/kjv/06/28/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/28/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/28/24/scripture.today b/scripture/kjv/06/28/24/scripture.today new file mode 100644 index 00000000..13db60ba --- /dev/null +++ b/scripture/kjv/06/28/24/scripture.today @@ -0,0 +1 @@ +65 1:2 diff --git a/scripture/kjv/06/28/25/scripture.html b/scripture/kjv/06/28/25/scripture.html new file mode 100644 index 00000000..993725f9 --- /dev/null +++ b/scripture/kjv/06/28/25/scripture.html @@ -0,0 +1,3 @@ +Proverbs 29:2
+2 When the righteous are in authority, the people rejoice: but when the wicked beareth rule, the people mourn.

+Saturday 28-June, 2025 diff --git a/scripture/kjv/06/28/25/scripture.json b/scripture/kjv/06/28/25/scripture.json new file mode 100644 index 00000000..a12dd9d0 --- /dev/null +++ b/scripture/kjv/06/28/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "29", + "date": "Saturday 28-June, 2025", + "getbible": "https://getbible.life/kjv/Proverbs/29/2", + "name": "Proverbs 29:2", + "scripture": [ + { + "nr": "2", + "text": "When the righteous are in authority, the people rejoice: but when the wicked beareth rule, the people mourn." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "2", + "version": "kjv" +} diff --git a/scripture/kjv/06/28/25/scripture.md b/scripture/kjv/06/28/25/scripture.md new file mode 100644 index 00000000..275b07bf --- /dev/null +++ b/scripture/kjv/06/28/25/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 29:2** + +2 When the righteous are in authority, the people rejoice: but when the wicked beareth rule, the people mourn. + +[Saturday 28-June, 2025](https://getbible.life/kjv/Proverbs/29/2) diff --git a/scripture/kjv/06/28/25/scripture.tg b/scripture/kjv/06/28/25/scripture.tg new file mode 100644 index 00000000..8339a709 --- /dev/null +++ b/scripture/kjv/06/28/25/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 29:2 +2 When the righteous are in authority, the people rejoice: but when the wicked beareth rule, the people mourn. + +Saturday 28-June, 2025 diff --git a/scripture/kjv/06/28/25/scripture.tg.id b/scripture/kjv/06/28/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/28/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/28/25/scripture.today b/scripture/kjv/06/28/25/scripture.today new file mode 100644 index 00000000..25344d94 --- /dev/null +++ b/scripture/kjv/06/28/25/scripture.today @@ -0,0 +1 @@ +20 29:2 diff --git a/scripture/kjv/06/29/23/scripture.html b/scripture/kjv/06/29/23/scripture.html new file mode 100644 index 00000000..56c15621 --- /dev/null +++ b/scripture/kjv/06/29/23/scripture.html @@ -0,0 +1,3 @@ +Job 42:7-8
+7 And it was so, that after the Lord had spoken these words unto Job, the Lord said to Eliphaz the Temanite, My wrath is kindled against thee, and against thy two friends: for ye have not spoken of me the thing that is right, as my servant Job hath. 8 Therefore take unto you now seven bullocks and seven rams, and go to my servant Job, and offer up for yourselves a burnt offering; and my servant Job shall pray for you: for him will I accept: lest I deal with you after your folly, in that ye have not spoken of me the thing which is right, like my servant Job.

+Thursday 29-June, 2023 diff --git a/scripture/kjv/06/29/23/scripture.json b/scripture/kjv/06/29/23/scripture.json new file mode 100644 index 00000000..2be9ccbc --- /dev/null +++ b/scripture/kjv/06/29/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Thursday 29-June, 2023", + "name": "Job 42:7-8", + "scripture": [ + { + "nr": "7", + "text": "And it was so, that after the Lord had spoken these words unto Job, the Lord said to Eliphaz the Temanite, My wrath is kindled against thee, and against thy two friends: for ye have not spoken of me the thing that is right, as my servant Job hath." + }, + { + "nr": "8", + "text": "Therefore take unto you now seven bullocks and seven rams, and go to my servant Job, and offer up for yourselves a burnt offering; and my servant Job shall pray for you: for him will I accept: lest I deal with you after your folly, in that ye have not spoken of me the thing which is right, like my servant Job." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/29/23/scripture.md b/scripture/kjv/06/29/23/scripture.md new file mode 100644 index 00000000..95daa03d --- /dev/null +++ b/scripture/kjv/06/29/23/scripture.md @@ -0,0 +1,5 @@ +**Job 42:7-8** + +7 And it was so, that after the Lord had spoken these words unto Job, the Lord said to Eliphaz the Temanite, My wrath is kindled against thee, and against thy two friends: for ye have not spoken of me the thing that is right, as my servant Job hath. 8 Therefore take unto you now seven bullocks and seven rams, and go to my servant Job, and offer up for yourselves a burnt offering; and my servant Job shall pray for you: for him will I accept: lest I deal with you after your folly, in that ye have not spoken of me the thing which is right, like my servant Job. + +[Thursday 29-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/29/23/scripture.tg b/scripture/kjv/06/29/23/scripture.tg new file mode 100644 index 00000000..13a11684 --- /dev/null +++ b/scripture/kjv/06/29/23/scripture.tg @@ -0,0 +1,4 @@ +Job 42:7-8 +7 And it was so, that after the Lord had spoken these words unto Job, the Lord said to Eliphaz the Temanite, My wrath is kindled against thee, and against thy two friends: for ye have not spoken of me the thing that is right, as my servant Job hath. 8 Therefore take unto you now seven bullocks and seven rams, and go to my servant Job, and offer up for yourselves a burnt offering; and my servant Job shall pray for you: for him will I accept: lest I deal with you after your folly, in that ye have not spoken of me the thing which is right, like my servant Job. + +Thursday 29-June, 2023 diff --git a/scripture/kjv/06/29/23/scripture.tg.id b/scripture/kjv/06/29/23/scripture.tg.id new file mode 100644 index 00000000..6e1fc58d --- /dev/null +++ b/scripture/kjv/06/29/23/scripture.tg.id @@ -0,0 +1 @@ +995 diff --git a/scripture/kjv/06/29/23/scripture.today b/scripture/kjv/06/29/23/scripture.today new file mode 100644 index 00000000..3c8a72cd --- /dev/null +++ b/scripture/kjv/06/29/23/scripture.today @@ -0,0 +1 @@ +18 42:7-8 diff --git a/scripture/kjv/06/29/24/scripture.html b/scripture/kjv/06/29/24/scripture.html new file mode 100644 index 00000000..a1164e0c --- /dev/null +++ b/scripture/kjv/06/29/24/scripture.html @@ -0,0 +1,3 @@ +Romans 7:17
+17 Now then it is no more I that do it, but sin that dwelleth in me.

+Saturday 29-June, 2024 diff --git a/scripture/kjv/06/29/24/scripture.json b/scripture/kjv/06/29/24/scripture.json new file mode 100644 index 00000000..69551343 --- /dev/null +++ b/scripture/kjv/06/29/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Romans", + "chapter": "7", + "date": "Saturday 29-June, 2024", + "getbible": "https://getbible.life/kjv/Romans/7/17", + "name": "Romans 7:17", + "scripture": [ + { + "nr": "17", + "text": "Now then it is no more I that do it, but sin that dwelleth in me." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17", + "version": "kjv" +} diff --git a/scripture/kjv/06/29/24/scripture.md b/scripture/kjv/06/29/24/scripture.md new file mode 100644 index 00000000..b338d6e2 --- /dev/null +++ b/scripture/kjv/06/29/24/scripture.md @@ -0,0 +1,5 @@ +**Romans 7:17** + +17 Now then it is no more I that do it, but sin that dwelleth in me. + +[Saturday 29-June, 2024](https://getbible.life/kjv/Romans/7/17) diff --git a/scripture/kjv/06/29/24/scripture.tg b/scripture/kjv/06/29/24/scripture.tg new file mode 100644 index 00000000..c2dd987d --- /dev/null +++ b/scripture/kjv/06/29/24/scripture.tg @@ -0,0 +1,4 @@ +Romans 7:17 +17 Now then it is no more I that do it, but sin that dwelleth in me. + +Saturday 29-June, 2024 diff --git a/scripture/kjv/06/29/24/scripture.tg.id b/scripture/kjv/06/29/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/29/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/29/24/scripture.today b/scripture/kjv/06/29/24/scripture.today new file mode 100644 index 00000000..9a592b59 --- /dev/null +++ b/scripture/kjv/06/29/24/scripture.today @@ -0,0 +1 @@ +45 7:17 diff --git a/scripture/kjv/06/29/25/scripture.html b/scripture/kjv/06/29/25/scripture.html new file mode 100644 index 00000000..4c4a7fd8 --- /dev/null +++ b/scripture/kjv/06/29/25/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 44:30-31
+30 And the first of all the firstfruits of all things, and every oblation of all, of every sort of your oblations, shall be the priest’s: ye shall also give unto the priest the first of your dough, that he may cause the blessing to rest in thine house. 31 The priests shall not eat of any thing that is dead of itself, or torn, whether it be fowl or beast.

+Sunday 29-June, 2025 diff --git a/scripture/kjv/06/29/25/scripture.json b/scripture/kjv/06/29/25/scripture.json new file mode 100644 index 00000000..222a07c6 --- /dev/null +++ b/scripture/kjv/06/29/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Ezekiel", + "chapter": "44", + "date": "Sunday 29-June, 2025", + "getbible": "https://getbible.life/kjv/Ezekiel/44/30-31", + "name": "Ezekiel 44:30-31", + "scripture": [ + { + "nr": "30", + "text": "And the first of all the firstfruits of all things, and every oblation of all, of every sort of your oblations, shall be the priest’s: ye shall also give unto the priest the first of your dough, that he may cause the blessing to rest in thine house." + }, + { + "nr": "31", + "text": "The priests shall not eat of any thing that is dead of itself, or torn, whether it be fowl or beast. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "30-31", + "version": "kjv" +} diff --git a/scripture/kjv/06/29/25/scripture.md b/scripture/kjv/06/29/25/scripture.md new file mode 100644 index 00000000..00ef29ca --- /dev/null +++ b/scripture/kjv/06/29/25/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 44:30-31** + +30 And the first of all the firstfruits of all things, and every oblation of all, of every sort of your oblations, shall be the priest’s: ye shall also give unto the priest the first of your dough, that he may cause the blessing to rest in thine house. 31 The priests shall not eat of any thing that is dead of itself, or torn, whether it be fowl or beast. + +[Sunday 29-June, 2025](https://getbible.life/kjv/Ezekiel/44/30-31) diff --git a/scripture/kjv/06/29/25/scripture.tg b/scripture/kjv/06/29/25/scripture.tg new file mode 100644 index 00000000..82816f0a --- /dev/null +++ b/scripture/kjv/06/29/25/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 44:30-31 +30 And the first of all the firstfruits of all things, and every oblation of all, of every sort of your oblations, shall be the priest’s: ye shall also give unto the priest the first of your dough, that he may cause the blessing to rest in thine house. 31 The priests shall not eat of any thing that is dead of itself, or torn, whether it be fowl or beast. + +Sunday 29-June, 2025 diff --git a/scripture/kjv/06/29/25/scripture.tg.id b/scripture/kjv/06/29/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/29/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/29/25/scripture.today b/scripture/kjv/06/29/25/scripture.today new file mode 100644 index 00000000..fd97ecc9 --- /dev/null +++ b/scripture/kjv/06/29/25/scripture.today @@ -0,0 +1 @@ +26 44:30-31 diff --git a/scripture/kjv/06/30/23/scripture.html b/scripture/kjv/06/30/23/scripture.html new file mode 100644 index 00000000..d0725a86 --- /dev/null +++ b/scripture/kjv/06/30/23/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 9:25
+25 And every man that striveth for the mastery is temperate in all things. Now they do it to obtain a corruptible crown; but we an incorruptible.

+Friday 30-June, 2023 diff --git a/scripture/kjv/06/30/23/scripture.json b/scripture/kjv/06/30/23/scripture.json new file mode 100644 index 00000000..73c48795 --- /dev/null +++ b/scripture/kjv/06/30/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Friday 30-June, 2023", + "name": "1 Corinthians 9:25", + "scripture": [ + { + "nr": "25", + "text": "And every man that striveth for the mastery is temperate in all things. Now they do it to obtain a corruptible crown; but we an incorruptible." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/06/30/23/scripture.md b/scripture/kjv/06/30/23/scripture.md new file mode 100644 index 00000000..8304c4a9 --- /dev/null +++ b/scripture/kjv/06/30/23/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 9:25** + +25 And every man that striveth for the mastery is temperate in all things. Now they do it to obtain a corruptible crown; but we an incorruptible. + +[Friday 30-June, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/06/30/23/scripture.tg b/scripture/kjv/06/30/23/scripture.tg new file mode 100644 index 00000000..e80a4802 --- /dev/null +++ b/scripture/kjv/06/30/23/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 9:25 +25 And every man that striveth for the mastery is temperate in all things. Now they do it to obtain a corruptible crown; but we an incorruptible. + +Friday 30-June, 2023 diff --git a/scripture/kjv/06/30/23/scripture.tg.id b/scripture/kjv/06/30/23/scripture.tg.id new file mode 100644 index 00000000..748632cf --- /dev/null +++ b/scripture/kjv/06/30/23/scripture.tg.id @@ -0,0 +1 @@ +996 diff --git a/scripture/kjv/06/30/23/scripture.today b/scripture/kjv/06/30/23/scripture.today new file mode 100644 index 00000000..423c53cf --- /dev/null +++ b/scripture/kjv/06/30/23/scripture.today @@ -0,0 +1 @@ +46 9:25 diff --git a/scripture/kjv/06/30/24/scripture.html b/scripture/kjv/06/30/24/scripture.html new file mode 100644 index 00000000..b02660ee --- /dev/null +++ b/scripture/kjv/06/30/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 68:16
+16 Why leap ye, ye high hills? this is the hill which God desireth to dwell in; yea, the Lord will dwell in it for ever.

+Sunday 30-June, 2024 diff --git a/scripture/kjv/06/30/24/scripture.json b/scripture/kjv/06/30/24/scripture.json new file mode 100644 index 00000000..6ed14c6a --- /dev/null +++ b/scripture/kjv/06/30/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "68", + "date": "Sunday 30-June, 2024", + "getbible": "https://getbible.life/kjv/Psalms/68/16", + "name": "Psalms 68:16", + "scripture": [ + { + "nr": "16", + "text": "Why leap ye, ye high hills? this is the hill which God desireth to dwell in; yea, the Lord will dwell in it for ever." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16", + "version": "kjv" +} diff --git a/scripture/kjv/06/30/24/scripture.md b/scripture/kjv/06/30/24/scripture.md new file mode 100644 index 00000000..91127c77 --- /dev/null +++ b/scripture/kjv/06/30/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 68:16** + +16 Why leap ye, ye high hills? this is the hill which God desireth to dwell in; yea, the Lord will dwell in it for ever. + +[Sunday 30-June, 2024](https://getbible.life/kjv/Psalms/68/16) diff --git a/scripture/kjv/06/30/24/scripture.tg b/scripture/kjv/06/30/24/scripture.tg new file mode 100644 index 00000000..a4f2f6ff --- /dev/null +++ b/scripture/kjv/06/30/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 68:16 +16 Why leap ye, ye high hills? this is the hill which God desireth to dwell in; yea, the Lord will dwell in it for ever. + +Sunday 30-June, 2024 diff --git a/scripture/kjv/06/30/24/scripture.tg.id b/scripture/kjv/06/30/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/30/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/30/24/scripture.today b/scripture/kjv/06/30/24/scripture.today new file mode 100644 index 00000000..dbdbab63 --- /dev/null +++ b/scripture/kjv/06/30/24/scripture.today @@ -0,0 +1 @@ +19 68:16 diff --git a/scripture/kjv/06/30/25/scripture.html b/scripture/kjv/06/30/25/scripture.html new file mode 100644 index 00000000..4806468f --- /dev/null +++ b/scripture/kjv/06/30/25/scripture.html @@ -0,0 +1,3 @@ +John 17:6
+6 I have manifested thy name unto the men which thou gavest me out of the world: thine they were, and thou gavest them me; and they have kept thy word.

+Monday 30-June, 2025 diff --git a/scripture/kjv/06/30/25/scripture.json b/scripture/kjv/06/30/25/scripture.json new file mode 100644 index 00000000..0474c4a9 --- /dev/null +++ b/scripture/kjv/06/30/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "17", + "date": "Monday 30-June, 2025", + "getbible": "https://getbible.life/kjv/John/17/6", + "name": "John 17:6", + "scripture": [ + { + "nr": "6", + "text": "I have manifested thy name unto the men which thou gavest me out of the world: thine they were, and thou gavest them me; and they have kept thy word." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6", + "version": "kjv" +} diff --git a/scripture/kjv/06/30/25/scripture.md b/scripture/kjv/06/30/25/scripture.md new file mode 100644 index 00000000..8108d8d6 --- /dev/null +++ b/scripture/kjv/06/30/25/scripture.md @@ -0,0 +1,5 @@ +**John 17:6** + +6 I have manifested thy name unto the men which thou gavest me out of the world: thine they were, and thou gavest them me; and they have kept thy word. + +[Monday 30-June, 2025](https://getbible.life/kjv/John/17/6) diff --git a/scripture/kjv/06/30/25/scripture.tg b/scripture/kjv/06/30/25/scripture.tg new file mode 100644 index 00000000..452fe892 --- /dev/null +++ b/scripture/kjv/06/30/25/scripture.tg @@ -0,0 +1,4 @@ +John 17:6 +6 I have manifested thy name unto the men which thou gavest me out of the world: thine they were, and thou gavest them me; and they have kept thy word. + +Monday 30-June, 2025 diff --git a/scripture/kjv/06/30/25/scripture.tg.id b/scripture/kjv/06/30/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/06/30/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/06/30/25/scripture.today b/scripture/kjv/06/30/25/scripture.today new file mode 100644 index 00000000..9d86897a --- /dev/null +++ b/scripture/kjv/06/30/25/scripture.today @@ -0,0 +1 @@ +43 17:6 diff --git a/scripture/kjv/07/01/23/scripture.html b/scripture/kjv/07/01/23/scripture.html new file mode 100644 index 00000000..de1cecf7 --- /dev/null +++ b/scripture/kjv/07/01/23/scripture.html @@ -0,0 +1,3 @@ +Ephesians 4:31-32
+31 Let all bitterness, and wrath, and anger, and clamour, and evil speaking, be put away from you, with all malice: 32 And be ye kind one to another, tenderhearted, forgiving one another, even as God for Christ’s sake hath forgiven you.

+Saturday 01-July, 2023 diff --git a/scripture/kjv/07/01/23/scripture.json b/scripture/kjv/07/01/23/scripture.json new file mode 100644 index 00000000..a4825e15 --- /dev/null +++ b/scripture/kjv/07/01/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Saturday 01-July, 2023", + "name": "Ephesians 4:31-32", + "scripture": [ + { + "nr": "31", + "text": "Let all bitterness, and wrath, and anger, and clamour, and evil speaking, be put away from you, with all malice:" + }, + { + "nr": "32", + "text": "And be ye kind one to another, tenderhearted, forgiving one another, even as God for Christ’s sake hath forgiven you. " + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/07/01/23/scripture.md b/scripture/kjv/07/01/23/scripture.md new file mode 100644 index 00000000..144a6c48 --- /dev/null +++ b/scripture/kjv/07/01/23/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 4:31-32** + +31 Let all bitterness, and wrath, and anger, and clamour, and evil speaking, be put away from you, with all malice: 32 And be ye kind one to another, tenderhearted, forgiving one another, even as God for Christ’s sake hath forgiven you. + +[Saturday 01-July, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/07/01/23/scripture.tg b/scripture/kjv/07/01/23/scripture.tg new file mode 100644 index 00000000..2c82556f --- /dev/null +++ b/scripture/kjv/07/01/23/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 4:31-32 +31 Let all bitterness, and wrath, and anger, and clamour, and evil speaking, be put away from you, with all malice: 32 And be ye kind one to another, tenderhearted, forgiving one another, even as God for Christ’s sake hath forgiven you. + +Saturday 01-July, 2023 diff --git a/scripture/kjv/07/01/23/scripture.tg.id b/scripture/kjv/07/01/23/scripture.tg.id new file mode 100644 index 00000000..eeb072e5 --- /dev/null +++ b/scripture/kjv/07/01/23/scripture.tg.id @@ -0,0 +1 @@ +997 diff --git a/scripture/kjv/07/01/23/scripture.today b/scripture/kjv/07/01/23/scripture.today new file mode 100644 index 00000000..6b919cb8 --- /dev/null +++ b/scripture/kjv/07/01/23/scripture.today @@ -0,0 +1 @@ +49 4:31-32 diff --git a/scripture/kjv/07/01/24/scripture.html b/scripture/kjv/07/01/24/scripture.html new file mode 100644 index 00000000..8344d670 --- /dev/null +++ b/scripture/kjv/07/01/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 110:7
+7 He shall drink of the brook in the way: therefore shall he lift up the head.

+Monday 01-July, 2024 diff --git a/scripture/kjv/07/01/24/scripture.json b/scripture/kjv/07/01/24/scripture.json new file mode 100644 index 00000000..4426997d --- /dev/null +++ b/scripture/kjv/07/01/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "110", + "date": "Monday 01-July, 2024", + "getbible": "https://getbible.life/kjv/Psalms/110/7", + "name": "Psalms 110:7", + "scripture": [ + { + "nr": "7", + "text": "He shall drink of the brook in the way: therefore shall he lift up the head. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7", + "version": "kjv" +} diff --git a/scripture/kjv/07/01/24/scripture.md b/scripture/kjv/07/01/24/scripture.md new file mode 100644 index 00000000..5f0abee5 --- /dev/null +++ b/scripture/kjv/07/01/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 110:7** + +7 He shall drink of the brook in the way: therefore shall he lift up the head. + +[Monday 01-July, 2024](https://getbible.life/kjv/Psalms/110/7) diff --git a/scripture/kjv/07/01/24/scripture.tg b/scripture/kjv/07/01/24/scripture.tg new file mode 100644 index 00000000..abc55253 --- /dev/null +++ b/scripture/kjv/07/01/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 110:7 +7 He shall drink of the brook in the way: therefore shall he lift up the head. + +Monday 01-July, 2024 diff --git a/scripture/kjv/07/01/24/scripture.tg.id b/scripture/kjv/07/01/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/01/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/01/24/scripture.today b/scripture/kjv/07/01/24/scripture.today new file mode 100644 index 00000000..522cb0c2 --- /dev/null +++ b/scripture/kjv/07/01/24/scripture.today @@ -0,0 +1 @@ +19 110:7 diff --git a/scripture/kjv/07/01/25/scripture.html b/scripture/kjv/07/01/25/scripture.html new file mode 100644 index 00000000..71bbdacd --- /dev/null +++ b/scripture/kjv/07/01/25/scripture.html @@ -0,0 +1,3 @@ +John 8:36
+36 If the Son therefore shall make you free, ye shall be free indeed.

+Tuesday 01-July, 2025 diff --git a/scripture/kjv/07/01/25/scripture.json b/scripture/kjv/07/01/25/scripture.json new file mode 100644 index 00000000..221d02b2 --- /dev/null +++ b/scripture/kjv/07/01/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "8", + "date": "Tuesday 01-July, 2025", + "getbible": "https://getbible.life/kjv/John/8/36", + "name": "John 8:36", + "scripture": [ + { + "nr": "36", + "text": "If the Son therefore shall make you free, ye shall be free indeed." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "36", + "version": "kjv" +} diff --git a/scripture/kjv/07/01/25/scripture.md b/scripture/kjv/07/01/25/scripture.md new file mode 100644 index 00000000..4785271f --- /dev/null +++ b/scripture/kjv/07/01/25/scripture.md @@ -0,0 +1,5 @@ +**John 8:36** + +36 If the Son therefore shall make you free, ye shall be free indeed. + +[Tuesday 01-July, 2025](https://getbible.life/kjv/John/8/36) diff --git a/scripture/kjv/07/01/25/scripture.tg b/scripture/kjv/07/01/25/scripture.tg new file mode 100644 index 00000000..21bb5b83 --- /dev/null +++ b/scripture/kjv/07/01/25/scripture.tg @@ -0,0 +1,4 @@ +John 8:36 +36 If the Son therefore shall make you free, ye shall be free indeed. + +Tuesday 01-July, 2025 diff --git a/scripture/kjv/07/01/25/scripture.tg.id b/scripture/kjv/07/01/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/01/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/01/25/scripture.today b/scripture/kjv/07/01/25/scripture.today new file mode 100644 index 00000000..3a36887a --- /dev/null +++ b/scripture/kjv/07/01/25/scripture.today @@ -0,0 +1 @@ +43 8:36 diff --git a/scripture/kjv/07/02/23/scripture.html b/scripture/kjv/07/02/23/scripture.html new file mode 100644 index 00000000..797aa329 --- /dev/null +++ b/scripture/kjv/07/02/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 145:10-12
+10 All thy works shall praise thee, O Lord; and thy saints shall bless thee. 11 They shall speak of the glory of thy kingdom, and talk of thy power; 12 To make known to the sons of men his mighty acts, and the glorious majesty of his kingdom.

+Sunday 02-July, 2023 diff --git a/scripture/kjv/07/02/23/scripture.json b/scripture/kjv/07/02/23/scripture.json new file mode 100644 index 00000000..293f1fdd --- /dev/null +++ b/scripture/kjv/07/02/23/scripture.json @@ -0,0 +1,21 @@ +{ + "date": "Sunday 02-July, 2023", + "name": "Psalms 145:10-12", + "scripture": [ + { + "nr": "10", + "text": "All thy works shall praise thee, O Lord; and thy saints shall bless thee." + }, + { + "nr": "11", + "text": "They shall speak of the glory of thy kingdom, and talk of thy power;" + }, + { + "nr": "12", + "text": "To make known to the sons of men his mighty acts, and the glorious majesty of his kingdom." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/07/02/23/scripture.md b/scripture/kjv/07/02/23/scripture.md new file mode 100644 index 00000000..c8753464 --- /dev/null +++ b/scripture/kjv/07/02/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 145:10-12** + +10 All thy works shall praise thee, O Lord; and thy saints shall bless thee. 11 They shall speak of the glory of thy kingdom, and talk of thy power; 12 To make known to the sons of men his mighty acts, and the glorious majesty of his kingdom. + +[Sunday 02-July, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/07/02/23/scripture.tg b/scripture/kjv/07/02/23/scripture.tg new file mode 100644 index 00000000..5f32eaf6 --- /dev/null +++ b/scripture/kjv/07/02/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 145:10-12 +10 All thy works shall praise thee, O Lord; and thy saints shall bless thee. 11 They shall speak of the glory of thy kingdom, and talk of thy power; 12 To make known to the sons of men his mighty acts, and the glorious majesty of his kingdom. + +Sunday 02-July, 2023 diff --git a/scripture/kjv/07/02/23/scripture.tg.id b/scripture/kjv/07/02/23/scripture.tg.id new file mode 100644 index 00000000..806adbfb --- /dev/null +++ b/scripture/kjv/07/02/23/scripture.tg.id @@ -0,0 +1 @@ +998 diff --git a/scripture/kjv/07/02/23/scripture.today b/scripture/kjv/07/02/23/scripture.today new file mode 100644 index 00000000..f069b6df --- /dev/null +++ b/scripture/kjv/07/02/23/scripture.today @@ -0,0 +1 @@ +19 145:10-12 diff --git a/scripture/kjv/07/02/24/scripture.html b/scripture/kjv/07/02/24/scripture.html new file mode 100644 index 00000000..1897ded8 --- /dev/null +++ b/scripture/kjv/07/02/24/scripture.html @@ -0,0 +1,3 @@ +Job 34:11-12
+11 For the work of a man shall he render unto him, and cause every man to find according to his ways. 12 Yea, surely God will not do wickedly, neither will the Almighty pervert judgment.

+Tuesday 02-July, 2024 diff --git a/scripture/kjv/07/02/24/scripture.json b/scripture/kjv/07/02/24/scripture.json new file mode 100644 index 00000000..88df131f --- /dev/null +++ b/scripture/kjv/07/02/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Job", + "chapter": "34", + "date": "Tuesday 02-July, 2024", + "getbible": "https://getbible.life/kjv/Job/34/11-12", + "name": "Job 34:11-12", + "scripture": [ + { + "nr": "11", + "text": "For the work of a man shall he render unto him, and cause every man to find according to his ways." + }, + { + "nr": "12", + "text": "Yea, surely God will not do wickedly, neither will the Almighty pervert judgment." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11-12", + "version": "kjv" +} diff --git a/scripture/kjv/07/02/24/scripture.md b/scripture/kjv/07/02/24/scripture.md new file mode 100644 index 00000000..c0ea7cf6 --- /dev/null +++ b/scripture/kjv/07/02/24/scripture.md @@ -0,0 +1,5 @@ +**Job 34:11-12** + +11 For the work of a man shall he render unto him, and cause every man to find according to his ways. 12 Yea, surely God will not do wickedly, neither will the Almighty pervert judgment. + +[Tuesday 02-July, 2024](https://getbible.life/kjv/Job/34/11-12) diff --git a/scripture/kjv/07/02/24/scripture.tg b/scripture/kjv/07/02/24/scripture.tg new file mode 100644 index 00000000..b67fcc50 --- /dev/null +++ b/scripture/kjv/07/02/24/scripture.tg @@ -0,0 +1,4 @@ +Job 34:11-12 +11 For the work of a man shall he render unto him, and cause every man to find according to his ways. 12 Yea, surely God will not do wickedly, neither will the Almighty pervert judgment. + +Tuesday 02-July, 2024 diff --git a/scripture/kjv/07/02/24/scripture.tg.id b/scripture/kjv/07/02/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/02/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/02/24/scripture.today b/scripture/kjv/07/02/24/scripture.today new file mode 100644 index 00000000..5db83fa7 --- /dev/null +++ b/scripture/kjv/07/02/24/scripture.today @@ -0,0 +1 @@ +18 34:11-12 diff --git a/scripture/kjv/07/02/25/scripture.html b/scripture/kjv/07/02/25/scripture.html new file mode 100644 index 00000000..c5ec0387 --- /dev/null +++ b/scripture/kjv/07/02/25/scripture.html @@ -0,0 +1,3 @@ +Matthew 18:23-35
+23 Therefore is the kingdom of heaven likened unto a certain king, which would take account of his servants. 24 And when he had begun to reckon, one was brought unto him, which owed him ten thousand talents. 25 But forasmuch as he had not to pay, his lord commanded him to be sold, and his wife, and children, and all that he had, and payment to be made. 26 The servant therefore fell down, and worshipped him, saying, Lord, have patience with me, and I will pay thee all. 27 Then the lord of that servant was moved with compassion, and loosed him, and forgave him the debt. 28 But the same servant went out, and found one of his fellowservants, which owed him an hundred pence: and he laid hands on him, and took him by the throat, saying, Pay me that thou owest. 29 And his fellowservant fell down at his feet, and besought him, saying, Have patience with me, and I will pay thee all. 30 And he would not: but went and cast him into prison, till he should pay the debt. 31 So when his fellowservants saw what was done, they were very sorry, and came and told unto their lord all that was done. 32 Then his lord, after that he had called him, said unto him, O thou wicked servant, I forgave thee all that debt, because thou desiredst me: 33 Shouldest not thou also have had compassion on thy fellowservant, even as I had pity on thee? 34 And his lord was wroth, and delivered him to the tormentors, till he should pay all that was due unto him. 35 So likewise shall my heavenly Father do also unto you, if ye from your hearts forgive not every one his brother their trespasses.

+Wednesday 02-July, 2025 diff --git a/scripture/kjv/07/02/25/scripture.json b/scripture/kjv/07/02/25/scripture.json new file mode 100644 index 00000000..9ff44505 --- /dev/null +++ b/scripture/kjv/07/02/25/scripture.json @@ -0,0 +1,65 @@ +{ + "book": "Matthew", + "chapter": "18", + "date": "Wednesday 02-July, 2025", + "getbible": "https://getbible.life/kjv/Matthew/18/23-35", + "name": "Matthew 18:23-35", + "scripture": [ + { + "nr": "23", + "text": "Therefore is the kingdom of heaven likened unto a certain king, which would take account of his servants." + }, + { + "nr": "24", + "text": "And when he had begun to reckon, one was brought unto him, which owed him ten thousand talents." + }, + { + "nr": "25", + "text": "But forasmuch as he had not to pay, his lord commanded him to be sold, and his wife, and children, and all that he had, and payment to be made." + }, + { + "nr": "26", + "text": "The servant therefore fell down, and worshipped him, saying, Lord, have patience with me, and I will pay thee all." + }, + { + "nr": "27", + "text": "Then the lord of that servant was moved with compassion, and loosed him, and forgave him the debt." + }, + { + "nr": "28", + "text": "But the same servant went out, and found one of his fellowservants, which owed him an hundred pence: and he laid hands on him, and took him by the throat, saying, Pay me that thou owest." + }, + { + "nr": "29", + "text": "And his fellowservant fell down at his feet, and besought him, saying, Have patience with me, and I will pay thee all." + }, + { + "nr": "30", + "text": "And he would not: but went and cast him into prison, till he should pay the debt." + }, + { + "nr": "31", + "text": "So when his fellowservants saw what was done, they were very sorry, and came and told unto their lord all that was done." + }, + { + "nr": "32", + "text": "Then his lord, after that he had called him, said unto him, O thou wicked servant, I forgave thee all that debt, because thou desiredst me:" + }, + { + "nr": "33", + "text": "Shouldest not thou also have had compassion on thy fellowservant, even as I had pity on thee?" + }, + { + "nr": "34", + "text": "And his lord was wroth, and delivered him to the tormentors, till he should pay all that was due unto him." + }, + { + "nr": "35", + "text": "So likewise shall my heavenly Father do also unto you, if ye from your hearts forgive not every one his brother their trespasses. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "23-35", + "version": "kjv" +} diff --git a/scripture/kjv/07/02/25/scripture.md b/scripture/kjv/07/02/25/scripture.md new file mode 100644 index 00000000..b49f7789 --- /dev/null +++ b/scripture/kjv/07/02/25/scripture.md @@ -0,0 +1,5 @@ +**Matthew 18:23-35** + +23 Therefore is the kingdom of heaven likened unto a certain king, which would take account of his servants. 24 And when he had begun to reckon, one was brought unto him, which owed him ten thousand talents. 25 But forasmuch as he had not to pay, his lord commanded him to be sold, and his wife, and children, and all that he had, and payment to be made. 26 The servant therefore fell down, and worshipped him, saying, Lord, have patience with me, and I will pay thee all. 27 Then the lord of that servant was moved with compassion, and loosed him, and forgave him the debt. 28 But the same servant went out, and found one of his fellowservants, which owed him an hundred pence: and he laid hands on him, and took him by the throat, saying, Pay me that thou owest. 29 And his fellowservant fell down at his feet, and besought him, saying, Have patience with me, and I will pay thee all. 30 And he would not: but went and cast him into prison, till he should pay the debt. 31 So when his fellowservants saw what was done, they were very sorry, and came and told unto their lord all that was done. 32 Then his lord, after that he had called him, said unto him, O thou wicked servant, I forgave thee all that debt, because thou desiredst me: 33 Shouldest not thou also have had compassion on thy fellowservant, even as I had pity on thee? 34 And his lord was wroth, and delivered him to the tormentors, till he should pay all that was due unto him. 35 So likewise shall my heavenly Father do also unto you, if ye from your hearts forgive not every one his brother their trespasses. + +[Wednesday 02-July, 2025](https://getbible.life/kjv/Matthew/18/23-35) diff --git a/scripture/kjv/07/02/25/scripture.tg b/scripture/kjv/07/02/25/scripture.tg new file mode 100644 index 00000000..3339f674 --- /dev/null +++ b/scripture/kjv/07/02/25/scripture.tg @@ -0,0 +1,4 @@ +Matthew 18:23-35 +23 Therefore is the kingdom of heaven likened unto a certain king, which would take account of his servants. 24 And when he had begun to reckon, one was brought unto him, which owed him ten thousand talents. 25 But forasmuch as he had not to pay, his lord commanded him to be sold, and his wife, and children, and all that he had, and payment to be made. 26 The servant therefore fell down, and worshipped him, saying, Lord, have patience with me, and I will pay thee all. 27 Then the lord of that servant was moved with compassion, and loosed him, and forgave him the debt. 28 But the same servant went out, and found one of his fellowservants, which owed him an hundred pence: and he laid hands on him, and took him by the throat, saying, Pay me that thou owest. 29 And his fellowservant fell down at his feet, and besought him, saying, Have patience with me, and I will pay thee all. 30 And he would not: but went and cast him into prison, till he should pay the debt. 31 So when his fellowservants saw what was done, they were very sorry, and came and told unto their lord all that was done. 32 Then his lord, after that he had called him, said unto him, O thou wicked servant, I forgave thee all that debt, because thou desiredst me: 33 Shouldest not thou also have had compassion on thy fellowservant, even as I had pity on thee? 34 And his lord was wroth, and delivered him to the tormentors, till he should pay all that was due unto him. 35 So likewise shall my heavenly Father do also unto you, if ye from your hearts forgive not every one his brother their trespasses. + +Wednesday 02-July, 2025 diff --git a/scripture/kjv/07/02/25/scripture.tg.id b/scripture/kjv/07/02/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/02/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/02/25/scripture.today b/scripture/kjv/07/02/25/scripture.today new file mode 100644 index 00000000..802db8c7 --- /dev/null +++ b/scripture/kjv/07/02/25/scripture.today @@ -0,0 +1 @@ +40 18:23-35 diff --git a/scripture/kjv/07/03/23/scripture.html b/scripture/kjv/07/03/23/scripture.html new file mode 100644 index 00000000..99688fd5 --- /dev/null +++ b/scripture/kjv/07/03/23/scripture.html @@ -0,0 +1,3 @@ +Revelation 3:2
+2 Be watchful, and strengthen the things which remain, that are ready to die: for I have not found thy works perfect before God.

+Monday 03-July, 2023 diff --git a/scripture/kjv/07/03/23/scripture.json b/scripture/kjv/07/03/23/scripture.json new file mode 100644 index 00000000..9add8fca --- /dev/null +++ b/scripture/kjv/07/03/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Monday 03-July, 2023", + "name": "Revelation 3:2", + "scripture": [ + { + "nr": "2", + "text": "Be watchful, and strengthen the things which remain, that are ready to die: for I have not found thy works perfect before God." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/07/03/23/scripture.md b/scripture/kjv/07/03/23/scripture.md new file mode 100644 index 00000000..6787e44c --- /dev/null +++ b/scripture/kjv/07/03/23/scripture.md @@ -0,0 +1,5 @@ +**Revelation 3:2** + +2 Be watchful, and strengthen the things which remain, that are ready to die: for I have not found thy works perfect before God. + +[Monday 03-July, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/07/03/23/scripture.tg b/scripture/kjv/07/03/23/scripture.tg new file mode 100644 index 00000000..28b96bcc --- /dev/null +++ b/scripture/kjv/07/03/23/scripture.tg @@ -0,0 +1,4 @@ +Revelation 3:2 +2 Be watchful, and strengthen the things which remain, that are ready to die: for I have not found thy works perfect before God. + +Monday 03-July, 2023 diff --git a/scripture/kjv/07/03/23/scripture.tg.id b/scripture/kjv/07/03/23/scripture.tg.id new file mode 100644 index 00000000..a6905f8b --- /dev/null +++ b/scripture/kjv/07/03/23/scripture.tg.id @@ -0,0 +1 @@ +999 diff --git a/scripture/kjv/07/03/23/scripture.today b/scripture/kjv/07/03/23/scripture.today new file mode 100644 index 00000000..865dc2c6 --- /dev/null +++ b/scripture/kjv/07/03/23/scripture.today @@ -0,0 +1 @@ +66 3:2 diff --git a/scripture/kjv/07/03/24/scripture.html b/scripture/kjv/07/03/24/scripture.html new file mode 100644 index 00000000..bfd88d65 --- /dev/null +++ b/scripture/kjv/07/03/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 119:9
+9 Wherewithal shall a young man cleanse his way? by taking heed thereto according to thy word.

+Wednesday 03-July, 2024 diff --git a/scripture/kjv/07/03/24/scripture.json b/scripture/kjv/07/03/24/scripture.json new file mode 100644 index 00000000..dfcfa66b --- /dev/null +++ b/scripture/kjv/07/03/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "119", + "date": "Wednesday 03-July, 2024", + "getbible": "https://getbible.life/kjv/Psalms/119/9", + "name": "Psalms 119:9", + "scripture": [ + { + "nr": "9", + "text": " Wherewithal shall a young man cleanse his way? by taking heed thereto according to thy word." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9", + "version": "kjv" +} diff --git a/scripture/kjv/07/03/24/scripture.md b/scripture/kjv/07/03/24/scripture.md new file mode 100644 index 00000000..6803893f --- /dev/null +++ b/scripture/kjv/07/03/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 119:9** + +9 Wherewithal shall a young man cleanse his way? by taking heed thereto according to thy word. + +[Wednesday 03-July, 2024](https://getbible.life/kjv/Psalms/119/9) diff --git a/scripture/kjv/07/03/24/scripture.tg b/scripture/kjv/07/03/24/scripture.tg new file mode 100644 index 00000000..05037829 --- /dev/null +++ b/scripture/kjv/07/03/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 119:9 +9 Wherewithal shall a young man cleanse his way? by taking heed thereto according to thy word. + +Wednesday 03-July, 2024 diff --git a/scripture/kjv/07/03/24/scripture.tg.id b/scripture/kjv/07/03/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/03/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/03/24/scripture.today b/scripture/kjv/07/03/24/scripture.today new file mode 100644 index 00000000..d411b596 --- /dev/null +++ b/scripture/kjv/07/03/24/scripture.today @@ -0,0 +1 @@ +19 119:9 diff --git a/scripture/kjv/07/03/25/scripture.html b/scripture/kjv/07/03/25/scripture.html new file mode 100644 index 00000000..c5fdbd9a --- /dev/null +++ b/scripture/kjv/07/03/25/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 4:17
+17 For this cause have I sent unto you Timotheus, who is my beloved son, and faithful in the Lord, who shall bring you into remembrance of my ways which be in Christ, as I teach every where in every church.

+Thursday 03-July, 2025 diff --git a/scripture/kjv/07/03/25/scripture.json b/scripture/kjv/07/03/25/scripture.json new file mode 100644 index 00000000..50d2d41b --- /dev/null +++ b/scripture/kjv/07/03/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "4", + "date": "Thursday 03-July, 2025", + "getbible": "https://getbible.life/kjv/1 Corinthians/4/17", + "name": "1 Corinthians 4:17", + "scripture": [ + { + "nr": "17", + "text": "For this cause have I sent unto you Timotheus, who is my beloved son, and faithful in the Lord, who shall bring you into remembrance of my ways which be in Christ, as I teach every where in every church." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17", + "version": "kjv" +} diff --git a/scripture/kjv/07/03/25/scripture.md b/scripture/kjv/07/03/25/scripture.md new file mode 100644 index 00000000..296234dc --- /dev/null +++ b/scripture/kjv/07/03/25/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 4:17** + +17 For this cause have I sent unto you Timotheus, who is my beloved son, and faithful in the Lord, who shall bring you into remembrance of my ways which be in Christ, as I teach every where in every church. + +[Thursday 03-July, 2025](https://getbible.life/kjv/1 Corinthians/4/17) diff --git a/scripture/kjv/07/03/25/scripture.tg b/scripture/kjv/07/03/25/scripture.tg new file mode 100644 index 00000000..9b17738c --- /dev/null +++ b/scripture/kjv/07/03/25/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 4:17 +17 For this cause have I sent unto you Timotheus, who is my beloved son, and faithful in the Lord, who shall bring you into remembrance of my ways which be in Christ, as I teach every where in every church. + +Thursday 03-July, 2025 diff --git a/scripture/kjv/07/03/25/scripture.tg.id b/scripture/kjv/07/03/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/03/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/03/25/scripture.today b/scripture/kjv/07/03/25/scripture.today new file mode 100644 index 00000000..52533be3 --- /dev/null +++ b/scripture/kjv/07/03/25/scripture.today @@ -0,0 +1 @@ +46 4:17 diff --git a/scripture/kjv/07/04/23/scripture.html b/scripture/kjv/07/04/23/scripture.html new file mode 100644 index 00000000..03770556 --- /dev/null +++ b/scripture/kjv/07/04/23/scripture.html @@ -0,0 +1,3 @@ +Isaiah 44:22
+22 I have blotted out, as a thick cloud, thy transgressions, and, as a cloud, thy sins: return unto me; for I have redeemed thee.

+Tuesday 04-July, 2023 diff --git a/scripture/kjv/07/04/23/scripture.json b/scripture/kjv/07/04/23/scripture.json new file mode 100644 index 00000000..a229551c --- /dev/null +++ b/scripture/kjv/07/04/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Tuesday 04-July, 2023", + "name": "Isaiah 44:22", + "scripture": [ + { + "nr": "22", + "text": "I have blotted out, as a thick cloud, thy transgressions, and, as a cloud, thy sins: return unto me; for I have redeemed thee." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/07/04/23/scripture.md b/scripture/kjv/07/04/23/scripture.md new file mode 100644 index 00000000..97156467 --- /dev/null +++ b/scripture/kjv/07/04/23/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 44:22** + +22 I have blotted out, as a thick cloud, thy transgressions, and, as a cloud, thy sins: return unto me; for I have redeemed thee. + +[Tuesday 04-July, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/07/04/23/scripture.tg b/scripture/kjv/07/04/23/scripture.tg new file mode 100644 index 00000000..e172fb14 --- /dev/null +++ b/scripture/kjv/07/04/23/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 44:22 +22 I have blotted out, as a thick cloud, thy transgressions, and, as a cloud, thy sins: return unto me; for I have redeemed thee. + +Tuesday 04-July, 2023 diff --git a/scripture/kjv/07/04/23/scripture.tg.id b/scripture/kjv/07/04/23/scripture.tg.id new file mode 100644 index 00000000..83b33d23 --- /dev/null +++ b/scripture/kjv/07/04/23/scripture.tg.id @@ -0,0 +1 @@ +1000 diff --git a/scripture/kjv/07/04/23/scripture.today b/scripture/kjv/07/04/23/scripture.today new file mode 100644 index 00000000..e177ec3c --- /dev/null +++ b/scripture/kjv/07/04/23/scripture.today @@ -0,0 +1 @@ +23 44:22 diff --git a/scripture/kjv/07/04/24/scripture.html b/scripture/kjv/07/04/24/scripture.html new file mode 100644 index 00000000..d0cc7e15 --- /dev/null +++ b/scripture/kjv/07/04/24/scripture.html @@ -0,0 +1,3 @@ +Deuteronomy 33:25-29
+25 Thy shoes shall be iron and brass; and as thy days, so shall thy strength be. 26 There is none like unto the God of Jeshurun, who rideth upon the heaven in thy help, and in his excellency on the sky. 27 The eternal God is thy refuge, and underneath are the everlasting arms: and he shall thrust out the enemy from before thee; and shall say, Destroy them. 28 Israel then shall dwell in safety alone: the fountain of Jacob shall be upon a land of corn and wine; also his heavens shall drop down dew. 29 Happy art thou, O Israel: who is like unto thee, O people saved by the Lord, the shield of thy help, and who is the sword of thy excellency! and thine enemies shall be found liars unto thee; and thou shalt tread upon their high places.

+Thursday 04-July, 2024 diff --git a/scripture/kjv/07/04/24/scripture.json b/scripture/kjv/07/04/24/scripture.json new file mode 100644 index 00000000..e3c1ce0e --- /dev/null +++ b/scripture/kjv/07/04/24/scripture.json @@ -0,0 +1,33 @@ +{ + "book": "Deuteronomy", + "chapter": "33", + "date": "Thursday 04-July, 2024", + "getbible": "https://getbible.life/kjv/Deuteronomy/33/25-29", + "name": "Deuteronomy 33:25-29", + "scripture": [ + { + "nr": "25", + "text": "Thy shoes shall be iron and brass; and as thy days, so shall thy strength be." + }, + { + "nr": "26", + "text": "There is none like unto the God of Jeshurun, who rideth upon the heaven in thy help, and in his excellency on the sky." + }, + { + "nr": "27", + "text": "The eternal God is thy refuge, and underneath are the everlasting arms: and he shall thrust out the enemy from before thee; and shall say, Destroy them." + }, + { + "nr": "28", + "text": "Israel then shall dwell in safety alone: the fountain of Jacob shall be upon a land of corn and wine; also his heavens shall drop down dew." + }, + { + "nr": "29", + "text": "Happy art thou, O Israel: who is like unto thee, O people saved by the Lord, the shield of thy help, and who is the sword of thy excellency! and thine enemies shall be found liars unto thee; and thou shalt tread upon their high places. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "25-29", + "version": "kjv" +} diff --git a/scripture/kjv/07/04/24/scripture.md b/scripture/kjv/07/04/24/scripture.md new file mode 100644 index 00000000..e9181092 --- /dev/null +++ b/scripture/kjv/07/04/24/scripture.md @@ -0,0 +1,5 @@ +**Deuteronomy 33:25-29** + +25 Thy shoes shall be iron and brass; and as thy days, so shall thy strength be. 26 There is none like unto the God of Jeshurun, who rideth upon the heaven in thy help, and in his excellency on the sky. 27 The eternal God is thy refuge, and underneath are the everlasting arms: and he shall thrust out the enemy from before thee; and shall say, Destroy them. 28 Israel then shall dwell in safety alone: the fountain of Jacob shall be upon a land of corn and wine; also his heavens shall drop down dew. 29 Happy art thou, O Israel: who is like unto thee, O people saved by the Lord, the shield of thy help, and who is the sword of thy excellency! and thine enemies shall be found liars unto thee; and thou shalt tread upon their high places. + +[Thursday 04-July, 2024](https://getbible.life/kjv/Deuteronomy/33/25-29) diff --git a/scripture/kjv/07/04/24/scripture.tg b/scripture/kjv/07/04/24/scripture.tg new file mode 100644 index 00000000..0bb234cf --- /dev/null +++ b/scripture/kjv/07/04/24/scripture.tg @@ -0,0 +1,4 @@ +Deuteronomy 33:25-29 +25 Thy shoes shall be iron and brass; and as thy days, so shall thy strength be. 26 There is none like unto the God of Jeshurun, who rideth upon the heaven in thy help, and in his excellency on the sky. 27 The eternal God is thy refuge, and underneath are the everlasting arms: and he shall thrust out the enemy from before thee; and shall say, Destroy them. 28 Israel then shall dwell in safety alone: the fountain of Jacob shall be upon a land of corn and wine; also his heavens shall drop down dew. 29 Happy art thou, O Israel: who is like unto thee, O people saved by the Lord, the shield of thy help, and who is the sword of thy excellency! and thine enemies shall be found liars unto thee; and thou shalt tread upon their high places. + +Thursday 04-July, 2024 diff --git a/scripture/kjv/07/04/24/scripture.tg.id b/scripture/kjv/07/04/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/04/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/04/24/scripture.today b/scripture/kjv/07/04/24/scripture.today new file mode 100644 index 00000000..c89cff99 --- /dev/null +++ b/scripture/kjv/07/04/24/scripture.today @@ -0,0 +1 @@ +5 33:25-29 diff --git a/scripture/kjv/07/04/25/scripture.html b/scripture/kjv/07/04/25/scripture.html new file mode 100644 index 00000000..9fd9f64e --- /dev/null +++ b/scripture/kjv/07/04/25/scripture.html @@ -0,0 +1,3 @@ +Romans 8:18
+18 For I reckon that the sufferings of this present time are not worthy to be compared with the glory which shall be revealed in us.

+Friday 04-July, 2025 diff --git a/scripture/kjv/07/04/25/scripture.json b/scripture/kjv/07/04/25/scripture.json new file mode 100644 index 00000000..83fc948c --- /dev/null +++ b/scripture/kjv/07/04/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Romans", + "chapter": "8", + "date": "Friday 04-July, 2025", + "getbible": "https://getbible.life/kjv/Romans/8/18", + "name": "Romans 8:18", + "scripture": [ + { + "nr": "18", + "text": "For I reckon that the sufferings of this present time are not worthy to be compared with the glory which shall be revealed in us." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18", + "version": "kjv" +} diff --git a/scripture/kjv/07/04/25/scripture.md b/scripture/kjv/07/04/25/scripture.md new file mode 100644 index 00000000..23335f54 --- /dev/null +++ b/scripture/kjv/07/04/25/scripture.md @@ -0,0 +1,5 @@ +**Romans 8:18** + +18 For I reckon that the sufferings of this present time are not worthy to be compared with the glory which shall be revealed in us. + +[Friday 04-July, 2025](https://getbible.life/kjv/Romans/8/18) diff --git a/scripture/kjv/07/04/25/scripture.tg b/scripture/kjv/07/04/25/scripture.tg new file mode 100644 index 00000000..6a4aadf1 --- /dev/null +++ b/scripture/kjv/07/04/25/scripture.tg @@ -0,0 +1,4 @@ +Romans 8:18 +18 For I reckon that the sufferings of this present time are not worthy to be compared with the glory which shall be revealed in us. + +Friday 04-July, 2025 diff --git a/scripture/kjv/07/04/25/scripture.tg.id b/scripture/kjv/07/04/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/04/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/04/25/scripture.today b/scripture/kjv/07/04/25/scripture.today new file mode 100644 index 00000000..8f00b1a4 --- /dev/null +++ b/scripture/kjv/07/04/25/scripture.today @@ -0,0 +1 @@ +45 8:18 diff --git a/scripture/kjv/07/05/23/scripture.html b/scripture/kjv/07/05/23/scripture.html new file mode 100644 index 00000000..ec7850b8 --- /dev/null +++ b/scripture/kjv/07/05/23/scripture.html @@ -0,0 +1,3 @@ +Isaiah 66:5
+5 Hear the word of the Lord, ye that tremble at his word; Your brethren that hated you, that cast you out for my name’s sake, said, Let the Lord be glorified: but he shall appear to your joy, and they shall be ashamed.

+Wednesday 05-July, 2023 diff --git a/scripture/kjv/07/05/23/scripture.json b/scripture/kjv/07/05/23/scripture.json new file mode 100644 index 00000000..bb1b74c6 --- /dev/null +++ b/scripture/kjv/07/05/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Wednesday 05-July, 2023", + "name": "Isaiah 66:5", + "scripture": [ + { + "nr": "5", + "text": "Hear the word of the Lord, ye that tremble at his word; Your brethren that hated you, that cast you out for my name’s sake, said, Let the Lord be glorified: but he shall appear to your joy, and they shall be ashamed." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/07/05/23/scripture.md b/scripture/kjv/07/05/23/scripture.md new file mode 100644 index 00000000..1e2daea7 --- /dev/null +++ b/scripture/kjv/07/05/23/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 66:5** + +5 Hear the word of the Lord, ye that tremble at his word; Your brethren that hated you, that cast you out for my name’s sake, said, Let the Lord be glorified: but he shall appear to your joy, and they shall be ashamed. + +[Wednesday 05-July, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/07/05/23/scripture.tg b/scripture/kjv/07/05/23/scripture.tg new file mode 100644 index 00000000..a9739b5f --- /dev/null +++ b/scripture/kjv/07/05/23/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 66:5 +5 Hear the word of the Lord, ye that tremble at his word; Your brethren that hated you, that cast you out for my name’s sake, said, Let the Lord be glorified: but he shall appear to your joy, and they shall be ashamed. + +Wednesday 05-July, 2023 diff --git a/scripture/kjv/07/05/23/scripture.tg.id b/scripture/kjv/07/05/23/scripture.tg.id new file mode 100644 index 00000000..dd117240 --- /dev/null +++ b/scripture/kjv/07/05/23/scripture.tg.id @@ -0,0 +1 @@ +1001 diff --git a/scripture/kjv/07/05/23/scripture.today b/scripture/kjv/07/05/23/scripture.today new file mode 100644 index 00000000..7f376eec --- /dev/null +++ b/scripture/kjv/07/05/23/scripture.today @@ -0,0 +1 @@ +23 66:5 diff --git a/scripture/kjv/07/05/24/scripture.html b/scripture/kjv/07/05/24/scripture.html new file mode 100644 index 00000000..36de9a6c --- /dev/null +++ b/scripture/kjv/07/05/24/scripture.html @@ -0,0 +1,3 @@ +Ephesians 6:5-8
+5 Servants, be obedient to them that are your masters according to the flesh, with fear and trembling, in singleness of your heart, as unto Christ; 6 Not with eyeservice, as menpleasers; but as the servants of Christ, doing the will of God from the heart; 7 With good will doing service, as to the Lord, and not to men: 8 Knowing that whatsoever good thing any man doeth, the same shall he receive of the Lord, whether he be bond or free.

+Friday 05-July, 2024 diff --git a/scripture/kjv/07/05/24/scripture.json b/scripture/kjv/07/05/24/scripture.json new file mode 100644 index 00000000..05c5cf37 --- /dev/null +++ b/scripture/kjv/07/05/24/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "Ephesians", + "chapter": "6", + "date": "Friday 05-July, 2024", + "getbible": "https://getbible.life/kjv/Ephesians/6/5-8", + "name": "Ephesians 6:5-8", + "scripture": [ + { + "nr": "5", + "text": "Servants, be obedient to them that are your masters according to the flesh, with fear and trembling, in singleness of your heart, as unto Christ;" + }, + { + "nr": "6", + "text": "Not with eyeservice, as menpleasers; but as the servants of Christ, doing the will of God from the heart;" + }, + { + "nr": "7", + "text": "With good will doing service, as to the Lord, and not to men:" + }, + { + "nr": "8", + "text": "Knowing that whatsoever good thing any man doeth, the same shall he receive of the Lord, whether he be bond or free." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5-8", + "version": "kjv" +} diff --git a/scripture/kjv/07/05/24/scripture.md b/scripture/kjv/07/05/24/scripture.md new file mode 100644 index 00000000..82a2c565 --- /dev/null +++ b/scripture/kjv/07/05/24/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 6:5-8** + +5 Servants, be obedient to them that are your masters according to the flesh, with fear and trembling, in singleness of your heart, as unto Christ; 6 Not with eyeservice, as menpleasers; but as the servants of Christ, doing the will of God from the heart; 7 With good will doing service, as to the Lord, and not to men: 8 Knowing that whatsoever good thing any man doeth, the same shall he receive of the Lord, whether he be bond or free. + +[Friday 05-July, 2024](https://getbible.life/kjv/Ephesians/6/5-8) diff --git a/scripture/kjv/07/05/24/scripture.tg b/scripture/kjv/07/05/24/scripture.tg new file mode 100644 index 00000000..006c40e6 --- /dev/null +++ b/scripture/kjv/07/05/24/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 6:5-8 +5 Servants, be obedient to them that are your masters according to the flesh, with fear and trembling, in singleness of your heart, as unto Christ; 6 Not with eyeservice, as menpleasers; but as the servants of Christ, doing the will of God from the heart; 7 With good will doing service, as to the Lord, and not to men: 8 Knowing that whatsoever good thing any man doeth, the same shall he receive of the Lord, whether he be bond or free. + +Friday 05-July, 2024 diff --git a/scripture/kjv/07/05/24/scripture.tg.id b/scripture/kjv/07/05/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/05/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/05/24/scripture.today b/scripture/kjv/07/05/24/scripture.today new file mode 100644 index 00000000..deb483ac --- /dev/null +++ b/scripture/kjv/07/05/24/scripture.today @@ -0,0 +1 @@ +49 6:5-8 diff --git a/scripture/kjv/07/05/25/scripture.html b/scripture/kjv/07/05/25/scripture.html new file mode 100644 index 00000000..4634dbcd --- /dev/null +++ b/scripture/kjv/07/05/25/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 3:7
+7 So then neither is he that planteth any thing, neither he that watereth; but God that giveth the increase.

+Saturday 05-July, 2025 diff --git a/scripture/kjv/07/05/25/scripture.json b/scripture/kjv/07/05/25/scripture.json new file mode 100644 index 00000000..35362c51 --- /dev/null +++ b/scripture/kjv/07/05/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "3", + "date": "Saturday 05-July, 2025", + "getbible": "https://getbible.life/kjv/1 Corinthians/3/7", + "name": "1 Corinthians 3:7", + "scripture": [ + { + "nr": "7", + "text": "So then neither is he that planteth any thing, neither he that watereth; but God that giveth the increase." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7", + "version": "kjv" +} diff --git a/scripture/kjv/07/05/25/scripture.md b/scripture/kjv/07/05/25/scripture.md new file mode 100644 index 00000000..37a20199 --- /dev/null +++ b/scripture/kjv/07/05/25/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 3:7** + +7 So then neither is he that planteth any thing, neither he that watereth; but God that giveth the increase. + +[Saturday 05-July, 2025](https://getbible.life/kjv/1 Corinthians/3/7) diff --git a/scripture/kjv/07/05/25/scripture.tg b/scripture/kjv/07/05/25/scripture.tg new file mode 100644 index 00000000..f3f73a98 --- /dev/null +++ b/scripture/kjv/07/05/25/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 3:7 +7 So then neither is he that planteth any thing, neither he that watereth; but God that giveth the increase. + +Saturday 05-July, 2025 diff --git a/scripture/kjv/07/05/25/scripture.tg.id b/scripture/kjv/07/05/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/05/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/05/25/scripture.today b/scripture/kjv/07/05/25/scripture.today new file mode 100644 index 00000000..d4e15e64 --- /dev/null +++ b/scripture/kjv/07/05/25/scripture.today @@ -0,0 +1 @@ +46 3:7 diff --git a/scripture/kjv/07/06/23/scripture.html b/scripture/kjv/07/06/23/scripture.html new file mode 100644 index 00000000..bd855275 --- /dev/null +++ b/scripture/kjv/07/06/23/scripture.html @@ -0,0 +1,3 @@ +John 15:14
+14 Ye are my friends, if ye do whatsoever I command you.

+Thursday 06-July, 2023 diff --git a/scripture/kjv/07/06/23/scripture.json b/scripture/kjv/07/06/23/scripture.json new file mode 100644 index 00000000..54d159c4 --- /dev/null +++ b/scripture/kjv/07/06/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Thursday 06-July, 2023", + "name": "John 15:14", + "scripture": [ + { + "nr": "14", + "text": "Ye are my friends, if ye do whatsoever I command you." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/07/06/23/scripture.md b/scripture/kjv/07/06/23/scripture.md new file mode 100644 index 00000000..bb80d41c --- /dev/null +++ b/scripture/kjv/07/06/23/scripture.md @@ -0,0 +1,5 @@ +**John 15:14** + +14 Ye are my friends, if ye do whatsoever I command you. + +[Thursday 06-July, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/07/06/23/scripture.tg b/scripture/kjv/07/06/23/scripture.tg new file mode 100644 index 00000000..04a68174 --- /dev/null +++ b/scripture/kjv/07/06/23/scripture.tg @@ -0,0 +1,4 @@ +John 15:14 +14 Ye are my friends, if ye do whatsoever I command you. + +Thursday 06-July, 2023 diff --git a/scripture/kjv/07/06/23/scripture.tg.id b/scripture/kjv/07/06/23/scripture.tg.id new file mode 100644 index 00000000..7d802a3e --- /dev/null +++ b/scripture/kjv/07/06/23/scripture.tg.id @@ -0,0 +1 @@ +1002 diff --git a/scripture/kjv/07/06/23/scripture.today b/scripture/kjv/07/06/23/scripture.today new file mode 100644 index 00000000..7b659b68 --- /dev/null +++ b/scripture/kjv/07/06/23/scripture.today @@ -0,0 +1 @@ +43 15:14 diff --git a/scripture/kjv/07/06/24/scripture.html b/scripture/kjv/07/06/24/scripture.html new file mode 100644 index 00000000..b9312f7f --- /dev/null +++ b/scripture/kjv/07/06/24/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 15:10
+10 But by the grace of God I am what I am: and his grace which was bestowed upon me was not in vain; but I laboured more abundantly than they all: yet not I, but the grace of God which was with me.

+Saturday 06-July, 2024 diff --git a/scripture/kjv/07/06/24/scripture.json b/scripture/kjv/07/06/24/scripture.json new file mode 100644 index 00000000..a0cc08e0 --- /dev/null +++ b/scripture/kjv/07/06/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "15", + "date": "Saturday 06-July, 2024", + "getbible": "https://getbible.life/kjv/1 Corinthians/15/10", + "name": "1 Corinthians 15:10", + "scripture": [ + { + "nr": "10", + "text": "But by the grace of God I am what I am: and his grace which was bestowed upon me was not in vain; but I laboured more abundantly than they all: yet not I, but the grace of God which was with me." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/07/06/24/scripture.md b/scripture/kjv/07/06/24/scripture.md new file mode 100644 index 00000000..edb8951b --- /dev/null +++ b/scripture/kjv/07/06/24/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 15:10** + +10 But by the grace of God I am what I am: and his grace which was bestowed upon me was not in vain; but I laboured more abundantly than they all: yet not I, but the grace of God which was with me. + +[Saturday 06-July, 2024](https://getbible.life/kjv/1 Corinthians/15/10) diff --git a/scripture/kjv/07/06/24/scripture.tg b/scripture/kjv/07/06/24/scripture.tg new file mode 100644 index 00000000..7e578e12 --- /dev/null +++ b/scripture/kjv/07/06/24/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 15:10 +10 But by the grace of God I am what I am: and his grace which was bestowed upon me was not in vain; but I laboured more abundantly than they all: yet not I, but the grace of God which was with me. + +Saturday 06-July, 2024 diff --git a/scripture/kjv/07/06/24/scripture.tg.id b/scripture/kjv/07/06/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/06/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/06/24/scripture.today b/scripture/kjv/07/06/24/scripture.today new file mode 100644 index 00000000..6e0e6568 --- /dev/null +++ b/scripture/kjv/07/06/24/scripture.today @@ -0,0 +1 @@ +46 15:10 diff --git a/scripture/kjv/07/06/25/scripture.html b/scripture/kjv/07/06/25/scripture.html new file mode 100644 index 00000000..9b631a32 --- /dev/null +++ b/scripture/kjv/07/06/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 147:10-11
+10 He delighteth not in the strength of the horse: he taketh not pleasure in the legs of a man. 11 The Lord taketh pleasure in them that fear him, in those that hope in his mercy.

+Sunday 06-July, 2025 diff --git a/scripture/kjv/07/06/25/scripture.json b/scripture/kjv/07/06/25/scripture.json new file mode 100644 index 00000000..feec8014 --- /dev/null +++ b/scripture/kjv/07/06/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Psalms", + "chapter": "147", + "date": "Sunday 06-July, 2025", + "getbible": "https://getbible.life/kjv/Psalms/147/10-11", + "name": "Psalms 147:10-11", + "scripture": [ + { + "nr": "10", + "text": "He delighteth not in the strength of the horse: he taketh not pleasure in the legs of a man." + }, + { + "nr": "11", + "text": "The Lord taketh pleasure in them that fear him, in those that hope in his mercy." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10-11", + "version": "kjv" +} diff --git a/scripture/kjv/07/06/25/scripture.md b/scripture/kjv/07/06/25/scripture.md new file mode 100644 index 00000000..b95b4a0b --- /dev/null +++ b/scripture/kjv/07/06/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 147:10-11** + +10 He delighteth not in the strength of the horse: he taketh not pleasure in the legs of a man. 11 The Lord taketh pleasure in them that fear him, in those that hope in his mercy. + +[Sunday 06-July, 2025](https://getbible.life/kjv/Psalms/147/10-11) diff --git a/scripture/kjv/07/06/25/scripture.tg b/scripture/kjv/07/06/25/scripture.tg new file mode 100644 index 00000000..c53ca9b9 --- /dev/null +++ b/scripture/kjv/07/06/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 147:10-11 +10 He delighteth not in the strength of the horse: he taketh not pleasure in the legs of a man. 11 The Lord taketh pleasure in them that fear him, in those that hope in his mercy. + +Sunday 06-July, 2025 diff --git a/scripture/kjv/07/06/25/scripture.tg.id b/scripture/kjv/07/06/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/06/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/06/25/scripture.today b/scripture/kjv/07/06/25/scripture.today new file mode 100644 index 00000000..61492e82 --- /dev/null +++ b/scripture/kjv/07/06/25/scripture.today @@ -0,0 +1 @@ +19 147:10-11 diff --git a/scripture/kjv/07/07/23/scripture.html b/scripture/kjv/07/07/23/scripture.html new file mode 100644 index 00000000..9ee9f285 --- /dev/null +++ b/scripture/kjv/07/07/23/scripture.html @@ -0,0 +1,3 @@ +Luke 16:19-31
+19 There was a certain rich man, which was clothed in purple and fine linen, and fared sumptuously every day: 20 And there was a certain beggar named Lazarus, which was laid at his gate, full of sores, 21 And desiring to be fed with the crumbs which fell from the rich man’s table: moreover the dogs came and licked his sores. 22 And it came to pass, that the beggar died, and was carried by the angels into Abraham’s bosom: the rich man also died, and was buried; 23 And in hell he lift up his eyes, being in torments, and seeth Abraham afar off, and Lazarus in his bosom. 24 And he cried and said, Father Abraham, have mercy on me, and send Lazarus, that he may dip the tip of his finger in water, and cool my tongue; for I am tormented in this flame. 25 But Abraham said, Son, remember that thou in thy lifetime receivedst thy good things, and likewise Lazarus evil things: but now he is comforted, and thou art tormented. 26 And beside all this, between us and you there is a great gulf fixed: so that they which would pass from hence to you cannot; neither can they pass to us, that would come from thence. 27 Then he said, I pray thee therefore, father, that thou wouldest send him to my father’s house: 28 For I have five brethren; that he may testify unto them, lest they also come into this place of torment. 29 Abraham saith unto him, They have Moses and the prophets; let them hear them. 30 And he said, Nay, father Abraham: but if one went unto them from the dead, they will repent. 31 And he said unto him, If they hear not Moses and the prophets, neither will they be persuaded, though one rose from the dead.

+Friday 07-July, 2023 diff --git a/scripture/kjv/07/07/23/scripture.json b/scripture/kjv/07/07/23/scripture.json new file mode 100644 index 00000000..d402b65f --- /dev/null +++ b/scripture/kjv/07/07/23/scripture.json @@ -0,0 +1,61 @@ +{ + "date": "Friday 07-July, 2023", + "name": "Luke 16:19-31", + "scripture": [ + { + "nr": "19", + "text": "There was a certain rich man, which was clothed in purple and fine linen, and fared sumptuously every day:" + }, + { + "nr": "20", + "text": "And there was a certain beggar named Lazarus, which was laid at his gate, full of sores," + }, + { + "nr": "21", + "text": "And desiring to be fed with the crumbs which fell from the rich man’s table: moreover the dogs came and licked his sores." + }, + { + "nr": "22", + "text": "And it came to pass, that the beggar died, and was carried by the angels into Abraham’s bosom: the rich man also died, and was buried;" + }, + { + "nr": "23", + "text": "And in hell he lift up his eyes, being in torments, and seeth Abraham afar off, and Lazarus in his bosom." + }, + { + "nr": "24", + "text": "And he cried and said, Father Abraham, have mercy on me, and send Lazarus, that he may dip the tip of his finger in water, and cool my tongue; for I am tormented in this flame." + }, + { + "nr": "25", + "text": "But Abraham said, Son, remember that thou in thy lifetime receivedst thy good things, and likewise Lazarus evil things: but now he is comforted, and thou art tormented." + }, + { + "nr": "26", + "text": "And beside all this, between us and you there is a great gulf fixed: so that they which would pass from hence to you cannot; neither can they pass to us, that would come from thence." + }, + { + "nr": "27", + "text": "Then he said, I pray thee therefore, father, that thou wouldest send him to my father’s house:" + }, + { + "nr": "28", + "text": "For I have five brethren; that he may testify unto them, lest they also come into this place of torment." + }, + { + "nr": "29", + "text": "Abraham saith unto him, They have Moses and the prophets; let them hear them." + }, + { + "nr": "30", + "text": "And he said, Nay, father Abraham: but if one went unto them from the dead, they will repent." + }, + { + "nr": "31", + "text": "And he said unto him, If they hear not Moses and the prophets, neither will they be persuaded, though one rose from the dead. " + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/07/07/23/scripture.md b/scripture/kjv/07/07/23/scripture.md new file mode 100644 index 00000000..f42bc887 --- /dev/null +++ b/scripture/kjv/07/07/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 16:19-31** + +19 There was a certain rich man, which was clothed in purple and fine linen, and fared sumptuously every day: 20 And there was a certain beggar named Lazarus, which was laid at his gate, full of sores, 21 And desiring to be fed with the crumbs which fell from the rich man’s table: moreover the dogs came and licked his sores. 22 And it came to pass, that the beggar died, and was carried by the angels into Abraham’s bosom: the rich man also died, and was buried; 23 And in hell he lift up his eyes, being in torments, and seeth Abraham afar off, and Lazarus in his bosom. 24 And he cried and said, Father Abraham, have mercy on me, and send Lazarus, that he may dip the tip of his finger in water, and cool my tongue; for I am tormented in this flame. 25 But Abraham said, Son, remember that thou in thy lifetime receivedst thy good things, and likewise Lazarus evil things: but now he is comforted, and thou art tormented. 26 And beside all this, between us and you there is a great gulf fixed: so that they which would pass from hence to you cannot; neither can they pass to us, that would come from thence. 27 Then he said, I pray thee therefore, father, that thou wouldest send him to my father’s house: 28 For I have five brethren; that he may testify unto them, lest they also come into this place of torment. 29 Abraham saith unto him, They have Moses and the prophets; let them hear them. 30 And he said, Nay, father Abraham: but if one went unto them from the dead, they will repent. 31 And he said unto him, If they hear not Moses and the prophets, neither will they be persuaded, though one rose from the dead. + +[Friday 07-July, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/07/07/23/scripture.tg b/scripture/kjv/07/07/23/scripture.tg new file mode 100644 index 00000000..3fa1a6a8 --- /dev/null +++ b/scripture/kjv/07/07/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 16:19-31 +19 There was a certain rich man, which was clothed in purple and fine linen, and fared sumptuously every day: 20 And there was a certain beggar named Lazarus, which was laid at his gate, full of sores, 21 And desiring to be fed with the crumbs which fell from the rich man’s table: moreover the dogs came and licked his sores. 22 And it came to pass, that the beggar died, and was carried by the angels into Abraham’s bosom: the rich man also died, and was buried; 23 And in hell he lift up his eyes, being in torments, and seeth Abraham afar off, and Lazarus in his bosom. 24 And he cried and said, Father Abraham, have mercy on me, and send Lazarus, that he may dip the tip of his finger in water, and cool my tongue; for I am tormented in this flame. 25 But Abraham said, Son, remember that thou in thy lifetime receivedst thy good things, and likewise Lazarus evil things: but now he is comforted, and thou art tormented. 26 And beside all this, between us and you there is a great gulf fixed: so that they which would pass from hence to you cannot; neither can they pass to us, that would come from thence. 27 Then he said, I pray thee therefore, father, that thou wouldest send him to my father’s house: 28 For I have five brethren; that he may testify unto them, lest they also come into this place of torment. 29 Abraham saith unto him, They have Moses and the prophets; let them hear them. 30 And he said, Nay, father Abraham: but if one went unto them from the dead, they will repent. 31 And he said unto him, If they hear not Moses and the prophets, neither will they be persuaded, though one rose from the dead. + +Friday 07-July, 2023 diff --git a/scripture/kjv/07/07/23/scripture.tg.id b/scripture/kjv/07/07/23/scripture.tg.id new file mode 100644 index 00000000..baccd039 --- /dev/null +++ b/scripture/kjv/07/07/23/scripture.tg.id @@ -0,0 +1 @@ +1003 diff --git a/scripture/kjv/07/07/23/scripture.today b/scripture/kjv/07/07/23/scripture.today new file mode 100644 index 00000000..c0e6addf --- /dev/null +++ b/scripture/kjv/07/07/23/scripture.today @@ -0,0 +1 @@ +42 16:19-31 diff --git a/scripture/kjv/07/07/24/scripture.html b/scripture/kjv/07/07/24/scripture.html new file mode 100644 index 00000000..b607445f --- /dev/null +++ b/scripture/kjv/07/07/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 68:20
+20 He that is our God is the God of salvation; and unto God the Lord belong the issues from death.

+Sunday 07-July, 2024 diff --git a/scripture/kjv/07/07/24/scripture.json b/scripture/kjv/07/07/24/scripture.json new file mode 100644 index 00000000..b0dc595c --- /dev/null +++ b/scripture/kjv/07/07/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "68", + "date": "Sunday 07-July, 2024", + "getbible": "https://getbible.life/kjv/Psalms/68/20", + "name": "Psalms 68:20", + "scripture": [ + { + "nr": "20", + "text": "He that is our God is the God of salvation; and unto God the Lord belong the issues from death." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20", + "version": "kjv" +} diff --git a/scripture/kjv/07/07/24/scripture.md b/scripture/kjv/07/07/24/scripture.md new file mode 100644 index 00000000..8ee3d46d --- /dev/null +++ b/scripture/kjv/07/07/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 68:20** + +20 He that is our God is the God of salvation; and unto God the Lord belong the issues from death. + +[Sunday 07-July, 2024](https://getbible.life/kjv/Psalms/68/20) diff --git a/scripture/kjv/07/07/24/scripture.tg b/scripture/kjv/07/07/24/scripture.tg new file mode 100644 index 00000000..bc5acf44 --- /dev/null +++ b/scripture/kjv/07/07/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 68:20 +20 He that is our God is the God of salvation; and unto God the Lord belong the issues from death. + +Sunday 07-July, 2024 diff --git a/scripture/kjv/07/07/24/scripture.tg.id b/scripture/kjv/07/07/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/07/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/07/24/scripture.today b/scripture/kjv/07/07/24/scripture.today new file mode 100644 index 00000000..c92dbade --- /dev/null +++ b/scripture/kjv/07/07/24/scripture.today @@ -0,0 +1 @@ +19 68:20 diff --git a/scripture/kjv/07/07/25/scripture.html b/scripture/kjv/07/07/25/scripture.html new file mode 100644 index 00000000..9a49348f --- /dev/null +++ b/scripture/kjv/07/07/25/scripture.html @@ -0,0 +1,3 @@ +Obadiah 1:15
+15 For the day of the Lord is near upon all the heathen: as thou hast done, it shall be done unto thee: thy reward shall return upon thine own head.

+Monday 07-July, 2025 diff --git a/scripture/kjv/07/07/25/scripture.json b/scripture/kjv/07/07/25/scripture.json new file mode 100644 index 00000000..2cbd9f57 --- /dev/null +++ b/scripture/kjv/07/07/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Obadiah", + "chapter": "1", + "date": "Monday 07-July, 2025", + "getbible": "https://getbible.life/kjv/Obadiah/1/15", + "name": "Obadiah 1:15", + "scripture": [ + { + "nr": "15", + "text": "For the day of the Lord is near upon all the heathen: as thou hast done, it shall be done unto thee: thy reward shall return upon thine own head." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15", + "version": "kjv" +} diff --git a/scripture/kjv/07/07/25/scripture.md b/scripture/kjv/07/07/25/scripture.md new file mode 100644 index 00000000..110e10d6 --- /dev/null +++ b/scripture/kjv/07/07/25/scripture.md @@ -0,0 +1,5 @@ +**Obadiah 1:15** + +15 For the day of the Lord is near upon all the heathen: as thou hast done, it shall be done unto thee: thy reward shall return upon thine own head. + +[Monday 07-July, 2025](https://getbible.life/kjv/Obadiah/1/15) diff --git a/scripture/kjv/07/07/25/scripture.tg b/scripture/kjv/07/07/25/scripture.tg new file mode 100644 index 00000000..cb73484b --- /dev/null +++ b/scripture/kjv/07/07/25/scripture.tg @@ -0,0 +1,4 @@ +Obadiah 1:15 +15 For the day of the Lord is near upon all the heathen: as thou hast done, it shall be done unto thee: thy reward shall return upon thine own head. + +Monday 07-July, 2025 diff --git a/scripture/kjv/07/07/25/scripture.tg.id b/scripture/kjv/07/07/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/07/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/07/25/scripture.today b/scripture/kjv/07/07/25/scripture.today new file mode 100644 index 00000000..3e8f4d9f --- /dev/null +++ b/scripture/kjv/07/07/25/scripture.today @@ -0,0 +1 @@ +31 1:15 diff --git a/scripture/kjv/07/08/23/scripture.html b/scripture/kjv/07/08/23/scripture.html new file mode 100644 index 00000000..61263ce6 --- /dev/null +++ b/scripture/kjv/07/08/23/scripture.html @@ -0,0 +1,3 @@ +Leviticus 21:16-22
+16 And the Lord spake unto Moses, saying, 17 Speak unto Aaron, saying, Whosoever he be of thy seed in their generations that hath any blemish, let him not approach to offer the bread of his God. 18 For whatsoever man he be that hath a blemish, he shall not approach: a blind man, or a lame, or he that hath a flat nose, or any thing superfluous, 19 Or a man that is brokenfooted, or brokenhanded, 20 Or crookbackt, or a dwarf, or that hath a blemish in his eye, or be scurvy, or scabbed, or hath his stones broken; 21 No man that hath a blemish of the seed of Aaron the priest shall come nigh to offer the offerings of the Lord made by fire: he hath a blemish; he shall not come nigh to offer the bread of his God. 22 He shall eat the bread of his God, both of the most holy, and of the holy.

+Saturday 08-July, 2023 diff --git a/scripture/kjv/07/08/23/scripture.json b/scripture/kjv/07/08/23/scripture.json new file mode 100644 index 00000000..a789e99c --- /dev/null +++ b/scripture/kjv/07/08/23/scripture.json @@ -0,0 +1,37 @@ +{ + "date": "Saturday 08-July, 2023", + "name": "Leviticus 21:16-22", + "scripture": [ + { + "nr": "16", + "text": "And the Lord spake unto Moses, saying," + }, + { + "nr": "17", + "text": "Speak unto Aaron, saying, Whosoever he be of thy seed in their generations that hath any blemish, let him not approach to offer the bread of his God." + }, + { + "nr": "18", + "text": "For whatsoever man he be that hath a blemish, he shall not approach: a blind man, or a lame, or he that hath a flat nose, or any thing superfluous," + }, + { + "nr": "19", + "text": "Or a man that is brokenfooted, or brokenhanded," + }, + { + "nr": "20", + "text": "Or crookbackt, or a dwarf, or that hath a blemish in his eye, or be scurvy, or scabbed, or hath his stones broken;" + }, + { + "nr": "21", + "text": "No man that hath a blemish of the seed of Aaron the priest shall come nigh to offer the offerings of the Lord made by fire: he hath a blemish; he shall not come nigh to offer the bread of his God." + }, + { + "nr": "22", + "text": "He shall eat the bread of his God, both of the most holy, and of the holy." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/07/08/23/scripture.md b/scripture/kjv/07/08/23/scripture.md new file mode 100644 index 00000000..1cebba80 --- /dev/null +++ b/scripture/kjv/07/08/23/scripture.md @@ -0,0 +1,5 @@ +**Leviticus 21:16-22** + +16 And the Lord spake unto Moses, saying, 17 Speak unto Aaron, saying, Whosoever he be of thy seed in their generations that hath any blemish, let him not approach to offer the bread of his God. 18 For whatsoever man he be that hath a blemish, he shall not approach: a blind man, or a lame, or he that hath a flat nose, or any thing superfluous, 19 Or a man that is brokenfooted, or brokenhanded, 20 Or crookbackt, or a dwarf, or that hath a blemish in his eye, or be scurvy, or scabbed, or hath his stones broken; 21 No man that hath a blemish of the seed of Aaron the priest shall come nigh to offer the offerings of the Lord made by fire: he hath a blemish; he shall not come nigh to offer the bread of his God. 22 He shall eat the bread of his God, both of the most holy, and of the holy. + +[Saturday 08-July, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/07/08/23/scripture.tg b/scripture/kjv/07/08/23/scripture.tg new file mode 100644 index 00000000..0c104713 --- /dev/null +++ b/scripture/kjv/07/08/23/scripture.tg @@ -0,0 +1,4 @@ +Leviticus 21:16-22 +16 And the Lord spake unto Moses, saying, 17 Speak unto Aaron, saying, Whosoever he be of thy seed in their generations that hath any blemish, let him not approach to offer the bread of his God. 18 For whatsoever man he be that hath a blemish, he shall not approach: a blind man, or a lame, or he that hath a flat nose, or any thing superfluous, 19 Or a man that is brokenfooted, or brokenhanded, 20 Or crookbackt, or a dwarf, or that hath a blemish in his eye, or be scurvy, or scabbed, or hath his stones broken; 21 No man that hath a blemish of the seed of Aaron the priest shall come nigh to offer the offerings of the Lord made by fire: he hath a blemish; he shall not come nigh to offer the bread of his God. 22 He shall eat the bread of his God, both of the most holy, and of the holy. + +Saturday 08-July, 2023 diff --git a/scripture/kjv/07/08/23/scripture.tg.id b/scripture/kjv/07/08/23/scripture.tg.id new file mode 100644 index 00000000..59c11226 --- /dev/null +++ b/scripture/kjv/07/08/23/scripture.tg.id @@ -0,0 +1 @@ +1004 diff --git a/scripture/kjv/07/08/23/scripture.today b/scripture/kjv/07/08/23/scripture.today new file mode 100644 index 00000000..2a940eb0 --- /dev/null +++ b/scripture/kjv/07/08/23/scripture.today @@ -0,0 +1 @@ +3 21:16-22 diff --git a/scripture/kjv/07/08/24/scripture.html b/scripture/kjv/07/08/24/scripture.html new file mode 100644 index 00000000..7e38a313 --- /dev/null +++ b/scripture/kjv/07/08/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 19:20
+20 Hear counsel, and receive instruction, that thou mayest be wise in thy latter end.

+Monday 08-July, 2024 diff --git a/scripture/kjv/07/08/24/scripture.json b/scripture/kjv/07/08/24/scripture.json new file mode 100644 index 00000000..780f34d3 --- /dev/null +++ b/scripture/kjv/07/08/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "19", + "date": "Monday 08-July, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/19/20", + "name": "Proverbs 19:20", + "scripture": [ + { + "nr": "20", + "text": "Hear counsel, and receive instruction, that thou mayest be wise in thy latter end." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20", + "version": "kjv" +} diff --git a/scripture/kjv/07/08/24/scripture.md b/scripture/kjv/07/08/24/scripture.md new file mode 100644 index 00000000..8832f62a --- /dev/null +++ b/scripture/kjv/07/08/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 19:20** + +20 Hear counsel, and receive instruction, that thou mayest be wise in thy latter end. + +[Monday 08-July, 2024](https://getbible.life/kjv/Proverbs/19/20) diff --git a/scripture/kjv/07/08/24/scripture.tg b/scripture/kjv/07/08/24/scripture.tg new file mode 100644 index 00000000..97bec126 --- /dev/null +++ b/scripture/kjv/07/08/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 19:20 +20 Hear counsel, and receive instruction, that thou mayest be wise in thy latter end. + +Monday 08-July, 2024 diff --git a/scripture/kjv/07/08/24/scripture.tg.id b/scripture/kjv/07/08/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/08/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/08/24/scripture.today b/scripture/kjv/07/08/24/scripture.today new file mode 100644 index 00000000..2ec568c6 --- /dev/null +++ b/scripture/kjv/07/08/24/scripture.today @@ -0,0 +1 @@ +20 19:20 diff --git a/scripture/kjv/07/08/25/scripture.html b/scripture/kjv/07/08/25/scripture.html new file mode 100644 index 00000000..05a157e1 --- /dev/null +++ b/scripture/kjv/07/08/25/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 7:16
+16 I rejoice therefore that I have confidence in you in all things.

+Tuesday 08-July, 2025 diff --git a/scripture/kjv/07/08/25/scripture.json b/scripture/kjv/07/08/25/scripture.json new file mode 100644 index 00000000..1deba38d --- /dev/null +++ b/scripture/kjv/07/08/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "7", + "date": "Tuesday 08-July, 2025", + "getbible": "https://getbible.life/kjv/2 Corinthians/7/16", + "name": "2 Corinthians 7:16", + "scripture": [ + { + "nr": "16", + "text": "I rejoice therefore that I have confidence in you in all things. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16", + "version": "kjv" +} diff --git a/scripture/kjv/07/08/25/scripture.md b/scripture/kjv/07/08/25/scripture.md new file mode 100644 index 00000000..917f212d --- /dev/null +++ b/scripture/kjv/07/08/25/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 7:16** + +16 I rejoice therefore that I have confidence in you in all things. + +[Tuesday 08-July, 2025](https://getbible.life/kjv/2 Corinthians/7/16) diff --git a/scripture/kjv/07/08/25/scripture.tg b/scripture/kjv/07/08/25/scripture.tg new file mode 100644 index 00000000..81ed05eb --- /dev/null +++ b/scripture/kjv/07/08/25/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 7:16 +16 I rejoice therefore that I have confidence in you in all things. + +Tuesday 08-July, 2025 diff --git a/scripture/kjv/07/08/25/scripture.tg.id b/scripture/kjv/07/08/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/08/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/08/25/scripture.today b/scripture/kjv/07/08/25/scripture.today new file mode 100644 index 00000000..b1610eb3 --- /dev/null +++ b/scripture/kjv/07/08/25/scripture.today @@ -0,0 +1 @@ +47 7:16 diff --git a/scripture/kjv/07/09/23/scripture.html b/scripture/kjv/07/09/23/scripture.html new file mode 100644 index 00000000..754e40a8 --- /dev/null +++ b/scripture/kjv/07/09/23/scripture.html @@ -0,0 +1,3 @@ +Luke 1:16
+16 And many of the children of Israel shall he turn to the Lord their God.

+Sunday 09-July, 2023 diff --git a/scripture/kjv/07/09/23/scripture.json b/scripture/kjv/07/09/23/scripture.json new file mode 100644 index 00000000..435116fe --- /dev/null +++ b/scripture/kjv/07/09/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Sunday 09-July, 2023", + "name": "Luke 1:16", + "scripture": [ + { + "nr": "16", + "text": "And many of the children of Israel shall he turn to the Lord their God." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/07/09/23/scripture.md b/scripture/kjv/07/09/23/scripture.md new file mode 100644 index 00000000..04bd2325 --- /dev/null +++ b/scripture/kjv/07/09/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 1:16** + +16 And many of the children of Israel shall he turn to the Lord their God. + +[Sunday 09-July, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/07/09/23/scripture.tg b/scripture/kjv/07/09/23/scripture.tg new file mode 100644 index 00000000..7363120b --- /dev/null +++ b/scripture/kjv/07/09/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 1:16 +16 And many of the children of Israel shall he turn to the Lord their God. + +Sunday 09-July, 2023 diff --git a/scripture/kjv/07/09/23/scripture.tg.id b/scripture/kjv/07/09/23/scripture.tg.id new file mode 100644 index 00000000..49bc2728 --- /dev/null +++ b/scripture/kjv/07/09/23/scripture.tg.id @@ -0,0 +1 @@ +1005 diff --git a/scripture/kjv/07/09/23/scripture.today b/scripture/kjv/07/09/23/scripture.today new file mode 100644 index 00000000..c2d6e1e4 --- /dev/null +++ b/scripture/kjv/07/09/23/scripture.today @@ -0,0 +1 @@ +42 1:16 diff --git a/scripture/kjv/07/09/24/scripture.html b/scripture/kjv/07/09/24/scripture.html new file mode 100644 index 00000000..93334f4f --- /dev/null +++ b/scripture/kjv/07/09/24/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 33:30-33
+30 Also, thou son of man, the children of thy people still are talking against thee by the walls and in the doors of the houses, and speak one to another, every one to his brother, saying, Come, I pray you, and hear what is the word that cometh forth from the Lord. 31 And they come unto thee as the people cometh, and they sit before thee as my people, and they hear thy words, but they will not do them: for with their mouth they shew much love, but their heart goeth after their covetousness. 32 And, lo, thou art unto them as a very lovely song of one that hath a pleasant voice, and can play well on an instrument: for they hear thy words, but they do them not. 33 And when this cometh to pass, (lo, it will come,) then shall they know that a prophet hath been among them.

+Tuesday 09-July, 2024 diff --git a/scripture/kjv/07/09/24/scripture.json b/scripture/kjv/07/09/24/scripture.json new file mode 100644 index 00000000..11099a38 --- /dev/null +++ b/scripture/kjv/07/09/24/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "Ezekiel", + "chapter": "33", + "date": "Tuesday 09-July, 2024", + "getbible": "https://getbible.life/kjv/Ezekiel/33/30-33", + "name": "Ezekiel 33:30-33", + "scripture": [ + { + "nr": "30", + "text": "Also, thou son of man, the children of thy people still are talking against thee by the walls and in the doors of the houses, and speak one to another, every one to his brother, saying, Come, I pray you, and hear what is the word that cometh forth from the Lord." + }, + { + "nr": "31", + "text": "And they come unto thee as the people cometh, and they sit before thee as my people, and they hear thy words, but they will not do them: for with their mouth they shew much love, but their heart goeth after their covetousness." + }, + { + "nr": "32", + "text": "And, lo, thou art unto them as a very lovely song of one that hath a pleasant voice, and can play well on an instrument: for they hear thy words, but they do them not." + }, + { + "nr": "33", + "text": "And when this cometh to pass, (lo, it will come,) then shall they know that a prophet hath been among them. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "30-33", + "version": "kjv" +} diff --git a/scripture/kjv/07/09/24/scripture.md b/scripture/kjv/07/09/24/scripture.md new file mode 100644 index 00000000..1c91cea9 --- /dev/null +++ b/scripture/kjv/07/09/24/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 33:30-33** + +30 Also, thou son of man, the children of thy people still are talking against thee by the walls and in the doors of the houses, and speak one to another, every one to his brother, saying, Come, I pray you, and hear what is the word that cometh forth from the Lord. 31 And they come unto thee as the people cometh, and they sit before thee as my people, and they hear thy words, but they will not do them: for with their mouth they shew much love, but their heart goeth after their covetousness. 32 And, lo, thou art unto them as a very lovely song of one that hath a pleasant voice, and can play well on an instrument: for they hear thy words, but they do them not. 33 And when this cometh to pass, (lo, it will come,) then shall they know that a prophet hath been among them. + +[Tuesday 09-July, 2024](https://getbible.life/kjv/Ezekiel/33/30-33) diff --git a/scripture/kjv/07/09/24/scripture.tg b/scripture/kjv/07/09/24/scripture.tg new file mode 100644 index 00000000..411fd494 --- /dev/null +++ b/scripture/kjv/07/09/24/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 33:30-33 +30 Also, thou son of man, the children of thy people still are talking against thee by the walls and in the doors of the houses, and speak one to another, every one to his brother, saying, Come, I pray you, and hear what is the word that cometh forth from the Lord. 31 And they come unto thee as the people cometh, and they sit before thee as my people, and they hear thy words, but they will not do them: for with their mouth they shew much love, but their heart goeth after their covetousness. 32 And, lo, thou art unto them as a very lovely song of one that hath a pleasant voice, and can play well on an instrument: for they hear thy words, but they do them not. 33 And when this cometh to pass, (lo, it will come,) then shall they know that a prophet hath been among them. + +Tuesday 09-July, 2024 diff --git a/scripture/kjv/07/09/24/scripture.tg.id b/scripture/kjv/07/09/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/09/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/09/24/scripture.today b/scripture/kjv/07/09/24/scripture.today new file mode 100644 index 00000000..8ee3cb19 --- /dev/null +++ b/scripture/kjv/07/09/24/scripture.today @@ -0,0 +1 @@ +26 33:30-33 diff --git a/scripture/kjv/07/09/25/scripture.html b/scripture/kjv/07/09/25/scripture.html new file mode 100644 index 00000000..a7eb1136 --- /dev/null +++ b/scripture/kjv/07/09/25/scripture.html @@ -0,0 +1,3 @@ +Matthew 23:28
+28 Even so ye also outwardly appear righteous unto men, but within ye are full of hypocrisy and iniquity.

+Wednesday 09-July, 2025 diff --git a/scripture/kjv/07/09/25/scripture.json b/scripture/kjv/07/09/25/scripture.json new file mode 100644 index 00000000..9dde001c --- /dev/null +++ b/scripture/kjv/07/09/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Matthew", + "chapter": "23", + "date": "Wednesday 09-July, 2025", + "getbible": "https://getbible.life/kjv/Matthew/23/28", + "name": "Matthew 23:28", + "scripture": [ + { + "nr": "28", + "text": "Even so ye also outwardly appear righteous unto men, but within ye are full of hypocrisy and iniquity." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "28", + "version": "kjv" +} diff --git a/scripture/kjv/07/09/25/scripture.md b/scripture/kjv/07/09/25/scripture.md new file mode 100644 index 00000000..fcf2ff7b --- /dev/null +++ b/scripture/kjv/07/09/25/scripture.md @@ -0,0 +1,5 @@ +**Matthew 23:28** + +28 Even so ye also outwardly appear righteous unto men, but within ye are full of hypocrisy and iniquity. + +[Wednesday 09-July, 2025](https://getbible.life/kjv/Matthew/23/28) diff --git a/scripture/kjv/07/09/25/scripture.tg b/scripture/kjv/07/09/25/scripture.tg new file mode 100644 index 00000000..b45adc4b --- /dev/null +++ b/scripture/kjv/07/09/25/scripture.tg @@ -0,0 +1,4 @@ +Matthew 23:28 +28 Even so ye also outwardly appear righteous unto men, but within ye are full of hypocrisy and iniquity. + +Wednesday 09-July, 2025 diff --git a/scripture/kjv/07/09/25/scripture.tg.id b/scripture/kjv/07/09/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/09/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/09/25/scripture.today b/scripture/kjv/07/09/25/scripture.today new file mode 100644 index 00000000..37d49fee --- /dev/null +++ b/scripture/kjv/07/09/25/scripture.today @@ -0,0 +1 @@ +40 23:28 diff --git a/scripture/kjv/07/10/23/scripture.html b/scripture/kjv/07/10/23/scripture.html new file mode 100644 index 00000000..4b95eb4f --- /dev/null +++ b/scripture/kjv/07/10/23/scripture.html @@ -0,0 +1,3 @@ +John 6:66-69
+66 From that time many of his disciples went back, and walked no more with him. 67 Then said Jesus unto the twelve, Will ye also go away? 68 Then Simon Peter answered him, Lord, to whom shall we go? thou hast the words of eternal life. 69 And we believe and are sure that thou art that Christ, the Son of the living God.

+Monday 10-July, 2023 diff --git a/scripture/kjv/07/10/23/scripture.json b/scripture/kjv/07/10/23/scripture.json new file mode 100644 index 00000000..b87e1ba3 --- /dev/null +++ b/scripture/kjv/07/10/23/scripture.json @@ -0,0 +1,25 @@ +{ + "date": "Monday 10-July, 2023", + "name": "John 6:66-69", + "scripture": [ + { + "nr": "66", + "text": "From that time many of his disciples went back, and walked no more with him." + }, + { + "nr": "67", + "text": "Then said Jesus unto the twelve, Will ye also go away?" + }, + { + "nr": "68", + "text": "Then Simon Peter answered him, Lord, to whom shall we go? thou hast the words of eternal life." + }, + { + "nr": "69", + "text": "And we believe and are sure that thou art that Christ, the Son of the living God." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/07/10/23/scripture.md b/scripture/kjv/07/10/23/scripture.md new file mode 100644 index 00000000..4b284eac --- /dev/null +++ b/scripture/kjv/07/10/23/scripture.md @@ -0,0 +1,5 @@ +**John 6:66-69** + +66 From that time many of his disciples went back, and walked no more with him. 67 Then said Jesus unto the twelve, Will ye also go away? 68 Then Simon Peter answered him, Lord, to whom shall we go? thou hast the words of eternal life. 69 And we believe and are sure that thou art that Christ, the Son of the living God. + +[Monday 10-July, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/07/10/23/scripture.tg b/scripture/kjv/07/10/23/scripture.tg new file mode 100644 index 00000000..77e7019e --- /dev/null +++ b/scripture/kjv/07/10/23/scripture.tg @@ -0,0 +1,4 @@ +John 6:66-69 +66 From that time many of his disciples went back, and walked no more with him. 67 Then said Jesus unto the twelve, Will ye also go away? 68 Then Simon Peter answered him, Lord, to whom shall we go? thou hast the words of eternal life. 69 And we believe and are sure that thou art that Christ, the Son of the living God. + +Monday 10-July, 2023 diff --git a/scripture/kjv/07/10/23/scripture.tg.id b/scripture/kjv/07/10/23/scripture.tg.id new file mode 100644 index 00000000..9540e56f --- /dev/null +++ b/scripture/kjv/07/10/23/scripture.tg.id @@ -0,0 +1 @@ +1006 diff --git a/scripture/kjv/07/10/23/scripture.today b/scripture/kjv/07/10/23/scripture.today new file mode 100644 index 00000000..2fcf6bc3 --- /dev/null +++ b/scripture/kjv/07/10/23/scripture.today @@ -0,0 +1 @@ +43 6:66-69 diff --git a/scripture/kjv/07/10/24/scripture.html b/scripture/kjv/07/10/24/scripture.html new file mode 100644 index 00000000..beb6d98a --- /dev/null +++ b/scripture/kjv/07/10/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 103:2-3
+2 Bless the Lord, O my soul, and forget not all his benefits: 3 Who forgiveth all thine iniquities; who healeth all thy diseases;

+Wednesday 10-July, 2024 diff --git a/scripture/kjv/07/10/24/scripture.json b/scripture/kjv/07/10/24/scripture.json new file mode 100644 index 00000000..c6f1fe70 --- /dev/null +++ b/scripture/kjv/07/10/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Psalms", + "chapter": "103", + "date": "Wednesday 10-July, 2024", + "getbible": "https://getbible.life/kjv/Psalms/103/2-3", + "name": "Psalms 103:2-3", + "scripture": [ + { + "nr": "2", + "text": "Bless the Lord, O my soul, and forget not all his benefits:" + }, + { + "nr": "3", + "text": "Who forgiveth all thine iniquities; who healeth all thy diseases;" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "2-3", + "version": "kjv" +} diff --git a/scripture/kjv/07/10/24/scripture.md b/scripture/kjv/07/10/24/scripture.md new file mode 100644 index 00000000..7911ca66 --- /dev/null +++ b/scripture/kjv/07/10/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 103:2-3** + +2 Bless the Lord, O my soul, and forget not all his benefits: 3 Who forgiveth all thine iniquities; who healeth all thy diseases; + +[Wednesday 10-July, 2024](https://getbible.life/kjv/Psalms/103/2-3) diff --git a/scripture/kjv/07/10/24/scripture.tg b/scripture/kjv/07/10/24/scripture.tg new file mode 100644 index 00000000..6a2df84a --- /dev/null +++ b/scripture/kjv/07/10/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 103:2-3 +2 Bless the Lord, O my soul, and forget not all his benefits: 3 Who forgiveth all thine iniquities; who healeth all thy diseases; + +Wednesday 10-July, 2024 diff --git a/scripture/kjv/07/10/24/scripture.tg.id b/scripture/kjv/07/10/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/10/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/10/24/scripture.today b/scripture/kjv/07/10/24/scripture.today new file mode 100644 index 00000000..a5699db1 --- /dev/null +++ b/scripture/kjv/07/10/24/scripture.today @@ -0,0 +1 @@ +19 103:2-3 diff --git a/scripture/kjv/07/10/25/scripture.html b/scripture/kjv/07/10/25/scripture.html new file mode 100644 index 00000000..25572a04 --- /dev/null +++ b/scripture/kjv/07/10/25/scripture.html @@ -0,0 +1,3 @@ +Leviticus 19:17-18
+17 Thou shalt not hate thy brother in thine heart: thou shalt in any wise rebuke thy neighbour, and not suffer sin upon him. 18 Thou shalt not avenge, nor bear any grudge against the children of thy people, but thou shalt love thy neighbour as thyself: I am the Lord.

+Thursday 10-July, 2025 diff --git a/scripture/kjv/07/10/25/scripture.json b/scripture/kjv/07/10/25/scripture.json new file mode 100644 index 00000000..1b9feed1 --- /dev/null +++ b/scripture/kjv/07/10/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Leviticus", + "chapter": "19", + "date": "Thursday 10-July, 2025", + "getbible": "https://getbible.life/kjv/Leviticus/19/17-18", + "name": "Leviticus 19:17-18", + "scripture": [ + { + "nr": "17", + "text": "Thou shalt not hate thy brother in thine heart: thou shalt in any wise rebuke thy neighbour, and not suffer sin upon him." + }, + { + "nr": "18", + "text": "Thou shalt not avenge, nor bear any grudge against the children of thy people, but thou shalt love thy neighbour as thyself: I am the Lord." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17-18", + "version": "kjv" +} diff --git a/scripture/kjv/07/10/25/scripture.md b/scripture/kjv/07/10/25/scripture.md new file mode 100644 index 00000000..f6a9a07b --- /dev/null +++ b/scripture/kjv/07/10/25/scripture.md @@ -0,0 +1,5 @@ +**Leviticus 19:17-18** + +17 Thou shalt not hate thy brother in thine heart: thou shalt in any wise rebuke thy neighbour, and not suffer sin upon him. 18 Thou shalt not avenge, nor bear any grudge against the children of thy people, but thou shalt love thy neighbour as thyself: I am the Lord. + +[Thursday 10-July, 2025](https://getbible.life/kjv/Leviticus/19/17-18) diff --git a/scripture/kjv/07/10/25/scripture.tg b/scripture/kjv/07/10/25/scripture.tg new file mode 100644 index 00000000..cb0fbb81 --- /dev/null +++ b/scripture/kjv/07/10/25/scripture.tg @@ -0,0 +1,4 @@ +Leviticus 19:17-18 +17 Thou shalt not hate thy brother in thine heart: thou shalt in any wise rebuke thy neighbour, and not suffer sin upon him. 18 Thou shalt not avenge, nor bear any grudge against the children of thy people, but thou shalt love thy neighbour as thyself: I am the Lord. + +Thursday 10-July, 2025 diff --git a/scripture/kjv/07/10/25/scripture.tg.id b/scripture/kjv/07/10/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/10/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/10/25/scripture.today b/scripture/kjv/07/10/25/scripture.today new file mode 100644 index 00000000..27db5d1f --- /dev/null +++ b/scripture/kjv/07/10/25/scripture.today @@ -0,0 +1 @@ +3 19:17-18 diff --git a/scripture/kjv/07/11/23/scripture.html b/scripture/kjv/07/11/23/scripture.html new file mode 100644 index 00000000..85922fe1 --- /dev/null +++ b/scripture/kjv/07/11/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 31:24
+24 Be of good courage, and he shall strengthen your heart, all ye that hope in the Lord.

+Tuesday 11-July, 2023 diff --git a/scripture/kjv/07/11/23/scripture.json b/scripture/kjv/07/11/23/scripture.json new file mode 100644 index 00000000..66219a25 --- /dev/null +++ b/scripture/kjv/07/11/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Tuesday 11-July, 2023", + "name": "Psalms 31:24", + "scripture": [ + { + "nr": "24", + "text": "Be of good courage, and he shall strengthen your heart, all ye that hope in the Lord. " + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/07/11/23/scripture.md b/scripture/kjv/07/11/23/scripture.md new file mode 100644 index 00000000..2fa336e0 --- /dev/null +++ b/scripture/kjv/07/11/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 31:24** + +24 Be of good courage, and he shall strengthen your heart, all ye that hope in the Lord. + +[Tuesday 11-July, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/07/11/23/scripture.tg b/scripture/kjv/07/11/23/scripture.tg new file mode 100644 index 00000000..3d49eb9a --- /dev/null +++ b/scripture/kjv/07/11/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 31:24 +24 Be of good courage, and he shall strengthen your heart, all ye that hope in the Lord. + +Tuesday 11-July, 2023 diff --git a/scripture/kjv/07/11/23/scripture.tg.id b/scripture/kjv/07/11/23/scripture.tg.id new file mode 100644 index 00000000..fb35a14c --- /dev/null +++ b/scripture/kjv/07/11/23/scripture.tg.id @@ -0,0 +1 @@ +1007 diff --git a/scripture/kjv/07/11/23/scripture.today b/scripture/kjv/07/11/23/scripture.today new file mode 100644 index 00000000..bd12ef44 --- /dev/null +++ b/scripture/kjv/07/11/23/scripture.today @@ -0,0 +1 @@ +19 31:24 diff --git a/scripture/kjv/07/11/24/scripture.html b/scripture/kjv/07/11/24/scripture.html new file mode 100644 index 00000000..43731850 --- /dev/null +++ b/scripture/kjv/07/11/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 27:15
+15 A continual dropping in a very rainy day and a contentious woman are alike.

+Thursday 11-July, 2024 diff --git a/scripture/kjv/07/11/24/scripture.json b/scripture/kjv/07/11/24/scripture.json new file mode 100644 index 00000000..4ef27a09 --- /dev/null +++ b/scripture/kjv/07/11/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "27", + "date": "Thursday 11-July, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/27/15", + "name": "Proverbs 27:15", + "scripture": [ + { + "nr": "15", + "text": "A continual dropping in a very rainy day and a contentious woman are alike." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15", + "version": "kjv" +} diff --git a/scripture/kjv/07/11/24/scripture.md b/scripture/kjv/07/11/24/scripture.md new file mode 100644 index 00000000..b678d8c6 --- /dev/null +++ b/scripture/kjv/07/11/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 27:15** + +15 A continual dropping in a very rainy day and a contentious woman are alike. + +[Thursday 11-July, 2024](https://getbible.life/kjv/Proverbs/27/15) diff --git a/scripture/kjv/07/11/24/scripture.tg b/scripture/kjv/07/11/24/scripture.tg new file mode 100644 index 00000000..c0c3cad2 --- /dev/null +++ b/scripture/kjv/07/11/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 27:15 +15 A continual dropping in a very rainy day and a contentious woman are alike. + +Thursday 11-July, 2024 diff --git a/scripture/kjv/07/11/24/scripture.tg.id b/scripture/kjv/07/11/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/11/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/11/24/scripture.today b/scripture/kjv/07/11/24/scripture.today new file mode 100644 index 00000000..2467809c --- /dev/null +++ b/scripture/kjv/07/11/24/scripture.today @@ -0,0 +1 @@ +20 27:15 diff --git a/scripture/kjv/07/11/25/scripture.html b/scripture/kjv/07/11/25/scripture.html new file mode 100644 index 00000000..7f5ef8b8 --- /dev/null +++ b/scripture/kjv/07/11/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 62:1-2
+1 Truly my soul waiteth upon God: from him cometh my salvation. 2 He only is my rock and my salvation; he is my defence; I shall not be greatly moved.

+Friday 11-July, 2025 diff --git a/scripture/kjv/07/11/25/scripture.json b/scripture/kjv/07/11/25/scripture.json new file mode 100644 index 00000000..9670f7b4 --- /dev/null +++ b/scripture/kjv/07/11/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Psalms", + "chapter": "62", + "date": "Friday 11-July, 2025", + "getbible": "https://getbible.life/kjv/Psalms/62/1-2", + "name": "Psalms 62:1-2", + "scripture": [ + { + "nr": "1", + "text": "Truly my soul waiteth upon God: from him cometh my salvation." + }, + { + "nr": "2", + "text": "He only is my rock and my salvation; he is my defence; I shall not be greatly moved." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-2", + "version": "kjv" +} diff --git a/scripture/kjv/07/11/25/scripture.md b/scripture/kjv/07/11/25/scripture.md new file mode 100644 index 00000000..918da2a7 --- /dev/null +++ b/scripture/kjv/07/11/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 62:1-2** + +1 Truly my soul waiteth upon God: from him cometh my salvation. 2 He only is my rock and my salvation; he is my defence; I shall not be greatly moved. + +[Friday 11-July, 2025](https://getbible.life/kjv/Psalms/62/1-2) diff --git a/scripture/kjv/07/11/25/scripture.tg b/scripture/kjv/07/11/25/scripture.tg new file mode 100644 index 00000000..9c8464df --- /dev/null +++ b/scripture/kjv/07/11/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 62:1-2 +1 Truly my soul waiteth upon God: from him cometh my salvation. 2 He only is my rock and my salvation; he is my defence; I shall not be greatly moved. + +Friday 11-July, 2025 diff --git a/scripture/kjv/07/11/25/scripture.tg.id b/scripture/kjv/07/11/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/11/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/11/25/scripture.today b/scripture/kjv/07/11/25/scripture.today new file mode 100644 index 00000000..8ee85af8 --- /dev/null +++ b/scripture/kjv/07/11/25/scripture.today @@ -0,0 +1 @@ +19 62:1-2 diff --git a/scripture/kjv/07/12/23/scripture.html b/scripture/kjv/07/12/23/scripture.html new file mode 100644 index 00000000..42ecdb4e --- /dev/null +++ b/scripture/kjv/07/12/23/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 14:32-33
+32 And the spirits of the prophets are subject to the prophets. 33 For God is not the author of confusion, but of peace, as in all churches of the saints.

+Wednesday 12-July, 2023 diff --git a/scripture/kjv/07/12/23/scripture.json b/scripture/kjv/07/12/23/scripture.json new file mode 100644 index 00000000..2a10c7d4 --- /dev/null +++ b/scripture/kjv/07/12/23/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Wednesday 12-July, 2023", + "name": "1 Corinthians 14:32-33", + "scripture": [ + { + "nr": "32", + "text": "And the spirits of the prophets are subject to the prophets." + }, + { + "nr": "33", + "text": "For God is not the author of confusion, but of peace, as in all churches of the saints." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/07/12/23/scripture.md b/scripture/kjv/07/12/23/scripture.md new file mode 100644 index 00000000..805ebe0f --- /dev/null +++ b/scripture/kjv/07/12/23/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 14:32-33** + +32 And the spirits of the prophets are subject to the prophets. 33 For God is not the author of confusion, but of peace, as in all churches of the saints. + +[Wednesday 12-July, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/07/12/23/scripture.tg b/scripture/kjv/07/12/23/scripture.tg new file mode 100644 index 00000000..cabd7cbf --- /dev/null +++ b/scripture/kjv/07/12/23/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 14:32-33 +32 And the spirits of the prophets are subject to the prophets. 33 For God is not the author of confusion, but of peace, as in all churches of the saints. + +Wednesday 12-July, 2023 diff --git a/scripture/kjv/07/12/23/scripture.tg.id b/scripture/kjv/07/12/23/scripture.tg.id new file mode 100644 index 00000000..617ba1c1 --- /dev/null +++ b/scripture/kjv/07/12/23/scripture.tg.id @@ -0,0 +1 @@ +1008 diff --git a/scripture/kjv/07/12/23/scripture.today b/scripture/kjv/07/12/23/scripture.today new file mode 100644 index 00000000..babab4a2 --- /dev/null +++ b/scripture/kjv/07/12/23/scripture.today @@ -0,0 +1 @@ +46 14:32-33 diff --git a/scripture/kjv/07/12/24/scripture.html b/scripture/kjv/07/12/24/scripture.html new file mode 100644 index 00000000..e9e65369 --- /dev/null +++ b/scripture/kjv/07/12/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 52:8-9
+8 But I am like a green olive tree in the house of God: I trust in the mercy of God for ever and ever. 9 I will praise thee for ever, because thou hast done it: and I will wait on thy name; for it is good before thy saints.

+Friday 12-July, 2024 diff --git a/scripture/kjv/07/12/24/scripture.json b/scripture/kjv/07/12/24/scripture.json new file mode 100644 index 00000000..51877dfe --- /dev/null +++ b/scripture/kjv/07/12/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Psalms", + "chapter": "52", + "date": "Friday 12-July, 2024", + "getbible": "https://getbible.life/kjv/Psalms/52/8-9", + "name": "Psalms 52:8-9", + "scripture": [ + { + "nr": "8", + "text": "But I am like a green olive tree in the house of God: I trust in the mercy of God for ever and ever." + }, + { + "nr": "9", + "text": "I will praise thee for ever, because thou hast done it: and I will wait on thy name; for it is good before thy saints. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8-9", + "version": "kjv" +} diff --git a/scripture/kjv/07/12/24/scripture.md b/scripture/kjv/07/12/24/scripture.md new file mode 100644 index 00000000..6088fc88 --- /dev/null +++ b/scripture/kjv/07/12/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 52:8-9** + +8 But I am like a green olive tree in the house of God: I trust in the mercy of God for ever and ever. 9 I will praise thee for ever, because thou hast done it: and I will wait on thy name; for it is good before thy saints. + +[Friday 12-July, 2024](https://getbible.life/kjv/Psalms/52/8-9) diff --git a/scripture/kjv/07/12/24/scripture.tg b/scripture/kjv/07/12/24/scripture.tg new file mode 100644 index 00000000..e6f63310 --- /dev/null +++ b/scripture/kjv/07/12/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 52:8-9 +8 But I am like a green olive tree in the house of God: I trust in the mercy of God for ever and ever. 9 I will praise thee for ever, because thou hast done it: and I will wait on thy name; for it is good before thy saints. + +Friday 12-July, 2024 diff --git a/scripture/kjv/07/12/24/scripture.tg.id b/scripture/kjv/07/12/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/12/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/12/24/scripture.today b/scripture/kjv/07/12/24/scripture.today new file mode 100644 index 00000000..351b5d7b --- /dev/null +++ b/scripture/kjv/07/12/24/scripture.today @@ -0,0 +1 @@ +19 52:8-9 diff --git a/scripture/kjv/07/12/25/scripture.html b/scripture/kjv/07/12/25/scripture.html new file mode 100644 index 00000000..e6f43f67 --- /dev/null +++ b/scripture/kjv/07/12/25/scripture.html @@ -0,0 +1,3 @@ +Luke 22:42
+42 Saying, Father, if thou be willing, remove this cup from me: nevertheless not my will, but thine, be done.

+Saturday 12-July, 2025 diff --git a/scripture/kjv/07/12/25/scripture.json b/scripture/kjv/07/12/25/scripture.json new file mode 100644 index 00000000..5328988b --- /dev/null +++ b/scripture/kjv/07/12/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "22", + "date": "Saturday 12-July, 2025", + "getbible": "https://getbible.life/kjv/Luke/22/42", + "name": "Luke 22:42", + "scripture": [ + { + "nr": "42", + "text": "Saying, Father, if thou be willing, remove this cup from me: nevertheless not my will, but thine, be done." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "42", + "version": "kjv" +} diff --git a/scripture/kjv/07/12/25/scripture.md b/scripture/kjv/07/12/25/scripture.md new file mode 100644 index 00000000..0262e159 --- /dev/null +++ b/scripture/kjv/07/12/25/scripture.md @@ -0,0 +1,5 @@ +**Luke 22:42** + +42 Saying, Father, if thou be willing, remove this cup from me: nevertheless not my will, but thine, be done. + +[Saturday 12-July, 2025](https://getbible.life/kjv/Luke/22/42) diff --git a/scripture/kjv/07/12/25/scripture.tg b/scripture/kjv/07/12/25/scripture.tg new file mode 100644 index 00000000..5824b5a3 --- /dev/null +++ b/scripture/kjv/07/12/25/scripture.tg @@ -0,0 +1,4 @@ +Luke 22:42 +42 Saying, Father, if thou be willing, remove this cup from me: nevertheless not my will, but thine, be done. + +Saturday 12-July, 2025 diff --git a/scripture/kjv/07/12/25/scripture.tg.id b/scripture/kjv/07/12/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/12/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/12/25/scripture.today b/scripture/kjv/07/12/25/scripture.today new file mode 100644 index 00000000..e809e0d8 --- /dev/null +++ b/scripture/kjv/07/12/25/scripture.today @@ -0,0 +1 @@ +42 22:42 diff --git a/scripture/kjv/07/13/23/scripture.html b/scripture/kjv/07/13/23/scripture.html new file mode 100644 index 00000000..fa2cd44e --- /dev/null +++ b/scripture/kjv/07/13/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 27:14
+14 Wait on the Lord: be of good courage, and he shall strengthen thine heart: wait, I say, on the Lord.

+Thursday 13-July, 2023 diff --git a/scripture/kjv/07/13/23/scripture.json b/scripture/kjv/07/13/23/scripture.json new file mode 100644 index 00000000..1884847d --- /dev/null +++ b/scripture/kjv/07/13/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Thursday 13-July, 2023", + "name": "Psalms 27:14", + "scripture": [ + { + "nr": "14", + "text": "Wait on the Lord: be of good courage, and he shall strengthen thine heart: wait, I say, on the Lord. " + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/07/13/23/scripture.md b/scripture/kjv/07/13/23/scripture.md new file mode 100644 index 00000000..65570fe0 --- /dev/null +++ b/scripture/kjv/07/13/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 27:14** + +14 Wait on the Lord: be of good courage, and he shall strengthen thine heart: wait, I say, on the Lord. + +[Thursday 13-July, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/07/13/23/scripture.tg b/scripture/kjv/07/13/23/scripture.tg new file mode 100644 index 00000000..928f93d8 --- /dev/null +++ b/scripture/kjv/07/13/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 27:14 +14 Wait on the Lord: be of good courage, and he shall strengthen thine heart: wait, I say, on the Lord. + +Thursday 13-July, 2023 diff --git a/scripture/kjv/07/13/23/scripture.tg.id b/scripture/kjv/07/13/23/scripture.tg.id new file mode 100644 index 00000000..6cb38693 --- /dev/null +++ b/scripture/kjv/07/13/23/scripture.tg.id @@ -0,0 +1 @@ +1009 diff --git a/scripture/kjv/07/13/23/scripture.today b/scripture/kjv/07/13/23/scripture.today new file mode 100644 index 00000000..c966a23d --- /dev/null +++ b/scripture/kjv/07/13/23/scripture.today @@ -0,0 +1 @@ +19 27:14 diff --git a/scripture/kjv/07/13/24/scripture.html b/scripture/kjv/07/13/24/scripture.html new file mode 100644 index 00000000..5c324f44 --- /dev/null +++ b/scripture/kjv/07/13/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 94:11
+11 The Lord knoweth the thoughts of man, that they are vanity.

+Saturday 13-July, 2024 diff --git a/scripture/kjv/07/13/24/scripture.json b/scripture/kjv/07/13/24/scripture.json new file mode 100644 index 00000000..56f22b76 --- /dev/null +++ b/scripture/kjv/07/13/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "94", + "date": "Saturday 13-July, 2024", + "getbible": "https://getbible.life/kjv/Psalms/94/11", + "name": "Psalms 94:11", + "scripture": [ + { + "nr": "11", + "text": "The Lord knoweth the thoughts of man, that they are vanity." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/07/13/24/scripture.md b/scripture/kjv/07/13/24/scripture.md new file mode 100644 index 00000000..4ee430ee --- /dev/null +++ b/scripture/kjv/07/13/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 94:11** + +11 The Lord knoweth the thoughts of man, that they are vanity. + +[Saturday 13-July, 2024](https://getbible.life/kjv/Psalms/94/11) diff --git a/scripture/kjv/07/13/24/scripture.tg b/scripture/kjv/07/13/24/scripture.tg new file mode 100644 index 00000000..c65321ae --- /dev/null +++ b/scripture/kjv/07/13/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 94:11 +11 The Lord knoweth the thoughts of man, that they are vanity. + +Saturday 13-July, 2024 diff --git a/scripture/kjv/07/13/24/scripture.tg.id b/scripture/kjv/07/13/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/13/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/13/24/scripture.today b/scripture/kjv/07/13/24/scripture.today new file mode 100644 index 00000000..17861fad --- /dev/null +++ b/scripture/kjv/07/13/24/scripture.today @@ -0,0 +1 @@ +19 94:11 diff --git a/scripture/kjv/07/13/25/scripture.html b/scripture/kjv/07/13/25/scripture.html new file mode 100644 index 00000000..686d2271 --- /dev/null +++ b/scripture/kjv/07/13/25/scripture.html @@ -0,0 +1,3 @@ +Micah 7:18-19
+18 Who is a God like unto thee, that pardoneth iniquity, and passeth by the transgression of the remnant of his heritage? he retaineth not his anger for ever, because he delighteth in mercy. 19 He will turn again, he will have compassion upon us; he will subdue our iniquities; and thou wilt cast all their sins into the depths of the sea.

+Sunday 13-July, 2025 diff --git a/scripture/kjv/07/13/25/scripture.json b/scripture/kjv/07/13/25/scripture.json new file mode 100644 index 00000000..1abf5d9c --- /dev/null +++ b/scripture/kjv/07/13/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Micah", + "chapter": "7", + "date": "Sunday 13-July, 2025", + "getbible": "https://getbible.life/kjv/Micah/7/18-19", + "name": "Micah 7:18-19", + "scripture": [ + { + "nr": "18", + "text": "Who is a God like unto thee, that pardoneth iniquity, and passeth by the transgression of the remnant of his heritage? he retaineth not his anger for ever, because he delighteth in mercy." + }, + { + "nr": "19", + "text": "He will turn again, he will have compassion upon us; he will subdue our iniquities; and thou wilt cast all their sins into the depths of the sea." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18-19", + "version": "kjv" +} diff --git a/scripture/kjv/07/13/25/scripture.md b/scripture/kjv/07/13/25/scripture.md new file mode 100644 index 00000000..11d1c640 --- /dev/null +++ b/scripture/kjv/07/13/25/scripture.md @@ -0,0 +1,5 @@ +**Micah 7:18-19** + +18 Who is a God like unto thee, that pardoneth iniquity, and passeth by the transgression of the remnant of his heritage? he retaineth not his anger for ever, because he delighteth in mercy. 19 He will turn again, he will have compassion upon us; he will subdue our iniquities; and thou wilt cast all their sins into the depths of the sea. + +[Sunday 13-July, 2025](https://getbible.life/kjv/Micah/7/18-19) diff --git a/scripture/kjv/07/13/25/scripture.tg b/scripture/kjv/07/13/25/scripture.tg new file mode 100644 index 00000000..6883ff94 --- /dev/null +++ b/scripture/kjv/07/13/25/scripture.tg @@ -0,0 +1,4 @@ +Micah 7:18-19 +18 Who is a God like unto thee, that pardoneth iniquity, and passeth by the transgression of the remnant of his heritage? he retaineth not his anger for ever, because he delighteth in mercy. 19 He will turn again, he will have compassion upon us; he will subdue our iniquities; and thou wilt cast all their sins into the depths of the sea. + +Sunday 13-July, 2025 diff --git a/scripture/kjv/07/13/25/scripture.tg.id b/scripture/kjv/07/13/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/13/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/13/25/scripture.today b/scripture/kjv/07/13/25/scripture.today new file mode 100644 index 00000000..87c910cd --- /dev/null +++ b/scripture/kjv/07/13/25/scripture.today @@ -0,0 +1 @@ +33 7:18-19 diff --git a/scripture/kjv/07/14/23/scripture.html b/scripture/kjv/07/14/23/scripture.html new file mode 100644 index 00000000..ed5ccc82 --- /dev/null +++ b/scripture/kjv/07/14/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 1:10
+10 My son, if sinners entice thee, consent thou not.

+Friday 14-July, 2023 diff --git a/scripture/kjv/07/14/23/scripture.json b/scripture/kjv/07/14/23/scripture.json new file mode 100644 index 00000000..5d12f3c0 --- /dev/null +++ b/scripture/kjv/07/14/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Friday 14-July, 2023", + "name": "Proverbs 1:10", + "scripture": [ + { + "nr": "10", + "text": "My son, if sinners entice thee, consent thou not." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/07/14/23/scripture.md b/scripture/kjv/07/14/23/scripture.md new file mode 100644 index 00000000..c6ea9ec4 --- /dev/null +++ b/scripture/kjv/07/14/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 1:10** + +10 My son, if sinners entice thee, consent thou not. + +[Friday 14-July, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/07/14/23/scripture.tg b/scripture/kjv/07/14/23/scripture.tg new file mode 100644 index 00000000..b22b2985 --- /dev/null +++ b/scripture/kjv/07/14/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 1:10 +10 My son, if sinners entice thee, consent thou not. + +Friday 14-July, 2023 diff --git a/scripture/kjv/07/14/23/scripture.tg.id b/scripture/kjv/07/14/23/scripture.tg.id new file mode 100644 index 00000000..52a9f4e2 --- /dev/null +++ b/scripture/kjv/07/14/23/scripture.tg.id @@ -0,0 +1 @@ +1010 diff --git a/scripture/kjv/07/14/23/scripture.today b/scripture/kjv/07/14/23/scripture.today new file mode 100644 index 00000000..34221240 --- /dev/null +++ b/scripture/kjv/07/14/23/scripture.today @@ -0,0 +1 @@ +20 1:10 diff --git a/scripture/kjv/07/14/24/scripture.html b/scripture/kjv/07/14/24/scripture.html new file mode 100644 index 00000000..8ce22c55 --- /dev/null +++ b/scripture/kjv/07/14/24/scripture.html @@ -0,0 +1,3 @@ +Jonah 2:7
+7 When my soul fainted within me I remembered the Lord: and my prayer came in unto thee, into thine holy temple.

+Sunday 14-July, 2024 diff --git a/scripture/kjv/07/14/24/scripture.json b/scripture/kjv/07/14/24/scripture.json new file mode 100644 index 00000000..1b0aeb50 --- /dev/null +++ b/scripture/kjv/07/14/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Jonah", + "chapter": "2", + "date": "Sunday 14-July, 2024", + "getbible": "https://getbible.life/kjv/Jonah/2/7", + "name": "Jonah 2:7", + "scripture": [ + { + "nr": "7", + "text": "When my soul fainted within me I remembered the Lord: and my prayer came in unto thee, into thine holy temple." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7", + "version": "kjv" +} diff --git a/scripture/kjv/07/14/24/scripture.md b/scripture/kjv/07/14/24/scripture.md new file mode 100644 index 00000000..a12fd24e --- /dev/null +++ b/scripture/kjv/07/14/24/scripture.md @@ -0,0 +1,5 @@ +**Jonah 2:7** + +7 When my soul fainted within me I remembered the Lord: and my prayer came in unto thee, into thine holy temple. + +[Sunday 14-July, 2024](https://getbible.life/kjv/Jonah/2/7) diff --git a/scripture/kjv/07/14/24/scripture.tg b/scripture/kjv/07/14/24/scripture.tg new file mode 100644 index 00000000..9a1a3504 --- /dev/null +++ b/scripture/kjv/07/14/24/scripture.tg @@ -0,0 +1,4 @@ +Jonah 2:7 +7 When my soul fainted within me I remembered the Lord: and my prayer came in unto thee, into thine holy temple. + +Sunday 14-July, 2024 diff --git a/scripture/kjv/07/14/24/scripture.tg.id b/scripture/kjv/07/14/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/14/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/14/24/scripture.today b/scripture/kjv/07/14/24/scripture.today new file mode 100644 index 00000000..7a741d93 --- /dev/null +++ b/scripture/kjv/07/14/24/scripture.today @@ -0,0 +1 @@ +32 2:7 diff --git a/scripture/kjv/07/14/25/scripture.html b/scripture/kjv/07/14/25/scripture.html new file mode 100644 index 00000000..d9783da9 --- /dev/null +++ b/scripture/kjv/07/14/25/scripture.html @@ -0,0 +1,3 @@ +Proverbs 30:3
+3 I neither learned wisdom, nor have the knowledge of the holy.

+Monday 14-July, 2025 diff --git a/scripture/kjv/07/14/25/scripture.json b/scripture/kjv/07/14/25/scripture.json new file mode 100644 index 00000000..866022aa --- /dev/null +++ b/scripture/kjv/07/14/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "30", + "date": "Monday 14-July, 2025", + "getbible": "https://getbible.life/kjv/Proverbs/30/3", + "name": "Proverbs 30:3", + "scripture": [ + { + "nr": "3", + "text": "I neither learned wisdom, nor have the knowledge of the holy." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3", + "version": "kjv" +} diff --git a/scripture/kjv/07/14/25/scripture.md b/scripture/kjv/07/14/25/scripture.md new file mode 100644 index 00000000..c5e72638 --- /dev/null +++ b/scripture/kjv/07/14/25/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 30:3** + +3 I neither learned wisdom, nor have the knowledge of the holy. + +[Monday 14-July, 2025](https://getbible.life/kjv/Proverbs/30/3) diff --git a/scripture/kjv/07/14/25/scripture.tg b/scripture/kjv/07/14/25/scripture.tg new file mode 100644 index 00000000..f1276303 --- /dev/null +++ b/scripture/kjv/07/14/25/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 30:3 +3 I neither learned wisdom, nor have the knowledge of the holy. + +Monday 14-July, 2025 diff --git a/scripture/kjv/07/14/25/scripture.tg.id b/scripture/kjv/07/14/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/14/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/14/25/scripture.today b/scripture/kjv/07/14/25/scripture.today new file mode 100644 index 00000000..db63e69c --- /dev/null +++ b/scripture/kjv/07/14/25/scripture.today @@ -0,0 +1 @@ +20 30:3 diff --git a/scripture/kjv/07/15/23/scripture.html b/scripture/kjv/07/15/23/scripture.html new file mode 100644 index 00000000..1c597554 --- /dev/null +++ b/scripture/kjv/07/15/23/scripture.html @@ -0,0 +1,3 @@ +Luke 16:16
+16 The law and the prophets were until John: since that time the kingdom of God is preached, and every man presseth into it.

+Saturday 15-July, 2023 diff --git a/scripture/kjv/07/15/23/scripture.json b/scripture/kjv/07/15/23/scripture.json new file mode 100644 index 00000000..531697c5 --- /dev/null +++ b/scripture/kjv/07/15/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Saturday 15-July, 2023", + "name": "Luke 16:16", + "scripture": [ + { + "nr": "16", + "text": "The law and the prophets were until John: since that time the kingdom of God is preached, and every man presseth into it." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/07/15/23/scripture.md b/scripture/kjv/07/15/23/scripture.md new file mode 100644 index 00000000..fe11a597 --- /dev/null +++ b/scripture/kjv/07/15/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 16:16** + +16 The law and the prophets were until John: since that time the kingdom of God is preached, and every man presseth into it. + +[Saturday 15-July, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/07/15/23/scripture.tg b/scripture/kjv/07/15/23/scripture.tg new file mode 100644 index 00000000..a5c0b388 --- /dev/null +++ b/scripture/kjv/07/15/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 16:16 +16 The law and the prophets were until John: since that time the kingdom of God is preached, and every man presseth into it. + +Saturday 15-July, 2023 diff --git a/scripture/kjv/07/15/23/scripture.tg.id b/scripture/kjv/07/15/23/scripture.tg.id new file mode 100644 index 00000000..d488f1cf --- /dev/null +++ b/scripture/kjv/07/15/23/scripture.tg.id @@ -0,0 +1 @@ +1011 diff --git a/scripture/kjv/07/15/23/scripture.today b/scripture/kjv/07/15/23/scripture.today new file mode 100644 index 00000000..b425fb05 --- /dev/null +++ b/scripture/kjv/07/15/23/scripture.today @@ -0,0 +1 @@ +42 16:16 diff --git a/scripture/kjv/07/15/24/scripture.html b/scripture/kjv/07/15/24/scripture.html new file mode 100644 index 00000000..a4001438 --- /dev/null +++ b/scripture/kjv/07/15/24/scripture.html @@ -0,0 +1,3 @@ +Leviticus 19:19
+19 Ye shall keep my statutes. Thou shalt not let thy cattle gender with a diverse kind: thou shalt not sow thy field with mingled seed: neither shall a garment mingled of linen and woollen come upon thee.

+Monday 15-July, 2024 diff --git a/scripture/kjv/07/15/24/scripture.json b/scripture/kjv/07/15/24/scripture.json new file mode 100644 index 00000000..068b2215 --- /dev/null +++ b/scripture/kjv/07/15/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Leviticus", + "chapter": "19", + "date": "Monday 15-July, 2024", + "getbible": "https://getbible.life/kjv/Leviticus/19/19", + "name": "Leviticus 19:19", + "scripture": [ + { + "nr": "19", + "text": "Ye shall keep my statutes. Thou shalt not let thy cattle gender with a diverse kind: thou shalt not sow thy field with mingled seed: neither shall a garment mingled of linen and woollen come upon thee." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "19", + "version": "kjv" +} diff --git a/scripture/kjv/07/15/24/scripture.md b/scripture/kjv/07/15/24/scripture.md new file mode 100644 index 00000000..45c2770a --- /dev/null +++ b/scripture/kjv/07/15/24/scripture.md @@ -0,0 +1,5 @@ +**Leviticus 19:19** + +19 Ye shall keep my statutes. Thou shalt not let thy cattle gender with a diverse kind: thou shalt not sow thy field with mingled seed: neither shall a garment mingled of linen and woollen come upon thee. + +[Monday 15-July, 2024](https://getbible.life/kjv/Leviticus/19/19) diff --git a/scripture/kjv/07/15/24/scripture.tg b/scripture/kjv/07/15/24/scripture.tg new file mode 100644 index 00000000..78d742e3 --- /dev/null +++ b/scripture/kjv/07/15/24/scripture.tg @@ -0,0 +1,4 @@ +Leviticus 19:19 +19 Ye shall keep my statutes. Thou shalt not let thy cattle gender with a diverse kind: thou shalt not sow thy field with mingled seed: neither shall a garment mingled of linen and woollen come upon thee. + +Monday 15-July, 2024 diff --git a/scripture/kjv/07/15/24/scripture.tg.id b/scripture/kjv/07/15/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/15/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/15/24/scripture.today b/scripture/kjv/07/15/24/scripture.today new file mode 100644 index 00000000..2c9ece99 --- /dev/null +++ b/scripture/kjv/07/15/24/scripture.today @@ -0,0 +1 @@ +3 19:19 diff --git a/scripture/kjv/07/15/25/scripture.html b/scripture/kjv/07/15/25/scripture.html new file mode 100644 index 00000000..b552a0c5 --- /dev/null +++ b/scripture/kjv/07/15/25/scripture.html @@ -0,0 +1,3 @@ +1 John 4:7-8
+7 Beloved, let us love one another: for love is of God; and every one that loveth is born of God, and knoweth God. 8 He that loveth not knoweth not God; for God is love.

+Tuesday 15-July, 2025 diff --git a/scripture/kjv/07/15/25/scripture.json b/scripture/kjv/07/15/25/scripture.json new file mode 100644 index 00000000..b125f5a1 --- /dev/null +++ b/scripture/kjv/07/15/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "1 John", + "chapter": "4", + "date": "Tuesday 15-July, 2025", + "getbible": "https://getbible.life/kjv/1 John/4/7-8", + "name": "1 John 4:7-8", + "scripture": [ + { + "nr": "7", + "text": "Beloved, let us love one another: for love is of God; and every one that loveth is born of God, and knoweth God." + }, + { + "nr": "8", + "text": "He that loveth not knoweth not God; for God is love." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7-8", + "version": "kjv" +} diff --git a/scripture/kjv/07/15/25/scripture.md b/scripture/kjv/07/15/25/scripture.md new file mode 100644 index 00000000..cca26c0a --- /dev/null +++ b/scripture/kjv/07/15/25/scripture.md @@ -0,0 +1,5 @@ +**1 John 4:7-8** + +7 Beloved, let us love one another: for love is of God; and every one that loveth is born of God, and knoweth God. 8 He that loveth not knoweth not God; for God is love. + +[Tuesday 15-July, 2025](https://getbible.life/kjv/1 John/4/7-8) diff --git a/scripture/kjv/07/15/25/scripture.tg b/scripture/kjv/07/15/25/scripture.tg new file mode 100644 index 00000000..b77b77db --- /dev/null +++ b/scripture/kjv/07/15/25/scripture.tg @@ -0,0 +1,4 @@ +1 John 4:7-8 +7 Beloved, let us love one another: for love is of God; and every one that loveth is born of God, and knoweth God. 8 He that loveth not knoweth not God; for God is love. + +Tuesday 15-July, 2025 diff --git a/scripture/kjv/07/15/25/scripture.tg.id b/scripture/kjv/07/15/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/15/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/15/25/scripture.today b/scripture/kjv/07/15/25/scripture.today new file mode 100644 index 00000000..085d6ac1 --- /dev/null +++ b/scripture/kjv/07/15/25/scripture.today @@ -0,0 +1 @@ +62 4:7-8 diff --git a/scripture/kjv/07/16/23/scripture.html b/scripture/kjv/07/16/23/scripture.html new file mode 100644 index 00000000..74cf5f2b --- /dev/null +++ b/scripture/kjv/07/16/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 25:16
+16 Turn thee unto me, and have mercy upon me; for I am desolate and afflicted.

+Sunday 16-July, 2023 diff --git a/scripture/kjv/07/16/23/scripture.json b/scripture/kjv/07/16/23/scripture.json new file mode 100644 index 00000000..434eb74e --- /dev/null +++ b/scripture/kjv/07/16/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Sunday 16-July, 2023", + "name": "Psalms 25:16", + "scripture": [ + { + "nr": "16", + "text": "Turn thee unto me, and have mercy upon me; for I am desolate and afflicted." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/07/16/23/scripture.md b/scripture/kjv/07/16/23/scripture.md new file mode 100644 index 00000000..b0e4ef3d --- /dev/null +++ b/scripture/kjv/07/16/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 25:16** + +16 Turn thee unto me, and have mercy upon me; for I am desolate and afflicted. + +[Sunday 16-July, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/07/16/23/scripture.tg b/scripture/kjv/07/16/23/scripture.tg new file mode 100644 index 00000000..b08cff51 --- /dev/null +++ b/scripture/kjv/07/16/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 25:16 +16 Turn thee unto me, and have mercy upon me; for I am desolate and afflicted. + +Sunday 16-July, 2023 diff --git a/scripture/kjv/07/16/23/scripture.tg.id b/scripture/kjv/07/16/23/scripture.tg.id new file mode 100644 index 00000000..9951021c --- /dev/null +++ b/scripture/kjv/07/16/23/scripture.tg.id @@ -0,0 +1 @@ +1013 diff --git a/scripture/kjv/07/16/23/scripture.today b/scripture/kjv/07/16/23/scripture.today new file mode 100644 index 00000000..3fa18149 --- /dev/null +++ b/scripture/kjv/07/16/23/scripture.today @@ -0,0 +1 @@ +19 25:16 diff --git a/scripture/kjv/07/16/24/scripture.html b/scripture/kjv/07/16/24/scripture.html new file mode 100644 index 00000000..d9c69743 --- /dev/null +++ b/scripture/kjv/07/16/24/scripture.html @@ -0,0 +1,3 @@ +Revelation 3:6
+6 He that hath an ear, let him hear what the Spirit saith unto the churches.

+Tuesday 16-July, 2024 diff --git a/scripture/kjv/07/16/24/scripture.json b/scripture/kjv/07/16/24/scripture.json new file mode 100644 index 00000000..75d36736 --- /dev/null +++ b/scripture/kjv/07/16/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Revelation", + "chapter": "3", + "date": "Tuesday 16-July, 2024", + "getbible": "https://getbible.life/kjv/Revelation/3/6", + "name": "Revelation 3:6", + "scripture": [ + { + "nr": "6", + "text": "He that hath an ear, let him hear what the Spirit saith unto the churches." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6", + "version": "kjv" +} diff --git a/scripture/kjv/07/16/24/scripture.md b/scripture/kjv/07/16/24/scripture.md new file mode 100644 index 00000000..92d164f3 --- /dev/null +++ b/scripture/kjv/07/16/24/scripture.md @@ -0,0 +1,5 @@ +**Revelation 3:6** + +6 He that hath an ear, let him hear what the Spirit saith unto the churches. + +[Tuesday 16-July, 2024](https://getbible.life/kjv/Revelation/3/6) diff --git a/scripture/kjv/07/16/24/scripture.tg b/scripture/kjv/07/16/24/scripture.tg new file mode 100644 index 00000000..ccd9b29c --- /dev/null +++ b/scripture/kjv/07/16/24/scripture.tg @@ -0,0 +1,4 @@ +Revelation 3:6 +6 He that hath an ear, let him hear what the Spirit saith unto the churches. + +Tuesday 16-July, 2024 diff --git a/scripture/kjv/07/16/24/scripture.tg.id b/scripture/kjv/07/16/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/16/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/16/24/scripture.today b/scripture/kjv/07/16/24/scripture.today new file mode 100644 index 00000000..d06c5532 --- /dev/null +++ b/scripture/kjv/07/16/24/scripture.today @@ -0,0 +1 @@ +66 3:6 diff --git a/scripture/kjv/07/16/25/scripture.html b/scripture/kjv/07/16/25/scripture.html new file mode 100644 index 00000000..d5eacc40 --- /dev/null +++ b/scripture/kjv/07/16/25/scripture.html @@ -0,0 +1,3 @@ +Acts 9:38
+38 And forasmuch as Lydda was nigh to Joppa, and the disciples had heard that Peter was there, they sent unto him two men, desiring him that he would not delay to come to them.

+Wednesday 16-July, 2025 diff --git a/scripture/kjv/07/16/25/scripture.json b/scripture/kjv/07/16/25/scripture.json new file mode 100644 index 00000000..6946aa3d --- /dev/null +++ b/scripture/kjv/07/16/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Acts", + "chapter": "9", + "date": "Wednesday 16-July, 2025", + "getbible": "https://getbible.life/kjv/Acts/9/38", + "name": "Acts 9:38", + "scripture": [ + { + "nr": "38", + "text": "And forasmuch as Lydda was nigh to Joppa, and the disciples had heard that Peter was there, they sent unto him two men, desiring him that he would not delay to come to them." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "38", + "version": "kjv" +} diff --git a/scripture/kjv/07/16/25/scripture.md b/scripture/kjv/07/16/25/scripture.md new file mode 100644 index 00000000..dea3d9c2 --- /dev/null +++ b/scripture/kjv/07/16/25/scripture.md @@ -0,0 +1,5 @@ +**Acts 9:38** + +38 And forasmuch as Lydda was nigh to Joppa, and the disciples had heard that Peter was there, they sent unto him two men, desiring him that he would not delay to come to them. + +[Wednesday 16-July, 2025](https://getbible.life/kjv/Acts/9/38) diff --git a/scripture/kjv/07/16/25/scripture.tg b/scripture/kjv/07/16/25/scripture.tg new file mode 100644 index 00000000..417ef93f --- /dev/null +++ b/scripture/kjv/07/16/25/scripture.tg @@ -0,0 +1,4 @@ +Acts 9:38 +38 And forasmuch as Lydda was nigh to Joppa, and the disciples had heard that Peter was there, they sent unto him two men, desiring him that he would not delay to come to them. + +Wednesday 16-July, 2025 diff --git a/scripture/kjv/07/16/25/scripture.tg.id b/scripture/kjv/07/16/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/16/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/16/25/scripture.today b/scripture/kjv/07/16/25/scripture.today new file mode 100644 index 00000000..1d114676 --- /dev/null +++ b/scripture/kjv/07/16/25/scripture.today @@ -0,0 +1 @@ +44 9:38 diff --git a/scripture/kjv/07/17/23/scripture.html b/scripture/kjv/07/17/23/scripture.html new file mode 100644 index 00000000..46fa2760 --- /dev/null +++ b/scripture/kjv/07/17/23/scripture.html @@ -0,0 +1,3 @@ +1 John 2:12
+12 I write unto you, little children, because your sins are forgiven you for his name’s sake.

+Monday 17-July, 2023 diff --git a/scripture/kjv/07/17/23/scripture.json b/scripture/kjv/07/17/23/scripture.json new file mode 100644 index 00000000..7f736c9d --- /dev/null +++ b/scripture/kjv/07/17/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Monday 17-July, 2023", + "name": "1 John 2:12", + "scripture": [ + { + "nr": "12", + "text": "I write unto you, little children, because your sins are forgiven you for his name’s sake." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/07/17/23/scripture.md b/scripture/kjv/07/17/23/scripture.md new file mode 100644 index 00000000..ec1462ad --- /dev/null +++ b/scripture/kjv/07/17/23/scripture.md @@ -0,0 +1,5 @@ +**1 John 2:12** + +12 I write unto you, little children, because your sins are forgiven you for his name’s sake. + +[Monday 17-July, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/07/17/23/scripture.tg b/scripture/kjv/07/17/23/scripture.tg new file mode 100644 index 00000000..8dc5bce3 --- /dev/null +++ b/scripture/kjv/07/17/23/scripture.tg @@ -0,0 +1,4 @@ +1 John 2:12 +12 I write unto you, little children, because your sins are forgiven you for his name’s sake. + +Monday 17-July, 2023 diff --git a/scripture/kjv/07/17/23/scripture.tg.id b/scripture/kjv/07/17/23/scripture.tg.id new file mode 100644 index 00000000..7cf69b18 --- /dev/null +++ b/scripture/kjv/07/17/23/scripture.tg.id @@ -0,0 +1 @@ +1014 diff --git a/scripture/kjv/07/17/23/scripture.today b/scripture/kjv/07/17/23/scripture.today new file mode 100644 index 00000000..1eb58498 --- /dev/null +++ b/scripture/kjv/07/17/23/scripture.today @@ -0,0 +1 @@ +62 2:12 diff --git a/scripture/kjv/07/17/24/scripture.html b/scripture/kjv/07/17/24/scripture.html new file mode 100644 index 00000000..066b1668 --- /dev/null +++ b/scripture/kjv/07/17/24/scripture.html @@ -0,0 +1,3 @@ +Jeremiah 29:11
+11 For I know the thoughts that I think toward you, saith the Lord, thoughts of peace, and not of evil, to give you an expected end.

+Wednesday 17-July, 2024 diff --git a/scripture/kjv/07/17/24/scripture.json b/scripture/kjv/07/17/24/scripture.json new file mode 100644 index 00000000..7e382341 --- /dev/null +++ b/scripture/kjv/07/17/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Jeremiah", + "chapter": "29", + "date": "Wednesday 17-July, 2024", + "getbible": "https://getbible.life/kjv/Jeremiah/29/11", + "name": "Jeremiah 29:11", + "scripture": [ + { + "nr": "11", + "text": "For I know the thoughts that I think toward you, saith the Lord, thoughts of peace, and not of evil, to give you an expected end." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/07/17/24/scripture.md b/scripture/kjv/07/17/24/scripture.md new file mode 100644 index 00000000..d0b51f7e --- /dev/null +++ b/scripture/kjv/07/17/24/scripture.md @@ -0,0 +1,5 @@ +**Jeremiah 29:11** + +11 For I know the thoughts that I think toward you, saith the Lord, thoughts of peace, and not of evil, to give you an expected end. + +[Wednesday 17-July, 2024](https://getbible.life/kjv/Jeremiah/29/11) diff --git a/scripture/kjv/07/17/24/scripture.tg b/scripture/kjv/07/17/24/scripture.tg new file mode 100644 index 00000000..7b82e9d7 --- /dev/null +++ b/scripture/kjv/07/17/24/scripture.tg @@ -0,0 +1,4 @@ +Jeremiah 29:11 +11 For I know the thoughts that I think toward you, saith the Lord, thoughts of peace, and not of evil, to give you an expected end. + +Wednesday 17-July, 2024 diff --git a/scripture/kjv/07/17/24/scripture.tg.id b/scripture/kjv/07/17/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/17/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/17/24/scripture.today b/scripture/kjv/07/17/24/scripture.today new file mode 100644 index 00000000..fe889701 --- /dev/null +++ b/scripture/kjv/07/17/24/scripture.today @@ -0,0 +1 @@ +24 29:11 diff --git a/scripture/kjv/07/17/25/scripture.html b/scripture/kjv/07/17/25/scripture.html new file mode 100644 index 00000000..b14a9d1f --- /dev/null +++ b/scripture/kjv/07/17/25/scripture.html @@ -0,0 +1,3 @@ +Proverbs 20:9
+9 Who can say, I have made my heart clean, I am pure from my sin?

+Thursday 17-July, 2025 diff --git a/scripture/kjv/07/17/25/scripture.json b/scripture/kjv/07/17/25/scripture.json new file mode 100644 index 00000000..0eac48eb --- /dev/null +++ b/scripture/kjv/07/17/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "20", + "date": "Thursday 17-July, 2025", + "getbible": "https://getbible.life/kjv/Proverbs/20/9", + "name": "Proverbs 20:9", + "scripture": [ + { + "nr": "9", + "text": "Who can say, I have made my heart clean, I am pure from my sin?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9", + "version": "kjv" +} diff --git a/scripture/kjv/07/17/25/scripture.md b/scripture/kjv/07/17/25/scripture.md new file mode 100644 index 00000000..f3493df9 --- /dev/null +++ b/scripture/kjv/07/17/25/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 20:9** + +9 Who can say, I have made my heart clean, I am pure from my sin? + +[Thursday 17-July, 2025](https://getbible.life/kjv/Proverbs/20/9) diff --git a/scripture/kjv/07/17/25/scripture.tg b/scripture/kjv/07/17/25/scripture.tg new file mode 100644 index 00000000..37296103 --- /dev/null +++ b/scripture/kjv/07/17/25/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 20:9 +9 Who can say, I have made my heart clean, I am pure from my sin? + +Thursday 17-July, 2025 diff --git a/scripture/kjv/07/17/25/scripture.tg.id b/scripture/kjv/07/17/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/17/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/17/25/scripture.today b/scripture/kjv/07/17/25/scripture.today new file mode 100644 index 00000000..38e66275 --- /dev/null +++ b/scripture/kjv/07/17/25/scripture.today @@ -0,0 +1 @@ +20 20:9 diff --git a/scripture/kjv/07/18/23/scripture.html b/scripture/kjv/07/18/23/scripture.html new file mode 100644 index 00000000..3c1b19bc --- /dev/null +++ b/scripture/kjv/07/18/23/scripture.html @@ -0,0 +1,3 @@ +Romans 6:23
+23 For the wages of sin is death; but the gift of God is eternal life through Jesus Christ our Lord.

+Tuesday 18-July, 2023 diff --git a/scripture/kjv/07/18/23/scripture.json b/scripture/kjv/07/18/23/scripture.json new file mode 100644 index 00000000..f8e8576f --- /dev/null +++ b/scripture/kjv/07/18/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Tuesday 18-July, 2023", + "name": "Romans 6:23", + "scripture": [ + { + "nr": "23", + "text": "For the wages of sin is death; but the gift of God is eternal life through Jesus Christ our Lord. " + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/07/18/23/scripture.md b/scripture/kjv/07/18/23/scripture.md new file mode 100644 index 00000000..b4d3b3ac --- /dev/null +++ b/scripture/kjv/07/18/23/scripture.md @@ -0,0 +1,5 @@ +**Romans 6:23** + +23 For the wages of sin is death; but the gift of God is eternal life through Jesus Christ our Lord. + +[Tuesday 18-July, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/07/18/23/scripture.tg b/scripture/kjv/07/18/23/scripture.tg new file mode 100644 index 00000000..6f5500ae --- /dev/null +++ b/scripture/kjv/07/18/23/scripture.tg @@ -0,0 +1,4 @@ +Romans 6:23 +23 For the wages of sin is death; but the gift of God is eternal life through Jesus Christ our Lord. + +Tuesday 18-July, 2023 diff --git a/scripture/kjv/07/18/23/scripture.tg.id b/scripture/kjv/07/18/23/scripture.tg.id new file mode 100644 index 00000000..8618e613 --- /dev/null +++ b/scripture/kjv/07/18/23/scripture.tg.id @@ -0,0 +1 @@ +1016 diff --git a/scripture/kjv/07/18/23/scripture.today b/scripture/kjv/07/18/23/scripture.today new file mode 100644 index 00000000..edc56ac8 --- /dev/null +++ b/scripture/kjv/07/18/23/scripture.today @@ -0,0 +1 @@ +45 6:23 diff --git a/scripture/kjv/07/18/24/scripture.html b/scripture/kjv/07/18/24/scripture.html new file mode 100644 index 00000000..2d4fca70 --- /dev/null +++ b/scripture/kjv/07/18/24/scripture.html @@ -0,0 +1,3 @@ +Ephesians 5:1-2
+1 Be ye therefore followers of God, as dear children; 2 And walk in love, as Christ also hath loved us, and hath given himself for us an offering and a sacrifice to God for a sweetsmelling savour.

+Thursday 18-July, 2024 diff --git a/scripture/kjv/07/18/24/scripture.json b/scripture/kjv/07/18/24/scripture.json new file mode 100644 index 00000000..b7967dfc --- /dev/null +++ b/scripture/kjv/07/18/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Ephesians", + "chapter": "5", + "date": "Thursday 18-July, 2024", + "getbible": "https://getbible.life/kjv/Ephesians/5/1-2", + "name": "Ephesians 5:1-2", + "scripture": [ + { + "nr": "1", + "text": "Be ye therefore followers of God, as dear children;" + }, + { + "nr": "2", + "text": "And walk in love, as Christ also hath loved us, and hath given himself for us an offering and a sacrifice to God for a sweetsmelling savour." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-2", + "version": "kjv" +} diff --git a/scripture/kjv/07/18/24/scripture.md b/scripture/kjv/07/18/24/scripture.md new file mode 100644 index 00000000..e1f8a282 --- /dev/null +++ b/scripture/kjv/07/18/24/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 5:1-2** + +1 Be ye therefore followers of God, as dear children; 2 And walk in love, as Christ also hath loved us, and hath given himself for us an offering and a sacrifice to God for a sweetsmelling savour. + +[Thursday 18-July, 2024](https://getbible.life/kjv/Ephesians/5/1-2) diff --git a/scripture/kjv/07/18/24/scripture.tg b/scripture/kjv/07/18/24/scripture.tg new file mode 100644 index 00000000..3c96f6ee --- /dev/null +++ b/scripture/kjv/07/18/24/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 5:1-2 +1 Be ye therefore followers of God, as dear children; 2 And walk in love, as Christ also hath loved us, and hath given himself for us an offering and a sacrifice to God for a sweetsmelling savour. + +Thursday 18-July, 2024 diff --git a/scripture/kjv/07/18/24/scripture.today b/scripture/kjv/07/18/24/scripture.today new file mode 100644 index 00000000..e1a317ea --- /dev/null +++ b/scripture/kjv/07/18/24/scripture.today @@ -0,0 +1 @@ +49 5:1-2 diff --git a/scripture/kjv/07/18/25/scripture.html b/scripture/kjv/07/18/25/scripture.html new file mode 100644 index 00000000..7d045f63 --- /dev/null +++ b/scripture/kjv/07/18/25/scripture.html @@ -0,0 +1,3 @@ +John 12:48
+48 He that rejecteth me, and receiveth not my words, hath one that judgeth him: the word that I have spoken, the same shall judge him in the last day.

+Friday 18-July, 2025 diff --git a/scripture/kjv/07/18/25/scripture.json b/scripture/kjv/07/18/25/scripture.json new file mode 100644 index 00000000..b67704ad --- /dev/null +++ b/scripture/kjv/07/18/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "12", + "date": "Friday 18-July, 2025", + "getbible": "https://getbible.life/kjv/John/12/48", + "name": "John 12:48", + "scripture": [ + { + "nr": "48", + "text": "He that rejecteth me, and receiveth not my words, hath one that judgeth him: the word that I have spoken, the same shall judge him in the last day." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "48", + "version": "kjv" +} diff --git a/scripture/kjv/07/18/25/scripture.md b/scripture/kjv/07/18/25/scripture.md new file mode 100644 index 00000000..b6a45a8f --- /dev/null +++ b/scripture/kjv/07/18/25/scripture.md @@ -0,0 +1,5 @@ +**John 12:48** + +48 He that rejecteth me, and receiveth not my words, hath one that judgeth him: the word that I have spoken, the same shall judge him in the last day. + +[Friday 18-July, 2025](https://getbible.life/kjv/John/12/48) diff --git a/scripture/kjv/07/18/25/scripture.tg b/scripture/kjv/07/18/25/scripture.tg new file mode 100644 index 00000000..0d3a062f --- /dev/null +++ b/scripture/kjv/07/18/25/scripture.tg @@ -0,0 +1,4 @@ +John 12:48 +48 He that rejecteth me, and receiveth not my words, hath one that judgeth him: the word that I have spoken, the same shall judge him in the last day. + +Friday 18-July, 2025 diff --git a/scripture/kjv/07/18/25/scripture.tg.id b/scripture/kjv/07/18/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/18/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/18/25/scripture.today b/scripture/kjv/07/18/25/scripture.today new file mode 100644 index 00000000..34e7a078 --- /dev/null +++ b/scripture/kjv/07/18/25/scripture.today @@ -0,0 +1 @@ +43 12:48 diff --git a/scripture/kjv/07/19/23/scripture.html b/scripture/kjv/07/19/23/scripture.html new file mode 100644 index 00000000..97a122ad --- /dev/null +++ b/scripture/kjv/07/19/23/scripture.html @@ -0,0 +1,3 @@ +Ecclesiastes 3:18
+18 I said in mine heart concerning the estate of the sons of men, that God might manifest them, and that they might see that they themselves are beasts.

+Wednesday 19-July, 2023 diff --git a/scripture/kjv/07/19/23/scripture.json b/scripture/kjv/07/19/23/scripture.json new file mode 100644 index 00000000..f10d90d0 --- /dev/null +++ b/scripture/kjv/07/19/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Wednesday 19-July, 2023", + "name": "Ecclesiastes 3:18", + "scripture": [ + { + "nr": "18", + "text": "I said in mine heart concerning the estate of the sons of men, that God might manifest them, and that they might see that they themselves are beasts." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/07/19/23/scripture.md b/scripture/kjv/07/19/23/scripture.md new file mode 100644 index 00000000..13d56888 --- /dev/null +++ b/scripture/kjv/07/19/23/scripture.md @@ -0,0 +1,5 @@ +**Ecclesiastes 3:18** + +18 I said in mine heart concerning the estate of the sons of men, that God might manifest them, and that they might see that they themselves are beasts. + +[Wednesday 19-July, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/07/19/23/scripture.tg b/scripture/kjv/07/19/23/scripture.tg new file mode 100644 index 00000000..8626001f --- /dev/null +++ b/scripture/kjv/07/19/23/scripture.tg @@ -0,0 +1,4 @@ +Ecclesiastes 3:18 +18 I said in mine heart concerning the estate of the sons of men, that God might manifest them, and that they might see that they themselves are beasts. + +Wednesday 19-July, 2023 diff --git a/scripture/kjv/07/19/23/scripture.tg.id b/scripture/kjv/07/19/23/scripture.tg.id new file mode 100644 index 00000000..08427781 --- /dev/null +++ b/scripture/kjv/07/19/23/scripture.tg.id @@ -0,0 +1 @@ +1017 diff --git a/scripture/kjv/07/19/23/scripture.today b/scripture/kjv/07/19/23/scripture.today new file mode 100644 index 00000000..c18a992a --- /dev/null +++ b/scripture/kjv/07/19/23/scripture.today @@ -0,0 +1 @@ +21 3:18 diff --git a/scripture/kjv/07/19/24/scripture.html b/scripture/kjv/07/19/24/scripture.html new file mode 100644 index 00000000..56bde293 --- /dev/null +++ b/scripture/kjv/07/19/24/scripture.html @@ -0,0 +1,3 @@ +Revelation 14:11-12
+11 And the smoke of their torment ascendeth up for ever and ever: and they have no rest day nor night, who worship the beast and his image, and whosoever receiveth the mark of his name. 12 Here is the patience of the saints: here are they that keep the commandments of God, and the faith of Jesus.

+Friday 19-July, 2024 diff --git a/scripture/kjv/07/19/24/scripture.json b/scripture/kjv/07/19/24/scripture.json new file mode 100644 index 00000000..3d3ab4e4 --- /dev/null +++ b/scripture/kjv/07/19/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Revelation", + "chapter": "14", + "date": "Friday 19-July, 2024", + "getbible": "https://getbible.life/kjv/Revelation/14/11-12", + "name": "Revelation 14:11-12", + "scripture": [ + { + "nr": "11", + "text": "And the smoke of their torment ascendeth up for ever and ever: and they have no rest day nor night, who worship the beast and his image, and whosoever receiveth the mark of his name." + }, + { + "nr": "12", + "text": "Here is the patience of the saints: here are they that keep the commandments of God, and the faith of Jesus." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11-12", + "version": "kjv" +} diff --git a/scripture/kjv/07/19/24/scripture.md b/scripture/kjv/07/19/24/scripture.md new file mode 100644 index 00000000..5a9fe42c --- /dev/null +++ b/scripture/kjv/07/19/24/scripture.md @@ -0,0 +1,5 @@ +**Revelation 14:11-12** + +11 And the smoke of their torment ascendeth up for ever and ever: and they have no rest day nor night, who worship the beast and his image, and whosoever receiveth the mark of his name. 12 Here is the patience of the saints: here are they that keep the commandments of God, and the faith of Jesus. + +[Friday 19-July, 2024](https://getbible.life/kjv/Revelation/14/11-12) diff --git a/scripture/kjv/07/19/24/scripture.tg b/scripture/kjv/07/19/24/scripture.tg new file mode 100644 index 00000000..5443c3ad --- /dev/null +++ b/scripture/kjv/07/19/24/scripture.tg @@ -0,0 +1,4 @@ +Revelation 14:11-12 +11 And the smoke of their torment ascendeth up for ever and ever: and they have no rest day nor night, who worship the beast and his image, and whosoever receiveth the mark of his name. 12 Here is the patience of the saints: here are they that keep the commandments of God, and the faith of Jesus. + +Friday 19-July, 2024 diff --git a/scripture/kjv/07/19/24/scripture.tg.id b/scripture/kjv/07/19/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/19/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/19/24/scripture.today b/scripture/kjv/07/19/24/scripture.today new file mode 100644 index 00000000..f0b6bba7 --- /dev/null +++ b/scripture/kjv/07/19/24/scripture.today @@ -0,0 +1 @@ +66 14:11-12 diff --git a/scripture/kjv/07/19/25/scripture.html b/scripture/kjv/07/19/25/scripture.html new file mode 100644 index 00000000..42a568af --- /dev/null +++ b/scripture/kjv/07/19/25/scripture.html @@ -0,0 +1,3 @@ +Philippians 4:6
+6 Be careful for nothing; but in every thing by prayer and supplication with thanksgiving let your requests be made known unto God.

+Saturday 19-July, 2025 diff --git a/scripture/kjv/07/19/25/scripture.json b/scripture/kjv/07/19/25/scripture.json new file mode 100644 index 00000000..ccec458b --- /dev/null +++ b/scripture/kjv/07/19/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Philippians", + "chapter": "4", + "date": "Saturday 19-July, 2025", + "getbible": "https://getbible.life/kjv/Philippians/4/6", + "name": "Philippians 4:6", + "scripture": [ + { + "nr": "6", + "text": "Be careful for nothing; but in every thing by prayer and supplication with thanksgiving let your requests be made known unto God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6", + "version": "kjv" +} diff --git a/scripture/kjv/07/19/25/scripture.md b/scripture/kjv/07/19/25/scripture.md new file mode 100644 index 00000000..dff78f7d --- /dev/null +++ b/scripture/kjv/07/19/25/scripture.md @@ -0,0 +1,5 @@ +**Philippians 4:6** + +6 Be careful for nothing; but in every thing by prayer and supplication with thanksgiving let your requests be made known unto God. + +[Saturday 19-July, 2025](https://getbible.life/kjv/Philippians/4/6) diff --git a/scripture/kjv/07/19/25/scripture.tg b/scripture/kjv/07/19/25/scripture.tg new file mode 100644 index 00000000..5aea4d2a --- /dev/null +++ b/scripture/kjv/07/19/25/scripture.tg @@ -0,0 +1,4 @@ +Philippians 4:6 +6 Be careful for nothing; but in every thing by prayer and supplication with thanksgiving let your requests be made known unto God. + +Saturday 19-July, 2025 diff --git a/scripture/kjv/07/19/25/scripture.tg.id b/scripture/kjv/07/19/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/19/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/19/25/scripture.today b/scripture/kjv/07/19/25/scripture.today new file mode 100644 index 00000000..ad63ed08 --- /dev/null +++ b/scripture/kjv/07/19/25/scripture.today @@ -0,0 +1 @@ +50 4:6 diff --git a/scripture/kjv/07/20/23/scripture.html b/scripture/kjv/07/20/23/scripture.html new file mode 100644 index 00000000..bbb1ca1f --- /dev/null +++ b/scripture/kjv/07/20/23/scripture.html @@ -0,0 +1,3 @@ +Job 32:16-22
+16 When I had waited, (for they spake not, but stood still, and answered no more;) 17 I said, I will answer also my part, I also will shew mine opinion. 18 For I am full of matter, the spirit within me constraineth me. 19 Behold, my belly is as wine which hath no vent; it is ready to burst like new bottles. 20 I will speak, that I may be refreshed: I will open my lips and answer. 21 Let me not, I pray you, accept any man’s person, neither let me give flattering titles unto man. 22 For I know not to give flattering titles; in so doing my maker would soon take me away.

+Thursday 20-July, 2023 diff --git a/scripture/kjv/07/20/23/scripture.json b/scripture/kjv/07/20/23/scripture.json new file mode 100644 index 00000000..0cb5cf2f --- /dev/null +++ b/scripture/kjv/07/20/23/scripture.json @@ -0,0 +1,37 @@ +{ + "date": "Thursday 20-July, 2023", + "name": "Job 32:16-22", + "scripture": [ + { + "nr": "16", + "text": "When I had waited, (for they spake not, but stood still, and answered no more;)" + }, + { + "nr": "17", + "text": "I said, I will answer also my part, I also will shew mine opinion." + }, + { + "nr": "18", + "text": "For I am full of matter, the spirit within me constraineth me." + }, + { + "nr": "19", + "text": "Behold, my belly is as wine which hath no vent; it is ready to burst like new bottles." + }, + { + "nr": "20", + "text": "I will speak, that I may be refreshed: I will open my lips and answer." + }, + { + "nr": "21", + "text": "Let me not, I pray you, accept any man’s person, neither let me give flattering titles unto man." + }, + { + "nr": "22", + "text": "For I know not to give flattering titles; in so doing my maker would soon take me away. " + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/07/20/23/scripture.md b/scripture/kjv/07/20/23/scripture.md new file mode 100644 index 00000000..3d063f77 --- /dev/null +++ b/scripture/kjv/07/20/23/scripture.md @@ -0,0 +1,5 @@ +**Job 32:16-22** + +16 When I had waited, (for they spake not, but stood still, and answered no more;) 17 I said, I will answer also my part, I also will shew mine opinion. 18 For I am full of matter, the spirit within me constraineth me. 19 Behold, my belly is as wine which hath no vent; it is ready to burst like new bottles. 20 I will speak, that I may be refreshed: I will open my lips and answer. 21 Let me not, I pray you, accept any man’s person, neither let me give flattering titles unto man. 22 For I know not to give flattering titles; in so doing my maker would soon take me away. + +[Thursday 20-July, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/07/20/23/scripture.tg b/scripture/kjv/07/20/23/scripture.tg new file mode 100644 index 00000000..0c2b8bf6 --- /dev/null +++ b/scripture/kjv/07/20/23/scripture.tg @@ -0,0 +1,4 @@ +Job 32:16-22 +16 When I had waited, (for they spake not, but stood still, and answered no more;) 17 I said, I will answer also my part, I also will shew mine opinion. 18 For I am full of matter, the spirit within me constraineth me. 19 Behold, my belly is as wine which hath no vent; it is ready to burst like new bottles. 20 I will speak, that I may be refreshed: I will open my lips and answer. 21 Let me not, I pray you, accept any man’s person, neither let me give flattering titles unto man. 22 For I know not to give flattering titles; in so doing my maker would soon take me away. + +Thursday 20-July, 2023 diff --git a/scripture/kjv/07/20/23/scripture.tg.id b/scripture/kjv/07/20/23/scripture.tg.id new file mode 100644 index 00000000..4d042afa --- /dev/null +++ b/scripture/kjv/07/20/23/scripture.tg.id @@ -0,0 +1 @@ +1018 diff --git a/scripture/kjv/07/20/23/scripture.today b/scripture/kjv/07/20/23/scripture.today new file mode 100644 index 00000000..47378c97 --- /dev/null +++ b/scripture/kjv/07/20/23/scripture.today @@ -0,0 +1 @@ +18 32:16-22 diff --git a/scripture/kjv/07/20/24/scripture.html b/scripture/kjv/07/20/24/scripture.html new file mode 100644 index 00000000..3657fec6 --- /dev/null +++ b/scripture/kjv/07/20/24/scripture.html @@ -0,0 +1,3 @@ +Song of Songs 8:6
+6 Set me as a seal upon thine heart, as a seal upon thine arm: for love is strong as death; jealousy is cruel as the grave: the coals thereof are coals of fire, which hath a most vehement flame.

+Saturday 20-July, 2024 diff --git a/scripture/kjv/07/20/24/scripture.json b/scripture/kjv/07/20/24/scripture.json new file mode 100644 index 00000000..ea2f867e --- /dev/null +++ b/scripture/kjv/07/20/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Song of Songs", + "chapter": "8", + "date": "Saturday 20-July, 2024", + "getbible": "https://getbible.life/kjv/Song of Songs/8/6", + "name": "Song of Songs 8:6", + "scripture": [ + { + "nr": "6", + "text": "Set me as a seal upon thine heart, as a seal upon thine arm: for love is strong as death; jealousy is cruel as the grave: the coals thereof are coals of fire, which hath a most vehement flame." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6", + "version": "kjv" +} diff --git a/scripture/kjv/07/20/24/scripture.md b/scripture/kjv/07/20/24/scripture.md new file mode 100644 index 00000000..ab815766 --- /dev/null +++ b/scripture/kjv/07/20/24/scripture.md @@ -0,0 +1,5 @@ +**Song of Songs 8:6** + +6 Set me as a seal upon thine heart, as a seal upon thine arm: for love is strong as death; jealousy is cruel as the grave: the coals thereof are coals of fire, which hath a most vehement flame. + +[Saturday 20-July, 2024](https://getbible.life/kjv/Song of Songs/8/6) diff --git a/scripture/kjv/07/20/24/scripture.tg b/scripture/kjv/07/20/24/scripture.tg new file mode 100644 index 00000000..6e6f73e4 --- /dev/null +++ b/scripture/kjv/07/20/24/scripture.tg @@ -0,0 +1,4 @@ +Song of Songs 8:6 +6 Set me as a seal upon thine heart, as a seal upon thine arm: for love is strong as death; jealousy is cruel as the grave: the coals thereof are coals of fire, which hath a most vehement flame. + +Saturday 20-July, 2024 diff --git a/scripture/kjv/07/20/24/scripture.tg.id b/scripture/kjv/07/20/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/20/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/20/24/scripture.today b/scripture/kjv/07/20/24/scripture.today new file mode 100644 index 00000000..f18ff4d8 --- /dev/null +++ b/scripture/kjv/07/20/24/scripture.today @@ -0,0 +1 @@ +22 8:6 diff --git a/scripture/kjv/07/20/25/scripture.html b/scripture/kjv/07/20/25/scripture.html new file mode 100644 index 00000000..fb689398 --- /dev/null +++ b/scripture/kjv/07/20/25/scripture.html @@ -0,0 +1,3 @@ +Matthew 25:1-13
+1 Then shall the kingdom of heaven be likened unto ten virgins, which took their lamps, and went forth to meet the bridegroom. 2 And five of them were wise, and five were foolish. 3 They that were foolish took their lamps, and took no oil with them: 4 But the wise took oil in their vessels with their lamps. 5 While the bridegroom tarried, they all slumbered and slept. 6 And at midnight there was a cry made, Behold, the bridegroom cometh; go ye out to meet him. 7 Then all those virgins arose, and trimmed their lamps. 8 And the foolish said unto the wise, Give us of your oil; for our lamps are gone out. 9 But the wise answered, saying, Not so; lest there be not enough for us and you: but go ye rather to them that sell, and buy for yourselves. 10 And while they went to buy, the bridegroom came; and they that were ready went in with him to the marriage: and the door was shut. 11 Afterward came also the other virgins, saying, Lord, Lord, open to us. 12 But he answered and said, Verily I say unto you, I know you not. 13 Watch therefore, for ye know neither the day nor the hour wherein the Son of man cometh.

+Sunday 20-July, 2025 diff --git a/scripture/kjv/07/20/25/scripture.json b/scripture/kjv/07/20/25/scripture.json new file mode 100644 index 00000000..5a5dface --- /dev/null +++ b/scripture/kjv/07/20/25/scripture.json @@ -0,0 +1,65 @@ +{ + "book": "Matthew", + "chapter": "25", + "date": "Sunday 20-July, 2025", + "getbible": "https://getbible.life/kjv/Matthew/25/1-13", + "name": "Matthew 25:1-13", + "scripture": [ + { + "nr": "1", + "text": "Then shall the kingdom of heaven be likened unto ten virgins, which took their lamps, and went forth to meet the bridegroom." + }, + { + "nr": "2", + "text": "And five of them were wise, and five were foolish." + }, + { + "nr": "3", + "text": "They that were foolish took their lamps, and took no oil with them:" + }, + { + "nr": "4", + "text": "But the wise took oil in their vessels with their lamps." + }, + { + "nr": "5", + "text": "While the bridegroom tarried, they all slumbered and slept." + }, + { + "nr": "6", + "text": "And at midnight there was a cry made, Behold, the bridegroom cometh; go ye out to meet him." + }, + { + "nr": "7", + "text": "Then all those virgins arose, and trimmed their lamps." + }, + { + "nr": "8", + "text": "And the foolish said unto the wise, Give us of your oil; for our lamps are gone out." + }, + { + "nr": "9", + "text": "But the wise answered, saying, Not so; lest there be not enough for us and you: but go ye rather to them that sell, and buy for yourselves." + }, + { + "nr": "10", + "text": "And while they went to buy, the bridegroom came; and they that were ready went in with him to the marriage: and the door was shut." + }, + { + "nr": "11", + "text": "Afterward came also the other virgins, saying, Lord, Lord, open to us." + }, + { + "nr": "12", + "text": "But he answered and said, Verily I say unto you, I know you not." + }, + { + "nr": "13", + "text": "Watch therefore, for ye know neither the day nor the hour wherein the Son of man cometh." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-13", + "version": "kjv" +} diff --git a/scripture/kjv/07/20/25/scripture.md b/scripture/kjv/07/20/25/scripture.md new file mode 100644 index 00000000..3a4ef845 --- /dev/null +++ b/scripture/kjv/07/20/25/scripture.md @@ -0,0 +1,5 @@ +**Matthew 25:1-13** + +1 Then shall the kingdom of heaven be likened unto ten virgins, which took their lamps, and went forth to meet the bridegroom. 2 And five of them were wise, and five were foolish. 3 They that were foolish took their lamps, and took no oil with them: 4 But the wise took oil in their vessels with their lamps. 5 While the bridegroom tarried, they all slumbered and slept. 6 And at midnight there was a cry made, Behold, the bridegroom cometh; go ye out to meet him. 7 Then all those virgins arose, and trimmed their lamps. 8 And the foolish said unto the wise, Give us of your oil; for our lamps are gone out. 9 But the wise answered, saying, Not so; lest there be not enough for us and you: but go ye rather to them that sell, and buy for yourselves. 10 And while they went to buy, the bridegroom came; and they that were ready went in with him to the marriage: and the door was shut. 11 Afterward came also the other virgins, saying, Lord, Lord, open to us. 12 But he answered and said, Verily I say unto you, I know you not. 13 Watch therefore, for ye know neither the day nor the hour wherein the Son of man cometh. + +[Sunday 20-July, 2025](https://getbible.life/kjv/Matthew/25/1-13) diff --git a/scripture/kjv/07/20/25/scripture.tg b/scripture/kjv/07/20/25/scripture.tg new file mode 100644 index 00000000..0325a3c2 --- /dev/null +++ b/scripture/kjv/07/20/25/scripture.tg @@ -0,0 +1,4 @@ +Matthew 25:1-13 +1 Then shall the kingdom of heaven be likened unto ten virgins, which took their lamps, and went forth to meet the bridegroom. 2 And five of them were wise, and five were foolish. 3 They that were foolish took their lamps, and took no oil with them: 4 But the wise took oil in their vessels with their lamps. 5 While the bridegroom tarried, they all slumbered and slept. 6 And at midnight there was a cry made, Behold, the bridegroom cometh; go ye out to meet him. 7 Then all those virgins arose, and trimmed their lamps. 8 And the foolish said unto the wise, Give us of your oil; for our lamps are gone out. 9 But the wise answered, saying, Not so; lest there be not enough for us and you: but go ye rather to them that sell, and buy for yourselves. 10 And while they went to buy, the bridegroom came; and they that were ready went in with him to the marriage: and the door was shut. 11 Afterward came also the other virgins, saying, Lord, Lord, open to us. 12 But he answered and said, Verily I say unto you, I know you not. 13 Watch therefore, for ye know neither the day nor the hour wherein the Son of man cometh. + +Sunday 20-July, 2025 diff --git a/scripture/kjv/07/20/25/scripture.tg.id b/scripture/kjv/07/20/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/20/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/20/25/scripture.today b/scripture/kjv/07/20/25/scripture.today new file mode 100644 index 00000000..eeaea694 --- /dev/null +++ b/scripture/kjv/07/20/25/scripture.today @@ -0,0 +1 @@ +40 25:1-13 diff --git a/scripture/kjv/07/21/23/scripture.html b/scripture/kjv/07/21/23/scripture.html new file mode 100644 index 00000000..4aedf811 --- /dev/null +++ b/scripture/kjv/07/21/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 86:11
+11 Teach me thy way, O Lord; I will walk in thy truth: unite my heart to fear thy name.

+Friday 21-July, 2023 diff --git a/scripture/kjv/07/21/23/scripture.json b/scripture/kjv/07/21/23/scripture.json new file mode 100644 index 00000000..122dcc27 --- /dev/null +++ b/scripture/kjv/07/21/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Friday 21-July, 2023", + "name": "Psalms 86:11", + "scripture": [ + { + "nr": "11", + "text": "Teach me thy way, O Lord; I will walk in thy truth: unite my heart to fear thy name." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/07/21/23/scripture.md b/scripture/kjv/07/21/23/scripture.md new file mode 100644 index 00000000..a8d790c9 --- /dev/null +++ b/scripture/kjv/07/21/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 86:11** + +11 Teach me thy way, O Lord; I will walk in thy truth: unite my heart to fear thy name. + +[Friday 21-July, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/07/21/23/scripture.tg b/scripture/kjv/07/21/23/scripture.tg new file mode 100644 index 00000000..18343b78 --- /dev/null +++ b/scripture/kjv/07/21/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 86:11 +11 Teach me thy way, O Lord; I will walk in thy truth: unite my heart to fear thy name. + +Friday 21-July, 2023 diff --git a/scripture/kjv/07/21/23/scripture.tg.id b/scripture/kjv/07/21/23/scripture.tg.id new file mode 100644 index 00000000..1a8c1ea2 --- /dev/null +++ b/scripture/kjv/07/21/23/scripture.tg.id @@ -0,0 +1 @@ +1019 diff --git a/scripture/kjv/07/21/23/scripture.today b/scripture/kjv/07/21/23/scripture.today new file mode 100644 index 00000000..622e1d0d --- /dev/null +++ b/scripture/kjv/07/21/23/scripture.today @@ -0,0 +1 @@ +19 86:11 diff --git a/scripture/kjv/07/21/24/scripture.html b/scripture/kjv/07/21/24/scripture.html new file mode 100644 index 00000000..005c72e7 --- /dev/null +++ b/scripture/kjv/07/21/24/scripture.html @@ -0,0 +1,3 @@ +Zechariah 1:14
+14 So the angel that communed with me said unto me, Cry thou, saying, Thus saith the Lord of hosts; I am jealous for Jerusalem and for Zion with a great jealousy.

+Sunday 21-July, 2024 diff --git a/scripture/kjv/07/21/24/scripture.json b/scripture/kjv/07/21/24/scripture.json new file mode 100644 index 00000000..a389fb59 --- /dev/null +++ b/scripture/kjv/07/21/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Zechariah", + "chapter": "1", + "date": "Sunday 21-July, 2024", + "getbible": "https://getbible.life/kjv/Zechariah/1/14", + "name": "Zechariah 1:14", + "scripture": [ + { + "nr": "14", + "text": "So the angel that communed with me said unto me, Cry thou, saying, Thus saith the Lord of hosts; I am jealous for Jerusalem and for Zion with a great jealousy." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/07/21/24/scripture.md b/scripture/kjv/07/21/24/scripture.md new file mode 100644 index 00000000..36a1b528 --- /dev/null +++ b/scripture/kjv/07/21/24/scripture.md @@ -0,0 +1,5 @@ +**Zechariah 1:14** + +14 So the angel that communed with me said unto me, Cry thou, saying, Thus saith the Lord of hosts; I am jealous for Jerusalem and for Zion with a great jealousy. + +[Sunday 21-July, 2024](https://getbible.life/kjv/Zechariah/1/14) diff --git a/scripture/kjv/07/21/24/scripture.tg b/scripture/kjv/07/21/24/scripture.tg new file mode 100644 index 00000000..004294d6 --- /dev/null +++ b/scripture/kjv/07/21/24/scripture.tg @@ -0,0 +1,4 @@ +Zechariah 1:14 +14 So the angel that communed with me said unto me, Cry thou, saying, Thus saith the Lord of hosts; I am jealous for Jerusalem and for Zion with a great jealousy. + +Sunday 21-July, 2024 diff --git a/scripture/kjv/07/21/24/scripture.tg.id b/scripture/kjv/07/21/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/21/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/21/24/scripture.today b/scripture/kjv/07/21/24/scripture.today new file mode 100644 index 00000000..e832cfbe --- /dev/null +++ b/scripture/kjv/07/21/24/scripture.today @@ -0,0 +1 @@ +38 1:14 diff --git a/scripture/kjv/07/21/25/scripture.html b/scripture/kjv/07/21/25/scripture.html new file mode 100644 index 00000000..c7efd583 --- /dev/null +++ b/scripture/kjv/07/21/25/scripture.html @@ -0,0 +1,3 @@ +Isaiah 26:15
+15 Thou hast increased the nation, O Lord, thou hast increased the nation: thou art glorified: thou hadst removed it far unto all the ends of the earth.

+Monday 21-July, 2025 diff --git a/scripture/kjv/07/21/25/scripture.json b/scripture/kjv/07/21/25/scripture.json new file mode 100644 index 00000000..bad23845 --- /dev/null +++ b/scripture/kjv/07/21/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "26", + "date": "Monday 21-July, 2025", + "getbible": "https://getbible.life/kjv/Isaiah/26/15", + "name": "Isaiah 26:15", + "scripture": [ + { + "nr": "15", + "text": "Thou hast increased the nation, O Lord, thou hast increased the nation: thou art glorified: thou hadst removed it far unto all the ends of the earth." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15", + "version": "kjv" +} diff --git a/scripture/kjv/07/21/25/scripture.md b/scripture/kjv/07/21/25/scripture.md new file mode 100644 index 00000000..a3537458 --- /dev/null +++ b/scripture/kjv/07/21/25/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 26:15** + +15 Thou hast increased the nation, O Lord, thou hast increased the nation: thou art glorified: thou hadst removed it far unto all the ends of the earth. + +[Monday 21-July, 2025](https://getbible.life/kjv/Isaiah/26/15) diff --git a/scripture/kjv/07/21/25/scripture.tg b/scripture/kjv/07/21/25/scripture.tg new file mode 100644 index 00000000..07b0526d --- /dev/null +++ b/scripture/kjv/07/21/25/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 26:15 +15 Thou hast increased the nation, O Lord, thou hast increased the nation: thou art glorified: thou hadst removed it far unto all the ends of the earth. + +Monday 21-July, 2025 diff --git a/scripture/kjv/07/21/25/scripture.tg.id b/scripture/kjv/07/21/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/21/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/21/25/scripture.today b/scripture/kjv/07/21/25/scripture.today new file mode 100644 index 00000000..c50f538b --- /dev/null +++ b/scripture/kjv/07/21/25/scripture.today @@ -0,0 +1 @@ +23 26:15 diff --git a/scripture/kjv/07/22/23/scripture.html b/scripture/kjv/07/22/23/scripture.html new file mode 100644 index 00000000..eba01eda --- /dev/null +++ b/scripture/kjv/07/22/23/scripture.html @@ -0,0 +1,3 @@ +Jeremiah 6:6
+6 For thus hath the Lord of hosts said, Hew ye down trees, and cast a mount against Jerusalem: this is the city to be visited; she is wholly oppression in the midst of her.

+Saturday 22-July, 2023 diff --git a/scripture/kjv/07/22/23/scripture.json b/scripture/kjv/07/22/23/scripture.json new file mode 100644 index 00000000..e9c40b33 --- /dev/null +++ b/scripture/kjv/07/22/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Saturday 22-July, 2023", + "name": "Jeremiah 6:6", + "scripture": [ + { + "nr": "6", + "text": "For thus hath the Lord of hosts said, Hew ye down trees, and cast a mount against Jerusalem: this is the city to be visited; she is wholly oppression in the midst of her." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/07/22/23/scripture.md b/scripture/kjv/07/22/23/scripture.md new file mode 100644 index 00000000..826ba2d7 --- /dev/null +++ b/scripture/kjv/07/22/23/scripture.md @@ -0,0 +1,5 @@ +**Jeremiah 6:6** + +6 For thus hath the Lord of hosts said, Hew ye down trees, and cast a mount against Jerusalem: this is the city to be visited; she is wholly oppression in the midst of her. + +[Saturday 22-July, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/07/22/23/scripture.tg b/scripture/kjv/07/22/23/scripture.tg new file mode 100644 index 00000000..7a52526b --- /dev/null +++ b/scripture/kjv/07/22/23/scripture.tg @@ -0,0 +1,4 @@ +Jeremiah 6:6 +6 For thus hath the Lord of hosts said, Hew ye down trees, and cast a mount against Jerusalem: this is the city to be visited; she is wholly oppression in the midst of her. + +Saturday 22-July, 2023 diff --git a/scripture/kjv/07/22/23/scripture.tg.id b/scripture/kjv/07/22/23/scripture.tg.id new file mode 100644 index 00000000..49efa1e2 --- /dev/null +++ b/scripture/kjv/07/22/23/scripture.tg.id @@ -0,0 +1 @@ +1020 diff --git a/scripture/kjv/07/22/23/scripture.today b/scripture/kjv/07/22/23/scripture.today new file mode 100644 index 00000000..c55b98d2 --- /dev/null +++ b/scripture/kjv/07/22/23/scripture.today @@ -0,0 +1 @@ +24 6:6 diff --git a/scripture/kjv/07/22/24/scripture.html b/scripture/kjv/07/22/24/scripture.html new file mode 100644 index 00000000..a7726dbb --- /dev/null +++ b/scripture/kjv/07/22/24/scripture.html @@ -0,0 +1,3 @@ +Matthew 5:9
+9 Blessed are the peacemakers: for they shall be called the children of God.

+Monday 22-July, 2024 diff --git a/scripture/kjv/07/22/24/scripture.json b/scripture/kjv/07/22/24/scripture.json new file mode 100644 index 00000000..24118fdb --- /dev/null +++ b/scripture/kjv/07/22/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Matthew", + "chapter": "5", + "date": "Monday 22-July, 2024", + "getbible": "https://getbible.life/kjv/Matthew/5/9", + "name": "Matthew 5:9", + "scripture": [ + { + "nr": "9", + "text": "Blessed are the peacemakers: for they shall be called the children of God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9", + "version": "kjv" +} diff --git a/scripture/kjv/07/22/24/scripture.md b/scripture/kjv/07/22/24/scripture.md new file mode 100644 index 00000000..a1a2a171 --- /dev/null +++ b/scripture/kjv/07/22/24/scripture.md @@ -0,0 +1,5 @@ +**Matthew 5:9** + +9 Blessed are the peacemakers: for they shall be called the children of God. + +[Monday 22-July, 2024](https://getbible.life/kjv/Matthew/5/9) diff --git a/scripture/kjv/07/22/24/scripture.tg b/scripture/kjv/07/22/24/scripture.tg new file mode 100644 index 00000000..d10c18b4 --- /dev/null +++ b/scripture/kjv/07/22/24/scripture.tg @@ -0,0 +1,4 @@ +Matthew 5:9 +9 Blessed are the peacemakers: for they shall be called the children of God. + +Monday 22-July, 2024 diff --git a/scripture/kjv/07/22/24/scripture.tg.id b/scripture/kjv/07/22/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/22/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/22/24/scripture.today b/scripture/kjv/07/22/24/scripture.today new file mode 100644 index 00000000..ff3066dd --- /dev/null +++ b/scripture/kjv/07/22/24/scripture.today @@ -0,0 +1 @@ +40 5:9 diff --git a/scripture/kjv/07/22/25/scripture.html b/scripture/kjv/07/22/25/scripture.html new file mode 100644 index 00000000..1dde7578 --- /dev/null +++ b/scripture/kjv/07/22/25/scripture.html @@ -0,0 +1,3 @@ +Luke 7:35
+35 But wisdom is justified of all her children.

+Tuesday 22-July, 2025 diff --git a/scripture/kjv/07/22/25/scripture.json b/scripture/kjv/07/22/25/scripture.json new file mode 100644 index 00000000..6a1a865f --- /dev/null +++ b/scripture/kjv/07/22/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "7", + "date": "Tuesday 22-July, 2025", + "getbible": "https://getbible.life/kjv/Luke/7/35", + "name": "Luke 7:35", + "scripture": [ + { + "nr": "35", + "text": "But wisdom is justified of all her children." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "35", + "version": "kjv" +} diff --git a/scripture/kjv/07/22/25/scripture.md b/scripture/kjv/07/22/25/scripture.md new file mode 100644 index 00000000..12322d7f --- /dev/null +++ b/scripture/kjv/07/22/25/scripture.md @@ -0,0 +1,5 @@ +**Luke 7:35** + +35 But wisdom is justified of all her children. + +[Tuesday 22-July, 2025](https://getbible.life/kjv/Luke/7/35) diff --git a/scripture/kjv/07/22/25/scripture.tg b/scripture/kjv/07/22/25/scripture.tg new file mode 100644 index 00000000..fa4d2f12 --- /dev/null +++ b/scripture/kjv/07/22/25/scripture.tg @@ -0,0 +1,4 @@ +Luke 7:35 +35 But wisdom is justified of all her children. + +Tuesday 22-July, 2025 diff --git a/scripture/kjv/07/22/25/scripture.tg.id b/scripture/kjv/07/22/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/22/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/22/25/scripture.today b/scripture/kjv/07/22/25/scripture.today new file mode 100644 index 00000000..9692631e --- /dev/null +++ b/scripture/kjv/07/22/25/scripture.today @@ -0,0 +1 @@ +42 7:35 diff --git a/scripture/kjv/07/23/23/scripture.html b/scripture/kjv/07/23/23/scripture.html new file mode 100644 index 00000000..616eca37 --- /dev/null +++ b/scripture/kjv/07/23/23/scripture.html @@ -0,0 +1,3 @@ +Matthew 19:26
+26 But Jesus beheld them, and said unto them, With men this is impossible; but with God all things are possible.

+Sunday 23-July, 2023 diff --git a/scripture/kjv/07/23/23/scripture.json b/scripture/kjv/07/23/23/scripture.json new file mode 100644 index 00000000..bcf2c745 --- /dev/null +++ b/scripture/kjv/07/23/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Sunday 23-July, 2023", + "name": "Matthew 19:26", + "scripture": [ + { + "nr": "26", + "text": "But Jesus beheld them, and said unto them, With men this is impossible; but with God all things are possible." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/07/23/23/scripture.md b/scripture/kjv/07/23/23/scripture.md new file mode 100644 index 00000000..31983bbe --- /dev/null +++ b/scripture/kjv/07/23/23/scripture.md @@ -0,0 +1,5 @@ +**Matthew 19:26** + +26 But Jesus beheld them, and said unto them, With men this is impossible; but with God all things are possible. + +[Sunday 23-July, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/07/23/23/scripture.tg b/scripture/kjv/07/23/23/scripture.tg new file mode 100644 index 00000000..bd1e7196 --- /dev/null +++ b/scripture/kjv/07/23/23/scripture.tg @@ -0,0 +1,4 @@ +Matthew 19:26 +26 But Jesus beheld them, and said unto them, With men this is impossible; but with God all things are possible. + +Sunday 23-July, 2023 diff --git a/scripture/kjv/07/23/23/scripture.tg.id b/scripture/kjv/07/23/23/scripture.tg.id new file mode 100644 index 00000000..8463e090 --- /dev/null +++ b/scripture/kjv/07/23/23/scripture.tg.id @@ -0,0 +1 @@ +1021 diff --git a/scripture/kjv/07/23/23/scripture.today b/scripture/kjv/07/23/23/scripture.today new file mode 100644 index 00000000..828f9c7a --- /dev/null +++ b/scripture/kjv/07/23/23/scripture.today @@ -0,0 +1 @@ +40 19:26 diff --git a/scripture/kjv/07/23/24/scripture.html b/scripture/kjv/07/23/24/scripture.html new file mode 100644 index 00000000..df4979a9 --- /dev/null +++ b/scripture/kjv/07/23/24/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 2:9
+9 For to this end also did I write, that I might know the proof of you, whether ye be obedient in all things.

+Tuesday 23-July, 2024 diff --git a/scripture/kjv/07/23/24/scripture.json b/scripture/kjv/07/23/24/scripture.json new file mode 100644 index 00000000..e90a3df1 --- /dev/null +++ b/scripture/kjv/07/23/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "2", + "date": "Tuesday 23-July, 2024", + "getbible": "https://getbible.life/kjv/2 Corinthians/2/9", + "name": "2 Corinthians 2:9", + "scripture": [ + { + "nr": "9", + "text": "For to this end also did I write, that I might know the proof of you, whether ye be obedient in all things." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9", + "version": "kjv" +} diff --git a/scripture/kjv/07/23/24/scripture.md b/scripture/kjv/07/23/24/scripture.md new file mode 100644 index 00000000..de97c78a --- /dev/null +++ b/scripture/kjv/07/23/24/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 2:9** + +9 For to this end also did I write, that I might know the proof of you, whether ye be obedient in all things. + +[Tuesday 23-July, 2024](https://getbible.life/kjv/2 Corinthians/2/9) diff --git a/scripture/kjv/07/23/24/scripture.tg b/scripture/kjv/07/23/24/scripture.tg new file mode 100644 index 00000000..72c10bdf --- /dev/null +++ b/scripture/kjv/07/23/24/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 2:9 +9 For to this end also did I write, that I might know the proof of you, whether ye be obedient in all things. + +Tuesday 23-July, 2024 diff --git a/scripture/kjv/07/23/24/scripture.tg.id b/scripture/kjv/07/23/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/23/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/23/24/scripture.today b/scripture/kjv/07/23/24/scripture.today new file mode 100644 index 00000000..65c8a3c2 --- /dev/null +++ b/scripture/kjv/07/23/24/scripture.today @@ -0,0 +1 @@ +47 2:9 diff --git a/scripture/kjv/07/23/25/scripture.html b/scripture/kjv/07/23/25/scripture.html new file mode 100644 index 00000000..22ec59d8 --- /dev/null +++ b/scripture/kjv/07/23/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 88:18
+18 Lover and friend hast thou put far from me, and mine acquaintance into darkness.

+Wednesday 23-July, 2025 diff --git a/scripture/kjv/07/23/25/scripture.json b/scripture/kjv/07/23/25/scripture.json new file mode 100644 index 00000000..87bb4b5b --- /dev/null +++ b/scripture/kjv/07/23/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "88", + "date": "Wednesday 23-July, 2025", + "getbible": "https://getbible.life/kjv/Psalms/88/18", + "name": "Psalms 88:18", + "scripture": [ + { + "nr": "18", + "text": "Lover and friend hast thou put far from me, and mine acquaintance into darkness. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18", + "version": "kjv" +} diff --git a/scripture/kjv/07/23/25/scripture.md b/scripture/kjv/07/23/25/scripture.md new file mode 100644 index 00000000..4a101381 --- /dev/null +++ b/scripture/kjv/07/23/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 88:18** + +18 Lover and friend hast thou put far from me, and mine acquaintance into darkness. + +[Wednesday 23-July, 2025](https://getbible.life/kjv/Psalms/88/18) diff --git a/scripture/kjv/07/23/25/scripture.tg b/scripture/kjv/07/23/25/scripture.tg new file mode 100644 index 00000000..b25046a7 --- /dev/null +++ b/scripture/kjv/07/23/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 88:18 +18 Lover and friend hast thou put far from me, and mine acquaintance into darkness. + +Wednesday 23-July, 2025 diff --git a/scripture/kjv/07/23/25/scripture.tg.id b/scripture/kjv/07/23/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/23/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/23/25/scripture.today b/scripture/kjv/07/23/25/scripture.today new file mode 100644 index 00000000..2a44b1ae --- /dev/null +++ b/scripture/kjv/07/23/25/scripture.today @@ -0,0 +1 @@ +19 88:18 diff --git a/scripture/kjv/07/24/23/scripture.html b/scripture/kjv/07/24/23/scripture.html new file mode 100644 index 00000000..20cf3467 --- /dev/null +++ b/scripture/kjv/07/24/23/scripture.html @@ -0,0 +1,3 @@ +Amos 3:8
+8 The lion hath roared, who will not fear? the Lord God hath spoken, who can but prophesy?

+Monday 24-July, 2023 diff --git a/scripture/kjv/07/24/23/scripture.json b/scripture/kjv/07/24/23/scripture.json new file mode 100644 index 00000000..c8ac143c --- /dev/null +++ b/scripture/kjv/07/24/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Monday 24-July, 2023", + "name": "Amos 3:8", + "scripture": [ + { + "nr": "8", + "text": "The lion hath roared, who will not fear? the Lord God hath spoken, who can but prophesy?" + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/07/24/23/scripture.md b/scripture/kjv/07/24/23/scripture.md new file mode 100644 index 00000000..e3427db3 --- /dev/null +++ b/scripture/kjv/07/24/23/scripture.md @@ -0,0 +1,5 @@ +**Amos 3:8** + +8 The lion hath roared, who will not fear? the Lord God hath spoken, who can but prophesy? + +[Monday 24-July, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/07/24/23/scripture.tg b/scripture/kjv/07/24/23/scripture.tg new file mode 100644 index 00000000..c859acc5 --- /dev/null +++ b/scripture/kjv/07/24/23/scripture.tg @@ -0,0 +1,4 @@ +Amos 3:8 +8 The lion hath roared, who will not fear? the Lord God hath spoken, who can but prophesy? + +Monday 24-July, 2023 diff --git a/scripture/kjv/07/24/23/scripture.tg.id b/scripture/kjv/07/24/23/scripture.tg.id new file mode 100644 index 00000000..c7781419 --- /dev/null +++ b/scripture/kjv/07/24/23/scripture.tg.id @@ -0,0 +1 @@ +1022 diff --git a/scripture/kjv/07/24/23/scripture.today b/scripture/kjv/07/24/23/scripture.today new file mode 100644 index 00000000..fae50f0b --- /dev/null +++ b/scripture/kjv/07/24/23/scripture.today @@ -0,0 +1 @@ +30 3:8 diff --git a/scripture/kjv/07/24/24/scripture.html b/scripture/kjv/07/24/24/scripture.html new file mode 100644 index 00000000..e9dcb29b --- /dev/null +++ b/scripture/kjv/07/24/24/scripture.html @@ -0,0 +1,3 @@ +John 21:16
+16 He saith to him again the second time, Simon, son of Jonas, lovest thou me? He saith unto him, Yea, Lord; thou knowest that I love thee. He saith unto him, Feed my sheep.

+Wednesday 24-July, 2024 diff --git a/scripture/kjv/07/24/24/scripture.json b/scripture/kjv/07/24/24/scripture.json new file mode 100644 index 00000000..0955416e --- /dev/null +++ b/scripture/kjv/07/24/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "21", + "date": "Wednesday 24-July, 2024", + "getbible": "https://getbible.life/kjv/John/21/16", + "name": "John 21:16", + "scripture": [ + { + "nr": "16", + "text": "He saith to him again the second time, Simon, son of Jonas, lovest thou me? He saith unto him, Yea, Lord; thou knowest that I love thee. He saith unto him, Feed my sheep." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16", + "version": "kjv" +} diff --git a/scripture/kjv/07/24/24/scripture.md b/scripture/kjv/07/24/24/scripture.md new file mode 100644 index 00000000..ca673ef0 --- /dev/null +++ b/scripture/kjv/07/24/24/scripture.md @@ -0,0 +1,5 @@ +**John 21:16** + +16 He saith to him again the second time, Simon, son of Jonas, lovest thou me? He saith unto him, Yea, Lord; thou knowest that I love thee. He saith unto him, Feed my sheep. + +[Wednesday 24-July, 2024](https://getbible.life/kjv/John/21/16) diff --git a/scripture/kjv/07/24/24/scripture.tg b/scripture/kjv/07/24/24/scripture.tg new file mode 100644 index 00000000..ad0eabe9 --- /dev/null +++ b/scripture/kjv/07/24/24/scripture.tg @@ -0,0 +1,4 @@ +John 21:16 +16 He saith to him again the second time, Simon, son of Jonas, lovest thou me? He saith unto him, Yea, Lord; thou knowest that I love thee. He saith unto him, Feed my sheep. + +Wednesday 24-July, 2024 diff --git a/scripture/kjv/07/24/24/scripture.tg.id b/scripture/kjv/07/24/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/24/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/24/24/scripture.today b/scripture/kjv/07/24/24/scripture.today new file mode 100644 index 00000000..99cbb8df --- /dev/null +++ b/scripture/kjv/07/24/24/scripture.today @@ -0,0 +1 @@ +43 21:16 diff --git a/scripture/kjv/07/24/25/scripture.html b/scripture/kjv/07/24/25/scripture.html new file mode 100644 index 00000000..0287d616 --- /dev/null +++ b/scripture/kjv/07/24/25/scripture.html @@ -0,0 +1,3 @@ +Proverbs 12:24
+24 The hand of the diligent shall bear rule: but the slothful shall be under tribute.

+Thursday 24-July, 2025 diff --git a/scripture/kjv/07/24/25/scripture.json b/scripture/kjv/07/24/25/scripture.json new file mode 100644 index 00000000..4240d7ea --- /dev/null +++ b/scripture/kjv/07/24/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "12", + "date": "Thursday 24-July, 2025", + "getbible": "https://getbible.life/kjv/Proverbs/12/24", + "name": "Proverbs 12:24", + "scripture": [ + { + "nr": "24", + "text": "The hand of the diligent shall bear rule: but the slothful shall be under tribute." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "24", + "version": "kjv" +} diff --git a/scripture/kjv/07/24/25/scripture.md b/scripture/kjv/07/24/25/scripture.md new file mode 100644 index 00000000..0b8e9cc8 --- /dev/null +++ b/scripture/kjv/07/24/25/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 12:24** + +24 The hand of the diligent shall bear rule: but the slothful shall be under tribute. + +[Thursday 24-July, 2025](https://getbible.life/kjv/Proverbs/12/24) diff --git a/scripture/kjv/07/24/25/scripture.tg b/scripture/kjv/07/24/25/scripture.tg new file mode 100644 index 00000000..aa4298a6 --- /dev/null +++ b/scripture/kjv/07/24/25/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 12:24 +24 The hand of the diligent shall bear rule: but the slothful shall be under tribute. + +Thursday 24-July, 2025 diff --git a/scripture/kjv/07/24/25/scripture.tg.id b/scripture/kjv/07/24/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/24/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/24/25/scripture.today b/scripture/kjv/07/24/25/scripture.today new file mode 100644 index 00000000..7b42abe9 --- /dev/null +++ b/scripture/kjv/07/24/25/scripture.today @@ -0,0 +1 @@ +20 12:24 diff --git a/scripture/kjv/07/25/23/scripture.html b/scripture/kjv/07/25/23/scripture.html new file mode 100644 index 00000000..549c3d4b --- /dev/null +++ b/scripture/kjv/07/25/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 119:20
+20 My soul breaketh for the longing that it hath unto thy judgments at all times.

+Tuesday 25-July, 2023 diff --git a/scripture/kjv/07/25/23/scripture.json b/scripture/kjv/07/25/23/scripture.json new file mode 100644 index 00000000..14cb3558 --- /dev/null +++ b/scripture/kjv/07/25/23/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Tuesday 25-July, 2023", + "name": "Psalms 119:20", + "scripture": [ + { + "nr": "20", + "text": "My soul breaketh for the longing that it hath unto thy judgments at all times." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/07/25/23/scripture.md b/scripture/kjv/07/25/23/scripture.md new file mode 100644 index 00000000..a9c0cd78 --- /dev/null +++ b/scripture/kjv/07/25/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 119:20** + +20 My soul breaketh for the longing that it hath unto thy judgments at all times. + +[Tuesday 25-July, 2023](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/07/25/23/scripture.tg b/scripture/kjv/07/25/23/scripture.tg new file mode 100644 index 00000000..a037216d --- /dev/null +++ b/scripture/kjv/07/25/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 119:20 +20 My soul breaketh for the longing that it hath unto thy judgments at all times. + +Tuesday 25-July, 2023 diff --git a/scripture/kjv/07/25/23/scripture.tg.id b/scripture/kjv/07/25/23/scripture.tg.id new file mode 100644 index 00000000..b70608fe --- /dev/null +++ b/scripture/kjv/07/25/23/scripture.tg.id @@ -0,0 +1 @@ +1023 diff --git a/scripture/kjv/07/25/23/scripture.today b/scripture/kjv/07/25/23/scripture.today new file mode 100644 index 00000000..b6fd7490 --- /dev/null +++ b/scripture/kjv/07/25/23/scripture.today @@ -0,0 +1 @@ +19 119:20 diff --git a/scripture/kjv/07/25/24/scripture.html b/scripture/kjv/07/25/24/scripture.html new file mode 100644 index 00000000..66a6aefd --- /dev/null +++ b/scripture/kjv/07/25/24/scripture.html @@ -0,0 +1,3 @@ +Luke 12:32
+32 Fear not, little flock; for it is your Father’s good pleasure to give you the kingdom.

+Thursday 25-July, 2024 diff --git a/scripture/kjv/07/25/24/scripture.json b/scripture/kjv/07/25/24/scripture.json new file mode 100644 index 00000000..62cb03dd --- /dev/null +++ b/scripture/kjv/07/25/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "12", + "date": "Thursday 25-July, 2024", + "getbible": "https://getbible.life/kjv/Luke/12/32", + "name": "Luke 12:32", + "scripture": [ + { + "nr": "32", + "text": "Fear not, little flock; for it is your Father’s good pleasure to give you the kingdom." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "32", + "version": "kjv" +} diff --git a/scripture/kjv/07/25/24/scripture.md b/scripture/kjv/07/25/24/scripture.md new file mode 100644 index 00000000..0e57fc40 --- /dev/null +++ b/scripture/kjv/07/25/24/scripture.md @@ -0,0 +1,5 @@ +**Luke 12:32** + +32 Fear not, little flock; for it is your Father’s good pleasure to give you the kingdom. + +[Thursday 25-July, 2024](https://getbible.life/kjv/Luke/12/32) diff --git a/scripture/kjv/07/25/24/scripture.tg b/scripture/kjv/07/25/24/scripture.tg new file mode 100644 index 00000000..4f23dfa7 --- /dev/null +++ b/scripture/kjv/07/25/24/scripture.tg @@ -0,0 +1,4 @@ +Luke 12:32 +32 Fear not, little flock; for it is your Father’s good pleasure to give you the kingdom. + +Thursday 25-July, 2024 diff --git a/scripture/kjv/07/25/24/scripture.tg.id b/scripture/kjv/07/25/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/25/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/25/24/scripture.today b/scripture/kjv/07/25/24/scripture.today new file mode 100644 index 00000000..513df3b0 --- /dev/null +++ b/scripture/kjv/07/25/24/scripture.today @@ -0,0 +1 @@ +42 12:32 diff --git a/scripture/kjv/07/25/25/scripture.html b/scripture/kjv/07/25/25/scripture.html new file mode 100644 index 00000000..cd07b302 --- /dev/null +++ b/scripture/kjv/07/25/25/scripture.html @@ -0,0 +1,3 @@ +Zephaniah 3:19
+19 Behold, at that time I will undo all that afflict thee: and I will save her that halteth, and gather her that was driven out; and I will get them praise and fame in every land where they have been put to shame.

+Friday 25-July, 2025 diff --git a/scripture/kjv/07/25/25/scripture.json b/scripture/kjv/07/25/25/scripture.json new file mode 100644 index 00000000..e2973abe --- /dev/null +++ b/scripture/kjv/07/25/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Zephaniah", + "chapter": "3", + "date": "Friday 25-July, 2025", + "getbible": "https://getbible.life/kjv/Zephaniah/3/19", + "name": "Zephaniah 3:19", + "scripture": [ + { + "nr": "19", + "text": "Behold, at that time I will undo all that afflict thee: and I will save her that halteth, and gather her that was driven out; and I will get them praise and fame in every land where they have been put to shame." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "19", + "version": "kjv" +} diff --git a/scripture/kjv/07/25/25/scripture.md b/scripture/kjv/07/25/25/scripture.md new file mode 100644 index 00000000..2148bbe5 --- /dev/null +++ b/scripture/kjv/07/25/25/scripture.md @@ -0,0 +1,5 @@ +**Zephaniah 3:19** + +19 Behold, at that time I will undo all that afflict thee: and I will save her that halteth, and gather her that was driven out; and I will get them praise and fame in every land where they have been put to shame. + +[Friday 25-July, 2025](https://getbible.life/kjv/Zephaniah/3/19) diff --git a/scripture/kjv/07/25/25/scripture.tg b/scripture/kjv/07/25/25/scripture.tg new file mode 100644 index 00000000..091ff005 --- /dev/null +++ b/scripture/kjv/07/25/25/scripture.tg @@ -0,0 +1,4 @@ +Zephaniah 3:19 +19 Behold, at that time I will undo all that afflict thee: and I will save her that halteth, and gather her that was driven out; and I will get them praise and fame in every land where they have been put to shame. + +Friday 25-July, 2025 diff --git a/scripture/kjv/07/25/25/scripture.tg.id b/scripture/kjv/07/25/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/25/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/25/25/scripture.today b/scripture/kjv/07/25/25/scripture.today new file mode 100644 index 00000000..bd578580 --- /dev/null +++ b/scripture/kjv/07/25/25/scripture.today @@ -0,0 +1 @@ +36 3:19 diff --git a/scripture/kjv/07/26/23/scripture.html b/scripture/kjv/07/26/23/scripture.html new file mode 100644 index 00000000..0b2828dc --- /dev/null +++ b/scripture/kjv/07/26/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 28:21
+21 To have respect of persons is not good: for for a piece of bread that man will transgress.

+Wednesday 26-July, 2023 diff --git a/scripture/kjv/07/26/23/scripture.json b/scripture/kjv/07/26/23/scripture.json new file mode 100644 index 00000000..4d3259d5 --- /dev/null +++ b/scripture/kjv/07/26/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "28", + "date": "Wednesday 26-July, 2023", + "getbible": "https://getbible.life/kjv/Proverbs/28/21", + "name": "Proverbs 28:21", + "scripture": [ + { + "nr": "21", + "text": "To have respect of persons is not good: for for a piece of bread that man will transgress." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "21", + "version": "kjv" +} diff --git a/scripture/kjv/07/26/23/scripture.md b/scripture/kjv/07/26/23/scripture.md new file mode 100644 index 00000000..1f3d9f23 --- /dev/null +++ b/scripture/kjv/07/26/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 28:21** + +21 To have respect of persons is not good: for for a piece of bread that man will transgress. + +[Wednesday 26-July, 2023](https://getbible.life/kjv/Proverbs/28/21) diff --git a/scripture/kjv/07/26/23/scripture.tg b/scripture/kjv/07/26/23/scripture.tg new file mode 100644 index 00000000..aea8e0ab --- /dev/null +++ b/scripture/kjv/07/26/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 28:21 +21 To have respect of persons is not good: for for a piece of bread that man will transgress. + +Wednesday 26-July, 2023 diff --git a/scripture/kjv/07/26/23/scripture.tg.id b/scripture/kjv/07/26/23/scripture.tg.id new file mode 100644 index 00000000..d7b1c440 --- /dev/null +++ b/scripture/kjv/07/26/23/scripture.tg.id @@ -0,0 +1 @@ +1024 diff --git a/scripture/kjv/07/26/23/scripture.today b/scripture/kjv/07/26/23/scripture.today new file mode 100644 index 00000000..71ab4245 --- /dev/null +++ b/scripture/kjv/07/26/23/scripture.today @@ -0,0 +1 @@ +20 28:21 diff --git a/scripture/kjv/07/26/24/scripture.html b/scripture/kjv/07/26/24/scripture.html new file mode 100644 index 00000000..37774745 --- /dev/null +++ b/scripture/kjv/07/26/24/scripture.html @@ -0,0 +1,3 @@ +Luke 8:39
+39 Return to thine own house, and shew how great things God hath done unto thee. And he went his way, and published throughout the whole city how great things Jesus had done unto him.

+Friday 26-July, 2024 diff --git a/scripture/kjv/07/26/24/scripture.json b/scripture/kjv/07/26/24/scripture.json new file mode 100644 index 00000000..970f167e --- /dev/null +++ b/scripture/kjv/07/26/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "8", + "date": "Friday 26-July, 2024", + "getbible": "https://getbible.life/kjv/Luke/8/39", + "name": "Luke 8:39", + "scripture": [ + { + "nr": "39", + "text": "Return to thine own house, and shew how great things God hath done unto thee. And he went his way, and published throughout the whole city how great things Jesus had done unto him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "39", + "version": "kjv" +} diff --git a/scripture/kjv/07/26/24/scripture.md b/scripture/kjv/07/26/24/scripture.md new file mode 100644 index 00000000..3dbcbca1 --- /dev/null +++ b/scripture/kjv/07/26/24/scripture.md @@ -0,0 +1,5 @@ +**Luke 8:39** + +39 Return to thine own house, and shew how great things God hath done unto thee. And he went his way, and published throughout the whole city how great things Jesus had done unto him. + +[Friday 26-July, 2024](https://getbible.life/kjv/Luke/8/39) diff --git a/scripture/kjv/07/26/24/scripture.tg b/scripture/kjv/07/26/24/scripture.tg new file mode 100644 index 00000000..95549496 --- /dev/null +++ b/scripture/kjv/07/26/24/scripture.tg @@ -0,0 +1,4 @@ +Luke 8:39 +39 Return to thine own house, and shew how great things God hath done unto thee. And he went his way, and published throughout the whole city how great things Jesus had done unto him. + +Friday 26-July, 2024 diff --git a/scripture/kjv/07/26/24/scripture.tg.id b/scripture/kjv/07/26/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/26/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/26/24/scripture.today b/scripture/kjv/07/26/24/scripture.today new file mode 100644 index 00000000..e1ce7263 --- /dev/null +++ b/scripture/kjv/07/26/24/scripture.today @@ -0,0 +1 @@ +42 8:39 diff --git a/scripture/kjv/07/26/25/scripture.html b/scripture/kjv/07/26/25/scripture.html new file mode 100644 index 00000000..16b6c7bb --- /dev/null +++ b/scripture/kjv/07/26/25/scripture.html @@ -0,0 +1,3 @@ +1 Thessalonians 5:8-10
+8 But let us, who are of the day, be sober, putting on the breastplate of faith and love; and for an helmet, the hope of salvation. 9 For God hath not appointed us to wrath, but to obtain salvation by our Lord Jesus Christ, 10 Who died for us, that, whether we wake or sleep, we should live together with him.

+Saturday 26-July, 2025 diff --git a/scripture/kjv/07/26/25/scripture.json b/scripture/kjv/07/26/25/scripture.json new file mode 100644 index 00000000..dd1e2cd0 --- /dev/null +++ b/scripture/kjv/07/26/25/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "1 Thessalonians", + "chapter": "5", + "date": "Saturday 26-July, 2025", + "getbible": "https://getbible.life/kjv/1 Thessalonians/5/8-10", + "name": "1 Thessalonians 5:8-10", + "scripture": [ + { + "nr": "8", + "text": "But let us, who are of the day, be sober, putting on the breastplate of faith and love; and for an helmet, the hope of salvation." + }, + { + "nr": "9", + "text": "For God hath not appointed us to wrath, but to obtain salvation by our Lord Jesus Christ," + }, + { + "nr": "10", + "text": "Who died for us, that, whether we wake or sleep, we should live together with him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8-10", + "version": "kjv" +} diff --git a/scripture/kjv/07/26/25/scripture.md b/scripture/kjv/07/26/25/scripture.md new file mode 100644 index 00000000..303faf59 --- /dev/null +++ b/scripture/kjv/07/26/25/scripture.md @@ -0,0 +1,5 @@ +**1 Thessalonians 5:8-10** + +8 But let us, who are of the day, be sober, putting on the breastplate of faith and love; and for an helmet, the hope of salvation. 9 For God hath not appointed us to wrath, but to obtain salvation by our Lord Jesus Christ, 10 Who died for us, that, whether we wake or sleep, we should live together with him. + +[Saturday 26-July, 2025](https://getbible.life/kjv/1 Thessalonians/5/8-10) diff --git a/scripture/kjv/07/26/25/scripture.tg b/scripture/kjv/07/26/25/scripture.tg new file mode 100644 index 00000000..3c310c28 --- /dev/null +++ b/scripture/kjv/07/26/25/scripture.tg @@ -0,0 +1,4 @@ +1 Thessalonians 5:8-10 +8 But let us, who are of the day, be sober, putting on the breastplate of faith and love; and for an helmet, the hope of salvation. 9 For God hath not appointed us to wrath, but to obtain salvation by our Lord Jesus Christ, 10 Who died for us, that, whether we wake or sleep, we should live together with him. + +Saturday 26-July, 2025 diff --git a/scripture/kjv/07/26/25/scripture.tg.id b/scripture/kjv/07/26/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/26/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/26/25/scripture.today b/scripture/kjv/07/26/25/scripture.today new file mode 100644 index 00000000..1856a44f --- /dev/null +++ b/scripture/kjv/07/26/25/scripture.today @@ -0,0 +1 @@ +52 5:8-10 diff --git a/scripture/kjv/07/27/23/scripture.html b/scripture/kjv/07/27/23/scripture.html new file mode 100644 index 00000000..7967a5fa --- /dev/null +++ b/scripture/kjv/07/27/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 24:26
+26 Every man shall kiss his lips that giveth a right answer.

+Thursday 27-July, 2023 diff --git a/scripture/kjv/07/27/23/scripture.json b/scripture/kjv/07/27/23/scripture.json new file mode 100644 index 00000000..28c221d6 --- /dev/null +++ b/scripture/kjv/07/27/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "24", + "date": "Thursday 27-July, 2023", + "getbible": "https://getbible.life/kjv/Proverbs/24/26", + "name": "Proverbs 24:26", + "scripture": [ + { + "nr": "26", + "text": "Every man shall kiss his lips that giveth a right answer." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "26", + "version": "kjv" +} diff --git a/scripture/kjv/07/27/23/scripture.md b/scripture/kjv/07/27/23/scripture.md new file mode 100644 index 00000000..e349ae4b --- /dev/null +++ b/scripture/kjv/07/27/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 24:26** + +26 Every man shall kiss his lips that giveth a right answer. + +[Thursday 27-July, 2023](https://getbible.life/kjv/Proverbs/24/26) diff --git a/scripture/kjv/07/27/23/scripture.tg b/scripture/kjv/07/27/23/scripture.tg new file mode 100644 index 00000000..b23b3fba --- /dev/null +++ b/scripture/kjv/07/27/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 24:26 +26 Every man shall kiss his lips that giveth a right answer. + +Thursday 27-July, 2023 diff --git a/scripture/kjv/07/27/23/scripture.tg.id b/scripture/kjv/07/27/23/scripture.tg.id new file mode 100644 index 00000000..bec4b5cd --- /dev/null +++ b/scripture/kjv/07/27/23/scripture.tg.id @@ -0,0 +1 @@ +1025 diff --git a/scripture/kjv/07/27/23/scripture.today b/scripture/kjv/07/27/23/scripture.today new file mode 100644 index 00000000..3b33dc60 --- /dev/null +++ b/scripture/kjv/07/27/23/scripture.today @@ -0,0 +1 @@ +20 24:26 diff --git a/scripture/kjv/07/27/24/scripture.html b/scripture/kjv/07/27/24/scripture.html new file mode 100644 index 00000000..2016cfdb --- /dev/null +++ b/scripture/kjv/07/27/24/scripture.html @@ -0,0 +1,3 @@ +Jeremiah 4:3
+3 For thus saith the Lord to the men of Judah and Jerusalem, Break up your fallow ground, and sow not among thorns.

+Saturday 27-July, 2024 diff --git a/scripture/kjv/07/27/24/scripture.json b/scripture/kjv/07/27/24/scripture.json new file mode 100644 index 00000000..f06c4164 --- /dev/null +++ b/scripture/kjv/07/27/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Jeremiah", + "chapter": "4", + "date": "Saturday 27-July, 2024", + "getbible": "https://getbible.life/kjv/Jeremiah/4/3", + "name": "Jeremiah 4:3", + "scripture": [ + { + "nr": "3", + "text": "For thus saith the Lord to the men of Judah and Jerusalem, Break up your fallow ground, and sow not among thorns." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3", + "version": "kjv" +} diff --git a/scripture/kjv/07/27/24/scripture.md b/scripture/kjv/07/27/24/scripture.md new file mode 100644 index 00000000..3c929c6a --- /dev/null +++ b/scripture/kjv/07/27/24/scripture.md @@ -0,0 +1,5 @@ +**Jeremiah 4:3** + +3 For thus saith the Lord to the men of Judah and Jerusalem, Break up your fallow ground, and sow not among thorns. + +[Saturday 27-July, 2024](https://getbible.life/kjv/Jeremiah/4/3) diff --git a/scripture/kjv/07/27/24/scripture.tg b/scripture/kjv/07/27/24/scripture.tg new file mode 100644 index 00000000..d0ae8b6c --- /dev/null +++ b/scripture/kjv/07/27/24/scripture.tg @@ -0,0 +1,4 @@ +Jeremiah 4:3 +3 For thus saith the Lord to the men of Judah and Jerusalem, Break up your fallow ground, and sow not among thorns. + +Saturday 27-July, 2024 diff --git a/scripture/kjv/07/27/24/scripture.tg.id b/scripture/kjv/07/27/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/27/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/27/24/scripture.today b/scripture/kjv/07/27/24/scripture.today new file mode 100644 index 00000000..ccfb0adb --- /dev/null +++ b/scripture/kjv/07/27/24/scripture.today @@ -0,0 +1 @@ +24 4:3 diff --git a/scripture/kjv/07/27/25/scripture.html b/scripture/kjv/07/27/25/scripture.html new file mode 100644 index 00000000..13be58c0 --- /dev/null +++ b/scripture/kjv/07/27/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 119:68
+68 Thou art good, and doest good; teach me thy statutes.

+Sunday 27-July, 2025 diff --git a/scripture/kjv/07/27/25/scripture.json b/scripture/kjv/07/27/25/scripture.json new file mode 100644 index 00000000..e00d07f9 --- /dev/null +++ b/scripture/kjv/07/27/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "119", + "date": "Sunday 27-July, 2025", + "getbible": "https://getbible.life/kjv/Psalms/119/68", + "name": "Psalms 119:68", + "scripture": [ + { + "nr": "68", + "text": "Thou art good, and doest good; teach me thy statutes." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "68", + "version": "kjv" +} diff --git a/scripture/kjv/07/27/25/scripture.md b/scripture/kjv/07/27/25/scripture.md new file mode 100644 index 00000000..d1ba3ee3 --- /dev/null +++ b/scripture/kjv/07/27/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 119:68** + +68 Thou art good, and doest good; teach me thy statutes. + +[Sunday 27-July, 2025](https://getbible.life/kjv/Psalms/119/68) diff --git a/scripture/kjv/07/27/25/scripture.tg b/scripture/kjv/07/27/25/scripture.tg new file mode 100644 index 00000000..62e9f5eb --- /dev/null +++ b/scripture/kjv/07/27/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 119:68 +68 Thou art good, and doest good; teach me thy statutes. + +Sunday 27-July, 2025 diff --git a/scripture/kjv/07/27/25/scripture.tg.id b/scripture/kjv/07/27/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/27/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/27/25/scripture.today b/scripture/kjv/07/27/25/scripture.today new file mode 100644 index 00000000..d4eddf59 --- /dev/null +++ b/scripture/kjv/07/27/25/scripture.today @@ -0,0 +1 @@ +19 119:68 diff --git a/scripture/kjv/07/28/23/scripture.html b/scripture/kjv/07/28/23/scripture.html new file mode 100644 index 00000000..893b07fb --- /dev/null +++ b/scripture/kjv/07/28/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 20:18
+18 Every purpose is established by counsel: and with good advice make war.

+Friday 28-July, 2023 diff --git a/scripture/kjv/07/28/23/scripture.json b/scripture/kjv/07/28/23/scripture.json new file mode 100644 index 00000000..1dafae1e --- /dev/null +++ b/scripture/kjv/07/28/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "20", + "date": "Friday 28-July, 2023", + "getbible": "https://getbible.life/kjv/Proverbs/20/18", + "name": "Proverbs 20:18", + "scripture": [ + { + "nr": "18", + "text": "Every purpose is established by counsel: and with good advice make war." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18", + "version": "kjv" +} diff --git a/scripture/kjv/07/28/23/scripture.md b/scripture/kjv/07/28/23/scripture.md new file mode 100644 index 00000000..225268ce --- /dev/null +++ b/scripture/kjv/07/28/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 20:18** + +18 Every purpose is established by counsel: and with good advice make war. + +[Friday 28-July, 2023](https://getbible.life/kjv/Proverbs/20/18) diff --git a/scripture/kjv/07/28/23/scripture.tg b/scripture/kjv/07/28/23/scripture.tg new file mode 100644 index 00000000..99a4f5e0 --- /dev/null +++ b/scripture/kjv/07/28/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 20:18 +18 Every purpose is established by counsel: and with good advice make war. + +Friday 28-July, 2023 diff --git a/scripture/kjv/07/28/23/scripture.tg.id b/scripture/kjv/07/28/23/scripture.tg.id new file mode 100644 index 00000000..d90f2b1d --- /dev/null +++ b/scripture/kjv/07/28/23/scripture.tg.id @@ -0,0 +1 @@ +1026 diff --git a/scripture/kjv/07/28/23/scripture.today b/scripture/kjv/07/28/23/scripture.today new file mode 100644 index 00000000..9fc62385 --- /dev/null +++ b/scripture/kjv/07/28/23/scripture.today @@ -0,0 +1 @@ +20 20:18 diff --git a/scripture/kjv/07/28/24/scripture.html b/scripture/kjv/07/28/24/scripture.html new file mode 100644 index 00000000..b74e813d --- /dev/null +++ b/scripture/kjv/07/28/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 21:13
+13 Whoso stoppeth his ears at the cry of the poor, he also shall cry himself, but shall not be heard.

+Sunday 28-July, 2024 diff --git a/scripture/kjv/07/28/24/scripture.json b/scripture/kjv/07/28/24/scripture.json new file mode 100644 index 00000000..09d69a3f --- /dev/null +++ b/scripture/kjv/07/28/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "21", + "date": "Sunday 28-July, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/21/13", + "name": "Proverbs 21:13", + "scripture": [ + { + "nr": "13", + "text": "Whoso stoppeth his ears at the cry of the poor, he also shall cry himself, but shall not be heard." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13", + "version": "kjv" +} diff --git a/scripture/kjv/07/28/24/scripture.md b/scripture/kjv/07/28/24/scripture.md new file mode 100644 index 00000000..5979d136 --- /dev/null +++ b/scripture/kjv/07/28/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 21:13** + +13 Whoso stoppeth his ears at the cry of the poor, he also shall cry himself, but shall not be heard. + +[Sunday 28-July, 2024](https://getbible.life/kjv/Proverbs/21/13) diff --git a/scripture/kjv/07/28/24/scripture.tg b/scripture/kjv/07/28/24/scripture.tg new file mode 100644 index 00000000..a30ed2da --- /dev/null +++ b/scripture/kjv/07/28/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 21:13 +13 Whoso stoppeth his ears at the cry of the poor, he also shall cry himself, but shall not be heard. + +Sunday 28-July, 2024 diff --git a/scripture/kjv/07/28/24/scripture.tg.id b/scripture/kjv/07/28/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/28/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/28/24/scripture.today b/scripture/kjv/07/28/24/scripture.today new file mode 100644 index 00000000..0037f8ce --- /dev/null +++ b/scripture/kjv/07/28/24/scripture.today @@ -0,0 +1 @@ +20 21:13 diff --git a/scripture/kjv/07/28/25/scripture.html b/scripture/kjv/07/28/25/scripture.html new file mode 100644 index 00000000..2c3edd9c --- /dev/null +++ b/scripture/kjv/07/28/25/scripture.html @@ -0,0 +1,3 @@ +John 16:1
+1 These things have I spoken unto you, that ye should not be offended.

+Monday 28-July, 2025 diff --git a/scripture/kjv/07/28/25/scripture.json b/scripture/kjv/07/28/25/scripture.json new file mode 100644 index 00000000..30e430d4 --- /dev/null +++ b/scripture/kjv/07/28/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "16", + "date": "Monday 28-July, 2025", + "getbible": "https://getbible.life/kjv/John/16/1", + "name": "John 16:1", + "scripture": [ + { + "nr": "1", + "text": "These things have I spoken unto you, that ye should not be offended." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1", + "version": "kjv" +} diff --git a/scripture/kjv/07/28/25/scripture.md b/scripture/kjv/07/28/25/scripture.md new file mode 100644 index 00000000..216bc927 --- /dev/null +++ b/scripture/kjv/07/28/25/scripture.md @@ -0,0 +1,5 @@ +**John 16:1** + +1 These things have I spoken unto you, that ye should not be offended. + +[Monday 28-July, 2025](https://getbible.life/kjv/John/16/1) diff --git a/scripture/kjv/07/28/25/scripture.tg b/scripture/kjv/07/28/25/scripture.tg new file mode 100644 index 00000000..4f7f9432 --- /dev/null +++ b/scripture/kjv/07/28/25/scripture.tg @@ -0,0 +1,4 @@ +John 16:1 +1 These things have I spoken unto you, that ye should not be offended. + +Monday 28-July, 2025 diff --git a/scripture/kjv/07/28/25/scripture.tg.id b/scripture/kjv/07/28/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/28/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/28/25/scripture.today b/scripture/kjv/07/28/25/scripture.today new file mode 100644 index 00000000..7b3b8b1a --- /dev/null +++ b/scripture/kjv/07/28/25/scripture.today @@ -0,0 +1 @@ +43 16:1 diff --git a/scripture/kjv/07/29/23/scripture.html b/scripture/kjv/07/29/23/scripture.html new file mode 100644 index 00000000..e99fe85e --- /dev/null +++ b/scripture/kjv/07/29/23/scripture.html @@ -0,0 +1,3 @@ +Matthew 12:46-50
+46 While he yet talked to the people, behold, his mother and his brethren stood without, desiring to speak with him. 47 Then one said unto him, Behold, thy mother and thy brethren stand without, desiring to speak with thee. 48 But he answered and said unto him that told him, Who is my mother? and who are my brethren? 49 And he stretched forth his hand toward his disciples, and said, Behold my mother and my brethren! 50 For whosoever shall do the will of my Father which is in heaven, the same is my brother, and sister, and mother.

+Saturday 29-July, 2023 diff --git a/scripture/kjv/07/29/23/scripture.json b/scripture/kjv/07/29/23/scripture.json new file mode 100644 index 00000000..60678dfc --- /dev/null +++ b/scripture/kjv/07/29/23/scripture.json @@ -0,0 +1,33 @@ +{ + "book": "Matthew", + "chapter": "12", + "date": "Saturday 29-July, 2023", + "getbible": "https://getbible.life/kjv/Matthew/12/46-50", + "name": "Matthew 12:46-50", + "scripture": [ + { + "nr": "46", + "text": "While he yet talked to the people, behold, his mother and his brethren stood without, desiring to speak with him." + }, + { + "nr": "47", + "text": "Then one said unto him, Behold, thy mother and thy brethren stand without, desiring to speak with thee." + }, + { + "nr": "48", + "text": "But he answered and said unto him that told him, Who is my mother? and who are my brethren?" + }, + { + "nr": "49", + "text": "And he stretched forth his hand toward his disciples, and said, Behold my mother and my brethren!" + }, + { + "nr": "50", + "text": "For whosoever shall do the will of my Father which is in heaven, the same is my brother, and sister, and mother. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "46-50", + "version": "kjv" +} diff --git a/scripture/kjv/07/29/23/scripture.md b/scripture/kjv/07/29/23/scripture.md new file mode 100644 index 00000000..a6809a4d --- /dev/null +++ b/scripture/kjv/07/29/23/scripture.md @@ -0,0 +1,5 @@ +**Matthew 12:46-50** + +46 While he yet talked to the people, behold, his mother and his brethren stood without, desiring to speak with him. 47 Then one said unto him, Behold, thy mother and thy brethren stand without, desiring to speak with thee. 48 But he answered and said unto him that told him, Who is my mother? and who are my brethren? 49 And he stretched forth his hand toward his disciples, and said, Behold my mother and my brethren! 50 For whosoever shall do the will of my Father which is in heaven, the same is my brother, and sister, and mother. + +[Saturday 29-July, 2023](https://getbible.life/kjv/Matthew/12/46-50) diff --git a/scripture/kjv/07/29/23/scripture.tg b/scripture/kjv/07/29/23/scripture.tg new file mode 100644 index 00000000..b87bb963 --- /dev/null +++ b/scripture/kjv/07/29/23/scripture.tg @@ -0,0 +1,4 @@ +Matthew 12:46-50 +46 While he yet talked to the people, behold, his mother and his brethren stood without, desiring to speak with him. 47 Then one said unto him, Behold, thy mother and thy brethren stand without, desiring to speak with thee. 48 But he answered and said unto him that told him, Who is my mother? and who are my brethren? 49 And he stretched forth his hand toward his disciples, and said, Behold my mother and my brethren! 50 For whosoever shall do the will of my Father which is in heaven, the same is my brother, and sister, and mother. + +Saturday 29-July, 2023 diff --git a/scripture/kjv/07/29/23/scripture.tg.id b/scripture/kjv/07/29/23/scripture.tg.id new file mode 100644 index 00000000..327f63bd --- /dev/null +++ b/scripture/kjv/07/29/23/scripture.tg.id @@ -0,0 +1 @@ +1027 diff --git a/scripture/kjv/07/29/23/scripture.today b/scripture/kjv/07/29/23/scripture.today new file mode 100644 index 00000000..3c482cc2 --- /dev/null +++ b/scripture/kjv/07/29/23/scripture.today @@ -0,0 +1 @@ +40 12:46-50 diff --git a/scripture/kjv/07/29/24/scripture.html b/scripture/kjv/07/29/24/scripture.html new file mode 100644 index 00000000..1a2a0a3d --- /dev/null +++ b/scripture/kjv/07/29/24/scripture.html @@ -0,0 +1,3 @@ +Galatians 3:28
+28 There is neither Jew nor Greek, there is neither bond nor free, there is neither male nor female: for ye are all one in Christ Jesus.

+Monday 29-July, 2024 diff --git a/scripture/kjv/07/29/24/scripture.json b/scripture/kjv/07/29/24/scripture.json new file mode 100644 index 00000000..643b51f9 --- /dev/null +++ b/scripture/kjv/07/29/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Galatians", + "chapter": "3", + "date": "Monday 29-July, 2024", + "getbible": "https://getbible.life/kjv/Galatians/3/28", + "name": "Galatians 3:28", + "scripture": [ + { + "nr": "28", + "text": "There is neither Jew nor Greek, there is neither bond nor free, there is neither male nor female: for ye are all one in Christ Jesus." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "28", + "version": "kjv" +} diff --git a/scripture/kjv/07/29/24/scripture.md b/scripture/kjv/07/29/24/scripture.md new file mode 100644 index 00000000..64765bfe --- /dev/null +++ b/scripture/kjv/07/29/24/scripture.md @@ -0,0 +1,5 @@ +**Galatians 3:28** + +28 There is neither Jew nor Greek, there is neither bond nor free, there is neither male nor female: for ye are all one in Christ Jesus. + +[Monday 29-July, 2024](https://getbible.life/kjv/Galatians/3/28) diff --git a/scripture/kjv/07/29/24/scripture.tg b/scripture/kjv/07/29/24/scripture.tg new file mode 100644 index 00000000..0fbc588b --- /dev/null +++ b/scripture/kjv/07/29/24/scripture.tg @@ -0,0 +1,4 @@ +Galatians 3:28 +28 There is neither Jew nor Greek, there is neither bond nor free, there is neither male nor female: for ye are all one in Christ Jesus. + +Monday 29-July, 2024 diff --git a/scripture/kjv/07/29/24/scripture.tg.id b/scripture/kjv/07/29/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/29/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/29/24/scripture.today b/scripture/kjv/07/29/24/scripture.today new file mode 100644 index 00000000..1d54a358 --- /dev/null +++ b/scripture/kjv/07/29/24/scripture.today @@ -0,0 +1 @@ +48 3:28 diff --git a/scripture/kjv/07/29/25/scripture.html b/scripture/kjv/07/29/25/scripture.html new file mode 100644 index 00000000..7b38bbe9 --- /dev/null +++ b/scripture/kjv/07/29/25/scripture.html @@ -0,0 +1,3 @@ +Luke 24:25
+25 Then he said unto them, O fools, and slow of heart to believe all that the prophets have spoken:

+Tuesday 29-July, 2025 diff --git a/scripture/kjv/07/29/25/scripture.json b/scripture/kjv/07/29/25/scripture.json new file mode 100644 index 00000000..771bad11 --- /dev/null +++ b/scripture/kjv/07/29/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "24", + "date": "Tuesday 29-July, 2025", + "getbible": "https://getbible.life/kjv/Luke/24/25", + "name": "Luke 24:25", + "scripture": [ + { + "nr": "25", + "text": "Then he said unto them, O fools, and slow of heart to believe all that the prophets have spoken:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "25", + "version": "kjv" +} diff --git a/scripture/kjv/07/29/25/scripture.md b/scripture/kjv/07/29/25/scripture.md new file mode 100644 index 00000000..b352f30a --- /dev/null +++ b/scripture/kjv/07/29/25/scripture.md @@ -0,0 +1,5 @@ +**Luke 24:25** + +25 Then he said unto them, O fools, and slow of heart to believe all that the prophets have spoken: + +[Tuesday 29-July, 2025](https://getbible.life/kjv/Luke/24/25) diff --git a/scripture/kjv/07/29/25/scripture.tg b/scripture/kjv/07/29/25/scripture.tg new file mode 100644 index 00000000..124795f7 --- /dev/null +++ b/scripture/kjv/07/29/25/scripture.tg @@ -0,0 +1,4 @@ +Luke 24:25 +25 Then he said unto them, O fools, and slow of heart to believe all that the prophets have spoken: + +Tuesday 29-July, 2025 diff --git a/scripture/kjv/07/29/25/scripture.tg.id b/scripture/kjv/07/29/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/29/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/29/25/scripture.today b/scripture/kjv/07/29/25/scripture.today new file mode 100644 index 00000000..2d637d55 --- /dev/null +++ b/scripture/kjv/07/29/25/scripture.today @@ -0,0 +1 @@ +42 24:25 diff --git a/scripture/kjv/07/30/23/scripture.html b/scripture/kjv/07/30/23/scripture.html new file mode 100644 index 00000000..945412ba --- /dev/null +++ b/scripture/kjv/07/30/23/scripture.html @@ -0,0 +1,3 @@ +Luke 8:1-3
+1 And it came to pass afterward, that he went throughout every city and village, preaching and shewing the glad tidings of the kingdom of God: and the twelve were with him, 2 And certain women, which had been healed of evil spirits and infirmities, Mary called Magdalene, out of whom went seven devils, 3 And Joanna the wife of Chuza Herod’s steward, and Susanna, and many others, which ministered unto him of their substance.

+Sunday 30-July, 2023 diff --git a/scripture/kjv/07/30/23/scripture.json b/scripture/kjv/07/30/23/scripture.json new file mode 100644 index 00000000..fb9b5743 --- /dev/null +++ b/scripture/kjv/07/30/23/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Luke", + "chapter": "8", + "date": "Sunday 30-July, 2023", + "getbible": "https://getbible.life/kjv/Luke/8/1-3", + "name": "Luke 8:1-3", + "scripture": [ + { + "nr": "1", + "text": "And it came to pass afterward, that he went throughout every city and village, preaching and shewing the glad tidings of the kingdom of God: and the twelve were with him," + }, + { + "nr": "2", + "text": "And certain women, which had been healed of evil spirits and infirmities, Mary called Magdalene, out of whom went seven devils," + }, + { + "nr": "3", + "text": "And Joanna the wife of Chuza Herod’s steward, and Susanna, and many others, which ministered unto him of their substance." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-3", + "version": "kjv" +} diff --git a/scripture/kjv/07/30/23/scripture.md b/scripture/kjv/07/30/23/scripture.md new file mode 100644 index 00000000..6cbb9e6c --- /dev/null +++ b/scripture/kjv/07/30/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 8:1-3** + +1 And it came to pass afterward, that he went throughout every city and village, preaching and shewing the glad tidings of the kingdom of God: and the twelve were with him, 2 And certain women, which had been healed of evil spirits and infirmities, Mary called Magdalene, out of whom went seven devils, 3 And Joanna the wife of Chuza Herod’s steward, and Susanna, and many others, which ministered unto him of their substance. + +[Sunday 30-July, 2023](https://getbible.life/kjv/Luke/8/1-3) diff --git a/scripture/kjv/07/30/23/scripture.tg b/scripture/kjv/07/30/23/scripture.tg new file mode 100644 index 00000000..1bd39a6c --- /dev/null +++ b/scripture/kjv/07/30/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 8:1-3 +1 And it came to pass afterward, that he went throughout every city and village, preaching and shewing the glad tidings of the kingdom of God: and the twelve were with him, 2 And certain women, which had been healed of evil spirits and infirmities, Mary called Magdalene, out of whom went seven devils, 3 And Joanna the wife of Chuza Herod’s steward, and Susanna, and many others, which ministered unto him of their substance. + +Sunday 30-July, 2023 diff --git a/scripture/kjv/07/30/23/scripture.tg.id b/scripture/kjv/07/30/23/scripture.tg.id new file mode 100644 index 00000000..1f3d8a7a --- /dev/null +++ b/scripture/kjv/07/30/23/scripture.tg.id @@ -0,0 +1 @@ +1028 diff --git a/scripture/kjv/07/30/23/scripture.today b/scripture/kjv/07/30/23/scripture.today new file mode 100644 index 00000000..b88ef195 --- /dev/null +++ b/scripture/kjv/07/30/23/scripture.today @@ -0,0 +1 @@ +42 8:1-3 diff --git a/scripture/kjv/07/30/24/scripture.html b/scripture/kjv/07/30/24/scripture.html new file mode 100644 index 00000000..9401f670 --- /dev/null +++ b/scripture/kjv/07/30/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 84:4
+4 Blessed are they that dwell in thy house: they will be still praising thee. Selah.

+Tuesday 30-July, 2024 diff --git a/scripture/kjv/07/30/24/scripture.json b/scripture/kjv/07/30/24/scripture.json new file mode 100644 index 00000000..6eb5b344 --- /dev/null +++ b/scripture/kjv/07/30/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "84", + "date": "Tuesday 30-July, 2024", + "getbible": "https://getbible.life/kjv/Psalms/84/4", + "name": "Psalms 84:4", + "scripture": [ + { + "nr": "4", + "text": "Blessed are they that dwell in thy house: they will be still praising thee. Selah." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4", + "version": "kjv" +} diff --git a/scripture/kjv/07/30/24/scripture.md b/scripture/kjv/07/30/24/scripture.md new file mode 100644 index 00000000..367a7168 --- /dev/null +++ b/scripture/kjv/07/30/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 84:4** + +4 Blessed are they that dwell in thy house: they will be still praising thee. Selah. + +[Tuesday 30-July, 2024](https://getbible.life/kjv/Psalms/84/4) diff --git a/scripture/kjv/07/30/24/scripture.tg b/scripture/kjv/07/30/24/scripture.tg new file mode 100644 index 00000000..17f4916b --- /dev/null +++ b/scripture/kjv/07/30/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 84:4 +4 Blessed are they that dwell in thy house: they will be still praising thee. Selah. + +Tuesday 30-July, 2024 diff --git a/scripture/kjv/07/30/24/scripture.tg.id b/scripture/kjv/07/30/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/30/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/30/24/scripture.today b/scripture/kjv/07/30/24/scripture.today new file mode 100644 index 00000000..6c38d9b1 --- /dev/null +++ b/scripture/kjv/07/30/24/scripture.today @@ -0,0 +1 @@ +19 84:4 diff --git a/scripture/kjv/07/30/25/scripture.html b/scripture/kjv/07/30/25/scripture.html new file mode 100644 index 00000000..753c3361 --- /dev/null +++ b/scripture/kjv/07/30/25/scripture.html @@ -0,0 +1,3 @@ +Acts 7:3
+3 And said unto him, Get thee out of thy country, and from thy kindred, and come into the land which I shall shew thee.

+Wednesday 30-July, 2025 diff --git a/scripture/kjv/07/30/25/scripture.json b/scripture/kjv/07/30/25/scripture.json new file mode 100644 index 00000000..864a1f1e --- /dev/null +++ b/scripture/kjv/07/30/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Acts", + "chapter": "7", + "date": "Wednesday 30-July, 2025", + "getbible": "https://getbible.life/kjv/Acts/7/3", + "name": "Acts 7:3", + "scripture": [ + { + "nr": "3", + "text": "And said unto him, Get thee out of thy country, and from thy kindred, and come into the land which I shall shew thee." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3", + "version": "kjv" +} diff --git a/scripture/kjv/07/30/25/scripture.md b/scripture/kjv/07/30/25/scripture.md new file mode 100644 index 00000000..447b5644 --- /dev/null +++ b/scripture/kjv/07/30/25/scripture.md @@ -0,0 +1,5 @@ +**Acts 7:3** + +3 And said unto him, Get thee out of thy country, and from thy kindred, and come into the land which I shall shew thee. + +[Wednesday 30-July, 2025](https://getbible.life/kjv/Acts/7/3) diff --git a/scripture/kjv/07/30/25/scripture.tg b/scripture/kjv/07/30/25/scripture.tg new file mode 100644 index 00000000..eb8a61bc --- /dev/null +++ b/scripture/kjv/07/30/25/scripture.tg @@ -0,0 +1,4 @@ +Acts 7:3 +3 And said unto him, Get thee out of thy country, and from thy kindred, and come into the land which I shall shew thee. + +Wednesday 30-July, 2025 diff --git a/scripture/kjv/07/30/25/scripture.tg.id b/scripture/kjv/07/30/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/30/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/30/25/scripture.today b/scripture/kjv/07/30/25/scripture.today new file mode 100644 index 00000000..3f160c6a --- /dev/null +++ b/scripture/kjv/07/30/25/scripture.today @@ -0,0 +1 @@ +44 7:3 diff --git a/scripture/kjv/07/31/23/scripture.html b/scripture/kjv/07/31/23/scripture.html new file mode 100644 index 00000000..2df2fcb2 --- /dev/null +++ b/scripture/kjv/07/31/23/scripture.html @@ -0,0 +1,3 @@ +Ephesians 6:14
+14 Stand therefore, having your loins girt about with truth, and having on the breastplate of righteousness;

+Monday 31-July, 2023 diff --git a/scripture/kjv/07/31/23/scripture.json b/scripture/kjv/07/31/23/scripture.json new file mode 100644 index 00000000..2fc23a21 --- /dev/null +++ b/scripture/kjv/07/31/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ephesians", + "chapter": "6", + "date": "Monday 31-July, 2023", + "getbible": "https://getbible.life/kjv/Ephesians/6/14", + "name": "Ephesians 6:14", + "scripture": [ + { + "nr": "14", + "text": "Stand therefore, having your loins girt about with truth, and having on the breastplate of righteousness;" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/07/31/23/scripture.md b/scripture/kjv/07/31/23/scripture.md new file mode 100644 index 00000000..58b01a28 --- /dev/null +++ b/scripture/kjv/07/31/23/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 6:14** + +14 Stand therefore, having your loins girt about with truth, and having on the breastplate of righteousness; + +[Monday 31-July, 2023](https://getbible.life/kjv/Ephesians/6/14) diff --git a/scripture/kjv/07/31/23/scripture.tg b/scripture/kjv/07/31/23/scripture.tg new file mode 100644 index 00000000..ecd40cab --- /dev/null +++ b/scripture/kjv/07/31/23/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 6:14 +14 Stand therefore, having your loins girt about with truth, and having on the breastplate of righteousness; + +Monday 31-July, 2023 diff --git a/scripture/kjv/07/31/23/scripture.tg.id b/scripture/kjv/07/31/23/scripture.tg.id new file mode 100644 index 00000000..5208b591 --- /dev/null +++ b/scripture/kjv/07/31/23/scripture.tg.id @@ -0,0 +1 @@ +1029 diff --git a/scripture/kjv/07/31/23/scripture.today b/scripture/kjv/07/31/23/scripture.today new file mode 100644 index 00000000..c110dc48 --- /dev/null +++ b/scripture/kjv/07/31/23/scripture.today @@ -0,0 +1 @@ +49 6:14 diff --git a/scripture/kjv/07/31/24/scripture.html b/scripture/kjv/07/31/24/scripture.html new file mode 100644 index 00000000..4efb4800 --- /dev/null +++ b/scripture/kjv/07/31/24/scripture.html @@ -0,0 +1,3 @@ +Luke 12:6-7
+6 Are not five sparrows sold for two farthings, and not one of them is forgotten before God? 7 But even the very hairs of your head are all numbered. Fear not therefore: ye are of more value than many sparrows.

+Wednesday 31-July, 2024 diff --git a/scripture/kjv/07/31/24/scripture.json b/scripture/kjv/07/31/24/scripture.json new file mode 100644 index 00000000..a14f3b81 --- /dev/null +++ b/scripture/kjv/07/31/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Luke", + "chapter": "12", + "date": "Wednesday 31-July, 2024", + "getbible": "https://getbible.life/kjv/Luke/12/6-7", + "name": "Luke 12:6-7", + "scripture": [ + { + "nr": "6", + "text": "Are not five sparrows sold for two farthings, and not one of them is forgotten before God?" + }, + { + "nr": "7", + "text": "But even the very hairs of your head are all numbered. Fear not therefore: ye are of more value than many sparrows." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6-7", + "version": "kjv" +} diff --git a/scripture/kjv/07/31/24/scripture.md b/scripture/kjv/07/31/24/scripture.md new file mode 100644 index 00000000..98001f96 --- /dev/null +++ b/scripture/kjv/07/31/24/scripture.md @@ -0,0 +1,5 @@ +**Luke 12:6-7** + +6 Are not five sparrows sold for two farthings, and not one of them is forgotten before God? 7 But even the very hairs of your head are all numbered. Fear not therefore: ye are of more value than many sparrows. + +[Wednesday 31-July, 2024](https://getbible.life/kjv/Luke/12/6-7) diff --git a/scripture/kjv/07/31/24/scripture.tg b/scripture/kjv/07/31/24/scripture.tg new file mode 100644 index 00000000..1dd2d40f --- /dev/null +++ b/scripture/kjv/07/31/24/scripture.tg @@ -0,0 +1,4 @@ +Luke 12:6-7 +6 Are not five sparrows sold for two farthings, and not one of them is forgotten before God? 7 But even the very hairs of your head are all numbered. Fear not therefore: ye are of more value than many sparrows. + +Wednesday 31-July, 2024 diff --git a/scripture/kjv/07/31/24/scripture.tg.id b/scripture/kjv/07/31/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/31/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/31/24/scripture.today b/scripture/kjv/07/31/24/scripture.today new file mode 100644 index 00000000..4c2079b9 --- /dev/null +++ b/scripture/kjv/07/31/24/scripture.today @@ -0,0 +1 @@ +42 12:6-7 diff --git a/scripture/kjv/07/31/25/scripture.html b/scripture/kjv/07/31/25/scripture.html new file mode 100644 index 00000000..6184e205 --- /dev/null +++ b/scripture/kjv/07/31/25/scripture.html @@ -0,0 +1,3 @@ +Luke 24:45
+45 Then opened he their understanding, that they might understand the scriptures,

+Thursday 31-July, 2025 diff --git a/scripture/kjv/07/31/25/scripture.json b/scripture/kjv/07/31/25/scripture.json new file mode 100644 index 00000000..faa3bac5 --- /dev/null +++ b/scripture/kjv/07/31/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "24", + "date": "Thursday 31-July, 2025", + "getbible": "https://getbible.life/kjv/Luke/24/45", + "name": "Luke 24:45", + "scripture": [ + { + "nr": "45", + "text": "Then opened he their understanding, that they might understand the scriptures," + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "45", + "version": "kjv" +} diff --git a/scripture/kjv/07/31/25/scripture.md b/scripture/kjv/07/31/25/scripture.md new file mode 100644 index 00000000..45af2b34 --- /dev/null +++ b/scripture/kjv/07/31/25/scripture.md @@ -0,0 +1,5 @@ +**Luke 24:45** + +45 Then opened he their understanding, that they might understand the scriptures, + +[Thursday 31-July, 2025](https://getbible.life/kjv/Luke/24/45) diff --git a/scripture/kjv/07/31/25/scripture.tg b/scripture/kjv/07/31/25/scripture.tg new file mode 100644 index 00000000..2cad96fb --- /dev/null +++ b/scripture/kjv/07/31/25/scripture.tg @@ -0,0 +1,4 @@ +Luke 24:45 +45 Then opened he their understanding, that they might understand the scriptures, + +Thursday 31-July, 2025 diff --git a/scripture/kjv/07/31/25/scripture.tg.id b/scripture/kjv/07/31/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/07/31/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/07/31/25/scripture.today b/scripture/kjv/07/31/25/scripture.today new file mode 100644 index 00000000..fb2efddc --- /dev/null +++ b/scripture/kjv/07/31/25/scripture.today @@ -0,0 +1 @@ +42 24:45 diff --git a/scripture/kjv/08/01/23/scripture.html b/scripture/kjv/08/01/23/scripture.html new file mode 100644 index 00000000..86404742 --- /dev/null +++ b/scripture/kjv/08/01/23/scripture.html @@ -0,0 +1,3 @@ +Galatians 5:19-21
+19 Now the works of the flesh are manifest, which are these; Adultery, fornication, uncleanness, lasciviousness, 20 Idolatry, witchcraft, hatred, variance, emulations, wrath, strife, seditions, heresies, 21 Envyings, murders, drunkenness, revellings, and such like: of the which I tell you before, as I have also told you in time past, that they which do such things shall not inherit the kingdom of God.

+Tuesday 01-August, 2023 diff --git a/scripture/kjv/08/01/23/scripture.json b/scripture/kjv/08/01/23/scripture.json new file mode 100644 index 00000000..00310a43 --- /dev/null +++ b/scripture/kjv/08/01/23/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Galatians", + "chapter": "5", + "date": "Tuesday 01-August, 2023", + "getbible": "https://getbible.life/kjv/Galatians/5/19-21", + "name": "Galatians 5:19-21", + "scripture": [ + { + "nr": "19", + "text": "Now the works of the flesh are manifest, which are these; Adultery, fornication, uncleanness, lasciviousness," + }, + { + "nr": "20", + "text": "Idolatry, witchcraft, hatred, variance, emulations, wrath, strife, seditions, heresies," + }, + { + "nr": "21", + "text": "Envyings, murders, drunkenness, revellings, and such like: of the which I tell you before, as I have also told you in time past, that they which do such things shall not inherit the kingdom of God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "19-21", + "version": "kjv" +} diff --git a/scripture/kjv/08/01/23/scripture.md b/scripture/kjv/08/01/23/scripture.md new file mode 100644 index 00000000..ca63d519 --- /dev/null +++ b/scripture/kjv/08/01/23/scripture.md @@ -0,0 +1,5 @@ +**Galatians 5:19-21** + +19 Now the works of the flesh are manifest, which are these; Adultery, fornication, uncleanness, lasciviousness, 20 Idolatry, witchcraft, hatred, variance, emulations, wrath, strife, seditions, heresies, 21 Envyings, murders, drunkenness, revellings, and such like: of the which I tell you before, as I have also told you in time past, that they which do such things shall not inherit the kingdom of God. + +[Tuesday 01-August, 2023](https://getbible.life/kjv/Galatians/5/19-21) diff --git a/scripture/kjv/08/01/23/scripture.tg b/scripture/kjv/08/01/23/scripture.tg new file mode 100644 index 00000000..f4b234df --- /dev/null +++ b/scripture/kjv/08/01/23/scripture.tg @@ -0,0 +1,4 @@ +Galatians 5:19-21 +19 Now the works of the flesh are manifest, which are these; Adultery, fornication, uncleanness, lasciviousness, 20 Idolatry, witchcraft, hatred, variance, emulations, wrath, strife, seditions, heresies, 21 Envyings, murders, drunkenness, revellings, and such like: of the which I tell you before, as I have also told you in time past, that they which do such things shall not inherit the kingdom of God. + +Tuesday 01-August, 2023 diff --git a/scripture/kjv/08/01/23/scripture.tg.id b/scripture/kjv/08/01/23/scripture.tg.id new file mode 100644 index 00000000..e445c3bb --- /dev/null +++ b/scripture/kjv/08/01/23/scripture.tg.id @@ -0,0 +1 @@ +1030 diff --git a/scripture/kjv/08/01/23/scripture.today b/scripture/kjv/08/01/23/scripture.today new file mode 100644 index 00000000..12d8a4aa --- /dev/null +++ b/scripture/kjv/08/01/23/scripture.today @@ -0,0 +1 @@ +48 5:19-21 diff --git a/scripture/kjv/08/01/24/scripture.html b/scripture/kjv/08/01/24/scripture.html new file mode 100644 index 00000000..5c1d762a --- /dev/null +++ b/scripture/kjv/08/01/24/scripture.html @@ -0,0 +1,3 @@ +Galatians 6:7
+7 Be not deceived; God is not mocked: for whatsoever a man soweth, that shall he also reap.

+Thursday 01-August, 2024 diff --git a/scripture/kjv/08/01/24/scripture.json b/scripture/kjv/08/01/24/scripture.json new file mode 100644 index 00000000..25beda4f --- /dev/null +++ b/scripture/kjv/08/01/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Galatians", + "chapter": "6", + "date": "Thursday 01-August, 2024", + "getbible": "https://getbible.life/kjv/Galatians/6/7", + "name": "Galatians 6:7", + "scripture": [ + { + "nr": "7", + "text": "Be not deceived; God is not mocked: for whatsoever a man soweth, that shall he also reap." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7", + "version": "kjv" +} diff --git a/scripture/kjv/08/01/24/scripture.md b/scripture/kjv/08/01/24/scripture.md new file mode 100644 index 00000000..64b3c4fb --- /dev/null +++ b/scripture/kjv/08/01/24/scripture.md @@ -0,0 +1,5 @@ +**Galatians 6:7** + +7 Be not deceived; God is not mocked: for whatsoever a man soweth, that shall he also reap. + +[Thursday 01-August, 2024](https://getbible.life/kjv/Galatians/6/7) diff --git a/scripture/kjv/08/01/24/scripture.tg b/scripture/kjv/08/01/24/scripture.tg new file mode 100644 index 00000000..a09426ba --- /dev/null +++ b/scripture/kjv/08/01/24/scripture.tg @@ -0,0 +1,4 @@ +Galatians 6:7 +7 Be not deceived; God is not mocked: for whatsoever a man soweth, that shall he also reap. + +Thursday 01-August, 2024 diff --git a/scripture/kjv/08/01/24/scripture.tg.id b/scripture/kjv/08/01/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/01/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/01/24/scripture.today b/scripture/kjv/08/01/24/scripture.today new file mode 100644 index 00000000..8a653b48 --- /dev/null +++ b/scripture/kjv/08/01/24/scripture.today @@ -0,0 +1 @@ +48 6:7 diff --git a/scripture/kjv/08/01/25/scripture.html b/scripture/kjv/08/01/25/scripture.html new file mode 100644 index 00000000..449c191a --- /dev/null +++ b/scripture/kjv/08/01/25/scripture.html @@ -0,0 +1,3 @@ +John 8:26
+26 I have many things to say and to judge of you: but he that sent me is true; and I speak to the world those things which I have heard of him.

+Friday 01-August, 2025 diff --git a/scripture/kjv/08/01/25/scripture.json b/scripture/kjv/08/01/25/scripture.json new file mode 100644 index 00000000..6292fa34 --- /dev/null +++ b/scripture/kjv/08/01/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "8", + "date": "Friday 01-August, 2025", + "getbible": "https://getbible.life/kjv/John/8/26", + "name": "John 8:26", + "scripture": [ + { + "nr": "26", + "text": "I have many things to say and to judge of you: but he that sent me is true; and I speak to the world those things which I have heard of him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "26", + "version": "kjv" +} diff --git a/scripture/kjv/08/01/25/scripture.md b/scripture/kjv/08/01/25/scripture.md new file mode 100644 index 00000000..72e2e5fb --- /dev/null +++ b/scripture/kjv/08/01/25/scripture.md @@ -0,0 +1,5 @@ +**John 8:26** + +26 I have many things to say and to judge of you: but he that sent me is true; and I speak to the world those things which I have heard of him. + +[Friday 01-August, 2025](https://getbible.life/kjv/John/8/26) diff --git a/scripture/kjv/08/01/25/scripture.tg b/scripture/kjv/08/01/25/scripture.tg new file mode 100644 index 00000000..e647f255 --- /dev/null +++ b/scripture/kjv/08/01/25/scripture.tg @@ -0,0 +1,4 @@ +John 8:26 +26 I have many things to say and to judge of you: but he that sent me is true; and I speak to the world those things which I have heard of him. + +Friday 01-August, 2025 diff --git a/scripture/kjv/08/01/25/scripture.tg.id b/scripture/kjv/08/01/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/01/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/01/25/scripture.today b/scripture/kjv/08/01/25/scripture.today new file mode 100644 index 00000000..e793429b --- /dev/null +++ b/scripture/kjv/08/01/25/scripture.today @@ -0,0 +1 @@ +43 8:26 diff --git a/scripture/kjv/08/02/23/scripture.html b/scripture/kjv/08/02/23/scripture.html new file mode 100644 index 00000000..fa95e414 --- /dev/null +++ b/scripture/kjv/08/02/23/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 8:8
+8 I speak not by commandment, but by occasion of the forwardness of others, and to prove the sincerity of your love.

+Wednesday 02-August, 2023 diff --git a/scripture/kjv/08/02/23/scripture.json b/scripture/kjv/08/02/23/scripture.json new file mode 100644 index 00000000..ede8bce2 --- /dev/null +++ b/scripture/kjv/08/02/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "8", + "date": "Wednesday 02-August, 2023", + "getbible": "https://getbible.life/kjv/2 Corinthians/8/8", + "name": "2 Corinthians 8:8", + "scripture": [ + { + "nr": "8", + "text": "I speak not by commandment, but by occasion of the forwardness of others, and to prove the sincerity of your love." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8", + "version": "kjv" +} diff --git a/scripture/kjv/08/02/23/scripture.md b/scripture/kjv/08/02/23/scripture.md new file mode 100644 index 00000000..2caa33f1 --- /dev/null +++ b/scripture/kjv/08/02/23/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 8:8** + +8 I speak not by commandment, but by occasion of the forwardness of others, and to prove the sincerity of your love. + +[Wednesday 02-August, 2023](https://getbible.life/kjv/2 Corinthians/8/8) diff --git a/scripture/kjv/08/02/23/scripture.tg b/scripture/kjv/08/02/23/scripture.tg new file mode 100644 index 00000000..03162a25 --- /dev/null +++ b/scripture/kjv/08/02/23/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 8:8 +8 I speak not by commandment, but by occasion of the forwardness of others, and to prove the sincerity of your love. + +Wednesday 02-August, 2023 diff --git a/scripture/kjv/08/02/23/scripture.tg.id b/scripture/kjv/08/02/23/scripture.tg.id new file mode 100644 index 00000000..09de93e8 --- /dev/null +++ b/scripture/kjv/08/02/23/scripture.tg.id @@ -0,0 +1 @@ +1031 diff --git a/scripture/kjv/08/02/23/scripture.today b/scripture/kjv/08/02/23/scripture.today new file mode 100644 index 00000000..a45e1a8f --- /dev/null +++ b/scripture/kjv/08/02/23/scripture.today @@ -0,0 +1 @@ +47 8:8 diff --git a/scripture/kjv/08/02/24/scripture.html b/scripture/kjv/08/02/24/scripture.html new file mode 100644 index 00000000..9ac98086 --- /dev/null +++ b/scripture/kjv/08/02/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 25:13
+13 His soul shall dwell at ease; and his seed shall inherit the earth.

+Friday 02-August, 2024 diff --git a/scripture/kjv/08/02/24/scripture.json b/scripture/kjv/08/02/24/scripture.json new file mode 100644 index 00000000..4767f605 --- /dev/null +++ b/scripture/kjv/08/02/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "25", + "date": "Friday 02-August, 2024", + "getbible": "https://getbible.life/kjv/Psalms/25/13", + "name": "Psalms 25:13", + "scripture": [ + { + "nr": "13", + "text": "His soul shall dwell at ease; and his seed shall inherit the earth." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13", + "version": "kjv" +} diff --git a/scripture/kjv/08/02/24/scripture.md b/scripture/kjv/08/02/24/scripture.md new file mode 100644 index 00000000..08ab9940 --- /dev/null +++ b/scripture/kjv/08/02/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 25:13** + +13 His soul shall dwell at ease; and his seed shall inherit the earth. + +[Friday 02-August, 2024](https://getbible.life/kjv/Psalms/25/13) diff --git a/scripture/kjv/08/02/24/scripture.tg b/scripture/kjv/08/02/24/scripture.tg new file mode 100644 index 00000000..6df23e61 --- /dev/null +++ b/scripture/kjv/08/02/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 25:13 +13 His soul shall dwell at ease; and his seed shall inherit the earth. + +Friday 02-August, 2024 diff --git a/scripture/kjv/08/02/24/scripture.tg.id b/scripture/kjv/08/02/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/02/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/02/24/scripture.today b/scripture/kjv/08/02/24/scripture.today new file mode 100644 index 00000000..5e8f8574 --- /dev/null +++ b/scripture/kjv/08/02/24/scripture.today @@ -0,0 +1 @@ +19 25:13 diff --git a/scripture/kjv/08/02/25/scripture.html b/scripture/kjv/08/02/25/scripture.html new file mode 100644 index 00000000..191629fc --- /dev/null +++ b/scripture/kjv/08/02/25/scripture.html @@ -0,0 +1,3 @@ +John 8:34
+34 Jesus answered them, Verily, verily, I say unto you, Whosoever committeth sin is the servant of sin.

+Saturday 02-August, 2025 diff --git a/scripture/kjv/08/02/25/scripture.json b/scripture/kjv/08/02/25/scripture.json new file mode 100644 index 00000000..5c020a19 --- /dev/null +++ b/scripture/kjv/08/02/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "8", + "date": "Saturday 02-August, 2025", + "getbible": "https://getbible.life/kjv/John/8/34", + "name": "John 8:34", + "scripture": [ + { + "nr": "34", + "text": "Jesus answered them, Verily, verily, I say unto you, Whosoever committeth sin is the servant of sin." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "34", + "version": "kjv" +} diff --git a/scripture/kjv/08/02/25/scripture.md b/scripture/kjv/08/02/25/scripture.md new file mode 100644 index 00000000..77ff84a7 --- /dev/null +++ b/scripture/kjv/08/02/25/scripture.md @@ -0,0 +1,5 @@ +**John 8:34** + +34 Jesus answered them, Verily, verily, I say unto you, Whosoever committeth sin is the servant of sin. + +[Saturday 02-August, 2025](https://getbible.life/kjv/John/8/34) diff --git a/scripture/kjv/08/02/25/scripture.tg b/scripture/kjv/08/02/25/scripture.tg new file mode 100644 index 00000000..d809bef0 --- /dev/null +++ b/scripture/kjv/08/02/25/scripture.tg @@ -0,0 +1,4 @@ +John 8:34 +34 Jesus answered them, Verily, verily, I say unto you, Whosoever committeth sin is the servant of sin. + +Saturday 02-August, 2025 diff --git a/scripture/kjv/08/02/25/scripture.tg.id b/scripture/kjv/08/02/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/02/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/02/25/scripture.today b/scripture/kjv/08/02/25/scripture.today new file mode 100644 index 00000000..3188fd02 --- /dev/null +++ b/scripture/kjv/08/02/25/scripture.today @@ -0,0 +1 @@ +43 8:34 diff --git a/scripture/kjv/08/03/23/scripture.html b/scripture/kjv/08/03/23/scripture.html new file mode 100644 index 00000000..ce6aec39 --- /dev/null +++ b/scripture/kjv/08/03/23/scripture.html @@ -0,0 +1,3 @@ +Philippians 1:22-23
+22 But if I live in the flesh, this is the fruit of my labour: yet what I shall choose I wot not. 23 For I am in a strait betwixt two, having a desire to depart, and to be with Christ; which is far better:

+Thursday 03-August, 2023 diff --git a/scripture/kjv/08/03/23/scripture.json b/scripture/kjv/08/03/23/scripture.json new file mode 100644 index 00000000..3cda1232 --- /dev/null +++ b/scripture/kjv/08/03/23/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Philippians", + "chapter": "1", + "date": "Thursday 03-August, 2023", + "getbible": "https://getbible.life/kjv/Philippians/1/22-23", + "name": "Philippians 1:22-23", + "scripture": [ + { + "nr": "22", + "text": "But if I live in the flesh, this is the fruit of my labour: yet what I shall choose I wot not." + }, + { + "nr": "23", + "text": "For I am in a strait betwixt two, having a desire to depart, and to be with Christ; which is far better:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "22-23", + "version": "kjv" +} diff --git a/scripture/kjv/08/03/23/scripture.md b/scripture/kjv/08/03/23/scripture.md new file mode 100644 index 00000000..991c03fe --- /dev/null +++ b/scripture/kjv/08/03/23/scripture.md @@ -0,0 +1,5 @@ +**Philippians 1:22-23** + +22 But if I live in the flesh, this is the fruit of my labour: yet what I shall choose I wot not. 23 For I am in a strait betwixt two, having a desire to depart, and to be with Christ; which is far better: + +[Thursday 03-August, 2023](https://getbible.life/kjv/Philippians/1/22-23) diff --git a/scripture/kjv/08/03/23/scripture.tg b/scripture/kjv/08/03/23/scripture.tg new file mode 100644 index 00000000..aedbee22 --- /dev/null +++ b/scripture/kjv/08/03/23/scripture.tg @@ -0,0 +1,4 @@ +Philippians 1:22-23 +22 But if I live in the flesh, this is the fruit of my labour: yet what I shall choose I wot not. 23 For I am in a strait betwixt two, having a desire to depart, and to be with Christ; which is far better: + +Thursday 03-August, 2023 diff --git a/scripture/kjv/08/03/23/scripture.tg.id b/scripture/kjv/08/03/23/scripture.tg.id new file mode 100644 index 00000000..4ac943d1 --- /dev/null +++ b/scripture/kjv/08/03/23/scripture.tg.id @@ -0,0 +1 @@ +1032 diff --git a/scripture/kjv/08/03/23/scripture.today b/scripture/kjv/08/03/23/scripture.today new file mode 100644 index 00000000..6b9534b4 --- /dev/null +++ b/scripture/kjv/08/03/23/scripture.today @@ -0,0 +1 @@ +50 1:22-23 diff --git a/scripture/kjv/08/03/24/scripture.html b/scripture/kjv/08/03/24/scripture.html new file mode 100644 index 00000000..485863d8 --- /dev/null +++ b/scripture/kjv/08/03/24/scripture.html @@ -0,0 +1,3 @@ +Isaiah 35:3
+3 Strengthen ye the weak hands, and confirm the feeble knees.

+Saturday 03-August, 2024 diff --git a/scripture/kjv/08/03/24/scripture.json b/scripture/kjv/08/03/24/scripture.json new file mode 100644 index 00000000..e6e6ca47 --- /dev/null +++ b/scripture/kjv/08/03/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "35", + "date": "Saturday 03-August, 2024", + "getbible": "https://getbible.life/kjv/Isaiah/35/3", + "name": "Isaiah 35:3", + "scripture": [ + { + "nr": "3", + "text": "Strengthen ye the weak hands, and confirm the feeble knees." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3", + "version": "kjv" +} diff --git a/scripture/kjv/08/03/24/scripture.md b/scripture/kjv/08/03/24/scripture.md new file mode 100644 index 00000000..39fba5f0 --- /dev/null +++ b/scripture/kjv/08/03/24/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 35:3** + +3 Strengthen ye the weak hands, and confirm the feeble knees. + +[Saturday 03-August, 2024](https://getbible.life/kjv/Isaiah/35/3) diff --git a/scripture/kjv/08/03/24/scripture.tg b/scripture/kjv/08/03/24/scripture.tg new file mode 100644 index 00000000..9ea76462 --- /dev/null +++ b/scripture/kjv/08/03/24/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 35:3 +3 Strengthen ye the weak hands, and confirm the feeble knees. + +Saturday 03-August, 2024 diff --git a/scripture/kjv/08/03/24/scripture.tg.id b/scripture/kjv/08/03/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/03/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/03/24/scripture.today b/scripture/kjv/08/03/24/scripture.today new file mode 100644 index 00000000..91df25a6 --- /dev/null +++ b/scripture/kjv/08/03/24/scripture.today @@ -0,0 +1 @@ +23 35:3 diff --git a/scripture/kjv/08/03/25/scripture.html b/scripture/kjv/08/03/25/scripture.html new file mode 100644 index 00000000..a669e237 --- /dev/null +++ b/scripture/kjv/08/03/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 102:17-20
+17 He will regard the prayer of the destitute, and not despise their prayer. 18 This shall be written for the generation to come: and the people which shall be created shall praise the Lord. 19 For he hath looked down from the height of his sanctuary; from heaven did the Lord behold the earth; 20 To hear the groaning of the prisoner; to loose those that are appointed to death;

+Sunday 03-August, 2025 diff --git a/scripture/kjv/08/03/25/scripture.json b/scripture/kjv/08/03/25/scripture.json new file mode 100644 index 00000000..41df2f93 --- /dev/null +++ b/scripture/kjv/08/03/25/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "Psalms", + "chapter": "102", + "date": "Sunday 03-August, 2025", + "getbible": "https://getbible.life/kjv/Psalms/102/17-20", + "name": "Psalms 102:17-20", + "scripture": [ + { + "nr": "17", + "text": "He will regard the prayer of the destitute, and not despise their prayer." + }, + { + "nr": "18", + "text": "This shall be written for the generation to come: and the people which shall be created shall praise the Lord." + }, + { + "nr": "19", + "text": "For he hath looked down from the height of his sanctuary; from heaven did the Lord behold the earth;" + }, + { + "nr": "20", + "text": "To hear the groaning of the prisoner; to loose those that are appointed to death;" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17-20", + "version": "kjv" +} diff --git a/scripture/kjv/08/03/25/scripture.md b/scripture/kjv/08/03/25/scripture.md new file mode 100644 index 00000000..f8062529 --- /dev/null +++ b/scripture/kjv/08/03/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 102:17-20** + +17 He will regard the prayer of the destitute, and not despise their prayer. 18 This shall be written for the generation to come: and the people which shall be created shall praise the Lord. 19 For he hath looked down from the height of his sanctuary; from heaven did the Lord behold the earth; 20 To hear the groaning of the prisoner; to loose those that are appointed to death; + +[Sunday 03-August, 2025](https://getbible.life/kjv/Psalms/102/17-20) diff --git a/scripture/kjv/08/03/25/scripture.tg b/scripture/kjv/08/03/25/scripture.tg new file mode 100644 index 00000000..715549c7 --- /dev/null +++ b/scripture/kjv/08/03/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 102:17-20 +17 He will regard the prayer of the destitute, and not despise their prayer. 18 This shall be written for the generation to come: and the people which shall be created shall praise the Lord. 19 For he hath looked down from the height of his sanctuary; from heaven did the Lord behold the earth; 20 To hear the groaning of the prisoner; to loose those that are appointed to death; + +Sunday 03-August, 2025 diff --git a/scripture/kjv/08/03/25/scripture.tg.id b/scripture/kjv/08/03/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/03/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/03/25/scripture.today b/scripture/kjv/08/03/25/scripture.today new file mode 100644 index 00000000..4d9cec46 --- /dev/null +++ b/scripture/kjv/08/03/25/scripture.today @@ -0,0 +1 @@ +19 102:17-20 diff --git a/scripture/kjv/08/04/23/scripture.html b/scripture/kjv/08/04/23/scripture.html new file mode 100644 index 00000000..62ae1cf8 --- /dev/null +++ b/scripture/kjv/08/04/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 12:5
+5 For the oppression of the poor, for the sighing of the needy, now will I arise, saith the Lord; I will set him in safety from him that puffeth at him.

+Friday 04-August, 2023 diff --git a/scripture/kjv/08/04/23/scripture.json b/scripture/kjv/08/04/23/scripture.json new file mode 100644 index 00000000..d62a7319 --- /dev/null +++ b/scripture/kjv/08/04/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "12", + "date": "Friday 04-August, 2023", + "getbible": "https://getbible.life/kjv/Psalms/12/5", + "name": "Psalms 12:5", + "scripture": [ + { + "nr": "5", + "text": "For the oppression of the poor, for the sighing of the needy, now will I arise, saith the Lord; I will set him in safety from him that puffeth at him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5", + "version": "kjv" +} diff --git a/scripture/kjv/08/04/23/scripture.md b/scripture/kjv/08/04/23/scripture.md new file mode 100644 index 00000000..1fc15ecd --- /dev/null +++ b/scripture/kjv/08/04/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 12:5** + +5 For the oppression of the poor, for the sighing of the needy, now will I arise, saith the Lord; I will set him in safety from him that puffeth at him. + +[Friday 04-August, 2023](https://getbible.life/kjv/Psalms/12/5) diff --git a/scripture/kjv/08/04/23/scripture.tg b/scripture/kjv/08/04/23/scripture.tg new file mode 100644 index 00000000..78d60b4c --- /dev/null +++ b/scripture/kjv/08/04/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 12:5 +5 For the oppression of the poor, for the sighing of the needy, now will I arise, saith the Lord; I will set him in safety from him that puffeth at him. + +Friday 04-August, 2023 diff --git a/scripture/kjv/08/04/23/scripture.tg.id b/scripture/kjv/08/04/23/scripture.tg.id new file mode 100644 index 00000000..0ff3e5b1 --- /dev/null +++ b/scripture/kjv/08/04/23/scripture.tg.id @@ -0,0 +1 @@ +1033 diff --git a/scripture/kjv/08/04/23/scripture.today b/scripture/kjv/08/04/23/scripture.today new file mode 100644 index 00000000..3acda78a --- /dev/null +++ b/scripture/kjv/08/04/23/scripture.today @@ -0,0 +1 @@ +19 12:5 diff --git a/scripture/kjv/08/04/24/scripture.html b/scripture/kjv/08/04/24/scripture.html new file mode 100644 index 00000000..67f20c7f --- /dev/null +++ b/scripture/kjv/08/04/24/scripture.html @@ -0,0 +1,3 @@ +Colossians 2:18
+18 Let no man beguile you of your reward in a voluntary humility and worshipping of angels, intruding into those things which he hath not seen, vainly puffed up by his fleshly mind,

+Sunday 04-August, 2024 diff --git a/scripture/kjv/08/04/24/scripture.json b/scripture/kjv/08/04/24/scripture.json new file mode 100644 index 00000000..75122f57 --- /dev/null +++ b/scripture/kjv/08/04/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Colossians", + "chapter": "2", + "date": "Sunday 04-August, 2024", + "getbible": "https://getbible.life/kjv/Colossians/2/18", + "name": "Colossians 2:18", + "scripture": [ + { + "nr": "18", + "text": "Let no man beguile you of your reward in a voluntary humility and worshipping of angels, intruding into those things which he hath not seen, vainly puffed up by his fleshly mind," + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18", + "version": "kjv" +} diff --git a/scripture/kjv/08/04/24/scripture.md b/scripture/kjv/08/04/24/scripture.md new file mode 100644 index 00000000..f2d8dde5 --- /dev/null +++ b/scripture/kjv/08/04/24/scripture.md @@ -0,0 +1,5 @@ +**Colossians 2:18** + +18 Let no man beguile you of your reward in a voluntary humility and worshipping of angels, intruding into those things which he hath not seen, vainly puffed up by his fleshly mind, + +[Sunday 04-August, 2024](https://getbible.life/kjv/Colossians/2/18) diff --git a/scripture/kjv/08/04/24/scripture.tg b/scripture/kjv/08/04/24/scripture.tg new file mode 100644 index 00000000..92b09d74 --- /dev/null +++ b/scripture/kjv/08/04/24/scripture.tg @@ -0,0 +1,4 @@ +Colossians 2:18 +18 Let no man beguile you of your reward in a voluntary humility and worshipping of angels, intruding into those things which he hath not seen, vainly puffed up by his fleshly mind, + +Sunday 04-August, 2024 diff --git a/scripture/kjv/08/04/24/scripture.tg.id b/scripture/kjv/08/04/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/04/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/04/24/scripture.today b/scripture/kjv/08/04/24/scripture.today new file mode 100644 index 00000000..ac556c21 --- /dev/null +++ b/scripture/kjv/08/04/24/scripture.today @@ -0,0 +1 @@ +51 2:18 diff --git a/scripture/kjv/08/04/25/scripture.html b/scripture/kjv/08/04/25/scripture.html new file mode 100644 index 00000000..4c3f37ff --- /dev/null +++ b/scripture/kjv/08/04/25/scripture.html @@ -0,0 +1,3 @@ +Philippians 2:15-16
+15 That ye may be blameless and harmless, the sons of God, without rebuke, in the midst of a crooked and perverse nation, among whom ye shine as lights in the world; 16 Holding forth the word of life; that I may rejoice in the day of Christ, that I have not run in vain, neither laboured in vain.

+Monday 04-August, 2025 diff --git a/scripture/kjv/08/04/25/scripture.json b/scripture/kjv/08/04/25/scripture.json new file mode 100644 index 00000000..c6d61a26 --- /dev/null +++ b/scripture/kjv/08/04/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Philippians", + "chapter": "2", + "date": "Monday 04-August, 2025", + "getbible": "https://getbible.life/kjv/Philippians/2/15-16", + "name": "Philippians 2:15-16", + "scripture": [ + { + "nr": "15", + "text": "That ye may be blameless and harmless, the sons of God, without rebuke, in the midst of a crooked and perverse nation, among whom ye shine as lights in the world;" + }, + { + "nr": "16", + "text": "Holding forth the word of life; that I may rejoice in the day of Christ, that I have not run in vain, neither laboured in vain." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15-16", + "version": "kjv" +} diff --git a/scripture/kjv/08/04/25/scripture.md b/scripture/kjv/08/04/25/scripture.md new file mode 100644 index 00000000..6f95b4fc --- /dev/null +++ b/scripture/kjv/08/04/25/scripture.md @@ -0,0 +1,5 @@ +**Philippians 2:15-16** + +15 That ye may be blameless and harmless, the sons of God, without rebuke, in the midst of a crooked and perverse nation, among whom ye shine as lights in the world; 16 Holding forth the word of life; that I may rejoice in the day of Christ, that I have not run in vain, neither laboured in vain. + +[Monday 04-August, 2025](https://getbible.life/kjv/Philippians/2/15-16) diff --git a/scripture/kjv/08/04/25/scripture.tg b/scripture/kjv/08/04/25/scripture.tg new file mode 100644 index 00000000..a278096a --- /dev/null +++ b/scripture/kjv/08/04/25/scripture.tg @@ -0,0 +1,4 @@ +Philippians 2:15-16 +15 That ye may be blameless and harmless, the sons of God, without rebuke, in the midst of a crooked and perverse nation, among whom ye shine as lights in the world; 16 Holding forth the word of life; that I may rejoice in the day of Christ, that I have not run in vain, neither laboured in vain. + +Monday 04-August, 2025 diff --git a/scripture/kjv/08/04/25/scripture.tg.id b/scripture/kjv/08/04/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/04/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/04/25/scripture.today b/scripture/kjv/08/04/25/scripture.today new file mode 100644 index 00000000..2e44dea4 --- /dev/null +++ b/scripture/kjv/08/04/25/scripture.today @@ -0,0 +1 @@ +50 2:15-16 diff --git a/scripture/kjv/08/05/23/scripture.html b/scripture/kjv/08/05/23/scripture.html new file mode 100644 index 00000000..39db667a --- /dev/null +++ b/scripture/kjv/08/05/23/scripture.html @@ -0,0 +1,3 @@ +Romans 9:33
+33 As it is written, Behold, I lay in Sion a stumblingstone and rock of offence: and whosoever believeth on him shall not be ashamed.

+Saturday 05-August, 2023 diff --git a/scripture/kjv/08/05/23/scripture.json b/scripture/kjv/08/05/23/scripture.json new file mode 100644 index 00000000..9057c780 --- /dev/null +++ b/scripture/kjv/08/05/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Romans", + "chapter": "9", + "date": "Saturday 05-August, 2023", + "getbible": "https://getbible.life/kjv/Romans/9/33", + "name": "Romans 9:33", + "scripture": [ + { + "nr": "33", + "text": "As it is written, Behold, I lay in Sion a stumblingstone and rock of offence: and whosoever believeth on him shall not be ashamed. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "33", + "version": "kjv" +} diff --git a/scripture/kjv/08/05/23/scripture.md b/scripture/kjv/08/05/23/scripture.md new file mode 100644 index 00000000..2da7c4a7 --- /dev/null +++ b/scripture/kjv/08/05/23/scripture.md @@ -0,0 +1,5 @@ +**Romans 9:33** + +33 As it is written, Behold, I lay in Sion a stumblingstone and rock of offence: and whosoever believeth on him shall not be ashamed. + +[Saturday 05-August, 2023](https://getbible.life/kjv/Romans/9/33) diff --git a/scripture/kjv/08/05/23/scripture.tg b/scripture/kjv/08/05/23/scripture.tg new file mode 100644 index 00000000..7827e7e9 --- /dev/null +++ b/scripture/kjv/08/05/23/scripture.tg @@ -0,0 +1,4 @@ +Romans 9:33 +33 As it is written, Behold, I lay in Sion a stumblingstone and rock of offence: and whosoever believeth on him shall not be ashamed. + +Saturday 05-August, 2023 diff --git a/scripture/kjv/08/05/23/scripture.tg.id b/scripture/kjv/08/05/23/scripture.tg.id new file mode 100644 index 00000000..da44b0c5 --- /dev/null +++ b/scripture/kjv/08/05/23/scripture.tg.id @@ -0,0 +1 @@ +1034 diff --git a/scripture/kjv/08/05/23/scripture.today b/scripture/kjv/08/05/23/scripture.today new file mode 100644 index 00000000..c4f4eb73 --- /dev/null +++ b/scripture/kjv/08/05/23/scripture.today @@ -0,0 +1 @@ +45 9:33 diff --git a/scripture/kjv/08/05/24/scripture.html b/scripture/kjv/08/05/24/scripture.html new file mode 100644 index 00000000..ee934471 --- /dev/null +++ b/scripture/kjv/08/05/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 25:18
+18 Look upon mine affliction and my pain; and forgive all my sins.

+Monday 05-August, 2024 diff --git a/scripture/kjv/08/05/24/scripture.json b/scripture/kjv/08/05/24/scripture.json new file mode 100644 index 00000000..9029654b --- /dev/null +++ b/scripture/kjv/08/05/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "25", + "date": "Monday 05-August, 2024", + "getbible": "https://getbible.life/kjv/Psalms/25/18", + "name": "Psalms 25:18", + "scripture": [ + { + "nr": "18", + "text": "Look upon mine affliction and my pain; and forgive all my sins." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18", + "version": "kjv" +} diff --git a/scripture/kjv/08/05/24/scripture.md b/scripture/kjv/08/05/24/scripture.md new file mode 100644 index 00000000..02293c81 --- /dev/null +++ b/scripture/kjv/08/05/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 25:18** + +18 Look upon mine affliction and my pain; and forgive all my sins. + +[Monday 05-August, 2024](https://getbible.life/kjv/Psalms/25/18) diff --git a/scripture/kjv/08/05/24/scripture.tg b/scripture/kjv/08/05/24/scripture.tg new file mode 100644 index 00000000..9ebf2631 --- /dev/null +++ b/scripture/kjv/08/05/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 25:18 +18 Look upon mine affliction and my pain; and forgive all my sins. + +Monday 05-August, 2024 diff --git a/scripture/kjv/08/05/24/scripture.tg.id b/scripture/kjv/08/05/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/05/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/05/24/scripture.today b/scripture/kjv/08/05/24/scripture.today new file mode 100644 index 00000000..da476bfd --- /dev/null +++ b/scripture/kjv/08/05/24/scripture.today @@ -0,0 +1 @@ +19 25:18 diff --git a/scripture/kjv/08/05/25/scripture.html b/scripture/kjv/08/05/25/scripture.html new file mode 100644 index 00000000..25d61b21 --- /dev/null +++ b/scripture/kjv/08/05/25/scripture.html @@ -0,0 +1,3 @@ +1 Peter 1:7
+7 That the trial of your faith, being much more precious than of gold that perisheth, though it be tried with fire, might be found unto praise and honour and glory at the appearing of Jesus Christ:

+Tuesday 05-August, 2025 diff --git a/scripture/kjv/08/05/25/scripture.json b/scripture/kjv/08/05/25/scripture.json new file mode 100644 index 00000000..a6e9a9c1 --- /dev/null +++ b/scripture/kjv/08/05/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Peter", + "chapter": "1", + "date": "Tuesday 05-August, 2025", + "getbible": "https://getbible.life/kjv/1 Peter/1/7", + "name": "1 Peter 1:7", + "scripture": [ + { + "nr": "7", + "text": "That the trial of your faith, being much more precious than of gold that perisheth, though it be tried with fire, might be found unto praise and honour and glory at the appearing of Jesus Christ:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7", + "version": "kjv" +} diff --git a/scripture/kjv/08/05/25/scripture.md b/scripture/kjv/08/05/25/scripture.md new file mode 100644 index 00000000..a25fcd32 --- /dev/null +++ b/scripture/kjv/08/05/25/scripture.md @@ -0,0 +1,5 @@ +**1 Peter 1:7** + +7 That the trial of your faith, being much more precious than of gold that perisheth, though it be tried with fire, might be found unto praise and honour and glory at the appearing of Jesus Christ: + +[Tuesday 05-August, 2025](https://getbible.life/kjv/1 Peter/1/7) diff --git a/scripture/kjv/08/05/25/scripture.tg b/scripture/kjv/08/05/25/scripture.tg new file mode 100644 index 00000000..0e296fba --- /dev/null +++ b/scripture/kjv/08/05/25/scripture.tg @@ -0,0 +1,4 @@ +1 Peter 1:7 +7 That the trial of your faith, being much more precious than of gold that perisheth, though it be tried with fire, might be found unto praise and honour and glory at the appearing of Jesus Christ: + +Tuesday 05-August, 2025 diff --git a/scripture/kjv/08/05/25/scripture.tg.id b/scripture/kjv/08/05/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/05/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/05/25/scripture.today b/scripture/kjv/08/05/25/scripture.today new file mode 100644 index 00000000..649e5732 --- /dev/null +++ b/scripture/kjv/08/05/25/scripture.today @@ -0,0 +1 @@ +60 1:7 diff --git a/scripture/kjv/08/06/23/scripture.html b/scripture/kjv/08/06/23/scripture.html new file mode 100644 index 00000000..bc63a44b --- /dev/null +++ b/scripture/kjv/08/06/23/scripture.html @@ -0,0 +1,3 @@ +Ephesians 5:25
+25 Husbands, love your wives, even as Christ also loved the church, and gave himself for it;

+Sunday 06-August, 2023 diff --git a/scripture/kjv/08/06/23/scripture.json b/scripture/kjv/08/06/23/scripture.json new file mode 100644 index 00000000..b2755505 --- /dev/null +++ b/scripture/kjv/08/06/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ephesians", + "chapter": "5", + "date": "Sunday 06-August, 2023", + "getbible": "https://getbible.life/kjv/Ephesians/5/25", + "name": "Ephesians 5:25", + "scripture": [ + { + "nr": "25", + "text": "Husbands, love your wives, even as Christ also loved the church, and gave himself for it;" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "25", + "version": "kjv" +} diff --git a/scripture/kjv/08/06/23/scripture.md b/scripture/kjv/08/06/23/scripture.md new file mode 100644 index 00000000..a9fcf522 --- /dev/null +++ b/scripture/kjv/08/06/23/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 5:25** + +25 Husbands, love your wives, even as Christ also loved the church, and gave himself for it; + +[Sunday 06-August, 2023](https://getbible.life/kjv/Ephesians/5/25) diff --git a/scripture/kjv/08/06/23/scripture.tg b/scripture/kjv/08/06/23/scripture.tg new file mode 100644 index 00000000..9e76ff86 --- /dev/null +++ b/scripture/kjv/08/06/23/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 5:25 +25 Husbands, love your wives, even as Christ also loved the church, and gave himself for it; + +Sunday 06-August, 2023 diff --git a/scripture/kjv/08/06/23/scripture.tg.id b/scripture/kjv/08/06/23/scripture.tg.id new file mode 100644 index 00000000..95e145d5 --- /dev/null +++ b/scripture/kjv/08/06/23/scripture.tg.id @@ -0,0 +1 @@ +1035 diff --git a/scripture/kjv/08/06/23/scripture.today b/scripture/kjv/08/06/23/scripture.today new file mode 100644 index 00000000..4d66da25 --- /dev/null +++ b/scripture/kjv/08/06/23/scripture.today @@ -0,0 +1 @@ +49 5:25 diff --git a/scripture/kjv/08/06/24/scripture.html b/scripture/kjv/08/06/24/scripture.html new file mode 100644 index 00000000..46b39ce9 --- /dev/null +++ b/scripture/kjv/08/06/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 18:16
+16 He sent from above, he took me, he drew me out of many waters.

+Tuesday 06-August, 2024 diff --git a/scripture/kjv/08/06/24/scripture.json b/scripture/kjv/08/06/24/scripture.json new file mode 100644 index 00000000..1c6ed4fa --- /dev/null +++ b/scripture/kjv/08/06/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "18", + "date": "Tuesday 06-August, 2024", + "getbible": "https://getbible.life/kjv/Psalms/18/16", + "name": "Psalms 18:16", + "scripture": [ + { + "nr": "16", + "text": "He sent from above, he took me, he drew me out of many waters." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16", + "version": "kjv" +} diff --git a/scripture/kjv/08/06/24/scripture.md b/scripture/kjv/08/06/24/scripture.md new file mode 100644 index 00000000..c0b71cdd --- /dev/null +++ b/scripture/kjv/08/06/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 18:16** + +16 He sent from above, he took me, he drew me out of many waters. + +[Tuesday 06-August, 2024](https://getbible.life/kjv/Psalms/18/16) diff --git a/scripture/kjv/08/06/24/scripture.tg b/scripture/kjv/08/06/24/scripture.tg new file mode 100644 index 00000000..167b60ac --- /dev/null +++ b/scripture/kjv/08/06/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 18:16 +16 He sent from above, he took me, he drew me out of many waters. + +Tuesday 06-August, 2024 diff --git a/scripture/kjv/08/06/24/scripture.tg.id b/scripture/kjv/08/06/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/06/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/06/24/scripture.today b/scripture/kjv/08/06/24/scripture.today new file mode 100644 index 00000000..8533a8e0 --- /dev/null +++ b/scripture/kjv/08/06/24/scripture.today @@ -0,0 +1 @@ +19 18:16 diff --git a/scripture/kjv/08/06/25/scripture.html b/scripture/kjv/08/06/25/scripture.html new file mode 100644 index 00000000..e425a742 --- /dev/null +++ b/scripture/kjv/08/06/25/scripture.html @@ -0,0 +1,3 @@ +2 Peter 1:3-11
+3 According as his divine power hath given unto us all things that pertain unto life and godliness, through the knowledge of him that hath called us to glory and virtue: 4 Whereby are given unto us exceeding great and precious promises: that by these ye might be partakers of the divine nature, having escaped the corruption that is in the world through lust. 5 And beside this, giving all diligence, add to your faith virtue; and to virtue knowledge; 6 And to knowledge temperance; and to temperance patience; and to patience godliness; 7 And to godliness brotherly kindness; and to brotherly kindness charity. 8 For if these things be in you, and abound, they make you that ye shall neither be barren nor unfruitful in the knowledge of our Lord Jesus Christ. 9 But he that lacketh these things is blind, and cannot see afar off, and hath forgotten that he was purged from his old sins. 10 Wherefore the rather, brethren, give diligence to make your calling and election sure: for if ye do these things, ye shall never fall: 11 For so an entrance shall be ministered unto you abundantly into the everlasting kingdom of our Lord and Saviour Jesus Christ.

+Wednesday 06-August, 2025 diff --git a/scripture/kjv/08/06/25/scripture.json b/scripture/kjv/08/06/25/scripture.json new file mode 100644 index 00000000..073c21d9 --- /dev/null +++ b/scripture/kjv/08/06/25/scripture.json @@ -0,0 +1,49 @@ +{ + "book": "2 Peter", + "chapter": "1", + "date": "Wednesday 06-August, 2025", + "getbible": "https://getbible.life/kjv/2 Peter/1/3-11", + "name": "2 Peter 1:3-11", + "scripture": [ + { + "nr": "3", + "text": "According as his divine power hath given unto us all things that pertain unto life and godliness, through the knowledge of him that hath called us to glory and virtue:" + }, + { + "nr": "4", + "text": "Whereby are given unto us exceeding great and precious promises: that by these ye might be partakers of the divine nature, having escaped the corruption that is in the world through lust." + }, + { + "nr": "5", + "text": "And beside this, giving all diligence, add to your faith virtue; and to virtue knowledge;" + }, + { + "nr": "6", + "text": "And to knowledge temperance; and to temperance patience; and to patience godliness;" + }, + { + "nr": "7", + "text": "And to godliness brotherly kindness; and to brotherly kindness charity." + }, + { + "nr": "8", + "text": "For if these things be in you, and abound, they make you that ye shall neither be barren nor unfruitful in the knowledge of our Lord Jesus Christ." + }, + { + "nr": "9", + "text": "But he that lacketh these things is blind, and cannot see afar off, and hath forgotten that he was purged from his old sins." + }, + { + "nr": "10", + "text": "Wherefore the rather, brethren, give diligence to make your calling and election sure: for if ye do these things, ye shall never fall:" + }, + { + "nr": "11", + "text": "For so an entrance shall be ministered unto you abundantly into the everlasting kingdom of our Lord and Saviour Jesus Christ." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3-11", + "version": "kjv" +} diff --git a/scripture/kjv/08/06/25/scripture.md b/scripture/kjv/08/06/25/scripture.md new file mode 100644 index 00000000..e94f583f --- /dev/null +++ b/scripture/kjv/08/06/25/scripture.md @@ -0,0 +1,5 @@ +**2 Peter 1:3-11** + +3 According as his divine power hath given unto us all things that pertain unto life and godliness, through the knowledge of him that hath called us to glory and virtue: 4 Whereby are given unto us exceeding great and precious promises: that by these ye might be partakers of the divine nature, having escaped the corruption that is in the world through lust. 5 And beside this, giving all diligence, add to your faith virtue; and to virtue knowledge; 6 And to knowledge temperance; and to temperance patience; and to patience godliness; 7 And to godliness brotherly kindness; and to brotherly kindness charity. 8 For if these things be in you, and abound, they make you that ye shall neither be barren nor unfruitful in the knowledge of our Lord Jesus Christ. 9 But he that lacketh these things is blind, and cannot see afar off, and hath forgotten that he was purged from his old sins. 10 Wherefore the rather, brethren, give diligence to make your calling and election sure: for if ye do these things, ye shall never fall: 11 For so an entrance shall be ministered unto you abundantly into the everlasting kingdom of our Lord and Saviour Jesus Christ. + +[Wednesday 06-August, 2025](https://getbible.life/kjv/2 Peter/1/3-11) diff --git a/scripture/kjv/08/06/25/scripture.tg b/scripture/kjv/08/06/25/scripture.tg new file mode 100644 index 00000000..146a0c92 --- /dev/null +++ b/scripture/kjv/08/06/25/scripture.tg @@ -0,0 +1,4 @@ +2 Peter 1:3-11 +3 According as his divine power hath given unto us all things that pertain unto life and godliness, through the knowledge of him that hath called us to glory and virtue: 4 Whereby are given unto us exceeding great and precious promises: that by these ye might be partakers of the divine nature, having escaped the corruption that is in the world through lust. 5 And beside this, giving all diligence, add to your faith virtue; and to virtue knowledge; 6 And to knowledge temperance; and to temperance patience; and to patience godliness; 7 And to godliness brotherly kindness; and to brotherly kindness charity. 8 For if these things be in you, and abound, they make you that ye shall neither be barren nor unfruitful in the knowledge of our Lord Jesus Christ. 9 But he that lacketh these things is blind, and cannot see afar off, and hath forgotten that he was purged from his old sins. 10 Wherefore the rather, brethren, give diligence to make your calling and election sure: for if ye do these things, ye shall never fall: 11 For so an entrance shall be ministered unto you abundantly into the everlasting kingdom of our Lord and Saviour Jesus Christ. + +Wednesday 06-August, 2025 diff --git a/scripture/kjv/08/06/25/scripture.tg.id b/scripture/kjv/08/06/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/06/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/06/25/scripture.today b/scripture/kjv/08/06/25/scripture.today new file mode 100644 index 00000000..0c9182ec --- /dev/null +++ b/scripture/kjv/08/06/25/scripture.today @@ -0,0 +1 @@ +61 1:3-11 diff --git a/scripture/kjv/08/07/23/scripture.html b/scripture/kjv/08/07/23/scripture.html new file mode 100644 index 00000000..e138d545 --- /dev/null +++ b/scripture/kjv/08/07/23/scripture.html @@ -0,0 +1,3 @@ +Isaiah 59:1-2
+1 Behold, the Lord’s hand is not shortened, that it cannot save; neither his ear heavy, that it cannot hear: 2 But your iniquities have separated between you and your God, and your sins have hid his face from you, that he will not hear.

+Monday 07-August, 2023 diff --git a/scripture/kjv/08/07/23/scripture.json b/scripture/kjv/08/07/23/scripture.json new file mode 100644 index 00000000..4e5f2ec1 --- /dev/null +++ b/scripture/kjv/08/07/23/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Isaiah", + "chapter": "59", + "date": "Monday 07-August, 2023", + "getbible": "https://getbible.life/kjv/Isaiah/59/1-2", + "name": "Isaiah 59:1-2", + "scripture": [ + { + "nr": "1", + "text": "Behold, the Lord’s hand is not shortened, that it cannot save; neither his ear heavy, that it cannot hear:" + }, + { + "nr": "2", + "text": "But your iniquities have separated between you and your God, and your sins have hid his face from you, that he will not hear." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-2", + "version": "kjv" +} diff --git a/scripture/kjv/08/07/23/scripture.md b/scripture/kjv/08/07/23/scripture.md new file mode 100644 index 00000000..50f52311 --- /dev/null +++ b/scripture/kjv/08/07/23/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 59:1-2** + +1 Behold, the Lord’s hand is not shortened, that it cannot save; neither his ear heavy, that it cannot hear: 2 But your iniquities have separated between you and your God, and your sins have hid his face from you, that he will not hear. + +[Monday 07-August, 2023](https://getbible.life/kjv/Isaiah/59/1-2) diff --git a/scripture/kjv/08/07/23/scripture.tg b/scripture/kjv/08/07/23/scripture.tg new file mode 100644 index 00000000..bccec3ff --- /dev/null +++ b/scripture/kjv/08/07/23/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 59:1-2 +1 Behold, the Lord’s hand is not shortened, that it cannot save; neither his ear heavy, that it cannot hear: 2 But your iniquities have separated between you and your God, and your sins have hid his face from you, that he will not hear. + +Monday 07-August, 2023 diff --git a/scripture/kjv/08/07/23/scripture.tg.id b/scripture/kjv/08/07/23/scripture.tg.id new file mode 100644 index 00000000..b633d3d9 --- /dev/null +++ b/scripture/kjv/08/07/23/scripture.tg.id @@ -0,0 +1 @@ +1036 diff --git a/scripture/kjv/08/07/23/scripture.today b/scripture/kjv/08/07/23/scripture.today new file mode 100644 index 00000000..b5553f4c --- /dev/null +++ b/scripture/kjv/08/07/23/scripture.today @@ -0,0 +1 @@ +23 59:1-2 diff --git a/scripture/kjv/08/07/24/scripture.html b/scripture/kjv/08/07/24/scripture.html new file mode 100644 index 00000000..62453e09 --- /dev/null +++ b/scripture/kjv/08/07/24/scripture.html @@ -0,0 +1,3 @@ +Acts 4:20
+20 For we cannot but speak the things which we have seen and heard.

+Wednesday 07-August, 2024 diff --git a/scripture/kjv/08/07/24/scripture.json b/scripture/kjv/08/07/24/scripture.json new file mode 100644 index 00000000..94361df0 --- /dev/null +++ b/scripture/kjv/08/07/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Acts", + "chapter": "4", + "date": "Wednesday 07-August, 2024", + "getbible": "https://getbible.life/kjv/Acts/4/20", + "name": "Acts 4:20", + "scripture": [ + { + "nr": "20", + "text": "For we cannot but speak the things which we have seen and heard." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20", + "version": "kjv" +} diff --git a/scripture/kjv/08/07/24/scripture.md b/scripture/kjv/08/07/24/scripture.md new file mode 100644 index 00000000..35b61bb3 --- /dev/null +++ b/scripture/kjv/08/07/24/scripture.md @@ -0,0 +1,5 @@ +**Acts 4:20** + +20 For we cannot but speak the things which we have seen and heard. + +[Wednesday 07-August, 2024](https://getbible.life/kjv/Acts/4/20) diff --git a/scripture/kjv/08/07/24/scripture.tg b/scripture/kjv/08/07/24/scripture.tg new file mode 100644 index 00000000..2bc7c64b --- /dev/null +++ b/scripture/kjv/08/07/24/scripture.tg @@ -0,0 +1,4 @@ +Acts 4:20 +20 For we cannot but speak the things which we have seen and heard. + +Wednesday 07-August, 2024 diff --git a/scripture/kjv/08/07/24/scripture.tg.id b/scripture/kjv/08/07/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/07/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/07/24/scripture.today b/scripture/kjv/08/07/24/scripture.today new file mode 100644 index 00000000..c0d9c51c --- /dev/null +++ b/scripture/kjv/08/07/24/scripture.today @@ -0,0 +1 @@ +44 4:20 diff --git a/scripture/kjv/08/07/25/scripture.html b/scripture/kjv/08/07/25/scripture.html new file mode 100644 index 00000000..a906a506 --- /dev/null +++ b/scripture/kjv/08/07/25/scripture.html @@ -0,0 +1,3 @@ +Luke 7:47
+47 Wherefore I say unto thee, Her sins, which are many, are forgiven; for she loved much: but to whom little is forgiven, the same loveth little.

+Thursday 07-August, 2025 diff --git a/scripture/kjv/08/07/25/scripture.json b/scripture/kjv/08/07/25/scripture.json new file mode 100644 index 00000000..9fd2179a --- /dev/null +++ b/scripture/kjv/08/07/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "7", + "date": "Thursday 07-August, 2025", + "getbible": "https://getbible.life/kjv/Luke/7/47", + "name": "Luke 7:47", + "scripture": [ + { + "nr": "47", + "text": "Wherefore I say unto thee, Her sins, which are many, are forgiven; for she loved much: but to whom little is forgiven, the same loveth little." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "47", + "version": "kjv" +} diff --git a/scripture/kjv/08/07/25/scripture.md b/scripture/kjv/08/07/25/scripture.md new file mode 100644 index 00000000..bb5265e6 --- /dev/null +++ b/scripture/kjv/08/07/25/scripture.md @@ -0,0 +1,5 @@ +**Luke 7:47** + +47 Wherefore I say unto thee, Her sins, which are many, are forgiven; for she loved much: but to whom little is forgiven, the same loveth little. + +[Thursday 07-August, 2025](https://getbible.life/kjv/Luke/7/47) diff --git a/scripture/kjv/08/07/25/scripture.tg b/scripture/kjv/08/07/25/scripture.tg new file mode 100644 index 00000000..97efef9b --- /dev/null +++ b/scripture/kjv/08/07/25/scripture.tg @@ -0,0 +1,4 @@ +Luke 7:47 +47 Wherefore I say unto thee, Her sins, which are many, are forgiven; for she loved much: but to whom little is forgiven, the same loveth little. + +Thursday 07-August, 2025 diff --git a/scripture/kjv/08/07/25/scripture.tg.id b/scripture/kjv/08/07/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/07/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/07/25/scripture.today b/scripture/kjv/08/07/25/scripture.today new file mode 100644 index 00000000..e9800119 --- /dev/null +++ b/scripture/kjv/08/07/25/scripture.today @@ -0,0 +1 @@ +42 7:47 diff --git a/scripture/kjv/08/08/23/scripture.html b/scripture/kjv/08/08/23/scripture.html new file mode 100644 index 00000000..db68e31e --- /dev/null +++ b/scripture/kjv/08/08/23/scripture.html @@ -0,0 +1,3 @@ +1 John 4:15
+15 Whosoever shall confess that Jesus is the Son of God, God dwelleth in him, and he in God.

+Tuesday 08-August, 2023 diff --git a/scripture/kjv/08/08/23/scripture.json b/scripture/kjv/08/08/23/scripture.json new file mode 100644 index 00000000..d5c4e4a1 --- /dev/null +++ b/scripture/kjv/08/08/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 John", + "chapter": "4", + "date": "Tuesday 08-August, 2023", + "getbible": "https://getbible.life/kjv/1 John/4/15", + "name": "1 John 4:15", + "scripture": [ + { + "nr": "15", + "text": "Whosoever shall confess that Jesus is the Son of God, God dwelleth in him, and he in God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15", + "version": "kjv" +} diff --git a/scripture/kjv/08/08/23/scripture.md b/scripture/kjv/08/08/23/scripture.md new file mode 100644 index 00000000..1c51d938 --- /dev/null +++ b/scripture/kjv/08/08/23/scripture.md @@ -0,0 +1,5 @@ +**1 John 4:15** + +15 Whosoever shall confess that Jesus is the Son of God, God dwelleth in him, and he in God. + +[Tuesday 08-August, 2023](https://getbible.life/kjv/1 John/4/15) diff --git a/scripture/kjv/08/08/23/scripture.tg b/scripture/kjv/08/08/23/scripture.tg new file mode 100644 index 00000000..359120d9 --- /dev/null +++ b/scripture/kjv/08/08/23/scripture.tg @@ -0,0 +1,4 @@ +1 John 4:15 +15 Whosoever shall confess that Jesus is the Son of God, God dwelleth in him, and he in God. + +Tuesday 08-August, 2023 diff --git a/scripture/kjv/08/08/23/scripture.tg.id b/scripture/kjv/08/08/23/scripture.tg.id new file mode 100644 index 00000000..4fba33e9 --- /dev/null +++ b/scripture/kjv/08/08/23/scripture.tg.id @@ -0,0 +1 @@ +1037 diff --git a/scripture/kjv/08/08/23/scripture.today b/scripture/kjv/08/08/23/scripture.today new file mode 100644 index 00000000..a70d4dc2 --- /dev/null +++ b/scripture/kjv/08/08/23/scripture.today @@ -0,0 +1 @@ +62 4:15 diff --git a/scripture/kjv/08/08/24/scripture.html b/scripture/kjv/08/08/24/scripture.html new file mode 100644 index 00000000..9568a661 --- /dev/null +++ b/scripture/kjv/08/08/24/scripture.html @@ -0,0 +1,3 @@ +Romans 14:1
+1 Him that is weak in the faith receive ye, but not to doubtful disputations.

+Thursday 08-August, 2024 diff --git a/scripture/kjv/08/08/24/scripture.json b/scripture/kjv/08/08/24/scripture.json new file mode 100644 index 00000000..69a36caf --- /dev/null +++ b/scripture/kjv/08/08/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Romans", + "chapter": "14", + "date": "Thursday 08-August, 2024", + "getbible": "https://getbible.life/kjv/Romans/14/1", + "name": "Romans 14:1", + "scripture": [ + { + "nr": "1", + "text": "Him that is weak in the faith receive ye, but not to doubtful disputations." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1", + "version": "kjv" +} diff --git a/scripture/kjv/08/08/24/scripture.md b/scripture/kjv/08/08/24/scripture.md new file mode 100644 index 00000000..00422446 --- /dev/null +++ b/scripture/kjv/08/08/24/scripture.md @@ -0,0 +1,5 @@ +**Romans 14:1** + +1 Him that is weak in the faith receive ye, but not to doubtful disputations. + +[Thursday 08-August, 2024](https://getbible.life/kjv/Romans/14/1) diff --git a/scripture/kjv/08/08/24/scripture.tg b/scripture/kjv/08/08/24/scripture.tg new file mode 100644 index 00000000..952f0ecf --- /dev/null +++ b/scripture/kjv/08/08/24/scripture.tg @@ -0,0 +1,4 @@ +Romans 14:1 +1 Him that is weak in the faith receive ye, but not to doubtful disputations. + +Thursday 08-August, 2024 diff --git a/scripture/kjv/08/08/24/scripture.tg.id b/scripture/kjv/08/08/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/08/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/08/24/scripture.today b/scripture/kjv/08/08/24/scripture.today new file mode 100644 index 00000000..4bd5b155 --- /dev/null +++ b/scripture/kjv/08/08/24/scripture.today @@ -0,0 +1 @@ +45 14:1 diff --git a/scripture/kjv/08/08/25/scripture.html b/scripture/kjv/08/08/25/scripture.html new file mode 100644 index 00000000..c0be9775 --- /dev/null +++ b/scripture/kjv/08/08/25/scripture.html @@ -0,0 +1,3 @@ +Zechariah 9:9
+9 Rejoice greatly, O daughter of Zion; shout, O daughter of Jerusalem: behold, thy King cometh unto thee: he is just, and having salvation; lowly, and riding upon an ass, and upon a colt the foal of an ass.

+Friday 08-August, 2025 diff --git a/scripture/kjv/08/08/25/scripture.json b/scripture/kjv/08/08/25/scripture.json new file mode 100644 index 00000000..0c38ba0e --- /dev/null +++ b/scripture/kjv/08/08/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Zechariah", + "chapter": "9", + "date": "Friday 08-August, 2025", + "getbible": "https://getbible.life/kjv/Zechariah/9/9", + "name": "Zechariah 9:9", + "scripture": [ + { + "nr": "9", + "text": "Rejoice greatly, O daughter of Zion; shout, O daughter of Jerusalem: behold, thy King cometh unto thee: he is just, and having salvation; lowly, and riding upon an ass, and upon a colt the foal of an ass." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9", + "version": "kjv" +} diff --git a/scripture/kjv/08/08/25/scripture.md b/scripture/kjv/08/08/25/scripture.md new file mode 100644 index 00000000..16ec99da --- /dev/null +++ b/scripture/kjv/08/08/25/scripture.md @@ -0,0 +1,5 @@ +**Zechariah 9:9** + +9 Rejoice greatly, O daughter of Zion; shout, O daughter of Jerusalem: behold, thy King cometh unto thee: he is just, and having salvation; lowly, and riding upon an ass, and upon a colt the foal of an ass. + +[Friday 08-August, 2025](https://getbible.life/kjv/Zechariah/9/9) diff --git a/scripture/kjv/08/08/25/scripture.tg b/scripture/kjv/08/08/25/scripture.tg new file mode 100644 index 00000000..d00f96ac --- /dev/null +++ b/scripture/kjv/08/08/25/scripture.tg @@ -0,0 +1,4 @@ +Zechariah 9:9 +9 Rejoice greatly, O daughter of Zion; shout, O daughter of Jerusalem: behold, thy King cometh unto thee: he is just, and having salvation; lowly, and riding upon an ass, and upon a colt the foal of an ass. + +Friday 08-August, 2025 diff --git a/scripture/kjv/08/08/25/scripture.tg.id b/scripture/kjv/08/08/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/08/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/08/25/scripture.today b/scripture/kjv/08/08/25/scripture.today new file mode 100644 index 00000000..f2e6c3a2 --- /dev/null +++ b/scripture/kjv/08/08/25/scripture.today @@ -0,0 +1 @@ +38 9:9 diff --git a/scripture/kjv/08/09/23/scripture.html b/scripture/kjv/08/09/23/scripture.html new file mode 100644 index 00000000..731adac3 --- /dev/null +++ b/scripture/kjv/08/09/23/scripture.html @@ -0,0 +1,3 @@ +1 Thessalonians 5:23-24
+23 And the very God of peace sanctify you wholly; and I pray God your whole spirit and soul and body be preserved blameless unto the coming of our Lord Jesus Christ. 24 Faithful is he that calleth you, who also will do it.

+Wednesday 09-August, 2023 diff --git a/scripture/kjv/08/09/23/scripture.json b/scripture/kjv/08/09/23/scripture.json new file mode 100644 index 00000000..8e42040e --- /dev/null +++ b/scripture/kjv/08/09/23/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "1 Thessalonians", + "chapter": "5", + "date": "Wednesday 09-August, 2023", + "getbible": "https://getbible.life/kjv/1 Thessalonians/5/23-24", + "name": "1 Thessalonians 5:23-24", + "scripture": [ + { + "nr": "23", + "text": "And the very God of peace sanctify you wholly; and I pray God your whole spirit and soul and body be preserved blameless unto the coming of our Lord Jesus Christ." + }, + { + "nr": "24", + "text": "Faithful is he that calleth you, who also will do it." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "23-24", + "version": "kjv" +} diff --git a/scripture/kjv/08/09/23/scripture.md b/scripture/kjv/08/09/23/scripture.md new file mode 100644 index 00000000..8209b52e --- /dev/null +++ b/scripture/kjv/08/09/23/scripture.md @@ -0,0 +1,5 @@ +**1 Thessalonians 5:23-24** + +23 And the very God of peace sanctify you wholly; and I pray God your whole spirit and soul and body be preserved blameless unto the coming of our Lord Jesus Christ. 24 Faithful is he that calleth you, who also will do it. + +[Wednesday 09-August, 2023](https://getbible.life/kjv/1 Thessalonians/5/23-24) diff --git a/scripture/kjv/08/09/23/scripture.tg b/scripture/kjv/08/09/23/scripture.tg new file mode 100644 index 00000000..f06be9e6 --- /dev/null +++ b/scripture/kjv/08/09/23/scripture.tg @@ -0,0 +1,4 @@ +1 Thessalonians 5:23-24 +23 And the very God of peace sanctify you wholly; and I pray God your whole spirit and soul and body be preserved blameless unto the coming of our Lord Jesus Christ. 24 Faithful is he that calleth you, who also will do it. + +Wednesday 09-August, 2023 diff --git a/scripture/kjv/08/09/23/scripture.tg.id b/scripture/kjv/08/09/23/scripture.tg.id new file mode 100644 index 00000000..d7f2bc9d --- /dev/null +++ b/scripture/kjv/08/09/23/scripture.tg.id @@ -0,0 +1 @@ +1038 diff --git a/scripture/kjv/08/09/23/scripture.today b/scripture/kjv/08/09/23/scripture.today new file mode 100644 index 00000000..6d86034d --- /dev/null +++ b/scripture/kjv/08/09/23/scripture.today @@ -0,0 +1 @@ +52 5:23-24 diff --git a/scripture/kjv/08/09/24/scripture.html b/scripture/kjv/08/09/24/scripture.html new file mode 100644 index 00000000..466bb9ff --- /dev/null +++ b/scripture/kjv/08/09/24/scripture.html @@ -0,0 +1,3 @@ +Ephesians 6:1-3
+1 Children, obey your parents in the Lord: for this is right. 2 Honour thy father and mother; (which is the first commandment with promise;) 3 That it may be well with thee, and thou mayest live long on the earth.

+Friday 09-August, 2024 diff --git a/scripture/kjv/08/09/24/scripture.json b/scripture/kjv/08/09/24/scripture.json new file mode 100644 index 00000000..2f691962 --- /dev/null +++ b/scripture/kjv/08/09/24/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Ephesians", + "chapter": "6", + "date": "Friday 09-August, 2024", + "getbible": "https://getbible.life/kjv/Ephesians/6/1-3", + "name": "Ephesians 6:1-3", + "scripture": [ + { + "nr": "1", + "text": "Children, obey your parents in the Lord: for this is right." + }, + { + "nr": "2", + "text": "Honour thy father and mother; (which is the first commandment with promise;)" + }, + { + "nr": "3", + "text": "That it may be well with thee, and thou mayest live long on the earth." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-3", + "version": "kjv" +} diff --git a/scripture/kjv/08/09/24/scripture.md b/scripture/kjv/08/09/24/scripture.md new file mode 100644 index 00000000..f77d6e3c --- /dev/null +++ b/scripture/kjv/08/09/24/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 6:1-3** + +1 Children, obey your parents in the Lord: for this is right. 2 Honour thy father and mother; (which is the first commandment with promise;) 3 That it may be well with thee, and thou mayest live long on the earth. + +[Friday 09-August, 2024](https://getbible.life/kjv/Ephesians/6/1-3) diff --git a/scripture/kjv/08/09/24/scripture.tg b/scripture/kjv/08/09/24/scripture.tg new file mode 100644 index 00000000..79042ffe --- /dev/null +++ b/scripture/kjv/08/09/24/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 6:1-3 +1 Children, obey your parents in the Lord: for this is right. 2 Honour thy father and mother; (which is the first commandment with promise;) 3 That it may be well with thee, and thou mayest live long on the earth. + +Friday 09-August, 2024 diff --git a/scripture/kjv/08/09/24/scripture.tg.id b/scripture/kjv/08/09/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/09/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/09/24/scripture.today b/scripture/kjv/08/09/24/scripture.today new file mode 100644 index 00000000..0eaea662 --- /dev/null +++ b/scripture/kjv/08/09/24/scripture.today @@ -0,0 +1 @@ +49 6:1-3 diff --git a/scripture/kjv/08/09/25/scripture.html b/scripture/kjv/08/09/25/scripture.html new file mode 100644 index 00000000..17f26256 --- /dev/null +++ b/scripture/kjv/08/09/25/scripture.html @@ -0,0 +1,3 @@ +Job 42:3
+3 Who is he that hideth counsel without knowledge? therefore have I uttered that I understood not; things too wonderful for me, which I knew not.

+Saturday 09-August, 2025 diff --git a/scripture/kjv/08/09/25/scripture.json b/scripture/kjv/08/09/25/scripture.json new file mode 100644 index 00000000..3a1db714 --- /dev/null +++ b/scripture/kjv/08/09/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Job", + "chapter": "42", + "date": "Saturday 09-August, 2025", + "getbible": "https://getbible.life/kjv/Job/42/3", + "name": "Job 42:3", + "scripture": [ + { + "nr": "3", + "text": "Who is he that hideth counsel without knowledge? therefore have I uttered that I understood not; things too wonderful for me, which I knew not." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3", + "version": "kjv" +} diff --git a/scripture/kjv/08/09/25/scripture.md b/scripture/kjv/08/09/25/scripture.md new file mode 100644 index 00000000..65d3198d --- /dev/null +++ b/scripture/kjv/08/09/25/scripture.md @@ -0,0 +1,5 @@ +**Job 42:3** + +3 Who is he that hideth counsel without knowledge? therefore have I uttered that I understood not; things too wonderful for me, which I knew not. + +[Saturday 09-August, 2025](https://getbible.life/kjv/Job/42/3) diff --git a/scripture/kjv/08/09/25/scripture.tg b/scripture/kjv/08/09/25/scripture.tg new file mode 100644 index 00000000..541c7172 --- /dev/null +++ b/scripture/kjv/08/09/25/scripture.tg @@ -0,0 +1,4 @@ +Job 42:3 +3 Who is he that hideth counsel without knowledge? therefore have I uttered that I understood not; things too wonderful for me, which I knew not. + +Saturday 09-August, 2025 diff --git a/scripture/kjv/08/09/25/scripture.tg.id b/scripture/kjv/08/09/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/09/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/09/25/scripture.today b/scripture/kjv/08/09/25/scripture.today new file mode 100644 index 00000000..1a41f028 --- /dev/null +++ b/scripture/kjv/08/09/25/scripture.today @@ -0,0 +1 @@ +18 42:3 diff --git a/scripture/kjv/08/10/23/scripture.html b/scripture/kjv/08/10/23/scripture.html new file mode 100644 index 00000000..10752b99 --- /dev/null +++ b/scripture/kjv/08/10/23/scripture.html @@ -0,0 +1,3 @@ +John 7:43
+43 So there was a division among the people because of him.

+Thursday 10-August, 2023 diff --git a/scripture/kjv/08/10/23/scripture.json b/scripture/kjv/08/10/23/scripture.json new file mode 100644 index 00000000..bf650794 --- /dev/null +++ b/scripture/kjv/08/10/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "7", + "date": "Thursday 10-August, 2023", + "getbible": "https://getbible.life/kjv/John/7/43", + "name": "John 7:43", + "scripture": [ + { + "nr": "43", + "text": "So there was a division among the people because of him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "43", + "version": "kjv" +} diff --git a/scripture/kjv/08/10/23/scripture.md b/scripture/kjv/08/10/23/scripture.md new file mode 100644 index 00000000..7db05a7e --- /dev/null +++ b/scripture/kjv/08/10/23/scripture.md @@ -0,0 +1,5 @@ +**John 7:43** + +43 So there was a division among the people because of him. + +[Thursday 10-August, 2023](https://getbible.life/kjv/John/7/43) diff --git a/scripture/kjv/08/10/23/scripture.tg b/scripture/kjv/08/10/23/scripture.tg new file mode 100644 index 00000000..0d36f69b --- /dev/null +++ b/scripture/kjv/08/10/23/scripture.tg @@ -0,0 +1,4 @@ +John 7:43 +43 So there was a division among the people because of him. + +Thursday 10-August, 2023 diff --git a/scripture/kjv/08/10/23/scripture.tg.id b/scripture/kjv/08/10/23/scripture.tg.id new file mode 100644 index 00000000..89a41372 --- /dev/null +++ b/scripture/kjv/08/10/23/scripture.tg.id @@ -0,0 +1 @@ +1039 diff --git a/scripture/kjv/08/10/23/scripture.today b/scripture/kjv/08/10/23/scripture.today new file mode 100644 index 00000000..fa830090 --- /dev/null +++ b/scripture/kjv/08/10/23/scripture.today @@ -0,0 +1 @@ +43 7:43 diff --git a/scripture/kjv/08/10/24/scripture.html b/scripture/kjv/08/10/24/scripture.html new file mode 100644 index 00000000..72246ca4 --- /dev/null +++ b/scripture/kjv/08/10/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 3:13-14
+13 Happy is the man that findeth wisdom, and the man that getteth understanding. 14 For the merchandise of it is better than the merchandise of silver, and the gain thereof than fine gold.

+Saturday 10-August, 2024 diff --git a/scripture/kjv/08/10/24/scripture.json b/scripture/kjv/08/10/24/scripture.json new file mode 100644 index 00000000..212cdd32 --- /dev/null +++ b/scripture/kjv/08/10/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Proverbs", + "chapter": "3", + "date": "Saturday 10-August, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/3/13-14", + "name": "Proverbs 3:13-14", + "scripture": [ + { + "nr": "13", + "text": "Happy is the man that findeth wisdom, and the man that getteth understanding." + }, + { + "nr": "14", + "text": "For the merchandise of it is better than the merchandise of silver, and the gain thereof than fine gold." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13-14", + "version": "kjv" +} diff --git a/scripture/kjv/08/10/24/scripture.md b/scripture/kjv/08/10/24/scripture.md new file mode 100644 index 00000000..0e5481ef --- /dev/null +++ b/scripture/kjv/08/10/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 3:13-14** + +13 Happy is the man that findeth wisdom, and the man that getteth understanding. 14 For the merchandise of it is better than the merchandise of silver, and the gain thereof than fine gold. + +[Saturday 10-August, 2024](https://getbible.life/kjv/Proverbs/3/13-14) diff --git a/scripture/kjv/08/10/24/scripture.tg b/scripture/kjv/08/10/24/scripture.tg new file mode 100644 index 00000000..ff233c20 --- /dev/null +++ b/scripture/kjv/08/10/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 3:13-14 +13 Happy is the man that findeth wisdom, and the man that getteth understanding. 14 For the merchandise of it is better than the merchandise of silver, and the gain thereof than fine gold. + +Saturday 10-August, 2024 diff --git a/scripture/kjv/08/10/24/scripture.tg.id b/scripture/kjv/08/10/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/10/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/10/24/scripture.today b/scripture/kjv/08/10/24/scripture.today new file mode 100644 index 00000000..8bde5210 --- /dev/null +++ b/scripture/kjv/08/10/24/scripture.today @@ -0,0 +1 @@ +20 3:13-14 diff --git a/scripture/kjv/08/10/25/scripture.html b/scripture/kjv/08/10/25/scripture.html new file mode 100644 index 00000000..10800a75 --- /dev/null +++ b/scripture/kjv/08/10/25/scripture.html @@ -0,0 +1,3 @@ +John 4:44
+44 For Jesus himself testified, that a prophet hath no honour in his own country.

+Sunday 10-August, 2025 diff --git a/scripture/kjv/08/10/25/scripture.json b/scripture/kjv/08/10/25/scripture.json new file mode 100644 index 00000000..262ad63b --- /dev/null +++ b/scripture/kjv/08/10/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "4", + "date": "Sunday 10-August, 2025", + "getbible": "https://getbible.life/kjv/John/4/44", + "name": "John 4:44", + "scripture": [ + { + "nr": "44", + "text": "For Jesus himself testified, that a prophet hath no honour in his own country." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "44", + "version": "kjv" +} diff --git a/scripture/kjv/08/10/25/scripture.md b/scripture/kjv/08/10/25/scripture.md new file mode 100644 index 00000000..73b42913 --- /dev/null +++ b/scripture/kjv/08/10/25/scripture.md @@ -0,0 +1,5 @@ +**John 4:44** + +44 For Jesus himself testified, that a prophet hath no honour in his own country. + +[Sunday 10-August, 2025](https://getbible.life/kjv/John/4/44) diff --git a/scripture/kjv/08/10/25/scripture.tg b/scripture/kjv/08/10/25/scripture.tg new file mode 100644 index 00000000..9e3d4514 --- /dev/null +++ b/scripture/kjv/08/10/25/scripture.tg @@ -0,0 +1,4 @@ +John 4:44 +44 For Jesus himself testified, that a prophet hath no honour in his own country. + +Sunday 10-August, 2025 diff --git a/scripture/kjv/08/10/25/scripture.tg.id b/scripture/kjv/08/10/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/10/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/10/25/scripture.today b/scripture/kjv/08/10/25/scripture.today new file mode 100644 index 00000000..f9fc5450 --- /dev/null +++ b/scripture/kjv/08/10/25/scripture.today @@ -0,0 +1 @@ +43 4:44 diff --git a/scripture/kjv/08/11/23/scripture.html b/scripture/kjv/08/11/23/scripture.html new file mode 100644 index 00000000..aef32e5f --- /dev/null +++ b/scripture/kjv/08/11/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 22:21
+21 Save me from the lion’s mouth: for thou hast heard me from the horns of the unicorns.

+Friday 11-August, 2023 diff --git a/scripture/kjv/08/11/23/scripture.json b/scripture/kjv/08/11/23/scripture.json new file mode 100644 index 00000000..aab01dd6 --- /dev/null +++ b/scripture/kjv/08/11/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "22", + "date": "Friday 11-August, 2023", + "getbible": "https://getbible.life/kjv/Psalms/22/21", + "name": "Psalms 22:21", + "scripture": [ + { + "nr": "21", + "text": "Save me from the lion’s mouth: for thou hast heard me from the horns of the unicorns." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "21", + "version": "kjv" +} diff --git a/scripture/kjv/08/11/23/scripture.md b/scripture/kjv/08/11/23/scripture.md new file mode 100644 index 00000000..0f6e03a5 --- /dev/null +++ b/scripture/kjv/08/11/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 22:21** + +21 Save me from the lion’s mouth: for thou hast heard me from the horns of the unicorns. + +[Friday 11-August, 2023](https://getbible.life/kjv/Psalms/22/21) diff --git a/scripture/kjv/08/11/23/scripture.tg b/scripture/kjv/08/11/23/scripture.tg new file mode 100644 index 00000000..228ea1fb --- /dev/null +++ b/scripture/kjv/08/11/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 22:21 +21 Save me from the lion’s mouth: for thou hast heard me from the horns of the unicorns. + +Friday 11-August, 2023 diff --git a/scripture/kjv/08/11/23/scripture.tg.id b/scripture/kjv/08/11/23/scripture.tg.id new file mode 100644 index 00000000..5e73659e --- /dev/null +++ b/scripture/kjv/08/11/23/scripture.tg.id @@ -0,0 +1 @@ +1040 diff --git a/scripture/kjv/08/11/23/scripture.today b/scripture/kjv/08/11/23/scripture.today new file mode 100644 index 00000000..3f6d437c --- /dev/null +++ b/scripture/kjv/08/11/23/scripture.today @@ -0,0 +1 @@ +19 22:21 diff --git a/scripture/kjv/08/11/24/scripture.html b/scripture/kjv/08/11/24/scripture.html new file mode 100644 index 00000000..81b01d3e --- /dev/null +++ b/scripture/kjv/08/11/24/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 7:2
+2 Receive us; we have wronged no man, we have corrupted no man, we have defrauded no man.

+Sunday 11-August, 2024 diff --git a/scripture/kjv/08/11/24/scripture.json b/scripture/kjv/08/11/24/scripture.json new file mode 100644 index 00000000..3e9a421a --- /dev/null +++ b/scripture/kjv/08/11/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "7", + "date": "Sunday 11-August, 2024", + "getbible": "https://getbible.life/kjv/2 Corinthians/7/2", + "name": "2 Corinthians 7:2", + "scripture": [ + { + "nr": "2", + "text": "Receive us; we have wronged no man, we have corrupted no man, we have defrauded no man." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "2", + "version": "kjv" +} diff --git a/scripture/kjv/08/11/24/scripture.md b/scripture/kjv/08/11/24/scripture.md new file mode 100644 index 00000000..4bba8a8b --- /dev/null +++ b/scripture/kjv/08/11/24/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 7:2** + +2 Receive us; we have wronged no man, we have corrupted no man, we have defrauded no man. + +[Sunday 11-August, 2024](https://getbible.life/kjv/2 Corinthians/7/2) diff --git a/scripture/kjv/08/11/24/scripture.tg b/scripture/kjv/08/11/24/scripture.tg new file mode 100644 index 00000000..60d2e0f5 --- /dev/null +++ b/scripture/kjv/08/11/24/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 7:2 +2 Receive us; we have wronged no man, we have corrupted no man, we have defrauded no man. + +Sunday 11-August, 2024 diff --git a/scripture/kjv/08/11/24/scripture.tg.id b/scripture/kjv/08/11/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/11/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/11/24/scripture.today b/scripture/kjv/08/11/24/scripture.today new file mode 100644 index 00000000..c763a173 --- /dev/null +++ b/scripture/kjv/08/11/24/scripture.today @@ -0,0 +1 @@ +47 7:2 diff --git a/scripture/kjv/08/11/25/scripture.html b/scripture/kjv/08/11/25/scripture.html new file mode 100644 index 00000000..28894b65 --- /dev/null +++ b/scripture/kjv/08/11/25/scripture.html @@ -0,0 +1,3 @@ +Matthew 22:21
+21 They say unto him, Cesar’s. Then saith he unto them, Render therefore unto Cesar the things which are Cesar’s; and unto God the things that are God’s.

+Monday 11-August, 2025 diff --git a/scripture/kjv/08/11/25/scripture.json b/scripture/kjv/08/11/25/scripture.json new file mode 100644 index 00000000..c177c6c5 --- /dev/null +++ b/scripture/kjv/08/11/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Matthew", + "chapter": "22", + "date": "Monday 11-August, 2025", + "getbible": "https://getbible.life/kjv/Matthew/22/21", + "name": "Matthew 22:21", + "scripture": [ + { + "nr": "21", + "text": "They say unto him, Cesar’s. Then saith he unto them, Render therefore unto Cesar the things which are Cesar’s; and unto God the things that are God’s." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "21", + "version": "kjv" +} diff --git a/scripture/kjv/08/11/25/scripture.md b/scripture/kjv/08/11/25/scripture.md new file mode 100644 index 00000000..b2aa725d --- /dev/null +++ b/scripture/kjv/08/11/25/scripture.md @@ -0,0 +1,5 @@ +**Matthew 22:21** + +21 They say unto him, Cesar’s. Then saith he unto them, Render therefore unto Cesar the things which are Cesar’s; and unto God the things that are God’s. + +[Monday 11-August, 2025](https://getbible.life/kjv/Matthew/22/21) diff --git a/scripture/kjv/08/11/25/scripture.tg b/scripture/kjv/08/11/25/scripture.tg new file mode 100644 index 00000000..9df73b0c --- /dev/null +++ b/scripture/kjv/08/11/25/scripture.tg @@ -0,0 +1,4 @@ +Matthew 22:21 +21 They say unto him, Cesar’s. Then saith he unto them, Render therefore unto Cesar the things which are Cesar’s; and unto God the things that are God’s. + +Monday 11-August, 2025 diff --git a/scripture/kjv/08/11/25/scripture.tg.id b/scripture/kjv/08/11/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/11/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/11/25/scripture.today b/scripture/kjv/08/11/25/scripture.today new file mode 100644 index 00000000..816a9e39 --- /dev/null +++ b/scripture/kjv/08/11/25/scripture.today @@ -0,0 +1 @@ +40 22:21 diff --git a/scripture/kjv/08/12/23/scripture.html b/scripture/kjv/08/12/23/scripture.html new file mode 100644 index 00000000..8e1d0dc2 --- /dev/null +++ b/scripture/kjv/08/12/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 120:7
+7 I am for peace: but when I speak, they are for war.

+Saturday 12-August, 2023 diff --git a/scripture/kjv/08/12/23/scripture.json b/scripture/kjv/08/12/23/scripture.json new file mode 100644 index 00000000..ff6b1272 --- /dev/null +++ b/scripture/kjv/08/12/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "120", + "date": "Saturday 12-August, 2023", + "getbible": "https://getbible.life/kjv/Psalms/120/7", + "name": "Psalms 120:7", + "scripture": [ + { + "nr": "7", + "text": "I am for peace: but when I speak, they are for war. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7", + "version": "kjv" +} diff --git a/scripture/kjv/08/12/23/scripture.md b/scripture/kjv/08/12/23/scripture.md new file mode 100644 index 00000000..83d6d5d7 --- /dev/null +++ b/scripture/kjv/08/12/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 120:7** + +7 I am for peace: but when I speak, they are for war. + +[Saturday 12-August, 2023](https://getbible.life/kjv/Psalms/120/7) diff --git a/scripture/kjv/08/12/23/scripture.tg b/scripture/kjv/08/12/23/scripture.tg new file mode 100644 index 00000000..06a8424b --- /dev/null +++ b/scripture/kjv/08/12/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 120:7 +7 I am for peace: but when I speak, they are for war. + +Saturday 12-August, 2023 diff --git a/scripture/kjv/08/12/23/scripture.tg.id b/scripture/kjv/08/12/23/scripture.tg.id new file mode 100644 index 00000000..6aaa2493 --- /dev/null +++ b/scripture/kjv/08/12/23/scripture.tg.id @@ -0,0 +1 @@ +1041 diff --git a/scripture/kjv/08/12/23/scripture.today b/scripture/kjv/08/12/23/scripture.today new file mode 100644 index 00000000..c67161c5 --- /dev/null +++ b/scripture/kjv/08/12/23/scripture.today @@ -0,0 +1 @@ +19 120:7 diff --git a/scripture/kjv/08/12/24/scripture.html b/scripture/kjv/08/12/24/scripture.html new file mode 100644 index 00000000..e8fa02bc --- /dev/null +++ b/scripture/kjv/08/12/24/scripture.html @@ -0,0 +1,3 @@ +Judges 5:16
+16 Why abodest thou among the sheepfolds, to hear the bleatings of the flocks? For the divisions of Reuben there were great searchings of heart.

+Monday 12-August, 2024 diff --git a/scripture/kjv/08/12/24/scripture.json b/scripture/kjv/08/12/24/scripture.json new file mode 100644 index 00000000..6dd68c0b --- /dev/null +++ b/scripture/kjv/08/12/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Judges", + "chapter": "5", + "date": "Monday 12-August, 2024", + "getbible": "https://getbible.life/kjv/Judges/5/16", + "name": "Judges 5:16", + "scripture": [ + { + "nr": "16", + "text": "Why abodest thou among the sheepfolds, to hear the bleatings of the flocks? For the divisions of Reuben there were great searchings of heart." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16", + "version": "kjv" +} diff --git a/scripture/kjv/08/12/24/scripture.md b/scripture/kjv/08/12/24/scripture.md new file mode 100644 index 00000000..b33fd79d --- /dev/null +++ b/scripture/kjv/08/12/24/scripture.md @@ -0,0 +1,5 @@ +**Judges 5:16** + +16 Why abodest thou among the sheepfolds, to hear the bleatings of the flocks? For the divisions of Reuben there were great searchings of heart. + +[Monday 12-August, 2024](https://getbible.life/kjv/Judges/5/16) diff --git a/scripture/kjv/08/12/24/scripture.tg b/scripture/kjv/08/12/24/scripture.tg new file mode 100644 index 00000000..b78eb30b --- /dev/null +++ b/scripture/kjv/08/12/24/scripture.tg @@ -0,0 +1,4 @@ +Judges 5:16 +16 Why abodest thou among the sheepfolds, to hear the bleatings of the flocks? For the divisions of Reuben there were great searchings of heart. + +Monday 12-August, 2024 diff --git a/scripture/kjv/08/12/24/scripture.tg.id b/scripture/kjv/08/12/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/12/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/12/24/scripture.today b/scripture/kjv/08/12/24/scripture.today new file mode 100644 index 00000000..fb1ef3b0 --- /dev/null +++ b/scripture/kjv/08/12/24/scripture.today @@ -0,0 +1 @@ +7 5:16 diff --git a/scripture/kjv/08/12/25/scripture.html b/scripture/kjv/08/12/25/scripture.html new file mode 100644 index 00000000..aa7b5ac6 --- /dev/null +++ b/scripture/kjv/08/12/25/scripture.html @@ -0,0 +1,3 @@ +Luke 6:31
+31 And as ye would that men should do to you, do ye also to them likewise.

+Tuesday 12-August, 2025 diff --git a/scripture/kjv/08/12/25/scripture.json b/scripture/kjv/08/12/25/scripture.json new file mode 100644 index 00000000..033042c4 --- /dev/null +++ b/scripture/kjv/08/12/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "6", + "date": "Tuesday 12-August, 2025", + "getbible": "https://getbible.life/kjv/Luke/6/31", + "name": "Luke 6:31", + "scripture": [ + { + "nr": "31", + "text": "And as ye would that men should do to you, do ye also to them likewise." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "31", + "version": "kjv" +} diff --git a/scripture/kjv/08/12/25/scripture.md b/scripture/kjv/08/12/25/scripture.md new file mode 100644 index 00000000..0d7c7062 --- /dev/null +++ b/scripture/kjv/08/12/25/scripture.md @@ -0,0 +1,5 @@ +**Luke 6:31** + +31 And as ye would that men should do to you, do ye also to them likewise. + +[Tuesday 12-August, 2025](https://getbible.life/kjv/Luke/6/31) diff --git a/scripture/kjv/08/12/25/scripture.tg b/scripture/kjv/08/12/25/scripture.tg new file mode 100644 index 00000000..9703a12e --- /dev/null +++ b/scripture/kjv/08/12/25/scripture.tg @@ -0,0 +1,4 @@ +Luke 6:31 +31 And as ye would that men should do to you, do ye also to them likewise. + +Tuesday 12-August, 2025 diff --git a/scripture/kjv/08/12/25/scripture.tg.id b/scripture/kjv/08/12/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/12/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/12/25/scripture.today b/scripture/kjv/08/12/25/scripture.today new file mode 100644 index 00000000..1cc4d93c --- /dev/null +++ b/scripture/kjv/08/12/25/scripture.today @@ -0,0 +1 @@ +42 6:31 diff --git a/scripture/kjv/08/13/23/scripture.html b/scripture/kjv/08/13/23/scripture.html new file mode 100644 index 00000000..079aa7b1 --- /dev/null +++ b/scripture/kjv/08/13/23/scripture.html @@ -0,0 +1,3 @@ +John 9:34
+34 They answered and said unto him, Thou wast altogether born in sins, and dost thou teach us? And they cast him out.

+Sunday 13-August, 2023 diff --git a/scripture/kjv/08/13/23/scripture.json b/scripture/kjv/08/13/23/scripture.json new file mode 100644 index 00000000..1efff802 --- /dev/null +++ b/scripture/kjv/08/13/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "9", + "date": "Sunday 13-August, 2023", + "getbible": "https://getbible.life/kjv/John/9/34", + "name": "John 9:34", + "scripture": [ + { + "nr": "34", + "text": "They answered and said unto him, Thou wast altogether born in sins, and dost thou teach us? And they cast him out." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "34", + "version": "kjv" +} diff --git a/scripture/kjv/08/13/23/scripture.md b/scripture/kjv/08/13/23/scripture.md new file mode 100644 index 00000000..e5d20141 --- /dev/null +++ b/scripture/kjv/08/13/23/scripture.md @@ -0,0 +1,5 @@ +**John 9:34** + +34 They answered and said unto him, Thou wast altogether born in sins, and dost thou teach us? And they cast him out. + +[Sunday 13-August, 2023](https://getbible.life/kjv/John/9/34) diff --git a/scripture/kjv/08/13/23/scripture.tg b/scripture/kjv/08/13/23/scripture.tg new file mode 100644 index 00000000..18a4d499 --- /dev/null +++ b/scripture/kjv/08/13/23/scripture.tg @@ -0,0 +1,4 @@ +John 9:34 +34 They answered and said unto him, Thou wast altogether born in sins, and dost thou teach us? And they cast him out. + +Sunday 13-August, 2023 diff --git a/scripture/kjv/08/13/23/scripture.tg.id b/scripture/kjv/08/13/23/scripture.tg.id new file mode 100644 index 00000000..e3c00fdd --- /dev/null +++ b/scripture/kjv/08/13/23/scripture.tg.id @@ -0,0 +1 @@ +1042 diff --git a/scripture/kjv/08/13/23/scripture.today b/scripture/kjv/08/13/23/scripture.today new file mode 100644 index 00000000..09507090 --- /dev/null +++ b/scripture/kjv/08/13/23/scripture.today @@ -0,0 +1 @@ +43 9:34 diff --git a/scripture/kjv/08/13/24/scripture.html b/scripture/kjv/08/13/24/scripture.html new file mode 100644 index 00000000..5f6ccd72 --- /dev/null +++ b/scripture/kjv/08/13/24/scripture.html @@ -0,0 +1,3 @@ +Daniel 3:29
+29 Therefore I make a decree, That every people, nation, and language, which speak any thing amiss against the God of Shadrach, Meshach, and Abed–nego, shall be cut in pieces, and their houses shall be made a dunghill: because there is no other God that can deliver after this sort.

+Tuesday 13-August, 2024 diff --git a/scripture/kjv/08/13/24/scripture.json b/scripture/kjv/08/13/24/scripture.json new file mode 100644 index 00000000..13e240d8 --- /dev/null +++ b/scripture/kjv/08/13/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Daniel", + "chapter": "3", + "date": "Tuesday 13-August, 2024", + "getbible": "https://getbible.life/kjv/Daniel/3/29", + "name": "Daniel 3:29", + "scripture": [ + { + "nr": "29", + "text": "Therefore I make a decree, That every people, nation, and language, which speak any thing amiss against the God of Shadrach, Meshach, and Abed–nego, shall be cut in pieces, and their houses shall be made a dunghill: because there is no other God that can deliver after this sort." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "29", + "version": "kjv" +} diff --git a/scripture/kjv/08/13/24/scripture.md b/scripture/kjv/08/13/24/scripture.md new file mode 100644 index 00000000..59db7177 --- /dev/null +++ b/scripture/kjv/08/13/24/scripture.md @@ -0,0 +1,5 @@ +**Daniel 3:29** + +29 Therefore I make a decree, That every people, nation, and language, which speak any thing amiss against the God of Shadrach, Meshach, and Abed–nego, shall be cut in pieces, and their houses shall be made a dunghill: because there is no other God that can deliver after this sort. + +[Tuesday 13-August, 2024](https://getbible.life/kjv/Daniel/3/29) diff --git a/scripture/kjv/08/13/24/scripture.tg b/scripture/kjv/08/13/24/scripture.tg new file mode 100644 index 00000000..cbfda357 --- /dev/null +++ b/scripture/kjv/08/13/24/scripture.tg @@ -0,0 +1,4 @@ +Daniel 3:29 +29 Therefore I make a decree, That every people, nation, and language, which speak any thing amiss against the God of Shadrach, Meshach, and Abed–nego, shall be cut in pieces, and their houses shall be made a dunghill: because there is no other God that can deliver after this sort. + +Tuesday 13-August, 2024 diff --git a/scripture/kjv/08/13/24/scripture.tg.id b/scripture/kjv/08/13/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/13/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/13/24/scripture.today b/scripture/kjv/08/13/24/scripture.today new file mode 100644 index 00000000..7e3e745c --- /dev/null +++ b/scripture/kjv/08/13/24/scripture.today @@ -0,0 +1 @@ +27 3:29 diff --git a/scripture/kjv/08/13/25/scripture.html b/scripture/kjv/08/13/25/scripture.html new file mode 100644 index 00000000..56fecda8 --- /dev/null +++ b/scripture/kjv/08/13/25/scripture.html @@ -0,0 +1,3 @@ +Luke 22:19-20
+19 And he took bread, and gave thanks, and brake it, and gave unto them, saying, This is my body which is given for you: this do in remembrance of me. 20 Likewise also the cup after supper, saying, This cup is the new testament in my blood, which is shed for you.

+Wednesday 13-August, 2025 diff --git a/scripture/kjv/08/13/25/scripture.json b/scripture/kjv/08/13/25/scripture.json new file mode 100644 index 00000000..948aa2a1 --- /dev/null +++ b/scripture/kjv/08/13/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Luke", + "chapter": "22", + "date": "Wednesday 13-August, 2025", + "getbible": "https://getbible.life/kjv/Luke/22/19-20", + "name": "Luke 22:19-20", + "scripture": [ + { + "nr": "19", + "text": "And he took bread, and gave thanks, and brake it, and gave unto them, saying, This is my body which is given for you: this do in remembrance of me." + }, + { + "nr": "20", + "text": "Likewise also the cup after supper, saying, This cup is the new testament in my blood, which is shed for you." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "19-20", + "version": "kjv" +} diff --git a/scripture/kjv/08/13/25/scripture.md b/scripture/kjv/08/13/25/scripture.md new file mode 100644 index 00000000..3f0a6531 --- /dev/null +++ b/scripture/kjv/08/13/25/scripture.md @@ -0,0 +1,5 @@ +**Luke 22:19-20** + +19 And he took bread, and gave thanks, and brake it, and gave unto them, saying, This is my body which is given for you: this do in remembrance of me. 20 Likewise also the cup after supper, saying, This cup is the new testament in my blood, which is shed for you. + +[Wednesday 13-August, 2025](https://getbible.life/kjv/Luke/22/19-20) diff --git a/scripture/kjv/08/13/25/scripture.tg b/scripture/kjv/08/13/25/scripture.tg new file mode 100644 index 00000000..96061f35 --- /dev/null +++ b/scripture/kjv/08/13/25/scripture.tg @@ -0,0 +1,4 @@ +Luke 22:19-20 +19 And he took bread, and gave thanks, and brake it, and gave unto them, saying, This is my body which is given for you: this do in remembrance of me. 20 Likewise also the cup after supper, saying, This cup is the new testament in my blood, which is shed for you. + +Wednesday 13-August, 2025 diff --git a/scripture/kjv/08/13/25/scripture.tg.id b/scripture/kjv/08/13/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/13/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/13/25/scripture.today b/scripture/kjv/08/13/25/scripture.today new file mode 100644 index 00000000..f6505741 --- /dev/null +++ b/scripture/kjv/08/13/25/scripture.today @@ -0,0 +1 @@ +42 22:19-20 diff --git a/scripture/kjv/08/14/23/scripture.html b/scripture/kjv/08/14/23/scripture.html new file mode 100644 index 00000000..3932094c --- /dev/null +++ b/scripture/kjv/08/14/23/scripture.html @@ -0,0 +1,3 @@ +2 Thessalonians 3:16
+16 Now the Lord of peace himself give you peace always by all means. The Lord be with you all.

+Monday 14-August, 2023 diff --git a/scripture/kjv/08/14/23/scripture.json b/scripture/kjv/08/14/23/scripture.json new file mode 100644 index 00000000..a0e7a337 --- /dev/null +++ b/scripture/kjv/08/14/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Thessalonians", + "chapter": "3", + "date": "Monday 14-August, 2023", + "getbible": "https://getbible.life/kjv/2 Thessalonians/3/16", + "name": "2 Thessalonians 3:16", + "scripture": [ + { + "nr": "16", + "text": "Now the Lord of peace himself give you peace always by all means. The Lord be with you all." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16", + "version": "kjv" +} diff --git a/scripture/kjv/08/14/23/scripture.md b/scripture/kjv/08/14/23/scripture.md new file mode 100644 index 00000000..12b3b19d --- /dev/null +++ b/scripture/kjv/08/14/23/scripture.md @@ -0,0 +1,5 @@ +**2 Thessalonians 3:16** + +16 Now the Lord of peace himself give you peace always by all means. The Lord be with you all. + +[Monday 14-August, 2023](https://getbible.life/kjv/2 Thessalonians/3/16) diff --git a/scripture/kjv/08/14/23/scripture.tg b/scripture/kjv/08/14/23/scripture.tg new file mode 100644 index 00000000..9a61dfb9 --- /dev/null +++ b/scripture/kjv/08/14/23/scripture.tg @@ -0,0 +1,4 @@ +2 Thessalonians 3:16 +16 Now the Lord of peace himself give you peace always by all means. The Lord be with you all. + +Monday 14-August, 2023 diff --git a/scripture/kjv/08/14/23/scripture.tg.id b/scripture/kjv/08/14/23/scripture.tg.id new file mode 100644 index 00000000..34d9aaeb --- /dev/null +++ b/scripture/kjv/08/14/23/scripture.tg.id @@ -0,0 +1 @@ +1043 diff --git a/scripture/kjv/08/14/23/scripture.today b/scripture/kjv/08/14/23/scripture.today new file mode 100644 index 00000000..34ca3dbd --- /dev/null +++ b/scripture/kjv/08/14/23/scripture.today @@ -0,0 +1 @@ +53 3:16 diff --git a/scripture/kjv/08/14/24/scripture.html b/scripture/kjv/08/14/24/scripture.html new file mode 100644 index 00000000..69210f19 --- /dev/null +++ b/scripture/kjv/08/14/24/scripture.html @@ -0,0 +1,3 @@ +James 5:14-18
+14 Is any sick among you? let him call for the elders of the church; and let them pray over him, anointing him with oil in the name of the Lord: 15 And the prayer of faith shall save the sick, and the Lord shall raise him up; and if he have committed sins, they shall be forgiven him. 16 Confess your faults one to another, and pray one for another, that ye may be healed. The effectual fervent prayer of a righteous man availeth much. 17 Elias was a man subject to like passions as we are, and he prayed earnestly that it might not rain: and it rained not on the earth by the space of three years and six months. 18 And he prayed again, and the heaven gave rain, and the earth brought forth her fruit.

+Wednesday 14-August, 2024 diff --git a/scripture/kjv/08/14/24/scripture.json b/scripture/kjv/08/14/24/scripture.json new file mode 100644 index 00000000..1890f027 --- /dev/null +++ b/scripture/kjv/08/14/24/scripture.json @@ -0,0 +1,33 @@ +{ + "book": "James", + "chapter": "5", + "date": "Wednesday 14-August, 2024", + "getbible": "https://getbible.life/kjv/James/5/14-18", + "name": "James 5:14-18", + "scripture": [ + { + "nr": "14", + "text": "Is any sick among you? let him call for the elders of the church; and let them pray over him, anointing him with oil in the name of the Lord:" + }, + { + "nr": "15", + "text": "And the prayer of faith shall save the sick, and the Lord shall raise him up; and if he have committed sins, they shall be forgiven him." + }, + { + "nr": "16", + "text": "Confess your faults one to another, and pray one for another, that ye may be healed. The effectual fervent prayer of a righteous man availeth much." + }, + { + "nr": "17", + "text": "Elias was a man subject to like passions as we are, and he prayed earnestly that it might not rain: and it rained not on the earth by the space of three years and six months." + }, + { + "nr": "18", + "text": "And he prayed again, and the heaven gave rain, and the earth brought forth her fruit." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14-18", + "version": "kjv" +} diff --git a/scripture/kjv/08/14/24/scripture.md b/scripture/kjv/08/14/24/scripture.md new file mode 100644 index 00000000..eee5f599 --- /dev/null +++ b/scripture/kjv/08/14/24/scripture.md @@ -0,0 +1,5 @@ +**James 5:14-18** + +14 Is any sick among you? let him call for the elders of the church; and let them pray over him, anointing him with oil in the name of the Lord: 15 And the prayer of faith shall save the sick, and the Lord shall raise him up; and if he have committed sins, they shall be forgiven him. 16 Confess your faults one to another, and pray one for another, that ye may be healed. The effectual fervent prayer of a righteous man availeth much. 17 Elias was a man subject to like passions as we are, and he prayed earnestly that it might not rain: and it rained not on the earth by the space of three years and six months. 18 And he prayed again, and the heaven gave rain, and the earth brought forth her fruit. + +[Wednesday 14-August, 2024](https://getbible.life/kjv/James/5/14-18) diff --git a/scripture/kjv/08/14/24/scripture.tg b/scripture/kjv/08/14/24/scripture.tg new file mode 100644 index 00000000..52d756e7 --- /dev/null +++ b/scripture/kjv/08/14/24/scripture.tg @@ -0,0 +1,4 @@ +James 5:14-18 +14 Is any sick among you? let him call for the elders of the church; and let them pray over him, anointing him with oil in the name of the Lord: 15 And the prayer of faith shall save the sick, and the Lord shall raise him up; and if he have committed sins, they shall be forgiven him. 16 Confess your faults one to another, and pray one for another, that ye may be healed. The effectual fervent prayer of a righteous man availeth much. 17 Elias was a man subject to like passions as we are, and he prayed earnestly that it might not rain: and it rained not on the earth by the space of three years and six months. 18 And he prayed again, and the heaven gave rain, and the earth brought forth her fruit. + +Wednesday 14-August, 2024 diff --git a/scripture/kjv/08/14/24/scripture.tg.id b/scripture/kjv/08/14/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/14/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/14/24/scripture.today b/scripture/kjv/08/14/24/scripture.today new file mode 100644 index 00000000..0690d32f --- /dev/null +++ b/scripture/kjv/08/14/24/scripture.today @@ -0,0 +1 @@ +59 5:14-18 diff --git a/scripture/kjv/08/14/25/scripture.html b/scripture/kjv/08/14/25/scripture.html new file mode 100644 index 00000000..c3728f8c --- /dev/null +++ b/scripture/kjv/08/14/25/scripture.html @@ -0,0 +1,3 @@ +Proverbs 14:23
+23 In all labour there is profit: but the talk of the lips tendeth only to penury.

+Thursday 14-August, 2025 diff --git a/scripture/kjv/08/14/25/scripture.json b/scripture/kjv/08/14/25/scripture.json new file mode 100644 index 00000000..673f1053 --- /dev/null +++ b/scripture/kjv/08/14/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "14", + "date": "Thursday 14-August, 2025", + "getbible": "https://getbible.life/kjv/Proverbs/14/23", + "name": "Proverbs 14:23", + "scripture": [ + { + "nr": "23", + "text": "In all labour there is profit: but the talk of the lips tendeth only to penury." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "23", + "version": "kjv" +} diff --git a/scripture/kjv/08/14/25/scripture.md b/scripture/kjv/08/14/25/scripture.md new file mode 100644 index 00000000..2b387fcd --- /dev/null +++ b/scripture/kjv/08/14/25/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 14:23** + +23 In all labour there is profit: but the talk of the lips tendeth only to penury. + +[Thursday 14-August, 2025](https://getbible.life/kjv/Proverbs/14/23) diff --git a/scripture/kjv/08/14/25/scripture.tg b/scripture/kjv/08/14/25/scripture.tg new file mode 100644 index 00000000..c097a6bd --- /dev/null +++ b/scripture/kjv/08/14/25/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 14:23 +23 In all labour there is profit: but the talk of the lips tendeth only to penury. + +Thursday 14-August, 2025 diff --git a/scripture/kjv/08/14/25/scripture.tg.id b/scripture/kjv/08/14/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/14/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/14/25/scripture.today b/scripture/kjv/08/14/25/scripture.today new file mode 100644 index 00000000..1f4e93ea --- /dev/null +++ b/scripture/kjv/08/14/25/scripture.today @@ -0,0 +1 @@ +20 14:23 diff --git a/scripture/kjv/08/15/23/scripture.html b/scripture/kjv/08/15/23/scripture.html new file mode 100644 index 00000000..01e12594 --- /dev/null +++ b/scripture/kjv/08/15/23/scripture.html @@ -0,0 +1,3 @@ +John 8:7
+7 So when they continued asking him, he lifted up himself, and said unto them, He that is without sin among you, let him first cast a stone at her.

+Tuesday 15-August, 2023 diff --git a/scripture/kjv/08/15/23/scripture.json b/scripture/kjv/08/15/23/scripture.json new file mode 100644 index 00000000..8dee7b22 --- /dev/null +++ b/scripture/kjv/08/15/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "8", + "date": "Tuesday 15-August, 2023", + "getbible": "https://getbible.life/kjv/John/8/7", + "name": "John 8:7", + "scripture": [ + { + "nr": "7", + "text": "So when they continued asking him, he lifted up himself, and said unto them, He that is without sin among you, let him first cast a stone at her." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7", + "version": "kjv" +} diff --git a/scripture/kjv/08/15/23/scripture.md b/scripture/kjv/08/15/23/scripture.md new file mode 100644 index 00000000..1939c80e --- /dev/null +++ b/scripture/kjv/08/15/23/scripture.md @@ -0,0 +1,5 @@ +**John 8:7** + +7 So when they continued asking him, he lifted up himself, and said unto them, He that is without sin among you, let him first cast a stone at her. + +[Tuesday 15-August, 2023](https://getbible.life/kjv/John/8/7) diff --git a/scripture/kjv/08/15/23/scripture.tg b/scripture/kjv/08/15/23/scripture.tg new file mode 100644 index 00000000..98bbfc31 --- /dev/null +++ b/scripture/kjv/08/15/23/scripture.tg @@ -0,0 +1,4 @@ +John 8:7 +7 So when they continued asking him, he lifted up himself, and said unto them, He that is without sin among you, let him first cast a stone at her. + +Tuesday 15-August, 2023 diff --git a/scripture/kjv/08/15/23/scripture.tg.id b/scripture/kjv/08/15/23/scripture.tg.id new file mode 100644 index 00000000..408adce1 --- /dev/null +++ b/scripture/kjv/08/15/23/scripture.tg.id @@ -0,0 +1 @@ +1044 diff --git a/scripture/kjv/08/15/23/scripture.today b/scripture/kjv/08/15/23/scripture.today new file mode 100644 index 00000000..2792c1b7 --- /dev/null +++ b/scripture/kjv/08/15/23/scripture.today @@ -0,0 +1 @@ +43 8:7 diff --git a/scripture/kjv/08/15/24/scripture.html b/scripture/kjv/08/15/24/scripture.html new file mode 100644 index 00000000..5ca6a785 --- /dev/null +++ b/scripture/kjv/08/15/24/scripture.html @@ -0,0 +1,3 @@ +James 3:13-18
+13 Who is a wise man and endued with knowledge among you? let him shew out of a good conversation his works with meekness of wisdom. 14 But if ye have bitter envying and strife in your hearts, glory not, and lie not against the truth. 15 This wisdom descendeth not from above, but is earthly, sensual, devilish. 16 For where envying and strife is, there is confusion and every evil work. 17 But the wisdom that is from above is first pure, then peaceable, gentle, and easy to be intreated, full of mercy and good fruits, without partiality, and without hypocrisy. 18 And the fruit of righteousness is sown in peace of them that make peace.

+Thursday 15-August, 2024 diff --git a/scripture/kjv/08/15/24/scripture.json b/scripture/kjv/08/15/24/scripture.json new file mode 100644 index 00000000..9125d3b7 --- /dev/null +++ b/scripture/kjv/08/15/24/scripture.json @@ -0,0 +1,37 @@ +{ + "book": "James", + "chapter": "3", + "date": "Thursday 15-August, 2024", + "getbible": "https://getbible.life/kjv/James/3/13-18", + "name": "James 3:13-18", + "scripture": [ + { + "nr": "13", + "text": "Who is a wise man and endued with knowledge among you? let him shew out of a good conversation his works with meekness of wisdom." + }, + { + "nr": "14", + "text": "But if ye have bitter envying and strife in your hearts, glory not, and lie not against the truth." + }, + { + "nr": "15", + "text": "This wisdom descendeth not from above, but is earthly, sensual, devilish." + }, + { + "nr": "16", + "text": "For where envying and strife is, there is confusion and every evil work." + }, + { + "nr": "17", + "text": "But the wisdom that is from above is first pure, then peaceable, gentle, and easy to be intreated, full of mercy and good fruits, without partiality, and without hypocrisy." + }, + { + "nr": "18", + "text": "And the fruit of righteousness is sown in peace of them that make peace. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13-18", + "version": "kjv" +} diff --git a/scripture/kjv/08/15/24/scripture.md b/scripture/kjv/08/15/24/scripture.md new file mode 100644 index 00000000..0df2ed18 --- /dev/null +++ b/scripture/kjv/08/15/24/scripture.md @@ -0,0 +1,5 @@ +**James 3:13-18** + +13 Who is a wise man and endued with knowledge among you? let him shew out of a good conversation his works with meekness of wisdom. 14 But if ye have bitter envying and strife in your hearts, glory not, and lie not against the truth. 15 This wisdom descendeth not from above, but is earthly, sensual, devilish. 16 For where envying and strife is, there is confusion and every evil work. 17 But the wisdom that is from above is first pure, then peaceable, gentle, and easy to be intreated, full of mercy and good fruits, without partiality, and without hypocrisy. 18 And the fruit of righteousness is sown in peace of them that make peace. + +[Thursday 15-August, 2024](https://getbible.life/kjv/James/3/13-18) diff --git a/scripture/kjv/08/15/24/scripture.tg b/scripture/kjv/08/15/24/scripture.tg new file mode 100644 index 00000000..36fdbd85 --- /dev/null +++ b/scripture/kjv/08/15/24/scripture.tg @@ -0,0 +1,4 @@ +James 3:13-18 +13 Who is a wise man and endued with knowledge among you? let him shew out of a good conversation his works with meekness of wisdom. 14 But if ye have bitter envying and strife in your hearts, glory not, and lie not against the truth. 15 This wisdom descendeth not from above, but is earthly, sensual, devilish. 16 For where envying and strife is, there is confusion and every evil work. 17 But the wisdom that is from above is first pure, then peaceable, gentle, and easy to be intreated, full of mercy and good fruits, without partiality, and without hypocrisy. 18 And the fruit of righteousness is sown in peace of them that make peace. + +Thursday 15-August, 2024 diff --git a/scripture/kjv/08/15/24/scripture.tg.id b/scripture/kjv/08/15/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/15/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/15/24/scripture.today b/scripture/kjv/08/15/24/scripture.today new file mode 100644 index 00000000..4a9d1c34 --- /dev/null +++ b/scripture/kjv/08/15/24/scripture.today @@ -0,0 +1 @@ +59 3:13-18 diff --git a/scripture/kjv/08/15/25/scripture.html b/scripture/kjv/08/15/25/scripture.html new file mode 100644 index 00000000..068e7b74 --- /dev/null +++ b/scripture/kjv/08/15/25/scripture.html @@ -0,0 +1,3 @@ +Job 28:28
+28 And unto man he said, Behold, the fear of the Lord, that is wisdom; and to depart from evil is understanding.

+Friday 15-August, 2025 diff --git a/scripture/kjv/08/15/25/scripture.json b/scripture/kjv/08/15/25/scripture.json new file mode 100644 index 00000000..08ce2a6b --- /dev/null +++ b/scripture/kjv/08/15/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Job", + "chapter": "28", + "date": "Friday 15-August, 2025", + "getbible": "https://getbible.life/kjv/Job/28/28", + "name": "Job 28:28", + "scripture": [ + { + "nr": "28", + "text": "And unto man he said, Behold, the fear of the Lord, that is wisdom; and to depart from evil is understanding. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "28", + "version": "kjv" +} diff --git a/scripture/kjv/08/15/25/scripture.md b/scripture/kjv/08/15/25/scripture.md new file mode 100644 index 00000000..3786a2ad --- /dev/null +++ b/scripture/kjv/08/15/25/scripture.md @@ -0,0 +1,5 @@ +**Job 28:28** + +28 And unto man he said, Behold, the fear of the Lord, that is wisdom; and to depart from evil is understanding. + +[Friday 15-August, 2025](https://getbible.life/kjv/Job/28/28) diff --git a/scripture/kjv/08/15/25/scripture.tg b/scripture/kjv/08/15/25/scripture.tg new file mode 100644 index 00000000..11de98ec --- /dev/null +++ b/scripture/kjv/08/15/25/scripture.tg @@ -0,0 +1,4 @@ +Job 28:28 +28 And unto man he said, Behold, the fear of the Lord, that is wisdom; and to depart from evil is understanding. + +Friday 15-August, 2025 diff --git a/scripture/kjv/08/15/25/scripture.tg.id b/scripture/kjv/08/15/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/15/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/15/25/scripture.today b/scripture/kjv/08/15/25/scripture.today new file mode 100644 index 00000000..1798cde9 --- /dev/null +++ b/scripture/kjv/08/15/25/scripture.today @@ -0,0 +1 @@ +18 28:28 diff --git a/scripture/kjv/08/16/23/scripture.html b/scripture/kjv/08/16/23/scripture.html new file mode 100644 index 00000000..2674b4c8 --- /dev/null +++ b/scripture/kjv/08/16/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 13:10
+10 Only by pride cometh contention: but with the well advised is wisdom.

+Wednesday 16-August, 2023 diff --git a/scripture/kjv/08/16/23/scripture.json b/scripture/kjv/08/16/23/scripture.json new file mode 100644 index 00000000..7b34bcf2 --- /dev/null +++ b/scripture/kjv/08/16/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "13", + "date": "Wednesday 16-August, 2023", + "getbible": "https://getbible.life/kjv/Proverbs/13/10", + "name": "Proverbs 13:10", + "scripture": [ + { + "nr": "10", + "text": "Only by pride cometh contention: but with the well advised is wisdom." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/08/16/23/scripture.md b/scripture/kjv/08/16/23/scripture.md new file mode 100644 index 00000000..a94517c6 --- /dev/null +++ b/scripture/kjv/08/16/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 13:10** + +10 Only by pride cometh contention: but with the well advised is wisdom. + +[Wednesday 16-August, 2023](https://getbible.life/kjv/Proverbs/13/10) diff --git a/scripture/kjv/08/16/23/scripture.tg b/scripture/kjv/08/16/23/scripture.tg new file mode 100644 index 00000000..c68dd87c --- /dev/null +++ b/scripture/kjv/08/16/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 13:10 +10 Only by pride cometh contention: but with the well advised is wisdom. + +Wednesday 16-August, 2023 diff --git a/scripture/kjv/08/16/23/scripture.tg.id b/scripture/kjv/08/16/23/scripture.tg.id new file mode 100644 index 00000000..026c5e4b --- /dev/null +++ b/scripture/kjv/08/16/23/scripture.tg.id @@ -0,0 +1 @@ +1045 diff --git a/scripture/kjv/08/16/23/scripture.today b/scripture/kjv/08/16/23/scripture.today new file mode 100644 index 00000000..7601928d --- /dev/null +++ b/scripture/kjv/08/16/23/scripture.today @@ -0,0 +1 @@ +20 13:10 diff --git a/scripture/kjv/08/16/24/scripture.html b/scripture/kjv/08/16/24/scripture.html new file mode 100644 index 00000000..61b1c4d1 --- /dev/null +++ b/scripture/kjv/08/16/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 34:4
+4 I sought the Lord, and he heard me, and delivered me from all my fears.

+Friday 16-August, 2024 diff --git a/scripture/kjv/08/16/24/scripture.json b/scripture/kjv/08/16/24/scripture.json new file mode 100644 index 00000000..4a382463 --- /dev/null +++ b/scripture/kjv/08/16/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "34", + "date": "Friday 16-August, 2024", + "getbible": "https://getbible.life/kjv/Psalms/34/4", + "name": "Psalms 34:4", + "scripture": [ + { + "nr": "4", + "text": "I sought the Lord, and he heard me, and delivered me from all my fears." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4", + "version": "kjv" +} diff --git a/scripture/kjv/08/16/24/scripture.md b/scripture/kjv/08/16/24/scripture.md new file mode 100644 index 00000000..6e4d15a6 --- /dev/null +++ b/scripture/kjv/08/16/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 34:4** + +4 I sought the Lord, and he heard me, and delivered me from all my fears. + +[Friday 16-August, 2024](https://getbible.life/kjv/Psalms/34/4) diff --git a/scripture/kjv/08/16/24/scripture.tg b/scripture/kjv/08/16/24/scripture.tg new file mode 100644 index 00000000..423814a5 --- /dev/null +++ b/scripture/kjv/08/16/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 34:4 +4 I sought the Lord, and he heard me, and delivered me from all my fears. + +Friday 16-August, 2024 diff --git a/scripture/kjv/08/16/24/scripture.tg.id b/scripture/kjv/08/16/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/16/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/16/24/scripture.today b/scripture/kjv/08/16/24/scripture.today new file mode 100644 index 00000000..f33694e9 --- /dev/null +++ b/scripture/kjv/08/16/24/scripture.today @@ -0,0 +1 @@ +19 34:4 diff --git a/scripture/kjv/08/16/25/scripture.html b/scripture/kjv/08/16/25/scripture.html new file mode 100644 index 00000000..1b659b04 --- /dev/null +++ b/scripture/kjv/08/16/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 31:24
+24 Be of good courage, and he shall strengthen your heart, all ye that hope in the Lord.

+Saturday 16-August, 2025 diff --git a/scripture/kjv/08/16/25/scripture.json b/scripture/kjv/08/16/25/scripture.json new file mode 100644 index 00000000..89775ac2 --- /dev/null +++ b/scripture/kjv/08/16/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "31", + "date": "Saturday 16-August, 2025", + "getbible": "https://getbible.life/kjv/Psalms/31/24", + "name": "Psalms 31:24", + "scripture": [ + { + "nr": "24", + "text": "Be of good courage, and he shall strengthen your heart, all ye that hope in the Lord. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "24", + "version": "kjv" +} diff --git a/scripture/kjv/08/16/25/scripture.md b/scripture/kjv/08/16/25/scripture.md new file mode 100644 index 00000000..fcc9d2fc --- /dev/null +++ b/scripture/kjv/08/16/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 31:24** + +24 Be of good courage, and he shall strengthen your heart, all ye that hope in the Lord. + +[Saturday 16-August, 2025](https://getbible.life/kjv/Psalms/31/24) diff --git a/scripture/kjv/08/16/25/scripture.tg b/scripture/kjv/08/16/25/scripture.tg new file mode 100644 index 00000000..d93005ae --- /dev/null +++ b/scripture/kjv/08/16/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 31:24 +24 Be of good courage, and he shall strengthen your heart, all ye that hope in the Lord. + +Saturday 16-August, 2025 diff --git a/scripture/kjv/08/16/25/scripture.tg.id b/scripture/kjv/08/16/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/16/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/16/25/scripture.today b/scripture/kjv/08/16/25/scripture.today new file mode 100644 index 00000000..bd12ef44 --- /dev/null +++ b/scripture/kjv/08/16/25/scripture.today @@ -0,0 +1 @@ +19 31:24 diff --git a/scripture/kjv/08/17/23/scripture.html b/scripture/kjv/08/17/23/scripture.html new file mode 100644 index 00000000..326deeff --- /dev/null +++ b/scripture/kjv/08/17/23/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 11:19-20
+19 And I will give them one heart, and I will put a new spirit within you; and I will take the stony heart out of their flesh, and will give them an heart of flesh: 20 That they may walk in my statutes, and keep mine ordinances, and do them: and they shall be my people, and I will be their God.

+Thursday 17-August, 2023 diff --git a/scripture/kjv/08/17/23/scripture.json b/scripture/kjv/08/17/23/scripture.json new file mode 100644 index 00000000..845a673c --- /dev/null +++ b/scripture/kjv/08/17/23/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Ezekiel", + "chapter": "11", + "date": "Thursday 17-August, 2023", + "getbible": "https://getbible.life/kjv/Ezekiel/11/19-20", + "name": "Ezekiel 11:19-20", + "scripture": [ + { + "nr": "19", + "text": "And I will give them one heart, and I will put a new spirit within you; and I will take the stony heart out of their flesh, and will give them an heart of flesh:" + }, + { + "nr": "20", + "text": "That they may walk in my statutes, and keep mine ordinances, and do them: and they shall be my people, and I will be their God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "19-20", + "version": "kjv" +} diff --git a/scripture/kjv/08/17/23/scripture.md b/scripture/kjv/08/17/23/scripture.md new file mode 100644 index 00000000..baffb27c --- /dev/null +++ b/scripture/kjv/08/17/23/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 11:19-20** + +19 And I will give them one heart, and I will put a new spirit within you; and I will take the stony heart out of their flesh, and will give them an heart of flesh: 20 That they may walk in my statutes, and keep mine ordinances, and do them: and they shall be my people, and I will be their God. + +[Thursday 17-August, 2023](https://getbible.life/kjv/Ezekiel/11/19-20) diff --git a/scripture/kjv/08/17/23/scripture.tg b/scripture/kjv/08/17/23/scripture.tg new file mode 100644 index 00000000..4116e822 --- /dev/null +++ b/scripture/kjv/08/17/23/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 11:19-20 +19 And I will give them one heart, and I will put a new spirit within you; and I will take the stony heart out of their flesh, and will give them an heart of flesh: 20 That they may walk in my statutes, and keep mine ordinances, and do them: and they shall be my people, and I will be their God. + +Thursday 17-August, 2023 diff --git a/scripture/kjv/08/17/23/scripture.tg.id b/scripture/kjv/08/17/23/scripture.tg.id new file mode 100644 index 00000000..0d38a9b0 --- /dev/null +++ b/scripture/kjv/08/17/23/scripture.tg.id @@ -0,0 +1 @@ +1046 diff --git a/scripture/kjv/08/17/23/scripture.today b/scripture/kjv/08/17/23/scripture.today new file mode 100644 index 00000000..2a6929e9 --- /dev/null +++ b/scripture/kjv/08/17/23/scripture.today @@ -0,0 +1 @@ +26 11:19-20 diff --git a/scripture/kjv/08/17/24/scripture.html b/scripture/kjv/08/17/24/scripture.html new file mode 100644 index 00000000..a796067a --- /dev/null +++ b/scripture/kjv/08/17/24/scripture.html @@ -0,0 +1,3 @@ +Hebrews 10:17
+17 And their sins and iniquities will I remember no more.

+Saturday 17-August, 2024 diff --git a/scripture/kjv/08/17/24/scripture.json b/scripture/kjv/08/17/24/scripture.json new file mode 100644 index 00000000..3a897c7c --- /dev/null +++ b/scripture/kjv/08/17/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Hebrews", + "chapter": "10", + "date": "Saturday 17-August, 2024", + "getbible": "https://getbible.life/kjv/Hebrews/10/17", + "name": "Hebrews 10:17", + "scripture": [ + { + "nr": "17", + "text": "And their sins and iniquities will I remember no more." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17", + "version": "kjv" +} diff --git a/scripture/kjv/08/17/24/scripture.md b/scripture/kjv/08/17/24/scripture.md new file mode 100644 index 00000000..f6401cd5 --- /dev/null +++ b/scripture/kjv/08/17/24/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 10:17** + +17 And their sins and iniquities will I remember no more. + +[Saturday 17-August, 2024](https://getbible.life/kjv/Hebrews/10/17) diff --git a/scripture/kjv/08/17/24/scripture.tg b/scripture/kjv/08/17/24/scripture.tg new file mode 100644 index 00000000..696854c2 --- /dev/null +++ b/scripture/kjv/08/17/24/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 10:17 +17 And their sins and iniquities will I remember no more. + +Saturday 17-August, 2024 diff --git a/scripture/kjv/08/17/24/scripture.tg.id b/scripture/kjv/08/17/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/17/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/17/24/scripture.today b/scripture/kjv/08/17/24/scripture.today new file mode 100644 index 00000000..fff1879a --- /dev/null +++ b/scripture/kjv/08/17/24/scripture.today @@ -0,0 +1 @@ +58 10:17 diff --git a/scripture/kjv/08/17/25/scripture.html b/scripture/kjv/08/17/25/scripture.html new file mode 100644 index 00000000..d6417b79 --- /dev/null +++ b/scripture/kjv/08/17/25/scripture.html @@ -0,0 +1,3 @@ +John 3:11
+11 Verily, verily, I say unto thee, We speak that we do know, and testify that we have seen; and ye receive not our witness.

+Sunday 17-August, 2025 diff --git a/scripture/kjv/08/17/25/scripture.json b/scripture/kjv/08/17/25/scripture.json new file mode 100644 index 00000000..9209b001 --- /dev/null +++ b/scripture/kjv/08/17/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "3", + "date": "Sunday 17-August, 2025", + "getbible": "https://getbible.life/kjv/John/3/11", + "name": "John 3:11", + "scripture": [ + { + "nr": "11", + "text": "Verily, verily, I say unto thee, We speak that we do know, and testify that we have seen; and ye receive not our witness." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/08/17/25/scripture.md b/scripture/kjv/08/17/25/scripture.md new file mode 100644 index 00000000..f510fe2d --- /dev/null +++ b/scripture/kjv/08/17/25/scripture.md @@ -0,0 +1,5 @@ +**John 3:11** + +11 Verily, verily, I say unto thee, We speak that we do know, and testify that we have seen; and ye receive not our witness. + +[Sunday 17-August, 2025](https://getbible.life/kjv/John/3/11) diff --git a/scripture/kjv/08/17/25/scripture.tg b/scripture/kjv/08/17/25/scripture.tg new file mode 100644 index 00000000..ac2766b6 --- /dev/null +++ b/scripture/kjv/08/17/25/scripture.tg @@ -0,0 +1,4 @@ +John 3:11 +11 Verily, verily, I say unto thee, We speak that we do know, and testify that we have seen; and ye receive not our witness. + +Sunday 17-August, 2025 diff --git a/scripture/kjv/08/17/25/scripture.tg.id b/scripture/kjv/08/17/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/17/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/17/25/scripture.today b/scripture/kjv/08/17/25/scripture.today new file mode 100644 index 00000000..f26d9488 --- /dev/null +++ b/scripture/kjv/08/17/25/scripture.today @@ -0,0 +1 @@ +43 3:11 diff --git a/scripture/kjv/08/18/23/scripture.html b/scripture/kjv/08/18/23/scripture.html new file mode 100644 index 00000000..8f2419ee --- /dev/null +++ b/scripture/kjv/08/18/23/scripture.html @@ -0,0 +1,3 @@ +Daniel 7:18
+18 But the saints of the most High shall take the kingdom, and possess the kingdom for ever, even for ever and ever.

+Friday 18-August, 2023 diff --git a/scripture/kjv/08/18/23/scripture.json b/scripture/kjv/08/18/23/scripture.json new file mode 100644 index 00000000..846882bb --- /dev/null +++ b/scripture/kjv/08/18/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Daniel", + "chapter": "7", + "date": "Friday 18-August, 2023", + "getbible": "https://getbible.life/kjv/Daniel/7/18", + "name": "Daniel 7:18", + "scripture": [ + { + "nr": "18", + "text": "But the saints of the most High shall take the kingdom, and possess the kingdom for ever, even for ever and ever." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18", + "version": "kjv" +} diff --git a/scripture/kjv/08/18/23/scripture.md b/scripture/kjv/08/18/23/scripture.md new file mode 100644 index 00000000..47eb9b34 --- /dev/null +++ b/scripture/kjv/08/18/23/scripture.md @@ -0,0 +1,5 @@ +**Daniel 7:18** + +18 But the saints of the most High shall take the kingdom, and possess the kingdom for ever, even for ever and ever. + +[Friday 18-August, 2023](https://getbible.life/kjv/Daniel/7/18) diff --git a/scripture/kjv/08/18/23/scripture.tg b/scripture/kjv/08/18/23/scripture.tg new file mode 100644 index 00000000..e6f3fee1 --- /dev/null +++ b/scripture/kjv/08/18/23/scripture.tg @@ -0,0 +1,4 @@ +Daniel 7:18 +18 But the saints of the most High shall take the kingdom, and possess the kingdom for ever, even for ever and ever. + +Friday 18-August, 2023 diff --git a/scripture/kjv/08/18/23/scripture.tg.id b/scripture/kjv/08/18/23/scripture.tg.id new file mode 100644 index 00000000..0eb5aea3 --- /dev/null +++ b/scripture/kjv/08/18/23/scripture.tg.id @@ -0,0 +1 @@ +1047 diff --git a/scripture/kjv/08/18/23/scripture.today b/scripture/kjv/08/18/23/scripture.today new file mode 100644 index 00000000..e0be5c14 --- /dev/null +++ b/scripture/kjv/08/18/23/scripture.today @@ -0,0 +1 @@ +27 7:18 diff --git a/scripture/kjv/08/18/24/scripture.html b/scripture/kjv/08/18/24/scripture.html new file mode 100644 index 00000000..83d32fd0 --- /dev/null +++ b/scripture/kjv/08/18/24/scripture.html @@ -0,0 +1,3 @@ +Ecclesiastes 12:14
+14 For God shall bring every work into judgment, with every secret thing, whether it be good, or whether it be evil.

+Sunday 18-August, 2024 diff --git a/scripture/kjv/08/18/24/scripture.json b/scripture/kjv/08/18/24/scripture.json new file mode 100644 index 00000000..bba67ef5 --- /dev/null +++ b/scripture/kjv/08/18/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ecclesiastes", + "chapter": "12", + "date": "Sunday 18-August, 2024", + "getbible": "https://getbible.life/kjv/Ecclesiastes/12/14", + "name": "Ecclesiastes 12:14", + "scripture": [ + { + "nr": "14", + "text": "For God shall bring every work into judgment, with every secret thing, whether it be good, or whether it be evil. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/08/18/24/scripture.md b/scripture/kjv/08/18/24/scripture.md new file mode 100644 index 00000000..bdb6f687 --- /dev/null +++ b/scripture/kjv/08/18/24/scripture.md @@ -0,0 +1,5 @@ +**Ecclesiastes 12:14** + +14 For God shall bring every work into judgment, with every secret thing, whether it be good, or whether it be evil. + +[Sunday 18-August, 2024](https://getbible.life/kjv/Ecclesiastes/12/14) diff --git a/scripture/kjv/08/18/24/scripture.tg b/scripture/kjv/08/18/24/scripture.tg new file mode 100644 index 00000000..84f8cfa7 --- /dev/null +++ b/scripture/kjv/08/18/24/scripture.tg @@ -0,0 +1,4 @@ +Ecclesiastes 12:14 +14 For God shall bring every work into judgment, with every secret thing, whether it be good, or whether it be evil. + +Sunday 18-August, 2024 diff --git a/scripture/kjv/08/18/24/scripture.tg.id b/scripture/kjv/08/18/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/18/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/18/24/scripture.today b/scripture/kjv/08/18/24/scripture.today new file mode 100644 index 00000000..4d2bb20b --- /dev/null +++ b/scripture/kjv/08/18/24/scripture.today @@ -0,0 +1 @@ +21 12:14 diff --git a/scripture/kjv/08/18/25/scripture.html b/scripture/kjv/08/18/25/scripture.html new file mode 100644 index 00000000..6f016550 --- /dev/null +++ b/scripture/kjv/08/18/25/scripture.html @@ -0,0 +1,3 @@ +Proverbs 6:9
+9 How long wilt thou sleep, O sluggard? when wilt thou arise out of thy sleep?

+Monday 18-August, 2025 diff --git a/scripture/kjv/08/18/25/scripture.json b/scripture/kjv/08/18/25/scripture.json new file mode 100644 index 00000000..7f65f04f --- /dev/null +++ b/scripture/kjv/08/18/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "6", + "date": "Monday 18-August, 2025", + "getbible": "https://getbible.life/kjv/Proverbs/6/9", + "name": "Proverbs 6:9", + "scripture": [ + { + "nr": "9", + "text": "How long wilt thou sleep, O sluggard? when wilt thou arise out of thy sleep?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9", + "version": "kjv" +} diff --git a/scripture/kjv/08/18/25/scripture.md b/scripture/kjv/08/18/25/scripture.md new file mode 100644 index 00000000..627bb9ce --- /dev/null +++ b/scripture/kjv/08/18/25/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 6:9** + +9 How long wilt thou sleep, O sluggard? when wilt thou arise out of thy sleep? + +[Monday 18-August, 2025](https://getbible.life/kjv/Proverbs/6/9) diff --git a/scripture/kjv/08/18/25/scripture.tg b/scripture/kjv/08/18/25/scripture.tg new file mode 100644 index 00000000..525cefab --- /dev/null +++ b/scripture/kjv/08/18/25/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 6:9 +9 How long wilt thou sleep, O sluggard? when wilt thou arise out of thy sleep? + +Monday 18-August, 2025 diff --git a/scripture/kjv/08/18/25/scripture.tg.id b/scripture/kjv/08/18/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/18/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/18/25/scripture.today b/scripture/kjv/08/18/25/scripture.today new file mode 100644 index 00000000..19ad434e --- /dev/null +++ b/scripture/kjv/08/18/25/scripture.today @@ -0,0 +1 @@ +20 6:9 diff --git a/scripture/kjv/08/19/23/scripture.html b/scripture/kjv/08/19/23/scripture.html new file mode 100644 index 00000000..e969c273 --- /dev/null +++ b/scripture/kjv/08/19/23/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 3:7-11
+7 But if the ministration of death, written and engraven in stones, was glorious, so that the children of Israel could not stedfastly behold the face of Moses for the glory of his countenance; which glory was to be done away: 8 How shall not the ministration of the spirit be rather glorious? 9 For if the ministration of condemnation be glory, much more doth the ministration of righteousness exceed in glory. 10 For even that which was made glorious had no glory in this respect, by reason of the glory that excelleth. 11 For if that which is done away was glorious, much more that which remaineth is glorious.

+Saturday 19-August, 2023 diff --git a/scripture/kjv/08/19/23/scripture.json b/scripture/kjv/08/19/23/scripture.json new file mode 100644 index 00000000..ccdfffce --- /dev/null +++ b/scripture/kjv/08/19/23/scripture.json @@ -0,0 +1,33 @@ +{ + "book": "2 Corinthians", + "chapter": "3", + "date": "Saturday 19-August, 2023", + "getbible": "https://getbible.life/kjv/2 Corinthians/3/7-11", + "name": "2 Corinthians 3:7-11", + "scripture": [ + { + "nr": "7", + "text": "But if the ministration of death, written and engraven in stones, was glorious, so that the children of Israel could not stedfastly behold the face of Moses for the glory of his countenance; which glory was to be done away:" + }, + { + "nr": "8", + "text": "How shall not the ministration of the spirit be rather glorious?" + }, + { + "nr": "9", + "text": "For if the ministration of condemnation be glory, much more doth the ministration of righteousness exceed in glory." + }, + { + "nr": "10", + "text": "For even that which was made glorious had no glory in this respect, by reason of the glory that excelleth." + }, + { + "nr": "11", + "text": "For if that which is done away was glorious, much more that which remaineth is glorious." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7-11", + "version": "kjv" +} diff --git a/scripture/kjv/08/19/23/scripture.md b/scripture/kjv/08/19/23/scripture.md new file mode 100644 index 00000000..a291c226 --- /dev/null +++ b/scripture/kjv/08/19/23/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 3:7-11** + +7 But if the ministration of death, written and engraven in stones, was glorious, so that the children of Israel could not stedfastly behold the face of Moses for the glory of his countenance; which glory was to be done away: 8 How shall not the ministration of the spirit be rather glorious? 9 For if the ministration of condemnation be glory, much more doth the ministration of righteousness exceed in glory. 10 For even that which was made glorious had no glory in this respect, by reason of the glory that excelleth. 11 For if that which is done away was glorious, much more that which remaineth is glorious. + +[Saturday 19-August, 2023](https://getbible.life/kjv/2 Corinthians/3/7-11) diff --git a/scripture/kjv/08/19/23/scripture.tg b/scripture/kjv/08/19/23/scripture.tg new file mode 100644 index 00000000..6d1520ec --- /dev/null +++ b/scripture/kjv/08/19/23/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 3:7-11 +7 But if the ministration of death, written and engraven in stones, was glorious, so that the children of Israel could not stedfastly behold the face of Moses for the glory of his countenance; which glory was to be done away: 8 How shall not the ministration of the spirit be rather glorious? 9 For if the ministration of condemnation be glory, much more doth the ministration of righteousness exceed in glory. 10 For even that which was made glorious had no glory in this respect, by reason of the glory that excelleth. 11 For if that which is done away was glorious, much more that which remaineth is glorious. + +Saturday 19-August, 2023 diff --git a/scripture/kjv/08/19/23/scripture.tg.id b/scripture/kjv/08/19/23/scripture.tg.id new file mode 100644 index 00000000..ff0ed70d --- /dev/null +++ b/scripture/kjv/08/19/23/scripture.tg.id @@ -0,0 +1 @@ +1048 diff --git a/scripture/kjv/08/19/23/scripture.today b/scripture/kjv/08/19/23/scripture.today new file mode 100644 index 00000000..f705857b --- /dev/null +++ b/scripture/kjv/08/19/23/scripture.today @@ -0,0 +1 @@ +47 3:7-11 diff --git a/scripture/kjv/08/19/24/scripture.html b/scripture/kjv/08/19/24/scripture.html new file mode 100644 index 00000000..26dd7eaa --- /dev/null +++ b/scripture/kjv/08/19/24/scripture.html @@ -0,0 +1,3 @@ +Hosea 10:12
+12 Sow to yourselves in righteousness, reap in mercy; break up your fallow ground: for it is time to seek the Lord, till he come and rain righteousness upon you.

+Monday 19-August, 2024 diff --git a/scripture/kjv/08/19/24/scripture.json b/scripture/kjv/08/19/24/scripture.json new file mode 100644 index 00000000..3e2ce48f --- /dev/null +++ b/scripture/kjv/08/19/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Hosea", + "chapter": "10", + "date": "Monday 19-August, 2024", + "getbible": "https://getbible.life/kjv/Hosea/10/12", + "name": "Hosea 10:12", + "scripture": [ + { + "nr": "12", + "text": "Sow to yourselves in righteousness, reap in mercy; break up your fallow ground: for it is time to seek the Lord, till he come and rain righteousness upon you." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/08/19/24/scripture.md b/scripture/kjv/08/19/24/scripture.md new file mode 100644 index 00000000..d0fac8da --- /dev/null +++ b/scripture/kjv/08/19/24/scripture.md @@ -0,0 +1,5 @@ +**Hosea 10:12** + +12 Sow to yourselves in righteousness, reap in mercy; break up your fallow ground: for it is time to seek the Lord, till he come and rain righteousness upon you. + +[Monday 19-August, 2024](https://getbible.life/kjv/Hosea/10/12) diff --git a/scripture/kjv/08/19/24/scripture.tg b/scripture/kjv/08/19/24/scripture.tg new file mode 100644 index 00000000..7be47806 --- /dev/null +++ b/scripture/kjv/08/19/24/scripture.tg @@ -0,0 +1,4 @@ +Hosea 10:12 +12 Sow to yourselves in righteousness, reap in mercy; break up your fallow ground: for it is time to seek the Lord, till he come and rain righteousness upon you. + +Monday 19-August, 2024 diff --git a/scripture/kjv/08/19/24/scripture.tg.id b/scripture/kjv/08/19/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/19/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/19/24/scripture.today b/scripture/kjv/08/19/24/scripture.today new file mode 100644 index 00000000..bc03ff39 --- /dev/null +++ b/scripture/kjv/08/19/24/scripture.today @@ -0,0 +1 @@ +28 10:12 diff --git a/scripture/kjv/08/19/25/scripture.html b/scripture/kjv/08/19/25/scripture.html new file mode 100644 index 00000000..47f774a6 --- /dev/null +++ b/scripture/kjv/08/19/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 42:1-6
+1 As the hart panteth after the water brooks, so panteth my soul after thee, O God. 2 My soul thirsteth for God, for the living God: when shall I come and appear before God? 3 My tears have been my meat day and night, while they continually say unto me, Where is thy God? 4 When I remember these things, I pour out my soul in me: for I had gone with the multitude, I went with them to the house of God, with the voice of joy and praise, with a multitude that kept holyday. 5 Why art thou cast down, O my soul? and why art thou disquieted in me? hope thou in God: for I shall yet praise him for the help of his countenance. 6 O my God, my soul is cast down within me: therefore will I remember thee from the land of Jordan, and of the Hermonites, from the hill Mizar.

+Tuesday 19-August, 2025 diff --git a/scripture/kjv/08/19/25/scripture.json b/scripture/kjv/08/19/25/scripture.json new file mode 100644 index 00000000..25838908 --- /dev/null +++ b/scripture/kjv/08/19/25/scripture.json @@ -0,0 +1,37 @@ +{ + "book": "Psalms", + "chapter": "42", + "date": "Tuesday 19-August, 2025", + "getbible": "https://getbible.life/kjv/Psalms/42/1-6", + "name": "Psalms 42:1-6", + "scripture": [ + { + "nr": "1", + "text": "As the hart panteth after the water brooks, so panteth my soul after thee, O God." + }, + { + "nr": "2", + "text": "My soul thirsteth for God, for the living God: when shall I come and appear before God?" + }, + { + "nr": "3", + "text": "My tears have been my meat day and night, while they continually say unto me, Where is thy God?" + }, + { + "nr": "4", + "text": "When I remember these things, I pour out my soul in me: for I had gone with the multitude, I went with them to the house of God, with the voice of joy and praise, with a multitude that kept holyday." + }, + { + "nr": "5", + "text": "Why art thou cast down, O my soul? and why art thou disquieted in me? hope thou in God: for I shall yet praise him for the help of his countenance." + }, + { + "nr": "6", + "text": "O my God, my soul is cast down within me: therefore will I remember thee from the land of Jordan, and of the Hermonites, from the hill Mizar." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-6", + "version": "kjv" +} diff --git a/scripture/kjv/08/19/25/scripture.md b/scripture/kjv/08/19/25/scripture.md new file mode 100644 index 00000000..11f3b57c --- /dev/null +++ b/scripture/kjv/08/19/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 42:1-6** + +1 As the hart panteth after the water brooks, so panteth my soul after thee, O God. 2 My soul thirsteth for God, for the living God: when shall I come and appear before God? 3 My tears have been my meat day and night, while they continually say unto me, Where is thy God? 4 When I remember these things, I pour out my soul in me: for I had gone with the multitude, I went with them to the house of God, with the voice of joy and praise, with a multitude that kept holyday. 5 Why art thou cast down, O my soul? and why art thou disquieted in me? hope thou in God: for I shall yet praise him for the help of his countenance. 6 O my God, my soul is cast down within me: therefore will I remember thee from the land of Jordan, and of the Hermonites, from the hill Mizar. + +[Tuesday 19-August, 2025](https://getbible.life/kjv/Psalms/42/1-6) diff --git a/scripture/kjv/08/19/25/scripture.tg b/scripture/kjv/08/19/25/scripture.tg new file mode 100644 index 00000000..21e15396 --- /dev/null +++ b/scripture/kjv/08/19/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 42:1-6 +1 As the hart panteth after the water brooks, so panteth my soul after thee, O God. 2 My soul thirsteth for God, for the living God: when shall I come and appear before God? 3 My tears have been my meat day and night, while they continually say unto me, Where is thy God? 4 When I remember these things, I pour out my soul in me: for I had gone with the multitude, I went with them to the house of God, with the voice of joy and praise, with a multitude that kept holyday. 5 Why art thou cast down, O my soul? and why art thou disquieted in me? hope thou in God: for I shall yet praise him for the help of his countenance. 6 O my God, my soul is cast down within me: therefore will I remember thee from the land of Jordan, and of the Hermonites, from the hill Mizar. + +Tuesday 19-August, 2025 diff --git a/scripture/kjv/08/19/25/scripture.tg.id b/scripture/kjv/08/19/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/19/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/19/25/scripture.today b/scripture/kjv/08/19/25/scripture.today new file mode 100644 index 00000000..492c27fc --- /dev/null +++ b/scripture/kjv/08/19/25/scripture.today @@ -0,0 +1 @@ +19 42:1-6 diff --git a/scripture/kjv/08/20/23/scripture.html b/scripture/kjv/08/20/23/scripture.html new file mode 100644 index 00000000..5274095e --- /dev/null +++ b/scripture/kjv/08/20/23/scripture.html @@ -0,0 +1,3 @@ +Ephesians 1:3
+3 Blessed be the God and Father of our Lord Jesus Christ, who hath blessed us with all spiritual blessings in heavenly places in Christ:

+Sunday 20-August, 2023 diff --git a/scripture/kjv/08/20/23/scripture.json b/scripture/kjv/08/20/23/scripture.json new file mode 100644 index 00000000..14a241c0 --- /dev/null +++ b/scripture/kjv/08/20/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ephesians", + "chapter": "1", + "date": "Sunday 20-August, 2023", + "getbible": "https://getbible.life/kjv/Ephesians/1/3", + "name": "Ephesians 1:3", + "scripture": [ + { + "nr": "3", + "text": "Blessed be the God and Father of our Lord Jesus Christ, who hath blessed us with all spiritual blessings in heavenly places in Christ:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3", + "version": "kjv" +} diff --git a/scripture/kjv/08/20/23/scripture.md b/scripture/kjv/08/20/23/scripture.md new file mode 100644 index 00000000..90127386 --- /dev/null +++ b/scripture/kjv/08/20/23/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 1:3** + +3 Blessed be the God and Father of our Lord Jesus Christ, who hath blessed us with all spiritual blessings in heavenly places in Christ: + +[Sunday 20-August, 2023](https://getbible.life/kjv/Ephesians/1/3) diff --git a/scripture/kjv/08/20/23/scripture.tg b/scripture/kjv/08/20/23/scripture.tg new file mode 100644 index 00000000..26bf7d65 --- /dev/null +++ b/scripture/kjv/08/20/23/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 1:3 +3 Blessed be the God and Father of our Lord Jesus Christ, who hath blessed us with all spiritual blessings in heavenly places in Christ: + +Sunday 20-August, 2023 diff --git a/scripture/kjv/08/20/23/scripture.tg.id b/scripture/kjv/08/20/23/scripture.tg.id new file mode 100644 index 00000000..d0378c4c --- /dev/null +++ b/scripture/kjv/08/20/23/scripture.tg.id @@ -0,0 +1 @@ +1049 diff --git a/scripture/kjv/08/20/23/scripture.today b/scripture/kjv/08/20/23/scripture.today new file mode 100644 index 00000000..308b2857 --- /dev/null +++ b/scripture/kjv/08/20/23/scripture.today @@ -0,0 +1 @@ +49 1:3 diff --git a/scripture/kjv/08/20/24/scripture.html b/scripture/kjv/08/20/24/scripture.html new file mode 100644 index 00000000..31f750ee --- /dev/null +++ b/scripture/kjv/08/20/24/scripture.html @@ -0,0 +1,3 @@ +Matthew 13:45-46
+45 Again, the kingdom of heaven is like unto a merchant man, seeking goodly pearls: 46 Who, when he had found one pearl of great price, went and sold all that he had, and bought it.

+Tuesday 20-August, 2024 diff --git a/scripture/kjv/08/20/24/scripture.json b/scripture/kjv/08/20/24/scripture.json new file mode 100644 index 00000000..d1cc8b2d --- /dev/null +++ b/scripture/kjv/08/20/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Matthew", + "chapter": "13", + "date": "Tuesday 20-August, 2024", + "getbible": "https://getbible.life/kjv/Matthew/13/45-46", + "name": "Matthew 13:45-46", + "scripture": [ + { + "nr": "45", + "text": "Again, the kingdom of heaven is like unto a merchant man, seeking goodly pearls:" + }, + { + "nr": "46", + "text": "Who, when he had found one pearl of great price, went and sold all that he had, and bought it." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "45-46", + "version": "kjv" +} diff --git a/scripture/kjv/08/20/24/scripture.md b/scripture/kjv/08/20/24/scripture.md new file mode 100644 index 00000000..b828db34 --- /dev/null +++ b/scripture/kjv/08/20/24/scripture.md @@ -0,0 +1,5 @@ +**Matthew 13:45-46** + +45 Again, the kingdom of heaven is like unto a merchant man, seeking goodly pearls: 46 Who, when he had found one pearl of great price, went and sold all that he had, and bought it. + +[Tuesday 20-August, 2024](https://getbible.life/kjv/Matthew/13/45-46) diff --git a/scripture/kjv/08/20/24/scripture.tg b/scripture/kjv/08/20/24/scripture.tg new file mode 100644 index 00000000..5be81d8c --- /dev/null +++ b/scripture/kjv/08/20/24/scripture.tg @@ -0,0 +1,4 @@ +Matthew 13:45-46 +45 Again, the kingdom of heaven is like unto a merchant man, seeking goodly pearls: 46 Who, when he had found one pearl of great price, went and sold all that he had, and bought it. + +Tuesday 20-August, 2024 diff --git a/scripture/kjv/08/20/24/scripture.tg.id b/scripture/kjv/08/20/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/20/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/20/24/scripture.today b/scripture/kjv/08/20/24/scripture.today new file mode 100644 index 00000000..4132fab9 --- /dev/null +++ b/scripture/kjv/08/20/24/scripture.today @@ -0,0 +1 @@ +40 13:45-46 diff --git a/scripture/kjv/08/20/25/scripture.html b/scripture/kjv/08/20/25/scripture.html new file mode 100644 index 00000000..0ede0a31 --- /dev/null +++ b/scripture/kjv/08/20/25/scripture.html @@ -0,0 +1,3 @@ +Luke 20:21
+21 And they asked him, saying, Master, we know that thou sayest and teachest rightly, neither acceptest thou the person of any, but teachest the way of God truly:

+Wednesday 20-August, 2025 diff --git a/scripture/kjv/08/20/25/scripture.json b/scripture/kjv/08/20/25/scripture.json new file mode 100644 index 00000000..c01566ef --- /dev/null +++ b/scripture/kjv/08/20/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "20", + "date": "Wednesday 20-August, 2025", + "getbible": "https://getbible.life/kjv/Luke/20/21", + "name": "Luke 20:21", + "scripture": [ + { + "nr": "21", + "text": "And they asked him, saying, Master, we know that thou sayest and teachest rightly, neither acceptest thou the person of any, but teachest the way of God truly:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "21", + "version": "kjv" +} diff --git a/scripture/kjv/08/20/25/scripture.md b/scripture/kjv/08/20/25/scripture.md new file mode 100644 index 00000000..e2e22370 --- /dev/null +++ b/scripture/kjv/08/20/25/scripture.md @@ -0,0 +1,5 @@ +**Luke 20:21** + +21 And they asked him, saying, Master, we know that thou sayest and teachest rightly, neither acceptest thou the person of any, but teachest the way of God truly: + +[Wednesday 20-August, 2025](https://getbible.life/kjv/Luke/20/21) diff --git a/scripture/kjv/08/20/25/scripture.tg b/scripture/kjv/08/20/25/scripture.tg new file mode 100644 index 00000000..fcdef159 --- /dev/null +++ b/scripture/kjv/08/20/25/scripture.tg @@ -0,0 +1,4 @@ +Luke 20:21 +21 And they asked him, saying, Master, we know that thou sayest and teachest rightly, neither acceptest thou the person of any, but teachest the way of God truly: + +Wednesday 20-August, 2025 diff --git a/scripture/kjv/08/20/25/scripture.tg.id b/scripture/kjv/08/20/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/20/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/20/25/scripture.today b/scripture/kjv/08/20/25/scripture.today new file mode 100644 index 00000000..4437556e --- /dev/null +++ b/scripture/kjv/08/20/25/scripture.today @@ -0,0 +1 @@ +42 20:21 diff --git a/scripture/kjv/08/21/23/scripture.html b/scripture/kjv/08/21/23/scripture.html new file mode 100644 index 00000000..4ff08690 --- /dev/null +++ b/scripture/kjv/08/21/23/scripture.html @@ -0,0 +1,3 @@ +Luke 14:25-27
+25 And there went great multitudes with him: and he turned, and said unto them, 26 If any man come to me, and hate not his father, and mother, and wife, and children, and brethren, and sisters, yea, and his own life also, he cannot be my disciple. 27 And whosoever doth not bear his cross, and come after me, cannot be my disciple.

+Monday 21-August, 2023 diff --git a/scripture/kjv/08/21/23/scripture.json b/scripture/kjv/08/21/23/scripture.json new file mode 100644 index 00000000..54e61be9 --- /dev/null +++ b/scripture/kjv/08/21/23/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Luke", + "chapter": "14", + "date": "Monday 21-August, 2023", + "getbible": "https://getbible.life/kjv/Luke/14/25-27", + "name": "Luke 14:25-27", + "scripture": [ + { + "nr": "25", + "text": "And there went great multitudes with him: and he turned, and said unto them," + }, + { + "nr": "26", + "text": "If any man come to me, and hate not his father, and mother, and wife, and children, and brethren, and sisters, yea, and his own life also, he cannot be my disciple." + }, + { + "nr": "27", + "text": "And whosoever doth not bear his cross, and come after me, cannot be my disciple." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "25-27", + "version": "kjv" +} diff --git a/scripture/kjv/08/21/23/scripture.md b/scripture/kjv/08/21/23/scripture.md new file mode 100644 index 00000000..5e080b17 --- /dev/null +++ b/scripture/kjv/08/21/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 14:25-27** + +25 And there went great multitudes with him: and he turned, and said unto them, 26 If any man come to me, and hate not his father, and mother, and wife, and children, and brethren, and sisters, yea, and his own life also, he cannot be my disciple. 27 And whosoever doth not bear his cross, and come after me, cannot be my disciple. + +[Monday 21-August, 2023](https://getbible.life/kjv/Luke/14/25-27) diff --git a/scripture/kjv/08/21/23/scripture.tg b/scripture/kjv/08/21/23/scripture.tg new file mode 100644 index 00000000..20793266 --- /dev/null +++ b/scripture/kjv/08/21/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 14:25-27 +25 And there went great multitudes with him: and he turned, and said unto them, 26 If any man come to me, and hate not his father, and mother, and wife, and children, and brethren, and sisters, yea, and his own life also, he cannot be my disciple. 27 And whosoever doth not bear his cross, and come after me, cannot be my disciple. + +Monday 21-August, 2023 diff --git a/scripture/kjv/08/21/23/scripture.tg.id b/scripture/kjv/08/21/23/scripture.tg.id new file mode 100644 index 00000000..bc51cd77 --- /dev/null +++ b/scripture/kjv/08/21/23/scripture.tg.id @@ -0,0 +1 @@ +1050 diff --git a/scripture/kjv/08/21/23/scripture.today b/scripture/kjv/08/21/23/scripture.today new file mode 100644 index 00000000..9bd523e5 --- /dev/null +++ b/scripture/kjv/08/21/23/scripture.today @@ -0,0 +1 @@ +42 14:25-27 diff --git a/scripture/kjv/08/21/24/scripture.html b/scripture/kjv/08/21/24/scripture.html new file mode 100644 index 00000000..6690ce73 --- /dev/null +++ b/scripture/kjv/08/21/24/scripture.html @@ -0,0 +1,3 @@ +Jonah 2:10
+10 And the Lord spake unto the fish, and it vomited out Jonah upon the dry land.

+Wednesday 21-August, 2024 diff --git a/scripture/kjv/08/21/24/scripture.json b/scripture/kjv/08/21/24/scripture.json new file mode 100644 index 00000000..28e49204 --- /dev/null +++ b/scripture/kjv/08/21/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Jonah", + "chapter": "2", + "date": "Wednesday 21-August, 2024", + "getbible": "https://getbible.life/kjv/Jonah/2/10", + "name": "Jonah 2:10", + "scripture": [ + { + "nr": "10", + "text": "And the Lord spake unto the fish, and it vomited out Jonah upon the dry land. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/08/21/24/scripture.md b/scripture/kjv/08/21/24/scripture.md new file mode 100644 index 00000000..c64ba8db --- /dev/null +++ b/scripture/kjv/08/21/24/scripture.md @@ -0,0 +1,5 @@ +**Jonah 2:10** + +10 And the Lord spake unto the fish, and it vomited out Jonah upon the dry land. + +[Wednesday 21-August, 2024](https://getbible.life/kjv/Jonah/2/10) diff --git a/scripture/kjv/08/21/24/scripture.tg b/scripture/kjv/08/21/24/scripture.tg new file mode 100644 index 00000000..2bb2a1af --- /dev/null +++ b/scripture/kjv/08/21/24/scripture.tg @@ -0,0 +1,4 @@ +Jonah 2:10 +10 And the Lord spake unto the fish, and it vomited out Jonah upon the dry land. + +Wednesday 21-August, 2024 diff --git a/scripture/kjv/08/21/24/scripture.tg.id b/scripture/kjv/08/21/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/21/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/21/24/scripture.today b/scripture/kjv/08/21/24/scripture.today new file mode 100644 index 00000000..5241942c --- /dev/null +++ b/scripture/kjv/08/21/24/scripture.today @@ -0,0 +1 @@ +32 2:10 diff --git a/scripture/kjv/08/21/25/scripture.html b/scripture/kjv/08/21/25/scripture.html new file mode 100644 index 00000000..8668f094 --- /dev/null +++ b/scripture/kjv/08/21/25/scripture.html @@ -0,0 +1,3 @@ +1 John 4:12
+12 No man hath seen God at any time. If we love one another, God dwelleth in us, and his love is perfected in us.

+Thursday 21-August, 2025 diff --git a/scripture/kjv/08/21/25/scripture.json b/scripture/kjv/08/21/25/scripture.json new file mode 100644 index 00000000..d7d4cd9c --- /dev/null +++ b/scripture/kjv/08/21/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 John", + "chapter": "4", + "date": "Thursday 21-August, 2025", + "getbible": "https://getbible.life/kjv/1 John/4/12", + "name": "1 John 4:12", + "scripture": [ + { + "nr": "12", + "text": "No man hath seen God at any time. If we love one another, God dwelleth in us, and his love is perfected in us." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/08/21/25/scripture.md b/scripture/kjv/08/21/25/scripture.md new file mode 100644 index 00000000..53bec31d --- /dev/null +++ b/scripture/kjv/08/21/25/scripture.md @@ -0,0 +1,5 @@ +**1 John 4:12** + +12 No man hath seen God at any time. If we love one another, God dwelleth in us, and his love is perfected in us. + +[Thursday 21-August, 2025](https://getbible.life/kjv/1 John/4/12) diff --git a/scripture/kjv/08/21/25/scripture.tg b/scripture/kjv/08/21/25/scripture.tg new file mode 100644 index 00000000..58aedb52 --- /dev/null +++ b/scripture/kjv/08/21/25/scripture.tg @@ -0,0 +1,4 @@ +1 John 4:12 +12 No man hath seen God at any time. If we love one another, God dwelleth in us, and his love is perfected in us. + +Thursday 21-August, 2025 diff --git a/scripture/kjv/08/21/25/scripture.tg.id b/scripture/kjv/08/21/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/21/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/21/25/scripture.today b/scripture/kjv/08/21/25/scripture.today new file mode 100644 index 00000000..e4f0e3b9 --- /dev/null +++ b/scripture/kjv/08/21/25/scripture.today @@ -0,0 +1 @@ +62 4:12 diff --git a/scripture/kjv/08/22/23/scripture.html b/scripture/kjv/08/22/23/scripture.html new file mode 100644 index 00000000..edcc3c22 --- /dev/null +++ b/scripture/kjv/08/22/23/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 9:8
+8 And God is able to make all grace abound toward you; that ye, always having all sufficiency in all things, may abound to every good work:

+Tuesday 22-August, 2023 diff --git a/scripture/kjv/08/22/23/scripture.json b/scripture/kjv/08/22/23/scripture.json new file mode 100644 index 00000000..d1796442 --- /dev/null +++ b/scripture/kjv/08/22/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "9", + "date": "Tuesday 22-August, 2023", + "getbible": "https://getbible.life/kjv/2 Corinthians/9/8", + "name": "2 Corinthians 9:8", + "scripture": [ + { + "nr": "8", + "text": "And God is able to make all grace abound toward you; that ye, always having all sufficiency in all things, may abound to every good work:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8", + "version": "kjv" +} diff --git a/scripture/kjv/08/22/23/scripture.md b/scripture/kjv/08/22/23/scripture.md new file mode 100644 index 00000000..8fc4fcbf --- /dev/null +++ b/scripture/kjv/08/22/23/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 9:8** + +8 And God is able to make all grace abound toward you; that ye, always having all sufficiency in all things, may abound to every good work: + +[Tuesday 22-August, 2023](https://getbible.life/kjv/2 Corinthians/9/8) diff --git a/scripture/kjv/08/22/23/scripture.tg b/scripture/kjv/08/22/23/scripture.tg new file mode 100644 index 00000000..e69c4e57 --- /dev/null +++ b/scripture/kjv/08/22/23/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 9:8 +8 And God is able to make all grace abound toward you; that ye, always having all sufficiency in all things, may abound to every good work: + +Tuesday 22-August, 2023 diff --git a/scripture/kjv/08/22/23/scripture.tg.id b/scripture/kjv/08/22/23/scripture.tg.id new file mode 100644 index 00000000..f1f0ca51 --- /dev/null +++ b/scripture/kjv/08/22/23/scripture.tg.id @@ -0,0 +1 @@ +1051 diff --git a/scripture/kjv/08/22/23/scripture.today b/scripture/kjv/08/22/23/scripture.today new file mode 100644 index 00000000..9f4863a9 --- /dev/null +++ b/scripture/kjv/08/22/23/scripture.today @@ -0,0 +1 @@ +47 9:8 diff --git a/scripture/kjv/08/22/24/scripture.html b/scripture/kjv/08/22/24/scripture.html new file mode 100644 index 00000000..b21fe19d --- /dev/null +++ b/scripture/kjv/08/22/24/scripture.html @@ -0,0 +1,3 @@ +Revelation 3:12
+12 Him that overcometh will I make a pillar in the temple of my God, and he shall go no more out: and I will write upon him the name of my God, and the name of the city of my God, which is new Jerusalem, which cometh down out of heaven from my God: and I will write upon him my new name.

+Thursday 22-August, 2024 diff --git a/scripture/kjv/08/22/24/scripture.json b/scripture/kjv/08/22/24/scripture.json new file mode 100644 index 00000000..fdf38f8e --- /dev/null +++ b/scripture/kjv/08/22/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Revelation", + "chapter": "3", + "date": "Thursday 22-August, 2024", + "getbible": "https://getbible.life/kjv/Revelation/3/12", + "name": "Revelation 3:12", + "scripture": [ + { + "nr": "12", + "text": "Him that overcometh will I make a pillar in the temple of my God, and he shall go no more out: and I will write upon him the name of my God, and the name of the city of my God, which is new Jerusalem, which cometh down out of heaven from my God: and I will write upon him my new name." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/08/22/24/scripture.md b/scripture/kjv/08/22/24/scripture.md new file mode 100644 index 00000000..4880e183 --- /dev/null +++ b/scripture/kjv/08/22/24/scripture.md @@ -0,0 +1,5 @@ +**Revelation 3:12** + +12 Him that overcometh will I make a pillar in the temple of my God, and he shall go no more out: and I will write upon him the name of my God, and the name of the city of my God, which is new Jerusalem, which cometh down out of heaven from my God: and I will write upon him my new name. + +[Thursday 22-August, 2024](https://getbible.life/kjv/Revelation/3/12) diff --git a/scripture/kjv/08/22/24/scripture.tg b/scripture/kjv/08/22/24/scripture.tg new file mode 100644 index 00000000..37202c47 --- /dev/null +++ b/scripture/kjv/08/22/24/scripture.tg @@ -0,0 +1,4 @@ +Revelation 3:12 +12 Him that overcometh will I make a pillar in the temple of my God, and he shall go no more out: and I will write upon him the name of my God, and the name of the city of my God, which is new Jerusalem, which cometh down out of heaven from my God: and I will write upon him my new name. + +Thursday 22-August, 2024 diff --git a/scripture/kjv/08/22/24/scripture.tg.id b/scripture/kjv/08/22/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/22/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/22/24/scripture.today b/scripture/kjv/08/22/24/scripture.today new file mode 100644 index 00000000..426edde5 --- /dev/null +++ b/scripture/kjv/08/22/24/scripture.today @@ -0,0 +1 @@ +66 3:12 diff --git a/scripture/kjv/08/22/25/scripture.html b/scripture/kjv/08/22/25/scripture.html new file mode 100644 index 00000000..94cf0b47 --- /dev/null +++ b/scripture/kjv/08/22/25/scripture.html @@ -0,0 +1,3 @@ +Jeremiah 13:15
+15 Hear ye, and give ear; be not proud: for the Lord hath spoken.

+Friday 22-August, 2025 diff --git a/scripture/kjv/08/22/25/scripture.json b/scripture/kjv/08/22/25/scripture.json new file mode 100644 index 00000000..2554c6c5 --- /dev/null +++ b/scripture/kjv/08/22/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Jeremiah", + "chapter": "13", + "date": "Friday 22-August, 2025", + "getbible": "https://getbible.life/kjv/Jeremiah/13/15", + "name": "Jeremiah 13:15", + "scripture": [ + { + "nr": "15", + "text": "Hear ye, and give ear; be not proud: for the Lord hath spoken." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15", + "version": "kjv" +} diff --git a/scripture/kjv/08/22/25/scripture.md b/scripture/kjv/08/22/25/scripture.md new file mode 100644 index 00000000..5fda30c6 --- /dev/null +++ b/scripture/kjv/08/22/25/scripture.md @@ -0,0 +1,5 @@ +**Jeremiah 13:15** + +15 Hear ye, and give ear; be not proud: for the Lord hath spoken. + +[Friday 22-August, 2025](https://getbible.life/kjv/Jeremiah/13/15) diff --git a/scripture/kjv/08/22/25/scripture.tg b/scripture/kjv/08/22/25/scripture.tg new file mode 100644 index 00000000..5e6e7e82 --- /dev/null +++ b/scripture/kjv/08/22/25/scripture.tg @@ -0,0 +1,4 @@ +Jeremiah 13:15 +15 Hear ye, and give ear; be not proud: for the Lord hath spoken. + +Friday 22-August, 2025 diff --git a/scripture/kjv/08/22/25/scripture.tg.id b/scripture/kjv/08/22/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/22/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/22/25/scripture.today b/scripture/kjv/08/22/25/scripture.today new file mode 100644 index 00000000..f217bb2c --- /dev/null +++ b/scripture/kjv/08/22/25/scripture.today @@ -0,0 +1 @@ +24 13:15 diff --git a/scripture/kjv/08/23/23/scripture.html b/scripture/kjv/08/23/23/scripture.html new file mode 100644 index 00000000..9fae96d9 --- /dev/null +++ b/scripture/kjv/08/23/23/scripture.html @@ -0,0 +1,3 @@ +Luke 23:9
+9 Then he questioned with him in many words; but he answered him nothing.

+Wednesday 23-August, 2023 diff --git a/scripture/kjv/08/23/23/scripture.json b/scripture/kjv/08/23/23/scripture.json new file mode 100644 index 00000000..62f827e5 --- /dev/null +++ b/scripture/kjv/08/23/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "23", + "date": "Wednesday 23-August, 2023", + "getbible": "https://getbible.life/kjv/Luke/23/9", + "name": "Luke 23:9", + "scripture": [ + { + "nr": "9", + "text": "Then he questioned with him in many words; but he answered him nothing." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9", + "version": "kjv" +} diff --git a/scripture/kjv/08/23/23/scripture.md b/scripture/kjv/08/23/23/scripture.md new file mode 100644 index 00000000..704dd6e4 --- /dev/null +++ b/scripture/kjv/08/23/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 23:9** + +9 Then he questioned with him in many words; but he answered him nothing. + +[Wednesday 23-August, 2023](https://getbible.life/kjv/Luke/23/9) diff --git a/scripture/kjv/08/23/23/scripture.tg b/scripture/kjv/08/23/23/scripture.tg new file mode 100644 index 00000000..0e22f728 --- /dev/null +++ b/scripture/kjv/08/23/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 23:9 +9 Then he questioned with him in many words; but he answered him nothing. + +Wednesday 23-August, 2023 diff --git a/scripture/kjv/08/23/23/scripture.tg.id b/scripture/kjv/08/23/23/scripture.tg.id new file mode 100644 index 00000000..bcbb007a --- /dev/null +++ b/scripture/kjv/08/23/23/scripture.tg.id @@ -0,0 +1 @@ +1052 diff --git a/scripture/kjv/08/23/23/scripture.today b/scripture/kjv/08/23/23/scripture.today new file mode 100644 index 00000000..c03b8d09 --- /dev/null +++ b/scripture/kjv/08/23/23/scripture.today @@ -0,0 +1 @@ +42 23:9 diff --git a/scripture/kjv/08/23/24/scripture.html b/scripture/kjv/08/23/24/scripture.html new file mode 100644 index 00000000..241024e6 --- /dev/null +++ b/scripture/kjv/08/23/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 22:24
+24 For he hath not despised nor abhorred the affliction of the afflicted; neither hath he hid his face from him; but when he cried unto him, he heard.

+Friday 23-August, 2024 diff --git a/scripture/kjv/08/23/24/scripture.json b/scripture/kjv/08/23/24/scripture.json new file mode 100644 index 00000000..4735a058 --- /dev/null +++ b/scripture/kjv/08/23/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "22", + "date": "Friday 23-August, 2024", + "getbible": "https://getbible.life/kjv/Psalms/22/24", + "name": "Psalms 22:24", + "scripture": [ + { + "nr": "24", + "text": "For he hath not despised nor abhorred the affliction of the afflicted; neither hath he hid his face from him; but when he cried unto him, he heard." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "24", + "version": "kjv" +} diff --git a/scripture/kjv/08/23/24/scripture.md b/scripture/kjv/08/23/24/scripture.md new file mode 100644 index 00000000..a943da90 --- /dev/null +++ b/scripture/kjv/08/23/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 22:24** + +24 For he hath not despised nor abhorred the affliction of the afflicted; neither hath he hid his face from him; but when he cried unto him, he heard. + +[Friday 23-August, 2024](https://getbible.life/kjv/Psalms/22/24) diff --git a/scripture/kjv/08/23/24/scripture.tg b/scripture/kjv/08/23/24/scripture.tg new file mode 100644 index 00000000..6d151333 --- /dev/null +++ b/scripture/kjv/08/23/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 22:24 +24 For he hath not despised nor abhorred the affliction of the afflicted; neither hath he hid his face from him; but when he cried unto him, he heard. + +Friday 23-August, 2024 diff --git a/scripture/kjv/08/23/24/scripture.tg.id b/scripture/kjv/08/23/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/23/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/23/24/scripture.today b/scripture/kjv/08/23/24/scripture.today new file mode 100644 index 00000000..02126e0d --- /dev/null +++ b/scripture/kjv/08/23/24/scripture.today @@ -0,0 +1 @@ +19 22:24 diff --git a/scripture/kjv/08/23/25/scripture.html b/scripture/kjv/08/23/25/scripture.html new file mode 100644 index 00000000..1f66739a --- /dev/null +++ b/scripture/kjv/08/23/25/scripture.html @@ -0,0 +1,3 @@ +Revelation 17:13-14
+13 These have one mind, and shall give their power and strength unto the beast. 14 These shall make war with the Lamb, and the Lamb shall overcome them: for he is Lord of lords, and King of kings: and they that are with him are called, and chosen, and faithful.

+Saturday 23-August, 2025 diff --git a/scripture/kjv/08/23/25/scripture.json b/scripture/kjv/08/23/25/scripture.json new file mode 100644 index 00000000..8b7e1712 --- /dev/null +++ b/scripture/kjv/08/23/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Revelation", + "chapter": "17", + "date": "Saturday 23-August, 2025", + "getbible": "https://getbible.life/kjv/Revelation/17/13-14", + "name": "Revelation 17:13-14", + "scripture": [ + { + "nr": "13", + "text": "These have one mind, and shall give their power and strength unto the beast." + }, + { + "nr": "14", + "text": "These shall make war with the Lamb, and the Lamb shall overcome them: for he is Lord of lords, and King of kings: and they that are with him are called, and chosen, and faithful." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13-14", + "version": "kjv" +} diff --git a/scripture/kjv/08/23/25/scripture.md b/scripture/kjv/08/23/25/scripture.md new file mode 100644 index 00000000..8f8b346e --- /dev/null +++ b/scripture/kjv/08/23/25/scripture.md @@ -0,0 +1,5 @@ +**Revelation 17:13-14** + +13 These have one mind, and shall give their power and strength unto the beast. 14 These shall make war with the Lamb, and the Lamb shall overcome them: for he is Lord of lords, and King of kings: and they that are with him are called, and chosen, and faithful. + +[Saturday 23-August, 2025](https://getbible.life/kjv/Revelation/17/13-14) diff --git a/scripture/kjv/08/23/25/scripture.tg b/scripture/kjv/08/23/25/scripture.tg new file mode 100644 index 00000000..3577aa00 --- /dev/null +++ b/scripture/kjv/08/23/25/scripture.tg @@ -0,0 +1,4 @@ +Revelation 17:13-14 +13 These have one mind, and shall give their power and strength unto the beast. 14 These shall make war with the Lamb, and the Lamb shall overcome them: for he is Lord of lords, and King of kings: and they that are with him are called, and chosen, and faithful. + +Saturday 23-August, 2025 diff --git a/scripture/kjv/08/23/25/scripture.tg.id b/scripture/kjv/08/23/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/23/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/23/25/scripture.today b/scripture/kjv/08/23/25/scripture.today new file mode 100644 index 00000000..721056eb --- /dev/null +++ b/scripture/kjv/08/23/25/scripture.today @@ -0,0 +1 @@ +66 17:13-14 diff --git a/scripture/kjv/08/24/23/scripture.html b/scripture/kjv/08/24/23/scripture.html new file mode 100644 index 00000000..c79efed8 --- /dev/null +++ b/scripture/kjv/08/24/23/scripture.html @@ -0,0 +1,3 @@ +Zechariah 9:9
+9 Rejoice greatly, O daughter of Zion; shout, O daughter of Jerusalem: behold, thy King cometh unto thee: he is just, and having salvation; lowly, and riding upon an ass, and upon a colt the foal of an ass.

+Thursday 24-August, 2023 diff --git a/scripture/kjv/08/24/23/scripture.json b/scripture/kjv/08/24/23/scripture.json new file mode 100644 index 00000000..29f41878 --- /dev/null +++ b/scripture/kjv/08/24/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Zechariah", + "chapter": "9", + "date": "Thursday 24-August, 2023", + "getbible": "https://getbible.life/kjv/Zechariah/9/9", + "name": "Zechariah 9:9", + "scripture": [ + { + "nr": "9", + "text": "Rejoice greatly, O daughter of Zion; shout, O daughter of Jerusalem: behold, thy King cometh unto thee: he is just, and having salvation; lowly, and riding upon an ass, and upon a colt the foal of an ass." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9", + "version": "kjv" +} diff --git a/scripture/kjv/08/24/23/scripture.md b/scripture/kjv/08/24/23/scripture.md new file mode 100644 index 00000000..4fe183b5 --- /dev/null +++ b/scripture/kjv/08/24/23/scripture.md @@ -0,0 +1,5 @@ +**Zechariah 9:9** + +9 Rejoice greatly, O daughter of Zion; shout, O daughter of Jerusalem: behold, thy King cometh unto thee: he is just, and having salvation; lowly, and riding upon an ass, and upon a colt the foal of an ass. + +[Thursday 24-August, 2023](https://getbible.life/kjv/Zechariah/9/9) diff --git a/scripture/kjv/08/24/23/scripture.tg b/scripture/kjv/08/24/23/scripture.tg new file mode 100644 index 00000000..50dfecf7 --- /dev/null +++ b/scripture/kjv/08/24/23/scripture.tg @@ -0,0 +1,4 @@ +Zechariah 9:9 +9 Rejoice greatly, O daughter of Zion; shout, O daughter of Jerusalem: behold, thy King cometh unto thee: he is just, and having salvation; lowly, and riding upon an ass, and upon a colt the foal of an ass. + +Thursday 24-August, 2023 diff --git a/scripture/kjv/08/24/23/scripture.tg.id b/scripture/kjv/08/24/23/scripture.tg.id new file mode 100644 index 00000000..b96bfec6 --- /dev/null +++ b/scripture/kjv/08/24/23/scripture.tg.id @@ -0,0 +1 @@ +1053 diff --git a/scripture/kjv/08/24/23/scripture.today b/scripture/kjv/08/24/23/scripture.today new file mode 100644 index 00000000..f2e6c3a2 --- /dev/null +++ b/scripture/kjv/08/24/23/scripture.today @@ -0,0 +1 @@ +38 9:9 diff --git a/scripture/kjv/08/24/24/scripture.html b/scripture/kjv/08/24/24/scripture.html new file mode 100644 index 00000000..3daf8586 --- /dev/null +++ b/scripture/kjv/08/24/24/scripture.html @@ -0,0 +1,3 @@ +John 10:29
+29 My Father, which gave them me, is greater than all; and no man is able to pluck them out of my Father’s hand.

+Saturday 24-August, 2024 diff --git a/scripture/kjv/08/24/24/scripture.json b/scripture/kjv/08/24/24/scripture.json new file mode 100644 index 00000000..f052c715 --- /dev/null +++ b/scripture/kjv/08/24/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "10", + "date": "Saturday 24-August, 2024", + "getbible": "https://getbible.life/kjv/John/10/29", + "name": "John 10:29", + "scripture": [ + { + "nr": "29", + "text": "My Father, which gave them me, is greater than all; and no man is able to pluck them out of my Father’s hand." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "29", + "version": "kjv" +} diff --git a/scripture/kjv/08/24/24/scripture.md b/scripture/kjv/08/24/24/scripture.md new file mode 100644 index 00000000..1ca5da9c --- /dev/null +++ b/scripture/kjv/08/24/24/scripture.md @@ -0,0 +1,5 @@ +**John 10:29** + +29 My Father, which gave them me, is greater than all; and no man is able to pluck them out of my Father’s hand. + +[Saturday 24-August, 2024](https://getbible.life/kjv/John/10/29) diff --git a/scripture/kjv/08/24/24/scripture.tg b/scripture/kjv/08/24/24/scripture.tg new file mode 100644 index 00000000..8603f01e --- /dev/null +++ b/scripture/kjv/08/24/24/scripture.tg @@ -0,0 +1,4 @@ +John 10:29 +29 My Father, which gave them me, is greater than all; and no man is able to pluck them out of my Father’s hand. + +Saturday 24-August, 2024 diff --git a/scripture/kjv/08/24/24/scripture.tg.id b/scripture/kjv/08/24/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/24/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/24/24/scripture.today b/scripture/kjv/08/24/24/scripture.today new file mode 100644 index 00000000..d5466d5a --- /dev/null +++ b/scripture/kjv/08/24/24/scripture.today @@ -0,0 +1 @@ +43 10:29 diff --git a/scripture/kjv/08/24/25/scripture.html b/scripture/kjv/08/24/25/scripture.html new file mode 100644 index 00000000..16cc0b37 --- /dev/null +++ b/scripture/kjv/08/24/25/scripture.html @@ -0,0 +1,3 @@ +Proverbs 19:11
+11 The discretion of a man deferreth his anger; and it is his glory to pass over a transgression.

+Sunday 24-August, 2025 diff --git a/scripture/kjv/08/24/25/scripture.json b/scripture/kjv/08/24/25/scripture.json new file mode 100644 index 00000000..4936a1be --- /dev/null +++ b/scripture/kjv/08/24/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "19", + "date": "Sunday 24-August, 2025", + "getbible": "https://getbible.life/kjv/Proverbs/19/11", + "name": "Proverbs 19:11", + "scripture": [ + { + "nr": "11", + "text": "The discretion of a man deferreth his anger; and it is his glory to pass over a transgression." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/08/24/25/scripture.md b/scripture/kjv/08/24/25/scripture.md new file mode 100644 index 00000000..54eaf3ae --- /dev/null +++ b/scripture/kjv/08/24/25/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 19:11** + +11 The discretion of a man deferreth his anger; and it is his glory to pass over a transgression. + +[Sunday 24-August, 2025](https://getbible.life/kjv/Proverbs/19/11) diff --git a/scripture/kjv/08/24/25/scripture.tg b/scripture/kjv/08/24/25/scripture.tg new file mode 100644 index 00000000..5275239e --- /dev/null +++ b/scripture/kjv/08/24/25/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 19:11 +11 The discretion of a man deferreth his anger; and it is his glory to pass over a transgression. + +Sunday 24-August, 2025 diff --git a/scripture/kjv/08/24/25/scripture.tg.id b/scripture/kjv/08/24/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/24/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/24/25/scripture.today b/scripture/kjv/08/24/25/scripture.today new file mode 100644 index 00000000..3f593f5b --- /dev/null +++ b/scripture/kjv/08/24/25/scripture.today @@ -0,0 +1 @@ +20 19:11 diff --git a/scripture/kjv/08/25/23/scripture.html b/scripture/kjv/08/25/23/scripture.html new file mode 100644 index 00000000..a3d9c784 --- /dev/null +++ b/scripture/kjv/08/25/23/scripture.html @@ -0,0 +1,3 @@ +Luke 16:13
+13 No servant can serve two masters: for either he will hate the one, and love the other; or else he will hold to the one, and despise the other. Ye cannot serve God and mammon.

+Friday 25-August, 2023 diff --git a/scripture/kjv/08/25/23/scripture.json b/scripture/kjv/08/25/23/scripture.json new file mode 100644 index 00000000..4a09c40e --- /dev/null +++ b/scripture/kjv/08/25/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "16", + "date": "Friday 25-August, 2023", + "getbible": "https://getbible.life/kjv/Luke/16/13", + "name": "Luke 16:13", + "scripture": [ + { + "nr": "13", + "text": "No servant can serve two masters: for either he will hate the one, and love the other; or else he will hold to the one, and despise the other. Ye cannot serve God and mammon." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13", + "version": "kjv" +} diff --git a/scripture/kjv/08/25/23/scripture.md b/scripture/kjv/08/25/23/scripture.md new file mode 100644 index 00000000..3df150bb --- /dev/null +++ b/scripture/kjv/08/25/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 16:13** + +13 No servant can serve two masters: for either he will hate the one, and love the other; or else he will hold to the one, and despise the other. Ye cannot serve God and mammon. + +[Friday 25-August, 2023](https://getbible.life/kjv/Luke/16/13) diff --git a/scripture/kjv/08/25/23/scripture.tg b/scripture/kjv/08/25/23/scripture.tg new file mode 100644 index 00000000..a2bf142f --- /dev/null +++ b/scripture/kjv/08/25/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 16:13 +13 No servant can serve two masters: for either he will hate the one, and love the other; or else he will hold to the one, and despise the other. Ye cannot serve God and mammon. + +Friday 25-August, 2023 diff --git a/scripture/kjv/08/25/23/scripture.tg.id b/scripture/kjv/08/25/23/scripture.tg.id new file mode 100644 index 00000000..628625b6 --- /dev/null +++ b/scripture/kjv/08/25/23/scripture.tg.id @@ -0,0 +1 @@ +1054 diff --git a/scripture/kjv/08/25/23/scripture.today b/scripture/kjv/08/25/23/scripture.today new file mode 100644 index 00000000..4d4f8070 --- /dev/null +++ b/scripture/kjv/08/25/23/scripture.today @@ -0,0 +1 @@ +42 16:13 diff --git a/scripture/kjv/08/25/24/scripture.html b/scripture/kjv/08/25/24/scripture.html new file mode 100644 index 00000000..a315ba61 --- /dev/null +++ b/scripture/kjv/08/25/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 19:6
+6 Many will intreat the favour of the prince: and every man is a friend to him that giveth gifts.

+Sunday 25-August, 2024 diff --git a/scripture/kjv/08/25/24/scripture.json b/scripture/kjv/08/25/24/scripture.json new file mode 100644 index 00000000..c6bafbdd --- /dev/null +++ b/scripture/kjv/08/25/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "19", + "date": "Sunday 25-August, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/19/6", + "name": "Proverbs 19:6", + "scripture": [ + { + "nr": "6", + "text": "Many will intreat the favour of the prince: and every man is a friend to him that giveth gifts." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6", + "version": "kjv" +} diff --git a/scripture/kjv/08/25/24/scripture.md b/scripture/kjv/08/25/24/scripture.md new file mode 100644 index 00000000..81ad2c1a --- /dev/null +++ b/scripture/kjv/08/25/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 19:6** + +6 Many will intreat the favour of the prince: and every man is a friend to him that giveth gifts. + +[Sunday 25-August, 2024](https://getbible.life/kjv/Proverbs/19/6) diff --git a/scripture/kjv/08/25/24/scripture.tg b/scripture/kjv/08/25/24/scripture.tg new file mode 100644 index 00000000..bd3754c1 --- /dev/null +++ b/scripture/kjv/08/25/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 19:6 +6 Many will intreat the favour of the prince: and every man is a friend to him that giveth gifts. + +Sunday 25-August, 2024 diff --git a/scripture/kjv/08/25/24/scripture.tg.id b/scripture/kjv/08/25/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/25/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/25/24/scripture.today b/scripture/kjv/08/25/24/scripture.today new file mode 100644 index 00000000..f0dceab2 --- /dev/null +++ b/scripture/kjv/08/25/24/scripture.today @@ -0,0 +1 @@ +20 19:6 diff --git a/scripture/kjv/08/25/25/scripture.html b/scripture/kjv/08/25/25/scripture.html new file mode 100644 index 00000000..897d8858 --- /dev/null +++ b/scripture/kjv/08/25/25/scripture.html @@ -0,0 +1,3 @@ +Matthew 5:38-41
+38 Ye have heard that it hath been said, An eye for an eye, and a tooth for a tooth: 39 But I say unto you, That ye resist not evil: but whosoever shall smite thee on thy right cheek, turn to him the other also. 40 And if any man will sue thee at the law, and take away thy coat, let him have thy cloke also. 41 And whosoever shall compel thee to go a mile, go with him twain.

+Monday 25-August, 2025 diff --git a/scripture/kjv/08/25/25/scripture.json b/scripture/kjv/08/25/25/scripture.json new file mode 100644 index 00000000..8cdbdeb5 --- /dev/null +++ b/scripture/kjv/08/25/25/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "Matthew", + "chapter": "5", + "date": "Monday 25-August, 2025", + "getbible": "https://getbible.life/kjv/Matthew/5/38-41", + "name": "Matthew 5:38-41", + "scripture": [ + { + "nr": "38", + "text": "Ye have heard that it hath been said, An eye for an eye, and a tooth for a tooth:" + }, + { + "nr": "39", + "text": "But I say unto you, That ye resist not evil: but whosoever shall smite thee on thy right cheek, turn to him the other also." + }, + { + "nr": "40", + "text": "And if any man will sue thee at the law, and take away thy coat, let him have thy cloke also." + }, + { + "nr": "41", + "text": "And whosoever shall compel thee to go a mile, go with him twain." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "38-41", + "version": "kjv" +} diff --git a/scripture/kjv/08/25/25/scripture.md b/scripture/kjv/08/25/25/scripture.md new file mode 100644 index 00000000..613dfbc3 --- /dev/null +++ b/scripture/kjv/08/25/25/scripture.md @@ -0,0 +1,5 @@ +**Matthew 5:38-41** + +38 Ye have heard that it hath been said, An eye for an eye, and a tooth for a tooth: 39 But I say unto you, That ye resist not evil: but whosoever shall smite thee on thy right cheek, turn to him the other also. 40 And if any man will sue thee at the law, and take away thy coat, let him have thy cloke also. 41 And whosoever shall compel thee to go a mile, go with him twain. + +[Monday 25-August, 2025](https://getbible.life/kjv/Matthew/5/38-41) diff --git a/scripture/kjv/08/25/25/scripture.tg b/scripture/kjv/08/25/25/scripture.tg new file mode 100644 index 00000000..c2424068 --- /dev/null +++ b/scripture/kjv/08/25/25/scripture.tg @@ -0,0 +1,4 @@ +Matthew 5:38-41 +38 Ye have heard that it hath been said, An eye for an eye, and a tooth for a tooth: 39 But I say unto you, That ye resist not evil: but whosoever shall smite thee on thy right cheek, turn to him the other also. 40 And if any man will sue thee at the law, and take away thy coat, let him have thy cloke also. 41 And whosoever shall compel thee to go a mile, go with him twain. + +Monday 25-August, 2025 diff --git a/scripture/kjv/08/25/25/scripture.tg.id b/scripture/kjv/08/25/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/25/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/25/25/scripture.today b/scripture/kjv/08/25/25/scripture.today new file mode 100644 index 00000000..04bd42f8 --- /dev/null +++ b/scripture/kjv/08/25/25/scripture.today @@ -0,0 +1 @@ +40 5:38-41 diff --git a/scripture/kjv/08/26/23/scripture.html b/scripture/kjv/08/26/23/scripture.html new file mode 100644 index 00000000..c51150a1 --- /dev/null +++ b/scripture/kjv/08/26/23/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 47:10-11
+10 And it shall come to pass, that the fishers shall stand upon it from En–gedi even unto En–eglaim; they shall be a place to spread forth nets; their fish shall be according to their kinds, as the fish of the great sea, exceeding many. 11 But the miry places thereof and the marishes thereof shall not be healed; they shall be given to salt.

+Saturday 26-August, 2023 diff --git a/scripture/kjv/08/26/23/scripture.json b/scripture/kjv/08/26/23/scripture.json new file mode 100644 index 00000000..fd92d2db --- /dev/null +++ b/scripture/kjv/08/26/23/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Ezekiel", + "chapter": "47", + "date": "Saturday 26-August, 2023", + "getbible": "https://getbible.life/kjv/Ezekiel/47/10-11", + "name": "Ezekiel 47:10-11", + "scripture": [ + { + "nr": "10", + "text": "And it shall come to pass, that the fishers shall stand upon it from En–gedi even unto En–eglaim; they shall be a place to spread forth nets; their fish shall be according to their kinds, as the fish of the great sea, exceeding many." + }, + { + "nr": "11", + "text": "But the miry places thereof and the marishes thereof shall not be healed; they shall be given to salt." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10-11", + "version": "kjv" +} diff --git a/scripture/kjv/08/26/23/scripture.md b/scripture/kjv/08/26/23/scripture.md new file mode 100644 index 00000000..3b6f28b3 --- /dev/null +++ b/scripture/kjv/08/26/23/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 47:10-11** + +10 And it shall come to pass, that the fishers shall stand upon it from En–gedi even unto En–eglaim; they shall be a place to spread forth nets; their fish shall be according to their kinds, as the fish of the great sea, exceeding many. 11 But the miry places thereof and the marishes thereof shall not be healed; they shall be given to salt. + +[Saturday 26-August, 2023](https://getbible.life/kjv/Ezekiel/47/10-11) diff --git a/scripture/kjv/08/26/23/scripture.tg b/scripture/kjv/08/26/23/scripture.tg new file mode 100644 index 00000000..6c5f2357 --- /dev/null +++ b/scripture/kjv/08/26/23/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 47:10-11 +10 And it shall come to pass, that the fishers shall stand upon it from En–gedi even unto En–eglaim; they shall be a place to spread forth nets; their fish shall be according to their kinds, as the fish of the great sea, exceeding many. 11 But the miry places thereof and the marishes thereof shall not be healed; they shall be given to salt. + +Saturday 26-August, 2023 diff --git a/scripture/kjv/08/26/23/scripture.tg.id b/scripture/kjv/08/26/23/scripture.tg.id new file mode 100644 index 00000000..ca883787 --- /dev/null +++ b/scripture/kjv/08/26/23/scripture.tg.id @@ -0,0 +1 @@ +1055 diff --git a/scripture/kjv/08/26/23/scripture.today b/scripture/kjv/08/26/23/scripture.today new file mode 100644 index 00000000..d7f2828f --- /dev/null +++ b/scripture/kjv/08/26/23/scripture.today @@ -0,0 +1 @@ +26 47:10-11 diff --git a/scripture/kjv/08/26/24/scripture.html b/scripture/kjv/08/26/24/scripture.html new file mode 100644 index 00000000..41a5d104 --- /dev/null +++ b/scripture/kjv/08/26/24/scripture.html @@ -0,0 +1,3 @@ +Colossians 3:18
+18 Wives, submit yourselves unto your own husbands, as it is fit in the Lord.

+Monday 26-August, 2024 diff --git a/scripture/kjv/08/26/24/scripture.json b/scripture/kjv/08/26/24/scripture.json new file mode 100644 index 00000000..0b7139ce --- /dev/null +++ b/scripture/kjv/08/26/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Colossians", + "chapter": "3", + "date": "Monday 26-August, 2024", + "getbible": "https://getbible.life/kjv/Colossians/3/18", + "name": "Colossians 3:18", + "scripture": [ + { + "nr": "18", + "text": "Wives, submit yourselves unto your own husbands, as it is fit in the Lord." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18", + "version": "kjv" +} diff --git a/scripture/kjv/08/26/24/scripture.md b/scripture/kjv/08/26/24/scripture.md new file mode 100644 index 00000000..ba7adc7e --- /dev/null +++ b/scripture/kjv/08/26/24/scripture.md @@ -0,0 +1,5 @@ +**Colossians 3:18** + +18 Wives, submit yourselves unto your own husbands, as it is fit in the Lord. + +[Monday 26-August, 2024](https://getbible.life/kjv/Colossians/3/18) diff --git a/scripture/kjv/08/26/24/scripture.tg b/scripture/kjv/08/26/24/scripture.tg new file mode 100644 index 00000000..1fd08cc6 --- /dev/null +++ b/scripture/kjv/08/26/24/scripture.tg @@ -0,0 +1,4 @@ +Colossians 3:18 +18 Wives, submit yourselves unto your own husbands, as it is fit in the Lord. + +Monday 26-August, 2024 diff --git a/scripture/kjv/08/26/24/scripture.tg.id b/scripture/kjv/08/26/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/26/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/26/24/scripture.today b/scripture/kjv/08/26/24/scripture.today new file mode 100644 index 00000000..701e67c8 --- /dev/null +++ b/scripture/kjv/08/26/24/scripture.today @@ -0,0 +1 @@ +51 3:18 diff --git a/scripture/kjv/08/26/25/scripture.html b/scripture/kjv/08/26/25/scripture.html new file mode 100644 index 00000000..dc75bd71 --- /dev/null +++ b/scripture/kjv/08/26/25/scripture.html @@ -0,0 +1,3 @@ +Hebrews 13:13
+13 Let us go forth therefore unto him without the camp, bearing his reproach.

+Tuesday 26-August, 2025 diff --git a/scripture/kjv/08/26/25/scripture.json b/scripture/kjv/08/26/25/scripture.json new file mode 100644 index 00000000..ad1ab2c1 --- /dev/null +++ b/scripture/kjv/08/26/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Hebrews", + "chapter": "13", + "date": "Tuesday 26-August, 2025", + "getbible": "https://getbible.life/kjv/Hebrews/13/13", + "name": "Hebrews 13:13", + "scripture": [ + { + "nr": "13", + "text": "Let us go forth therefore unto him without the camp, bearing his reproach." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13", + "version": "kjv" +} diff --git a/scripture/kjv/08/26/25/scripture.md b/scripture/kjv/08/26/25/scripture.md new file mode 100644 index 00000000..ec38a52f --- /dev/null +++ b/scripture/kjv/08/26/25/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 13:13** + +13 Let us go forth therefore unto him without the camp, bearing his reproach. + +[Tuesday 26-August, 2025](https://getbible.life/kjv/Hebrews/13/13) diff --git a/scripture/kjv/08/26/25/scripture.tg b/scripture/kjv/08/26/25/scripture.tg new file mode 100644 index 00000000..a1ba84b3 --- /dev/null +++ b/scripture/kjv/08/26/25/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 13:13 +13 Let us go forth therefore unto him without the camp, bearing his reproach. + +Tuesday 26-August, 2025 diff --git a/scripture/kjv/08/26/25/scripture.tg.id b/scripture/kjv/08/26/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/26/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/26/25/scripture.today b/scripture/kjv/08/26/25/scripture.today new file mode 100644 index 00000000..49a5e71a --- /dev/null +++ b/scripture/kjv/08/26/25/scripture.today @@ -0,0 +1 @@ +58 13:13 diff --git a/scripture/kjv/08/27/23/scripture.html b/scripture/kjv/08/27/23/scripture.html new file mode 100644 index 00000000..16a66e7a --- /dev/null +++ b/scripture/kjv/08/27/23/scripture.html @@ -0,0 +1,3 @@ +2 John 1:12
+12 Having many things to write unto you, I would not write with paper and ink: but I trust to come unto you, and speak face to face, that our joy may be full.

+Sunday 27-August, 2023 diff --git a/scripture/kjv/08/27/23/scripture.json b/scripture/kjv/08/27/23/scripture.json new file mode 100644 index 00000000..d097f494 --- /dev/null +++ b/scripture/kjv/08/27/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 John", + "chapter": "1", + "date": "Sunday 27-August, 2023", + "getbible": "https://getbible.life/kjv/2 John/1/12", + "name": "2 John 1:12", + "scripture": [ + { + "nr": "12", + "text": "Having many things to write unto you, I would not write with paper and ink: but I trust to come unto you, and speak face to face, that our joy may be full." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/08/27/23/scripture.md b/scripture/kjv/08/27/23/scripture.md new file mode 100644 index 00000000..a8c5970a --- /dev/null +++ b/scripture/kjv/08/27/23/scripture.md @@ -0,0 +1,5 @@ +**2 John 1:12** + +12 Having many things to write unto you, I would not write with paper and ink: but I trust to come unto you, and speak face to face, that our joy may be full. + +[Sunday 27-August, 2023](https://getbible.life/kjv/2 John/1/12) diff --git a/scripture/kjv/08/27/23/scripture.tg b/scripture/kjv/08/27/23/scripture.tg new file mode 100644 index 00000000..9e39b235 --- /dev/null +++ b/scripture/kjv/08/27/23/scripture.tg @@ -0,0 +1,4 @@ +2 John 1:12 +12 Having many things to write unto you, I would not write with paper and ink: but I trust to come unto you, and speak face to face, that our joy may be full. + +Sunday 27-August, 2023 diff --git a/scripture/kjv/08/27/23/scripture.tg.id b/scripture/kjv/08/27/23/scripture.tg.id new file mode 100644 index 00000000..d890176c --- /dev/null +++ b/scripture/kjv/08/27/23/scripture.tg.id @@ -0,0 +1 @@ +1056 diff --git a/scripture/kjv/08/27/23/scripture.today b/scripture/kjv/08/27/23/scripture.today new file mode 100644 index 00000000..dcdcbaba --- /dev/null +++ b/scripture/kjv/08/27/23/scripture.today @@ -0,0 +1 @@ +63 1:12 diff --git a/scripture/kjv/08/27/24/scripture.html b/scripture/kjv/08/27/24/scripture.html new file mode 100644 index 00000000..196f7ce8 --- /dev/null +++ b/scripture/kjv/08/27/24/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 1:8-10
+8 For we would not, brethren, have you ignorant of our trouble which came to us in Asia, that we were pressed out of measure, above strength, insomuch that we despaired even of life: 9 But we had the sentence of death in ourselves, that we should not trust in ourselves, but in God which raiseth the dead: 10 Who delivered us from so great a death, and doth deliver: in whom we trust that he will yet deliver us;

+Tuesday 27-August, 2024 diff --git a/scripture/kjv/08/27/24/scripture.json b/scripture/kjv/08/27/24/scripture.json new file mode 100644 index 00000000..07bcd581 --- /dev/null +++ b/scripture/kjv/08/27/24/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "2 Corinthians", + "chapter": "1", + "date": "Tuesday 27-August, 2024", + "getbible": "https://getbible.life/kjv/2 Corinthians/1/8-10", + "name": "2 Corinthians 1:8-10", + "scripture": [ + { + "nr": "8", + "text": "For we would not, brethren, have you ignorant of our trouble which came to us in Asia, that we were pressed out of measure, above strength, insomuch that we despaired even of life:" + }, + { + "nr": "9", + "text": "But we had the sentence of death in ourselves, that we should not trust in ourselves, but in God which raiseth the dead:" + }, + { + "nr": "10", + "text": "Who delivered us from so great a death, and doth deliver: in whom we trust that he will yet deliver us; " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8-10", + "version": "kjv" +} diff --git a/scripture/kjv/08/27/24/scripture.md b/scripture/kjv/08/27/24/scripture.md new file mode 100644 index 00000000..20c6eed6 --- /dev/null +++ b/scripture/kjv/08/27/24/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 1:8-10** + +8 For we would not, brethren, have you ignorant of our trouble which came to us in Asia, that we were pressed out of measure, above strength, insomuch that we despaired even of life: 9 But we had the sentence of death in ourselves, that we should not trust in ourselves, but in God which raiseth the dead: 10 Who delivered us from so great a death, and doth deliver: in whom we trust that he will yet deliver us; + +[Tuesday 27-August, 2024](https://getbible.life/kjv/2 Corinthians/1/8-10) diff --git a/scripture/kjv/08/27/24/scripture.tg b/scripture/kjv/08/27/24/scripture.tg new file mode 100644 index 00000000..9d7ee3b7 --- /dev/null +++ b/scripture/kjv/08/27/24/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 1:8-10 +8 For we would not, brethren, have you ignorant of our trouble which came to us in Asia, that we were pressed out of measure, above strength, insomuch that we despaired even of life: 9 But we had the sentence of death in ourselves, that we should not trust in ourselves, but in God which raiseth the dead: 10 Who delivered us from so great a death, and doth deliver: in whom we trust that he will yet deliver us; + +Tuesday 27-August, 2024 diff --git a/scripture/kjv/08/27/24/scripture.tg.id b/scripture/kjv/08/27/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/27/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/27/24/scripture.today b/scripture/kjv/08/27/24/scripture.today new file mode 100644 index 00000000..42ab54f2 --- /dev/null +++ b/scripture/kjv/08/27/24/scripture.today @@ -0,0 +1 @@ +47 1:8-10 diff --git a/scripture/kjv/08/27/25/scripture.html b/scripture/kjv/08/27/25/scripture.html new file mode 100644 index 00000000..6405a0da --- /dev/null +++ b/scripture/kjv/08/27/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 50:20-22
+20 Thou sittest and speakest against thy brother; thou slanderest thine own mother’s son. 21 These things hast thou done, and I kept silence; thou thoughtest that I was altogether such an one as thyself: but I will reprove thee, and set them in order before thine eyes. 22 Now consider this, ye that forget God, lest I tear you in pieces, and there be none to deliver.

+Wednesday 27-August, 2025 diff --git a/scripture/kjv/08/27/25/scripture.json b/scripture/kjv/08/27/25/scripture.json new file mode 100644 index 00000000..6f100a3d --- /dev/null +++ b/scripture/kjv/08/27/25/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Psalms", + "chapter": "50", + "date": "Wednesday 27-August, 2025", + "getbible": "https://getbible.life/kjv/Psalms/50/20-22", + "name": "Psalms 50:20-22", + "scripture": [ + { + "nr": "20", + "text": "Thou sittest and speakest against thy brother; thou slanderest thine own mother’s son." + }, + { + "nr": "21", + "text": "These things hast thou done, and I kept silence; thou thoughtest that I was altogether such an one as thyself: but I will reprove thee, and set them in order before thine eyes." + }, + { + "nr": "22", + "text": "Now consider this, ye that forget God, lest I tear you in pieces, and there be none to deliver." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20-22", + "version": "kjv" +} diff --git a/scripture/kjv/08/27/25/scripture.md b/scripture/kjv/08/27/25/scripture.md new file mode 100644 index 00000000..500206a8 --- /dev/null +++ b/scripture/kjv/08/27/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 50:20-22** + +20 Thou sittest and speakest against thy brother; thou slanderest thine own mother’s son. 21 These things hast thou done, and I kept silence; thou thoughtest that I was altogether such an one as thyself: but I will reprove thee, and set them in order before thine eyes. 22 Now consider this, ye that forget God, lest I tear you in pieces, and there be none to deliver. + +[Wednesday 27-August, 2025](https://getbible.life/kjv/Psalms/50/20-22) diff --git a/scripture/kjv/08/27/25/scripture.tg b/scripture/kjv/08/27/25/scripture.tg new file mode 100644 index 00000000..4f78bfc2 --- /dev/null +++ b/scripture/kjv/08/27/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 50:20-22 +20 Thou sittest and speakest against thy brother; thou slanderest thine own mother’s son. 21 These things hast thou done, and I kept silence; thou thoughtest that I was altogether such an one as thyself: but I will reprove thee, and set them in order before thine eyes. 22 Now consider this, ye that forget God, lest I tear you in pieces, and there be none to deliver. + +Wednesday 27-August, 2025 diff --git a/scripture/kjv/08/27/25/scripture.tg.id b/scripture/kjv/08/27/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/27/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/27/25/scripture.today b/scripture/kjv/08/27/25/scripture.today new file mode 100644 index 00000000..eeeefe7e --- /dev/null +++ b/scripture/kjv/08/27/25/scripture.today @@ -0,0 +1 @@ +19 50:20-22 diff --git a/scripture/kjv/08/28/23/scripture.html b/scripture/kjv/08/28/23/scripture.html new file mode 100644 index 00000000..9096a766 --- /dev/null +++ b/scripture/kjv/08/28/23/scripture.html @@ -0,0 +1,3 @@ +Ephesians 5:31-32
+31 For this cause shall a man leave his father and mother, and shall be joined unto his wife, and they two shall be one flesh. 32 This is a great mystery: but I speak concerning Christ and the church.

+Monday 28-August, 2023 diff --git a/scripture/kjv/08/28/23/scripture.json b/scripture/kjv/08/28/23/scripture.json new file mode 100644 index 00000000..50f46313 --- /dev/null +++ b/scripture/kjv/08/28/23/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Ephesians", + "chapter": "5", + "date": "Monday 28-August, 2023", + "getbible": "https://getbible.life/kjv/Ephesians/5/31-32", + "name": "Ephesians 5:31-32", + "scripture": [ + { + "nr": "31", + "text": "For this cause shall a man leave his father and mother, and shall be joined unto his wife, and they two shall be one flesh." + }, + { + "nr": "32", + "text": "This is a great mystery: but I speak concerning Christ and the church." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "31-32", + "version": "kjv" +} diff --git a/scripture/kjv/08/28/23/scripture.md b/scripture/kjv/08/28/23/scripture.md new file mode 100644 index 00000000..49384c72 --- /dev/null +++ b/scripture/kjv/08/28/23/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 5:31-32** + +31 For this cause shall a man leave his father and mother, and shall be joined unto his wife, and they two shall be one flesh. 32 This is a great mystery: but I speak concerning Christ and the church. + +[Monday 28-August, 2023](https://getbible.life/kjv/Ephesians/5/31-32) diff --git a/scripture/kjv/08/28/23/scripture.tg b/scripture/kjv/08/28/23/scripture.tg new file mode 100644 index 00000000..9d37756d --- /dev/null +++ b/scripture/kjv/08/28/23/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 5:31-32 +31 For this cause shall a man leave his father and mother, and shall be joined unto his wife, and they two shall be one flesh. 32 This is a great mystery: but I speak concerning Christ and the church. + +Monday 28-August, 2023 diff --git a/scripture/kjv/08/28/23/scripture.tg.id b/scripture/kjv/08/28/23/scripture.tg.id new file mode 100644 index 00000000..c500a5fe --- /dev/null +++ b/scripture/kjv/08/28/23/scripture.tg.id @@ -0,0 +1 @@ +1057 diff --git a/scripture/kjv/08/28/23/scripture.today b/scripture/kjv/08/28/23/scripture.today new file mode 100644 index 00000000..2208a949 --- /dev/null +++ b/scripture/kjv/08/28/23/scripture.today @@ -0,0 +1 @@ +49 5:31-32 diff --git a/scripture/kjv/08/28/24/scripture.html b/scripture/kjv/08/28/24/scripture.html new file mode 100644 index 00000000..bd0af8d6 --- /dev/null +++ b/scripture/kjv/08/28/24/scripture.html @@ -0,0 +1,3 @@ +Hebrews 11:1
+1 Now faith is the substance of things hoped for, the evidence of things not seen.

+Wednesday 28-August, 2024 diff --git a/scripture/kjv/08/28/24/scripture.json b/scripture/kjv/08/28/24/scripture.json new file mode 100644 index 00000000..c08b5042 --- /dev/null +++ b/scripture/kjv/08/28/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Hebrews", + "chapter": "11", + "date": "Wednesday 28-August, 2024", + "getbible": "https://getbible.life/kjv/Hebrews/11/1", + "name": "Hebrews 11:1", + "scripture": [ + { + "nr": "1", + "text": "Now faith is the substance of things hoped for, the evidence of things not seen." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1", + "version": "kjv" +} diff --git a/scripture/kjv/08/28/24/scripture.md b/scripture/kjv/08/28/24/scripture.md new file mode 100644 index 00000000..4562efda --- /dev/null +++ b/scripture/kjv/08/28/24/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 11:1** + +1 Now faith is the substance of things hoped for, the evidence of things not seen. + +[Wednesday 28-August, 2024](https://getbible.life/kjv/Hebrews/11/1) diff --git a/scripture/kjv/08/28/24/scripture.tg b/scripture/kjv/08/28/24/scripture.tg new file mode 100644 index 00000000..229cd182 --- /dev/null +++ b/scripture/kjv/08/28/24/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 11:1 +1 Now faith is the substance of things hoped for, the evidence of things not seen. + +Wednesday 28-August, 2024 diff --git a/scripture/kjv/08/28/24/scripture.tg.id b/scripture/kjv/08/28/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/28/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/28/24/scripture.today b/scripture/kjv/08/28/24/scripture.today new file mode 100644 index 00000000..95848431 --- /dev/null +++ b/scripture/kjv/08/28/24/scripture.today @@ -0,0 +1 @@ +58 11:1 diff --git a/scripture/kjv/08/28/25/scripture.html b/scripture/kjv/08/28/25/scripture.html new file mode 100644 index 00000000..3350af21 --- /dev/null +++ b/scripture/kjv/08/28/25/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 12:26
+26 And whether one member suffer, all the members suffer with it; or one member be honoured, all the members rejoice with it.

+Thursday 28-August, 2025 diff --git a/scripture/kjv/08/28/25/scripture.json b/scripture/kjv/08/28/25/scripture.json new file mode 100644 index 00000000..459325c0 --- /dev/null +++ b/scripture/kjv/08/28/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "12", + "date": "Thursday 28-August, 2025", + "getbible": "https://getbible.life/kjv/1 Corinthians/12/26", + "name": "1 Corinthians 12:26", + "scripture": [ + { + "nr": "26", + "text": "And whether one member suffer, all the members suffer with it; or one member be honoured, all the members rejoice with it." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "26", + "version": "kjv" +} diff --git a/scripture/kjv/08/28/25/scripture.md b/scripture/kjv/08/28/25/scripture.md new file mode 100644 index 00000000..bf8d7c72 --- /dev/null +++ b/scripture/kjv/08/28/25/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 12:26** + +26 And whether one member suffer, all the members suffer with it; or one member be honoured, all the members rejoice with it. + +[Thursday 28-August, 2025](https://getbible.life/kjv/1 Corinthians/12/26) diff --git a/scripture/kjv/08/28/25/scripture.tg b/scripture/kjv/08/28/25/scripture.tg new file mode 100644 index 00000000..a61feb37 --- /dev/null +++ b/scripture/kjv/08/28/25/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 12:26 +26 And whether one member suffer, all the members suffer with it; or one member be honoured, all the members rejoice with it. + +Thursday 28-August, 2025 diff --git a/scripture/kjv/08/28/25/scripture.tg.id b/scripture/kjv/08/28/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/28/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/28/25/scripture.today b/scripture/kjv/08/28/25/scripture.today new file mode 100644 index 00000000..d56ad869 --- /dev/null +++ b/scripture/kjv/08/28/25/scripture.today @@ -0,0 +1 @@ +46 12:26 diff --git a/scripture/kjv/08/29/23/scripture.html b/scripture/kjv/08/29/23/scripture.html new file mode 100644 index 00000000..880ad6fd --- /dev/null +++ b/scripture/kjv/08/29/23/scripture.html @@ -0,0 +1,3 @@ +Revelation 14:5
+5 And in their mouth was found no guile: for they are without fault before the throne of God.

+Tuesday 29-August, 2023 diff --git a/scripture/kjv/08/29/23/scripture.json b/scripture/kjv/08/29/23/scripture.json new file mode 100644 index 00000000..e3d6f78f --- /dev/null +++ b/scripture/kjv/08/29/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Revelation", + "chapter": "14", + "date": "Tuesday 29-August, 2023", + "getbible": "https://getbible.life/kjv/Revelation/14/5", + "name": "Revelation 14:5", + "scripture": [ + { + "nr": "5", + "text": "And in their mouth was found no guile: for they are without fault before the throne of God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5", + "version": "kjv" +} diff --git a/scripture/kjv/08/29/23/scripture.md b/scripture/kjv/08/29/23/scripture.md new file mode 100644 index 00000000..5d34317b --- /dev/null +++ b/scripture/kjv/08/29/23/scripture.md @@ -0,0 +1,5 @@ +**Revelation 14:5** + +5 And in their mouth was found no guile: for they are without fault before the throne of God. + +[Tuesday 29-August, 2023](https://getbible.life/kjv/Revelation/14/5) diff --git a/scripture/kjv/08/29/23/scripture.tg b/scripture/kjv/08/29/23/scripture.tg new file mode 100644 index 00000000..5cc73528 --- /dev/null +++ b/scripture/kjv/08/29/23/scripture.tg @@ -0,0 +1,4 @@ +Revelation 14:5 +5 And in their mouth was found no guile: for they are without fault before the throne of God. + +Tuesday 29-August, 2023 diff --git a/scripture/kjv/08/29/23/scripture.tg.id b/scripture/kjv/08/29/23/scripture.tg.id new file mode 100644 index 00000000..bb5b9923 --- /dev/null +++ b/scripture/kjv/08/29/23/scripture.tg.id @@ -0,0 +1 @@ +1060 diff --git a/scripture/kjv/08/29/23/scripture.today b/scripture/kjv/08/29/23/scripture.today new file mode 100644 index 00000000..1497997f --- /dev/null +++ b/scripture/kjv/08/29/23/scripture.today @@ -0,0 +1 @@ +66 14:5 diff --git a/scripture/kjv/08/29/24/scripture.html b/scripture/kjv/08/29/24/scripture.html new file mode 100644 index 00000000..3bcad2d2 --- /dev/null +++ b/scripture/kjv/08/29/24/scripture.html @@ -0,0 +1,3 @@ +Colossians 1:13-14
+13 Who hath delivered us from the power of darkness, and hath translated us into the kingdom of his dear Son: 14 In whom we have redemption through his blood, even the forgiveness of sins:

+Thursday 29-August, 2024 diff --git a/scripture/kjv/08/29/24/scripture.json b/scripture/kjv/08/29/24/scripture.json new file mode 100644 index 00000000..e2af61b3 --- /dev/null +++ b/scripture/kjv/08/29/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Colossians", + "chapter": "1", + "date": "Thursday 29-August, 2024", + "getbible": "https://getbible.life/kjv/Colossians/1/13-14", + "name": "Colossians 1:13-14", + "scripture": [ + { + "nr": "13", + "text": "Who hath delivered us from the power of darkness, and hath translated us into the kingdom of his dear Son:" + }, + { + "nr": "14", + "text": "In whom we have redemption through his blood, even the forgiveness of sins:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13-14", + "version": "kjv" +} diff --git a/scripture/kjv/08/29/24/scripture.md b/scripture/kjv/08/29/24/scripture.md new file mode 100644 index 00000000..3c76c774 --- /dev/null +++ b/scripture/kjv/08/29/24/scripture.md @@ -0,0 +1,5 @@ +**Colossians 1:13-14** + +13 Who hath delivered us from the power of darkness, and hath translated us into the kingdom of his dear Son: 14 In whom we have redemption through his blood, even the forgiveness of sins: + +[Thursday 29-August, 2024](https://getbible.life/kjv/Colossians/1/13-14) diff --git a/scripture/kjv/08/29/24/scripture.tg b/scripture/kjv/08/29/24/scripture.tg new file mode 100644 index 00000000..81339a6e --- /dev/null +++ b/scripture/kjv/08/29/24/scripture.tg @@ -0,0 +1,4 @@ +Colossians 1:13-14 +13 Who hath delivered us from the power of darkness, and hath translated us into the kingdom of his dear Son: 14 In whom we have redemption through his blood, even the forgiveness of sins: + +Thursday 29-August, 2024 diff --git a/scripture/kjv/08/29/24/scripture.tg.id b/scripture/kjv/08/29/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/29/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/29/24/scripture.today b/scripture/kjv/08/29/24/scripture.today new file mode 100644 index 00000000..3d7893fa --- /dev/null +++ b/scripture/kjv/08/29/24/scripture.today @@ -0,0 +1 @@ +51 1:13-14 diff --git a/scripture/kjv/08/29/25/scripture.html b/scripture/kjv/08/29/25/scripture.html new file mode 100644 index 00000000..d238a9f5 --- /dev/null +++ b/scripture/kjv/08/29/25/scripture.html @@ -0,0 +1,3 @@ +John 15:10
+10 If ye keep my commandments, ye shall abide in my love; even as I have kept my Father’s commandments, and abide in his love.

+Friday 29-August, 2025 diff --git a/scripture/kjv/08/29/25/scripture.json b/scripture/kjv/08/29/25/scripture.json new file mode 100644 index 00000000..48ea34e3 --- /dev/null +++ b/scripture/kjv/08/29/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "15", + "date": "Friday 29-August, 2025", + "getbible": "https://getbible.life/kjv/John/15/10", + "name": "John 15:10", + "scripture": [ + { + "nr": "10", + "text": "If ye keep my commandments, ye shall abide in my love; even as I have kept my Father’s commandments, and abide in his love." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/08/29/25/scripture.md b/scripture/kjv/08/29/25/scripture.md new file mode 100644 index 00000000..78ff394e --- /dev/null +++ b/scripture/kjv/08/29/25/scripture.md @@ -0,0 +1,5 @@ +**John 15:10** + +10 If ye keep my commandments, ye shall abide in my love; even as I have kept my Father’s commandments, and abide in his love. + +[Friday 29-August, 2025](https://getbible.life/kjv/John/15/10) diff --git a/scripture/kjv/08/29/25/scripture.tg b/scripture/kjv/08/29/25/scripture.tg new file mode 100644 index 00000000..2c015c0a --- /dev/null +++ b/scripture/kjv/08/29/25/scripture.tg @@ -0,0 +1,4 @@ +John 15:10 +10 If ye keep my commandments, ye shall abide in my love; even as I have kept my Father’s commandments, and abide in his love. + +Friday 29-August, 2025 diff --git a/scripture/kjv/08/29/25/scripture.tg.id b/scripture/kjv/08/29/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/29/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/29/25/scripture.today b/scripture/kjv/08/29/25/scripture.today new file mode 100644 index 00000000..605b7995 --- /dev/null +++ b/scripture/kjv/08/29/25/scripture.today @@ -0,0 +1 @@ +43 15:10 diff --git a/scripture/kjv/08/30/23/scripture.html b/scripture/kjv/08/30/23/scripture.html new file mode 100644 index 00000000..4eeb5cc7 --- /dev/null +++ b/scripture/kjv/08/30/23/scripture.html @@ -0,0 +1,3 @@ +1 Timothy 1:12
+12 And I thank Christ Jesus our Lord, who hath enabled me, for that he counted me faithful, putting me into the ministry;

+Wednesday 30-August, 2023 diff --git a/scripture/kjv/08/30/23/scripture.json b/scripture/kjv/08/30/23/scripture.json new file mode 100644 index 00000000..c121797f --- /dev/null +++ b/scripture/kjv/08/30/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Timothy", + "chapter": "1", + "date": "Wednesday 30-August, 2023", + "getbible": "https://getbible.life/kjv/1 Timothy/1/12", + "name": "1 Timothy 1:12", + "scripture": [ + { + "nr": "12", + "text": "And I thank Christ Jesus our Lord, who hath enabled me, for that he counted me faithful, putting me into the ministry;" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/08/30/23/scripture.md b/scripture/kjv/08/30/23/scripture.md new file mode 100644 index 00000000..7e2eab95 --- /dev/null +++ b/scripture/kjv/08/30/23/scripture.md @@ -0,0 +1,5 @@ +**1 Timothy 1:12** + +12 And I thank Christ Jesus our Lord, who hath enabled me, for that he counted me faithful, putting me into the ministry; + +[Wednesday 30-August, 2023](https://getbible.life/kjv/1 Timothy/1/12) diff --git a/scripture/kjv/08/30/23/scripture.tg b/scripture/kjv/08/30/23/scripture.tg new file mode 100644 index 00000000..83844d70 --- /dev/null +++ b/scripture/kjv/08/30/23/scripture.tg @@ -0,0 +1,4 @@ +1 Timothy 1:12 +12 And I thank Christ Jesus our Lord, who hath enabled me, for that he counted me faithful, putting me into the ministry; + +Wednesday 30-August, 2023 diff --git a/scripture/kjv/08/30/23/scripture.tg.id b/scripture/kjv/08/30/23/scripture.tg.id new file mode 100644 index 00000000..52b9c41d --- /dev/null +++ b/scripture/kjv/08/30/23/scripture.tg.id @@ -0,0 +1 @@ +1061 diff --git a/scripture/kjv/08/30/23/scripture.today b/scripture/kjv/08/30/23/scripture.today new file mode 100644 index 00000000..36ab4e71 --- /dev/null +++ b/scripture/kjv/08/30/23/scripture.today @@ -0,0 +1 @@ +54 1:12 diff --git a/scripture/kjv/08/30/24/scripture.html b/scripture/kjv/08/30/24/scripture.html new file mode 100644 index 00000000..3e5f9ab6 --- /dev/null +++ b/scripture/kjv/08/30/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 12:18
+18 There is that speaketh like the piercings of a sword: but the tongue of the wise is health.

+Friday 30-August, 2024 diff --git a/scripture/kjv/08/30/24/scripture.json b/scripture/kjv/08/30/24/scripture.json new file mode 100644 index 00000000..cf0a0e1e --- /dev/null +++ b/scripture/kjv/08/30/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "12", + "date": "Friday 30-August, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/12/18", + "name": "Proverbs 12:18", + "scripture": [ + { + "nr": "18", + "text": "There is that speaketh like the piercings of a sword: but the tongue of the wise is health." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18", + "version": "kjv" +} diff --git a/scripture/kjv/08/30/24/scripture.md b/scripture/kjv/08/30/24/scripture.md new file mode 100644 index 00000000..b3365b3e --- /dev/null +++ b/scripture/kjv/08/30/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 12:18** + +18 There is that speaketh like the piercings of a sword: but the tongue of the wise is health. + +[Friday 30-August, 2024](https://getbible.life/kjv/Proverbs/12/18) diff --git a/scripture/kjv/08/30/24/scripture.tg b/scripture/kjv/08/30/24/scripture.tg new file mode 100644 index 00000000..122ee398 --- /dev/null +++ b/scripture/kjv/08/30/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 12:18 +18 There is that speaketh like the piercings of a sword: but the tongue of the wise is health. + +Friday 30-August, 2024 diff --git a/scripture/kjv/08/30/24/scripture.tg.id b/scripture/kjv/08/30/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/30/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/30/24/scripture.today b/scripture/kjv/08/30/24/scripture.today new file mode 100644 index 00000000..b261beb2 --- /dev/null +++ b/scripture/kjv/08/30/24/scripture.today @@ -0,0 +1 @@ +20 12:18 diff --git a/scripture/kjv/08/30/25/scripture.html b/scripture/kjv/08/30/25/scripture.html new file mode 100644 index 00000000..ace70df7 --- /dev/null +++ b/scripture/kjv/08/30/25/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 4:6
+6 For God, who commanded the light to shine out of darkness, hath shined in our hearts, to give the light of the knowledge of the glory of God in the face of Jesus Christ.

+Saturday 30-August, 2025 diff --git a/scripture/kjv/08/30/25/scripture.json b/scripture/kjv/08/30/25/scripture.json new file mode 100644 index 00000000..530bfaab --- /dev/null +++ b/scripture/kjv/08/30/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "4", + "date": "Saturday 30-August, 2025", + "getbible": "https://getbible.life/kjv/2 Corinthians/4/6", + "name": "2 Corinthians 4:6", + "scripture": [ + { + "nr": "6", + "text": "For God, who commanded the light to shine out of darkness, hath shined in our hearts, to give the light of the knowledge of the glory of God in the face of Jesus Christ." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6", + "version": "kjv" +} diff --git a/scripture/kjv/08/30/25/scripture.md b/scripture/kjv/08/30/25/scripture.md new file mode 100644 index 00000000..59e8a947 --- /dev/null +++ b/scripture/kjv/08/30/25/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 4:6** + +6 For God, who commanded the light to shine out of darkness, hath shined in our hearts, to give the light of the knowledge of the glory of God in the face of Jesus Christ. + +[Saturday 30-August, 2025](https://getbible.life/kjv/2 Corinthians/4/6) diff --git a/scripture/kjv/08/30/25/scripture.tg b/scripture/kjv/08/30/25/scripture.tg new file mode 100644 index 00000000..486d5400 --- /dev/null +++ b/scripture/kjv/08/30/25/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 4:6 +6 For God, who commanded the light to shine out of darkness, hath shined in our hearts, to give the light of the knowledge of the glory of God in the face of Jesus Christ. + +Saturday 30-August, 2025 diff --git a/scripture/kjv/08/30/25/scripture.tg.id b/scripture/kjv/08/30/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/30/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/30/25/scripture.today b/scripture/kjv/08/30/25/scripture.today new file mode 100644 index 00000000..c57e974a --- /dev/null +++ b/scripture/kjv/08/30/25/scripture.today @@ -0,0 +1 @@ +47 4:6 diff --git a/scripture/kjv/08/31/23/scripture.html b/scripture/kjv/08/31/23/scripture.html new file mode 100644 index 00000000..e013be3a --- /dev/null +++ b/scripture/kjv/08/31/23/scripture.html @@ -0,0 +1,3 @@ +Exodus 27:20
+20 And thou shalt command the children of Israel, that they bring thee pure oil olive beaten for the light, to cause the lamp to burn always.

+Thursday 31-August, 2023 diff --git a/scripture/kjv/08/31/23/scripture.json b/scripture/kjv/08/31/23/scripture.json new file mode 100644 index 00000000..c2192a84 --- /dev/null +++ b/scripture/kjv/08/31/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Exodus", + "chapter": "27", + "date": "Thursday 31-August, 2023", + "getbible": "https://getbible.life/kjv/Exodus/27/20", + "name": "Exodus 27:20", + "scripture": [ + { + "nr": "20", + "text": "And thou shalt command the children of Israel, that they bring thee pure oil olive beaten for the light, to cause the lamp to burn always." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20", + "version": "kjv" +} diff --git a/scripture/kjv/08/31/23/scripture.md b/scripture/kjv/08/31/23/scripture.md new file mode 100644 index 00000000..629bd964 --- /dev/null +++ b/scripture/kjv/08/31/23/scripture.md @@ -0,0 +1,5 @@ +**Exodus 27:20** + +20 And thou shalt command the children of Israel, that they bring thee pure oil olive beaten for the light, to cause the lamp to burn always. + +[Thursday 31-August, 2023](https://getbible.life/kjv/Exodus/27/20) diff --git a/scripture/kjv/08/31/23/scripture.tg b/scripture/kjv/08/31/23/scripture.tg new file mode 100644 index 00000000..89a013e7 --- /dev/null +++ b/scripture/kjv/08/31/23/scripture.tg @@ -0,0 +1,4 @@ +Exodus 27:20 +20 And thou shalt command the children of Israel, that they bring thee pure oil olive beaten for the light, to cause the lamp to burn always. + +Thursday 31-August, 2023 diff --git a/scripture/kjv/08/31/23/scripture.tg.id b/scripture/kjv/08/31/23/scripture.tg.id new file mode 100644 index 00000000..36804484 --- /dev/null +++ b/scripture/kjv/08/31/23/scripture.tg.id @@ -0,0 +1 @@ +1062 diff --git a/scripture/kjv/08/31/23/scripture.today b/scripture/kjv/08/31/23/scripture.today new file mode 100644 index 00000000..2036d734 --- /dev/null +++ b/scripture/kjv/08/31/23/scripture.today @@ -0,0 +1 @@ +2 27:20 diff --git a/scripture/kjv/08/31/24/scripture.html b/scripture/kjv/08/31/24/scripture.html new file mode 100644 index 00000000..8420007d --- /dev/null +++ b/scripture/kjv/08/31/24/scripture.html @@ -0,0 +1,3 @@ +Luke 16:19-31
+19 There was a certain rich man, which was clothed in purple and fine linen, and fared sumptuously every day: 20 And there was a certain beggar named Lazarus, which was laid at his gate, full of sores, 21 And desiring to be fed with the crumbs which fell from the rich man’s table: moreover the dogs came and licked his sores. 22 And it came to pass, that the beggar died, and was carried by the angels into Abraham’s bosom: the rich man also died, and was buried; 23 And in hell he lift up his eyes, being in torments, and seeth Abraham afar off, and Lazarus in his bosom. 24 And he cried and said, Father Abraham, have mercy on me, and send Lazarus, that he may dip the tip of his finger in water, and cool my tongue; for I am tormented in this flame. 25 But Abraham said, Son, remember that thou in thy lifetime receivedst thy good things, and likewise Lazarus evil things: but now he is comforted, and thou art tormented. 26 And beside all this, between us and you there is a great gulf fixed: so that they which would pass from hence to you cannot; neither can they pass to us, that would come from thence. 27 Then he said, I pray thee therefore, father, that thou wouldest send him to my father’s house: 28 For I have five brethren; that he may testify unto them, lest they also come into this place of torment. 29 Abraham saith unto him, They have Moses and the prophets; let them hear them. 30 And he said, Nay, father Abraham: but if one went unto them from the dead, they will repent. 31 And he said unto him, If they hear not Moses and the prophets, neither will they be persuaded, though one rose from the dead.

+Saturday 31-August, 2024 diff --git a/scripture/kjv/08/31/24/scripture.json b/scripture/kjv/08/31/24/scripture.json new file mode 100644 index 00000000..a38b0c2a --- /dev/null +++ b/scripture/kjv/08/31/24/scripture.json @@ -0,0 +1,65 @@ +{ + "book": "Luke", + "chapter": "16", + "date": "Saturday 31-August, 2024", + "getbible": "https://getbible.life/kjv/Luke/16/19-31", + "name": "Luke 16:19-31", + "scripture": [ + { + "nr": "19", + "text": "There was a certain rich man, which was clothed in purple and fine linen, and fared sumptuously every day:" + }, + { + "nr": "20", + "text": "And there was a certain beggar named Lazarus, which was laid at his gate, full of sores," + }, + { + "nr": "21", + "text": "And desiring to be fed with the crumbs which fell from the rich man’s table: moreover the dogs came and licked his sores." + }, + { + "nr": "22", + "text": "And it came to pass, that the beggar died, and was carried by the angels into Abraham’s bosom: the rich man also died, and was buried;" + }, + { + "nr": "23", + "text": "And in hell he lift up his eyes, being in torments, and seeth Abraham afar off, and Lazarus in his bosom." + }, + { + "nr": "24", + "text": "And he cried and said, Father Abraham, have mercy on me, and send Lazarus, that he may dip the tip of his finger in water, and cool my tongue; for I am tormented in this flame." + }, + { + "nr": "25", + "text": "But Abraham said, Son, remember that thou in thy lifetime receivedst thy good things, and likewise Lazarus evil things: but now he is comforted, and thou art tormented." + }, + { + "nr": "26", + "text": "And beside all this, between us and you there is a great gulf fixed: so that they which would pass from hence to you cannot; neither can they pass to us, that would come from thence." + }, + { + "nr": "27", + "text": "Then he said, I pray thee therefore, father, that thou wouldest send him to my father’s house:" + }, + { + "nr": "28", + "text": "For I have five brethren; that he may testify unto them, lest they also come into this place of torment." + }, + { + "nr": "29", + "text": "Abraham saith unto him, They have Moses and the prophets; let them hear them." + }, + { + "nr": "30", + "text": "And he said, Nay, father Abraham: but if one went unto them from the dead, they will repent." + }, + { + "nr": "31", + "text": "And he said unto him, If they hear not Moses and the prophets, neither will they be persuaded, though one rose from the dead. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "19-31", + "version": "kjv" +} diff --git a/scripture/kjv/08/31/24/scripture.md b/scripture/kjv/08/31/24/scripture.md new file mode 100644 index 00000000..52713841 --- /dev/null +++ b/scripture/kjv/08/31/24/scripture.md @@ -0,0 +1,5 @@ +**Luke 16:19-31** + +19 There was a certain rich man, which was clothed in purple and fine linen, and fared sumptuously every day: 20 And there was a certain beggar named Lazarus, which was laid at his gate, full of sores, 21 And desiring to be fed with the crumbs which fell from the rich man’s table: moreover the dogs came and licked his sores. 22 And it came to pass, that the beggar died, and was carried by the angels into Abraham’s bosom: the rich man also died, and was buried; 23 And in hell he lift up his eyes, being in torments, and seeth Abraham afar off, and Lazarus in his bosom. 24 And he cried and said, Father Abraham, have mercy on me, and send Lazarus, that he may dip the tip of his finger in water, and cool my tongue; for I am tormented in this flame. 25 But Abraham said, Son, remember that thou in thy lifetime receivedst thy good things, and likewise Lazarus evil things: but now he is comforted, and thou art tormented. 26 And beside all this, between us and you there is a great gulf fixed: so that they which would pass from hence to you cannot; neither can they pass to us, that would come from thence. 27 Then he said, I pray thee therefore, father, that thou wouldest send him to my father’s house: 28 For I have five brethren; that he may testify unto them, lest they also come into this place of torment. 29 Abraham saith unto him, They have Moses and the prophets; let them hear them. 30 And he said, Nay, father Abraham: but if one went unto them from the dead, they will repent. 31 And he said unto him, If they hear not Moses and the prophets, neither will they be persuaded, though one rose from the dead. + +[Saturday 31-August, 2024](https://getbible.life/kjv/Luke/16/19-31) diff --git a/scripture/kjv/08/31/24/scripture.tg b/scripture/kjv/08/31/24/scripture.tg new file mode 100644 index 00000000..930499c2 --- /dev/null +++ b/scripture/kjv/08/31/24/scripture.tg @@ -0,0 +1,4 @@ +Luke 16:19-31 +19 There was a certain rich man, which was clothed in purple and fine linen, and fared sumptuously every day: 20 And there was a certain beggar named Lazarus, which was laid at his gate, full of sores, 21 And desiring to be fed with the crumbs which fell from the rich man’s table: moreover the dogs came and licked his sores. 22 And it came to pass, that the beggar died, and was carried by the angels into Abraham’s bosom: the rich man also died, and was buried; 23 And in hell he lift up his eyes, being in torments, and seeth Abraham afar off, and Lazarus in his bosom. 24 And he cried and said, Father Abraham, have mercy on me, and send Lazarus, that he may dip the tip of his finger in water, and cool my tongue; for I am tormented in this flame. 25 But Abraham said, Son, remember that thou in thy lifetime receivedst thy good things, and likewise Lazarus evil things: but now he is comforted, and thou art tormented. 26 And beside all this, between us and you there is a great gulf fixed: so that they which would pass from hence to you cannot; neither can they pass to us, that would come from thence. 27 Then he said, I pray thee therefore, father, that thou wouldest send him to my father’s house: 28 For I have five brethren; that he may testify unto them, lest they also come into this place of torment. 29 Abraham saith unto him, They have Moses and the prophets; let them hear them. 30 And he said, Nay, father Abraham: but if one went unto them from the dead, they will repent. 31 And he said unto him, If they hear not Moses and the prophets, neither will they be persuaded, though one rose from the dead. + +Saturday 31-August, 2024 diff --git a/scripture/kjv/08/31/24/scripture.tg.id b/scripture/kjv/08/31/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/31/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/31/24/scripture.today b/scripture/kjv/08/31/24/scripture.today new file mode 100644 index 00000000..c0e6addf --- /dev/null +++ b/scripture/kjv/08/31/24/scripture.today @@ -0,0 +1 @@ +42 16:19-31 diff --git a/scripture/kjv/08/31/25/scripture.html b/scripture/kjv/08/31/25/scripture.html new file mode 100644 index 00000000..b044e83e --- /dev/null +++ b/scripture/kjv/08/31/25/scripture.html @@ -0,0 +1,3 @@ +Mark 6:11
+11 And whosoever shall not receive you, nor hear you, when ye depart thence, shake off the dust under your feet for a testimony against them. Verily I say unto you, It shall be more tolerable for Sodom and Gomorrha in the day of judgment, than for that city.

+Sunday 31-August, 2025 diff --git a/scripture/kjv/08/31/25/scripture.json b/scripture/kjv/08/31/25/scripture.json new file mode 100644 index 00000000..1c080ddf --- /dev/null +++ b/scripture/kjv/08/31/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Mark", + "chapter": "6", + "date": "Sunday 31-August, 2025", + "getbible": "https://getbible.life/kjv/Mark/6/11", + "name": "Mark 6:11", + "scripture": [ + { + "nr": "11", + "text": "And whosoever shall not receive you, nor hear you, when ye depart thence, shake off the dust under your feet for a testimony against them. Verily I say unto you, It shall be more tolerable for Sodom and Gomorrha in the day of judgment, than for that city." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/08/31/25/scripture.md b/scripture/kjv/08/31/25/scripture.md new file mode 100644 index 00000000..617b3dcd --- /dev/null +++ b/scripture/kjv/08/31/25/scripture.md @@ -0,0 +1,5 @@ +**Mark 6:11** + +11 And whosoever shall not receive you, nor hear you, when ye depart thence, shake off the dust under your feet for a testimony against them. Verily I say unto you, It shall be more tolerable for Sodom and Gomorrha in the day of judgment, than for that city. + +[Sunday 31-August, 2025](https://getbible.life/kjv/Mark/6/11) diff --git a/scripture/kjv/08/31/25/scripture.tg b/scripture/kjv/08/31/25/scripture.tg new file mode 100644 index 00000000..6c008d5b --- /dev/null +++ b/scripture/kjv/08/31/25/scripture.tg @@ -0,0 +1,4 @@ +Mark 6:11 +11 And whosoever shall not receive you, nor hear you, when ye depart thence, shake off the dust under your feet for a testimony against them. Verily I say unto you, It shall be more tolerable for Sodom and Gomorrha in the day of judgment, than for that city. + +Sunday 31-August, 2025 diff --git a/scripture/kjv/08/31/25/scripture.tg.id b/scripture/kjv/08/31/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/08/31/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/08/31/25/scripture.today b/scripture/kjv/08/31/25/scripture.today new file mode 100644 index 00000000..c51ab62b --- /dev/null +++ b/scripture/kjv/08/31/25/scripture.today @@ -0,0 +1 @@ +41 6:11 diff --git a/scripture/kjv/09/01/23/scripture.html b/scripture/kjv/09/01/23/scripture.html new file mode 100644 index 00000000..a60e3669 --- /dev/null +++ b/scripture/kjv/09/01/23/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 5:17
+17 Therefore if any man be in Christ, he is a new creature: old things are passed away; behold, all things are become new.

+Friday 01-September, 2023 diff --git a/scripture/kjv/09/01/23/scripture.json b/scripture/kjv/09/01/23/scripture.json new file mode 100644 index 00000000..40e8d6fb --- /dev/null +++ b/scripture/kjv/09/01/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "5", + "date": "Friday 01-September, 2023", + "getbible": "https://getbible.life/kjv/2 Corinthians/5/17", + "name": "2 Corinthians 5:17", + "scripture": [ + { + "nr": "17", + "text": "Therefore if any man be in Christ, he is a new creature: old things are passed away; behold, all things are become new." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17", + "version": "kjv" +} diff --git a/scripture/kjv/09/01/23/scripture.md b/scripture/kjv/09/01/23/scripture.md new file mode 100644 index 00000000..0c6daa68 --- /dev/null +++ b/scripture/kjv/09/01/23/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 5:17** + +17 Therefore if any man be in Christ, he is a new creature: old things are passed away; behold, all things are become new. + +[Friday 01-September, 2023](https://getbible.life/kjv/2 Corinthians/5/17) diff --git a/scripture/kjv/09/01/23/scripture.tg b/scripture/kjv/09/01/23/scripture.tg new file mode 100644 index 00000000..6ae14b57 --- /dev/null +++ b/scripture/kjv/09/01/23/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 5:17 +17 Therefore if any man be in Christ, he is a new creature: old things are passed away; behold, all things are become new. + +Friday 01-September, 2023 diff --git a/scripture/kjv/09/01/23/scripture.tg.id b/scripture/kjv/09/01/23/scripture.tg.id new file mode 100644 index 00000000..69ed05c0 --- /dev/null +++ b/scripture/kjv/09/01/23/scripture.tg.id @@ -0,0 +1 @@ +1063 diff --git a/scripture/kjv/09/01/23/scripture.today b/scripture/kjv/09/01/23/scripture.today new file mode 100644 index 00000000..41c4ab3e --- /dev/null +++ b/scripture/kjv/09/01/23/scripture.today @@ -0,0 +1 @@ +47 5:17 diff --git a/scripture/kjv/09/01/24/scripture.html b/scripture/kjv/09/01/24/scripture.html new file mode 100644 index 00000000..37b65d0b --- /dev/null +++ b/scripture/kjv/09/01/24/scripture.html @@ -0,0 +1,3 @@ +Song of Songs 4:12
+12 A garden inclosed is my sister, my spouse; a spring shut up, a fountain sealed.

+Sunday 01-September, 2024 diff --git a/scripture/kjv/09/01/24/scripture.json b/scripture/kjv/09/01/24/scripture.json new file mode 100644 index 00000000..1b6d7218 --- /dev/null +++ b/scripture/kjv/09/01/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Song of Songs", + "chapter": "4", + "date": "Sunday 01-September, 2024", + "getbible": "https://getbible.life/kjv/Song of Songs/4/12", + "name": "Song of Songs 4:12", + "scripture": [ + { + "nr": "12", + "text": "A garden inclosed is my sister, my spouse; a spring shut up, a fountain sealed." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/09/01/24/scripture.md b/scripture/kjv/09/01/24/scripture.md new file mode 100644 index 00000000..c201fcad --- /dev/null +++ b/scripture/kjv/09/01/24/scripture.md @@ -0,0 +1,5 @@ +**Song of Songs 4:12** + +12 A garden inclosed is my sister, my spouse; a spring shut up, a fountain sealed. + +[Sunday 01-September, 2024](https://getbible.life/kjv/Song of Songs/4/12) diff --git a/scripture/kjv/09/01/24/scripture.tg b/scripture/kjv/09/01/24/scripture.tg new file mode 100644 index 00000000..d28469a0 --- /dev/null +++ b/scripture/kjv/09/01/24/scripture.tg @@ -0,0 +1,4 @@ +Song of Songs 4:12 +12 A garden inclosed is my sister, my spouse; a spring shut up, a fountain sealed. + +Sunday 01-September, 2024 diff --git a/scripture/kjv/09/01/24/scripture.tg.id b/scripture/kjv/09/01/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/01/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/01/24/scripture.today b/scripture/kjv/09/01/24/scripture.today new file mode 100644 index 00000000..e5a827d3 --- /dev/null +++ b/scripture/kjv/09/01/24/scripture.today @@ -0,0 +1 @@ +22 4:12 diff --git a/scripture/kjv/09/01/25/scripture.html b/scripture/kjv/09/01/25/scripture.html new file mode 100644 index 00000000..76129062 --- /dev/null +++ b/scripture/kjv/09/01/25/scripture.html @@ -0,0 +1,3 @@ +Job 34:11-12
+11 For the work of a man shall he render unto him, and cause every man to find according to his ways. 12 Yea, surely God will not do wickedly, neither will the Almighty pervert judgment.

+Monday 01-September, 2025 diff --git a/scripture/kjv/09/01/25/scripture.json b/scripture/kjv/09/01/25/scripture.json new file mode 100644 index 00000000..fdaba48a --- /dev/null +++ b/scripture/kjv/09/01/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Job", + "chapter": "34", + "date": "Monday 01-September, 2025", + "getbible": "https://getbible.life/kjv/Job/34/11-12", + "name": "Job 34:11-12", + "scripture": [ + { + "nr": "11", + "text": "For the work of a man shall he render unto him, and cause every man to find according to his ways." + }, + { + "nr": "12", + "text": "Yea, surely God will not do wickedly, neither will the Almighty pervert judgment." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11-12", + "version": "kjv" +} diff --git a/scripture/kjv/09/01/25/scripture.md b/scripture/kjv/09/01/25/scripture.md new file mode 100644 index 00000000..375df7ca --- /dev/null +++ b/scripture/kjv/09/01/25/scripture.md @@ -0,0 +1,5 @@ +**Job 34:11-12** + +11 For the work of a man shall he render unto him, and cause every man to find according to his ways. 12 Yea, surely God will not do wickedly, neither will the Almighty pervert judgment. + +[Monday 01-September, 2025](https://getbible.life/kjv/Job/34/11-12) diff --git a/scripture/kjv/09/01/25/scripture.tg b/scripture/kjv/09/01/25/scripture.tg new file mode 100644 index 00000000..33f74fad --- /dev/null +++ b/scripture/kjv/09/01/25/scripture.tg @@ -0,0 +1,4 @@ +Job 34:11-12 +11 For the work of a man shall he render unto him, and cause every man to find according to his ways. 12 Yea, surely God will not do wickedly, neither will the Almighty pervert judgment. + +Monday 01-September, 2025 diff --git a/scripture/kjv/09/01/25/scripture.tg.id b/scripture/kjv/09/01/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/01/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/01/25/scripture.today b/scripture/kjv/09/01/25/scripture.today new file mode 100644 index 00000000..5db83fa7 --- /dev/null +++ b/scripture/kjv/09/01/25/scripture.today @@ -0,0 +1 @@ +18 34:11-12 diff --git a/scripture/kjv/09/02/23/scripture.html b/scripture/kjv/09/02/23/scripture.html new file mode 100644 index 00000000..69d7ff04 --- /dev/null +++ b/scripture/kjv/09/02/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 3:3-4
+3 Let not mercy and truth forsake thee: bind them about thy neck; write them upon the table of thine heart: 4 So shalt thou find favour and good understanding in the sight of God and man.

+Saturday 02-September, 2023 diff --git a/scripture/kjv/09/02/23/scripture.json b/scripture/kjv/09/02/23/scripture.json new file mode 100644 index 00000000..ee8b5dc8 --- /dev/null +++ b/scripture/kjv/09/02/23/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Proverbs", + "chapter": "3", + "date": "Saturday 02-September, 2023", + "getbible": "https://getbible.life/kjv/Proverbs/3/3-4", + "name": "Proverbs 3:3-4", + "scripture": [ + { + "nr": "3", + "text": "Let not mercy and truth forsake thee: bind them about thy neck; write them upon the table of thine heart:" + }, + { + "nr": "4", + "text": "So shalt thou find favour and good understanding in the sight of God and man." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3-4", + "version": "kjv" +} diff --git a/scripture/kjv/09/02/23/scripture.md b/scripture/kjv/09/02/23/scripture.md new file mode 100644 index 00000000..10c328d2 --- /dev/null +++ b/scripture/kjv/09/02/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 3:3-4** + +3 Let not mercy and truth forsake thee: bind them about thy neck; write them upon the table of thine heart: 4 So shalt thou find favour and good understanding in the sight of God and man. + +[Saturday 02-September, 2023](https://getbible.life/kjv/Proverbs/3/3-4) diff --git a/scripture/kjv/09/02/23/scripture.tg b/scripture/kjv/09/02/23/scripture.tg new file mode 100644 index 00000000..4581cb97 --- /dev/null +++ b/scripture/kjv/09/02/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 3:3-4 +3 Let not mercy and truth forsake thee: bind them about thy neck; write them upon the table of thine heart: 4 So shalt thou find favour and good understanding in the sight of God and man. + +Saturday 02-September, 2023 diff --git a/scripture/kjv/09/02/23/scripture.tg.id b/scripture/kjv/09/02/23/scripture.tg.id new file mode 100644 index 00000000..373aef1e --- /dev/null +++ b/scripture/kjv/09/02/23/scripture.tg.id @@ -0,0 +1 @@ +1064 diff --git a/scripture/kjv/09/02/23/scripture.today b/scripture/kjv/09/02/23/scripture.today new file mode 100644 index 00000000..115fa914 --- /dev/null +++ b/scripture/kjv/09/02/23/scripture.today @@ -0,0 +1 @@ +20 3:3-4 diff --git a/scripture/kjv/09/02/24/scripture.html b/scripture/kjv/09/02/24/scripture.html new file mode 100644 index 00000000..5906978f --- /dev/null +++ b/scripture/kjv/09/02/24/scripture.html @@ -0,0 +1,3 @@ +John 1:37
+37 And the two disciples heard him speak, and they followed Jesus.

+Monday 02-September, 2024 diff --git a/scripture/kjv/09/02/24/scripture.json b/scripture/kjv/09/02/24/scripture.json new file mode 100644 index 00000000..3910c167 --- /dev/null +++ b/scripture/kjv/09/02/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "1", + "date": "Monday 02-September, 2024", + "getbible": "https://getbible.life/kjv/John/1/37", + "name": "John 1:37", + "scripture": [ + { + "nr": "37", + "text": "And the two disciples heard him speak, and they followed Jesus." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "37", + "version": "kjv" +} diff --git a/scripture/kjv/09/02/24/scripture.md b/scripture/kjv/09/02/24/scripture.md new file mode 100644 index 00000000..eb41369c --- /dev/null +++ b/scripture/kjv/09/02/24/scripture.md @@ -0,0 +1,5 @@ +**John 1:37** + +37 And the two disciples heard him speak, and they followed Jesus. + +[Monday 02-September, 2024](https://getbible.life/kjv/John/1/37) diff --git a/scripture/kjv/09/02/24/scripture.tg b/scripture/kjv/09/02/24/scripture.tg new file mode 100644 index 00000000..4ca144b0 --- /dev/null +++ b/scripture/kjv/09/02/24/scripture.tg @@ -0,0 +1,4 @@ +John 1:37 +37 And the two disciples heard him speak, and they followed Jesus. + +Monday 02-September, 2024 diff --git a/scripture/kjv/09/02/24/scripture.tg.id b/scripture/kjv/09/02/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/02/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/02/24/scripture.today b/scripture/kjv/09/02/24/scripture.today new file mode 100644 index 00000000..671f276f --- /dev/null +++ b/scripture/kjv/09/02/24/scripture.today @@ -0,0 +1 @@ +43 1:37 diff --git a/scripture/kjv/09/02/25/scripture.html b/scripture/kjv/09/02/25/scripture.html new file mode 100644 index 00000000..3b00be8a --- /dev/null +++ b/scripture/kjv/09/02/25/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 2:14
+14 Now thanks be unto God, which always causeth us to triumph in Christ, and maketh manifest the savour of his knowledge by us in every place.

+Tuesday 02-September, 2025 diff --git a/scripture/kjv/09/02/25/scripture.json b/scripture/kjv/09/02/25/scripture.json new file mode 100644 index 00000000..e23bb1ab --- /dev/null +++ b/scripture/kjv/09/02/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "2", + "date": "Tuesday 02-September, 2025", + "getbible": "https://getbible.life/kjv/2 Corinthians/2/14", + "name": "2 Corinthians 2:14", + "scripture": [ + { + "nr": "14", + "text": "Now thanks be unto God, which always causeth us to triumph in Christ, and maketh manifest the savour of his knowledge by us in every place." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/09/02/25/scripture.md b/scripture/kjv/09/02/25/scripture.md new file mode 100644 index 00000000..1cf120a6 --- /dev/null +++ b/scripture/kjv/09/02/25/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 2:14** + +14 Now thanks be unto God, which always causeth us to triumph in Christ, and maketh manifest the savour of his knowledge by us in every place. + +[Tuesday 02-September, 2025](https://getbible.life/kjv/2 Corinthians/2/14) diff --git a/scripture/kjv/09/02/25/scripture.tg b/scripture/kjv/09/02/25/scripture.tg new file mode 100644 index 00000000..78dd92c3 --- /dev/null +++ b/scripture/kjv/09/02/25/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 2:14 +14 Now thanks be unto God, which always causeth us to triumph in Christ, and maketh manifest the savour of his knowledge by us in every place. + +Tuesday 02-September, 2025 diff --git a/scripture/kjv/09/02/25/scripture.tg.id b/scripture/kjv/09/02/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/02/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/02/25/scripture.today b/scripture/kjv/09/02/25/scripture.today new file mode 100644 index 00000000..3523f150 --- /dev/null +++ b/scripture/kjv/09/02/25/scripture.today @@ -0,0 +1 @@ +47 2:14 diff --git a/scripture/kjv/09/03/23/scripture.html b/scripture/kjv/09/03/23/scripture.html new file mode 100644 index 00000000..ca698422 --- /dev/null +++ b/scripture/kjv/09/03/23/scripture.html @@ -0,0 +1,3 @@ +Daniel 9:18
+18 O my God, incline thine ear, and hear; open thine eyes, and behold our desolations, and the city which is called by thy name: for we do not present our supplications before thee for our righteousnesses, but for thy great mercies.

+Sunday 03-September, 2023 diff --git a/scripture/kjv/09/03/23/scripture.json b/scripture/kjv/09/03/23/scripture.json new file mode 100644 index 00000000..2b7473d0 --- /dev/null +++ b/scripture/kjv/09/03/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Daniel", + "chapter": "9", + "date": "Sunday 03-September, 2023", + "getbible": "https://getbible.life/kjv/Daniel/9/18", + "name": "Daniel 9:18", + "scripture": [ + { + "nr": "18", + "text": "O my God, incline thine ear, and hear; open thine eyes, and behold our desolations, and the city which is called by thy name: for we do not present our supplications before thee for our righteousnesses, but for thy great mercies." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18", + "version": "kjv" +} diff --git a/scripture/kjv/09/03/23/scripture.md b/scripture/kjv/09/03/23/scripture.md new file mode 100644 index 00000000..ba55a865 --- /dev/null +++ b/scripture/kjv/09/03/23/scripture.md @@ -0,0 +1,5 @@ +**Daniel 9:18** + +18 O my God, incline thine ear, and hear; open thine eyes, and behold our desolations, and the city which is called by thy name: for we do not present our supplications before thee for our righteousnesses, but for thy great mercies. + +[Sunday 03-September, 2023](https://getbible.life/kjv/Daniel/9/18) diff --git a/scripture/kjv/09/03/23/scripture.tg b/scripture/kjv/09/03/23/scripture.tg new file mode 100644 index 00000000..f6ebd35c --- /dev/null +++ b/scripture/kjv/09/03/23/scripture.tg @@ -0,0 +1,4 @@ +Daniel 9:18 +18 O my God, incline thine ear, and hear; open thine eyes, and behold our desolations, and the city which is called by thy name: for we do not present our supplications before thee for our righteousnesses, but for thy great mercies. + +Sunday 03-September, 2023 diff --git a/scripture/kjv/09/03/23/scripture.tg.id b/scripture/kjv/09/03/23/scripture.tg.id new file mode 100644 index 00000000..f7b4fb99 --- /dev/null +++ b/scripture/kjv/09/03/23/scripture.tg.id @@ -0,0 +1 @@ +1065 diff --git a/scripture/kjv/09/03/23/scripture.today b/scripture/kjv/09/03/23/scripture.today new file mode 100644 index 00000000..d7ca7086 --- /dev/null +++ b/scripture/kjv/09/03/23/scripture.today @@ -0,0 +1 @@ +27 9:18 diff --git a/scripture/kjv/09/03/24/scripture.html b/scripture/kjv/09/03/24/scripture.html new file mode 100644 index 00000000..4754a690 --- /dev/null +++ b/scripture/kjv/09/03/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 23:26
+26 My son, give me thine heart, and let thine eyes observe my ways.

+Tuesday 03-September, 2024 diff --git a/scripture/kjv/09/03/24/scripture.json b/scripture/kjv/09/03/24/scripture.json new file mode 100644 index 00000000..bf7dd121 --- /dev/null +++ b/scripture/kjv/09/03/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "23", + "date": "Tuesday 03-September, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/23/26", + "name": "Proverbs 23:26", + "scripture": [ + { + "nr": "26", + "text": "My son, give me thine heart, and let thine eyes observe my ways." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "26", + "version": "kjv" +} diff --git a/scripture/kjv/09/03/24/scripture.md b/scripture/kjv/09/03/24/scripture.md new file mode 100644 index 00000000..1e5d7cb9 --- /dev/null +++ b/scripture/kjv/09/03/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 23:26** + +26 My son, give me thine heart, and let thine eyes observe my ways. + +[Tuesday 03-September, 2024](https://getbible.life/kjv/Proverbs/23/26) diff --git a/scripture/kjv/09/03/24/scripture.tg b/scripture/kjv/09/03/24/scripture.tg new file mode 100644 index 00000000..d95d0681 --- /dev/null +++ b/scripture/kjv/09/03/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 23:26 +26 My son, give me thine heart, and let thine eyes observe my ways. + +Tuesday 03-September, 2024 diff --git a/scripture/kjv/09/03/24/scripture.tg.id b/scripture/kjv/09/03/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/03/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/03/24/scripture.today b/scripture/kjv/09/03/24/scripture.today new file mode 100644 index 00000000..6cdf3229 --- /dev/null +++ b/scripture/kjv/09/03/24/scripture.today @@ -0,0 +1 @@ +20 23:26 diff --git a/scripture/kjv/09/03/25/scripture.html b/scripture/kjv/09/03/25/scripture.html new file mode 100644 index 00000000..250cd0fa --- /dev/null +++ b/scripture/kjv/09/03/25/scripture.html @@ -0,0 +1,3 @@ +Hosea 8:14
+14 For Israel hath forgotten his Maker, and buildeth temples; and Judah hath multiplied fenced cities: but I will send a fire upon his cities, and it shall devour the palaces thereof.

+Wednesday 03-September, 2025 diff --git a/scripture/kjv/09/03/25/scripture.json b/scripture/kjv/09/03/25/scripture.json new file mode 100644 index 00000000..a42bcd71 --- /dev/null +++ b/scripture/kjv/09/03/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Hosea", + "chapter": "8", + "date": "Wednesday 03-September, 2025", + "getbible": "https://getbible.life/kjv/Hosea/8/14", + "name": "Hosea 8:14", + "scripture": [ + { + "nr": "14", + "text": "For Israel hath forgotten his Maker, and buildeth temples; and Judah hath multiplied fenced cities: but I will send a fire upon his cities, and it shall devour the palaces thereof. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/09/03/25/scripture.md b/scripture/kjv/09/03/25/scripture.md new file mode 100644 index 00000000..fa6243b1 --- /dev/null +++ b/scripture/kjv/09/03/25/scripture.md @@ -0,0 +1,5 @@ +**Hosea 8:14** + +14 For Israel hath forgotten his Maker, and buildeth temples; and Judah hath multiplied fenced cities: but I will send a fire upon his cities, and it shall devour the palaces thereof. + +[Wednesday 03-September, 2025](https://getbible.life/kjv/Hosea/8/14) diff --git a/scripture/kjv/09/03/25/scripture.tg b/scripture/kjv/09/03/25/scripture.tg new file mode 100644 index 00000000..0d98c434 --- /dev/null +++ b/scripture/kjv/09/03/25/scripture.tg @@ -0,0 +1,4 @@ +Hosea 8:14 +14 For Israel hath forgotten his Maker, and buildeth temples; and Judah hath multiplied fenced cities: but I will send a fire upon his cities, and it shall devour the palaces thereof. + +Wednesday 03-September, 2025 diff --git a/scripture/kjv/09/03/25/scripture.tg.id b/scripture/kjv/09/03/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/03/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/03/25/scripture.today b/scripture/kjv/09/03/25/scripture.today new file mode 100644 index 00000000..a58141ca --- /dev/null +++ b/scripture/kjv/09/03/25/scripture.today @@ -0,0 +1 @@ +28 8:14 diff --git a/scripture/kjv/09/04/23/scripture.html b/scripture/kjv/09/04/23/scripture.html new file mode 100644 index 00000000..af5e6057 --- /dev/null +++ b/scripture/kjv/09/04/23/scripture.html @@ -0,0 +1,3 @@ +Acts 1:14
+14 These all continued with one accord in prayer and supplication, with the women, and Mary the mother of Jesus, and with his brethren.

+Monday 04-September, 2023 diff --git a/scripture/kjv/09/04/23/scripture.json b/scripture/kjv/09/04/23/scripture.json new file mode 100644 index 00000000..ec72cf91 --- /dev/null +++ b/scripture/kjv/09/04/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Acts", + "chapter": "1", + "date": "Monday 04-September, 2023", + "getbible": "https://getbible.life/kjv/Acts/1/14", + "name": "Acts 1:14", + "scripture": [ + { + "nr": "14", + "text": "These all continued with one accord in prayer and supplication, with the women, and Mary the mother of Jesus, and with his brethren." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/09/04/23/scripture.md b/scripture/kjv/09/04/23/scripture.md new file mode 100644 index 00000000..b4a98c34 --- /dev/null +++ b/scripture/kjv/09/04/23/scripture.md @@ -0,0 +1,5 @@ +**Acts 1:14** + +14 These all continued with one accord in prayer and supplication, with the women, and Mary the mother of Jesus, and with his brethren. + +[Monday 04-September, 2023](https://getbible.life/kjv/Acts/1/14) diff --git a/scripture/kjv/09/04/23/scripture.tg b/scripture/kjv/09/04/23/scripture.tg new file mode 100644 index 00000000..9561af75 --- /dev/null +++ b/scripture/kjv/09/04/23/scripture.tg @@ -0,0 +1,4 @@ +Acts 1:14 +14 These all continued with one accord in prayer and supplication, with the women, and Mary the mother of Jesus, and with his brethren. + +Monday 04-September, 2023 diff --git a/scripture/kjv/09/04/23/scripture.tg.id b/scripture/kjv/09/04/23/scripture.tg.id new file mode 100644 index 00000000..00146f25 --- /dev/null +++ b/scripture/kjv/09/04/23/scripture.tg.id @@ -0,0 +1 @@ +1066 diff --git a/scripture/kjv/09/04/23/scripture.today b/scripture/kjv/09/04/23/scripture.today new file mode 100644 index 00000000..cfb40902 --- /dev/null +++ b/scripture/kjv/09/04/23/scripture.today @@ -0,0 +1 @@ +44 1:14 diff --git a/scripture/kjv/09/04/24/scripture.html b/scripture/kjv/09/04/24/scripture.html new file mode 100644 index 00000000..8e5a254d --- /dev/null +++ b/scripture/kjv/09/04/24/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 14:20
+20 Though Noah, Daniel, and Job, were in it, as I live, saith the Lord God, they shall deliver neither son nor daughter; they shall but deliver their own souls by their righteousness.

+Wednesday 04-September, 2024 diff --git a/scripture/kjv/09/04/24/scripture.json b/scripture/kjv/09/04/24/scripture.json new file mode 100644 index 00000000..05d19944 --- /dev/null +++ b/scripture/kjv/09/04/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ezekiel", + "chapter": "14", + "date": "Wednesday 04-September, 2024", + "getbible": "https://getbible.life/kjv/Ezekiel/14/20", + "name": "Ezekiel 14:20", + "scripture": [ + { + "nr": "20", + "text": "Though Noah, Daniel, and Job, were in it, as I live, saith the Lord God, they shall deliver neither son nor daughter; they shall but deliver their own souls by their righteousness." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20", + "version": "kjv" +} diff --git a/scripture/kjv/09/04/24/scripture.md b/scripture/kjv/09/04/24/scripture.md new file mode 100644 index 00000000..2a74f285 --- /dev/null +++ b/scripture/kjv/09/04/24/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 14:20** + +20 Though Noah, Daniel, and Job, were in it, as I live, saith the Lord God, they shall deliver neither son nor daughter; they shall but deliver their own souls by their righteousness. + +[Wednesday 04-September, 2024](https://getbible.life/kjv/Ezekiel/14/20) diff --git a/scripture/kjv/09/04/24/scripture.tg b/scripture/kjv/09/04/24/scripture.tg new file mode 100644 index 00000000..ece58626 --- /dev/null +++ b/scripture/kjv/09/04/24/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 14:20 +20 Though Noah, Daniel, and Job, were in it, as I live, saith the Lord God, they shall deliver neither son nor daughter; they shall but deliver their own souls by their righteousness. + +Wednesday 04-September, 2024 diff --git a/scripture/kjv/09/04/24/scripture.tg.id b/scripture/kjv/09/04/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/04/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/04/24/scripture.today b/scripture/kjv/09/04/24/scripture.today new file mode 100644 index 00000000..7ae7a934 --- /dev/null +++ b/scripture/kjv/09/04/24/scripture.today @@ -0,0 +1 @@ +26 14:20 diff --git a/scripture/kjv/09/04/25/scripture.html b/scripture/kjv/09/04/25/scripture.html new file mode 100644 index 00000000..3cfc578c --- /dev/null +++ b/scripture/kjv/09/04/25/scripture.html @@ -0,0 +1,3 @@ +Matthew 6:1-4
+1 Take heed that ye do not your alms before men, to be seen of them: otherwise ye have no reward of your Father which is in heaven. 2 Therefore when thou doest thine alms, do not sound a trumpet before thee, as the hypocrites do in the synagogues and in the streets, that they may have glory of men. Verily I say unto you, They have their reward. 3 But when thou doest alms, let not thy left hand know what thy right hand doeth: 4 That thine alms may be in secret: and thy Father which seeth in secret himself shall reward thee openly.

+Thursday 04-September, 2025 diff --git a/scripture/kjv/09/04/25/scripture.json b/scripture/kjv/09/04/25/scripture.json new file mode 100644 index 00000000..08fb6911 --- /dev/null +++ b/scripture/kjv/09/04/25/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "Matthew", + "chapter": "6", + "date": "Thursday 04-September, 2025", + "getbible": "https://getbible.life/kjv/Matthew/6/1-4", + "name": "Matthew 6:1-4", + "scripture": [ + { + "nr": "1", + "text": "Take heed that ye do not your alms before men, to be seen of them: otherwise ye have no reward of your Father which is in heaven." + }, + { + "nr": "2", + "text": "Therefore when thou doest thine alms, do not sound a trumpet before thee, as the hypocrites do in the synagogues and in the streets, that they may have glory of men. Verily I say unto you, They have their reward." + }, + { + "nr": "3", + "text": "But when thou doest alms, let not thy left hand know what thy right hand doeth:" + }, + { + "nr": "4", + "text": "That thine alms may be in secret: and thy Father which seeth in secret himself shall reward thee openly." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-4", + "version": "kjv" +} diff --git a/scripture/kjv/09/04/25/scripture.md b/scripture/kjv/09/04/25/scripture.md new file mode 100644 index 00000000..2c80ef62 --- /dev/null +++ b/scripture/kjv/09/04/25/scripture.md @@ -0,0 +1,5 @@ +**Matthew 6:1-4** + +1 Take heed that ye do not your alms before men, to be seen of them: otherwise ye have no reward of your Father which is in heaven. 2 Therefore when thou doest thine alms, do not sound a trumpet before thee, as the hypocrites do in the synagogues and in the streets, that they may have glory of men. Verily I say unto you, They have their reward. 3 But when thou doest alms, let not thy left hand know what thy right hand doeth: 4 That thine alms may be in secret: and thy Father which seeth in secret himself shall reward thee openly. + +[Thursday 04-September, 2025](https://getbible.life/kjv/Matthew/6/1-4) diff --git a/scripture/kjv/09/04/25/scripture.tg b/scripture/kjv/09/04/25/scripture.tg new file mode 100644 index 00000000..b8be2e85 --- /dev/null +++ b/scripture/kjv/09/04/25/scripture.tg @@ -0,0 +1,4 @@ +Matthew 6:1-4 +1 Take heed that ye do not your alms before men, to be seen of them: otherwise ye have no reward of your Father which is in heaven. 2 Therefore when thou doest thine alms, do not sound a trumpet before thee, as the hypocrites do in the synagogues and in the streets, that they may have glory of men. Verily I say unto you, They have their reward. 3 But when thou doest alms, let not thy left hand know what thy right hand doeth: 4 That thine alms may be in secret: and thy Father which seeth in secret himself shall reward thee openly. + +Thursday 04-September, 2025 diff --git a/scripture/kjv/09/04/25/scripture.tg.id b/scripture/kjv/09/04/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/04/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/04/25/scripture.today b/scripture/kjv/09/04/25/scripture.today new file mode 100644 index 00000000..4f46ddbc --- /dev/null +++ b/scripture/kjv/09/04/25/scripture.today @@ -0,0 +1 @@ +40 6:1-4 diff --git a/scripture/kjv/09/05/23/scripture.html b/scripture/kjv/09/05/23/scripture.html new file mode 100644 index 00000000..cb6bd177 --- /dev/null +++ b/scripture/kjv/09/05/23/scripture.html @@ -0,0 +1,3 @@ +John 13:5
+5 After that he poureth water into a bason, and began to wash the disciples’ feet, and to wipe them with the towel wherewith he was girded.

+Tuesday 05-September, 2023 diff --git a/scripture/kjv/09/05/23/scripture.json b/scripture/kjv/09/05/23/scripture.json new file mode 100644 index 00000000..60dfe5be --- /dev/null +++ b/scripture/kjv/09/05/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "13", + "date": "Tuesday 05-September, 2023", + "getbible": "https://getbible.life/kjv/John/13/5", + "name": "John 13:5", + "scripture": [ + { + "nr": "5", + "text": "After that he poureth water into a bason, and began to wash the disciples’ feet, and to wipe them with the towel wherewith he was girded." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5", + "version": "kjv" +} diff --git a/scripture/kjv/09/05/23/scripture.md b/scripture/kjv/09/05/23/scripture.md new file mode 100644 index 00000000..1679568b --- /dev/null +++ b/scripture/kjv/09/05/23/scripture.md @@ -0,0 +1,5 @@ +**John 13:5** + +5 After that he poureth water into a bason, and began to wash the disciples’ feet, and to wipe them with the towel wherewith he was girded. + +[Tuesday 05-September, 2023](https://getbible.life/kjv/John/13/5) diff --git a/scripture/kjv/09/05/23/scripture.tg b/scripture/kjv/09/05/23/scripture.tg new file mode 100644 index 00000000..921ce2e9 --- /dev/null +++ b/scripture/kjv/09/05/23/scripture.tg @@ -0,0 +1,4 @@ +John 13:5 +5 After that he poureth water into a bason, and began to wash the disciples’ feet, and to wipe them with the towel wherewith he was girded. + +Tuesday 05-September, 2023 diff --git a/scripture/kjv/09/05/23/scripture.tg.id b/scripture/kjv/09/05/23/scripture.tg.id new file mode 100644 index 00000000..5ab2c45b --- /dev/null +++ b/scripture/kjv/09/05/23/scripture.tg.id @@ -0,0 +1 @@ +1067 diff --git a/scripture/kjv/09/05/23/scripture.today b/scripture/kjv/09/05/23/scripture.today new file mode 100644 index 00000000..e7241177 --- /dev/null +++ b/scripture/kjv/09/05/23/scripture.today @@ -0,0 +1 @@ +43 13:5 diff --git a/scripture/kjv/09/05/24/scripture.html b/scripture/kjv/09/05/24/scripture.html new file mode 100644 index 00000000..259d2173 --- /dev/null +++ b/scripture/kjv/09/05/24/scripture.html @@ -0,0 +1,3 @@ +1 Peter 2:18-23
+18 Servants, be subject to your masters with all fear; not only to the good and gentle, but also to the froward. 19 For this is thankworthy, if a man for conscience toward God endure grief, suffering wrongfully. 20 For what glory is it, if, when ye be buffeted for your faults, ye shall take it patiently? but if, when ye do well, and suffer for it, ye take it patiently, this is acceptable with God. 21 For even hereunto were ye called: because Christ also suffered for us, leaving us an example, that ye should follow his steps: 22 Who did no sin, neither was guile found in his mouth: 23 Who, when he was reviled, reviled not again; when he suffered, he threatened not; but committed himself to him that judgeth righteously:

+Thursday 05-September, 2024 diff --git a/scripture/kjv/09/05/24/scripture.json b/scripture/kjv/09/05/24/scripture.json new file mode 100644 index 00000000..c9e29b6b --- /dev/null +++ b/scripture/kjv/09/05/24/scripture.json @@ -0,0 +1,37 @@ +{ + "book": "1 Peter", + "chapter": "2", + "date": "Thursday 05-September, 2024", + "getbible": "https://getbible.life/kjv/1 Peter/2/18-23", + "name": "1 Peter 2:18-23", + "scripture": [ + { + "nr": "18", + "text": "Servants, be subject to your masters with all fear; not only to the good and gentle, but also to the froward." + }, + { + "nr": "19", + "text": "For this is thankworthy, if a man for conscience toward God endure grief, suffering wrongfully." + }, + { + "nr": "20", + "text": "For what glory is it, if, when ye be buffeted for your faults, ye shall take it patiently? but if, when ye do well, and suffer for it, ye take it patiently, this is acceptable with God." + }, + { + "nr": "21", + "text": "For even hereunto were ye called: because Christ also suffered for us, leaving us an example, that ye should follow his steps:" + }, + { + "nr": "22", + "text": "Who did no sin, neither was guile found in his mouth:" + }, + { + "nr": "23", + "text": "Who, when he was reviled, reviled not again; when he suffered, he threatened not; but committed himself to him that judgeth righteously:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18-23", + "version": "kjv" +} diff --git a/scripture/kjv/09/05/24/scripture.md b/scripture/kjv/09/05/24/scripture.md new file mode 100644 index 00000000..ab4f5ede --- /dev/null +++ b/scripture/kjv/09/05/24/scripture.md @@ -0,0 +1,5 @@ +**1 Peter 2:18-23** + +18 Servants, be subject to your masters with all fear; not only to the good and gentle, but also to the froward. 19 For this is thankworthy, if a man for conscience toward God endure grief, suffering wrongfully. 20 For what glory is it, if, when ye be buffeted for your faults, ye shall take it patiently? but if, when ye do well, and suffer for it, ye take it patiently, this is acceptable with God. 21 For even hereunto were ye called: because Christ also suffered for us, leaving us an example, that ye should follow his steps: 22 Who did no sin, neither was guile found in his mouth: 23 Who, when he was reviled, reviled not again; when he suffered, he threatened not; but committed himself to him that judgeth righteously: + +[Thursday 05-September, 2024](https://getbible.life/kjv/1 Peter/2/18-23) diff --git a/scripture/kjv/09/05/24/scripture.tg b/scripture/kjv/09/05/24/scripture.tg new file mode 100644 index 00000000..74d9040a --- /dev/null +++ b/scripture/kjv/09/05/24/scripture.tg @@ -0,0 +1,4 @@ +1 Peter 2:18-23 +18 Servants, be subject to your masters with all fear; not only to the good and gentle, but also to the froward. 19 For this is thankworthy, if a man for conscience toward God endure grief, suffering wrongfully. 20 For what glory is it, if, when ye be buffeted for your faults, ye shall take it patiently? but if, when ye do well, and suffer for it, ye take it patiently, this is acceptable with God. 21 For even hereunto were ye called: because Christ also suffered for us, leaving us an example, that ye should follow his steps: 22 Who did no sin, neither was guile found in his mouth: 23 Who, when he was reviled, reviled not again; when he suffered, he threatened not; but committed himself to him that judgeth righteously: + +Thursday 05-September, 2024 diff --git a/scripture/kjv/09/05/24/scripture.tg.id b/scripture/kjv/09/05/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/05/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/05/24/scripture.today b/scripture/kjv/09/05/24/scripture.today new file mode 100644 index 00000000..0abef1fb --- /dev/null +++ b/scripture/kjv/09/05/24/scripture.today @@ -0,0 +1 @@ +60 2:18-23 diff --git a/scripture/kjv/09/05/25/scripture.html b/scripture/kjv/09/05/25/scripture.html new file mode 100644 index 00000000..d34f5e82 --- /dev/null +++ b/scripture/kjv/09/05/25/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 5:9
+9 Wherefore we labour, that, whether present or absent, we may be accepted of him.

+Friday 05-September, 2025 diff --git a/scripture/kjv/09/05/25/scripture.json b/scripture/kjv/09/05/25/scripture.json new file mode 100644 index 00000000..e91d9adf --- /dev/null +++ b/scripture/kjv/09/05/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "5", + "date": "Friday 05-September, 2025", + "getbible": "https://getbible.life/kjv/2 Corinthians/5/9", + "name": "2 Corinthians 5:9", + "scripture": [ + { + "nr": "9", + "text": "Wherefore we labour, that, whether present or absent, we may be accepted of him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9", + "version": "kjv" +} diff --git a/scripture/kjv/09/05/25/scripture.md b/scripture/kjv/09/05/25/scripture.md new file mode 100644 index 00000000..e47abec5 --- /dev/null +++ b/scripture/kjv/09/05/25/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 5:9** + +9 Wherefore we labour, that, whether present or absent, we may be accepted of him. + +[Friday 05-September, 2025](https://getbible.life/kjv/2 Corinthians/5/9) diff --git a/scripture/kjv/09/05/25/scripture.tg b/scripture/kjv/09/05/25/scripture.tg new file mode 100644 index 00000000..a08731c2 --- /dev/null +++ b/scripture/kjv/09/05/25/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 5:9 +9 Wherefore we labour, that, whether present or absent, we may be accepted of him. + +Friday 05-September, 2025 diff --git a/scripture/kjv/09/05/25/scripture.tg.id b/scripture/kjv/09/05/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/05/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/05/25/scripture.today b/scripture/kjv/09/05/25/scripture.today new file mode 100644 index 00000000..c72e2523 --- /dev/null +++ b/scripture/kjv/09/05/25/scripture.today @@ -0,0 +1 @@ +47 5:9 diff --git a/scripture/kjv/09/06/23/scripture.html b/scripture/kjv/09/06/23/scripture.html new file mode 100644 index 00000000..f7c56b93 --- /dev/null +++ b/scripture/kjv/09/06/23/scripture.html @@ -0,0 +1,3 @@ +Deuteronomy 33:25-29
+25 Thy shoes shall be iron and brass; and as thy days, so shall thy strength be. 26 There is none like unto the God of Jeshurun, who rideth upon the heaven in thy help, and in his excellency on the sky. 27 The eternal God is thy refuge, and underneath are the everlasting arms: and he shall thrust out the enemy from before thee; and shall say, Destroy them. 28 Israel then shall dwell in safety alone: the fountain of Jacob shall be upon a land of corn and wine; also his heavens shall drop down dew. 29 Happy art thou, O Israel: who is like unto thee, O people saved by the Lord, the shield of thy help, and who is the sword of thy excellency! and thine enemies shall be found liars unto thee; and thou shalt tread upon their high places.

+Wednesday 06-September, 2023 diff --git a/scripture/kjv/09/06/23/scripture.json b/scripture/kjv/09/06/23/scripture.json new file mode 100644 index 00000000..e3a7ac07 --- /dev/null +++ b/scripture/kjv/09/06/23/scripture.json @@ -0,0 +1,33 @@ +{ + "book": "Deuteronomy", + "chapter": "33", + "date": "Wednesday 06-September, 2023", + "getbible": "https://getbible.life/kjv/Deuteronomy/33/25-29", + "name": "Deuteronomy 33:25-29", + "scripture": [ + { + "nr": "25", + "text": "Thy shoes shall be iron and brass; and as thy days, so shall thy strength be." + }, + { + "nr": "26", + "text": "There is none like unto the God of Jeshurun, who rideth upon the heaven in thy help, and in his excellency on the sky." + }, + { + "nr": "27", + "text": "The eternal God is thy refuge, and underneath are the everlasting arms: and he shall thrust out the enemy from before thee; and shall say, Destroy them." + }, + { + "nr": "28", + "text": "Israel then shall dwell in safety alone: the fountain of Jacob shall be upon a land of corn and wine; also his heavens shall drop down dew." + }, + { + "nr": "29", + "text": "Happy art thou, O Israel: who is like unto thee, O people saved by the Lord, the shield of thy help, and who is the sword of thy excellency! and thine enemies shall be found liars unto thee; and thou shalt tread upon their high places. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "25-29", + "version": "kjv" +} diff --git a/scripture/kjv/09/06/23/scripture.md b/scripture/kjv/09/06/23/scripture.md new file mode 100644 index 00000000..a21e5812 --- /dev/null +++ b/scripture/kjv/09/06/23/scripture.md @@ -0,0 +1,5 @@ +**Deuteronomy 33:25-29** + +25 Thy shoes shall be iron and brass; and as thy days, so shall thy strength be. 26 There is none like unto the God of Jeshurun, who rideth upon the heaven in thy help, and in his excellency on the sky. 27 The eternal God is thy refuge, and underneath are the everlasting arms: and he shall thrust out the enemy from before thee; and shall say, Destroy them. 28 Israel then shall dwell in safety alone: the fountain of Jacob shall be upon a land of corn and wine; also his heavens shall drop down dew. 29 Happy art thou, O Israel: who is like unto thee, O people saved by the Lord, the shield of thy help, and who is the sword of thy excellency! and thine enemies shall be found liars unto thee; and thou shalt tread upon their high places. + +[Wednesday 06-September, 2023](https://getbible.life/kjv/Deuteronomy/33/25-29) diff --git a/scripture/kjv/09/06/23/scripture.tg b/scripture/kjv/09/06/23/scripture.tg new file mode 100644 index 00000000..9847f54a --- /dev/null +++ b/scripture/kjv/09/06/23/scripture.tg @@ -0,0 +1,4 @@ +Deuteronomy 33:25-29 +25 Thy shoes shall be iron and brass; and as thy days, so shall thy strength be. 26 There is none like unto the God of Jeshurun, who rideth upon the heaven in thy help, and in his excellency on the sky. 27 The eternal God is thy refuge, and underneath are the everlasting arms: and he shall thrust out the enemy from before thee; and shall say, Destroy them. 28 Israel then shall dwell in safety alone: the fountain of Jacob shall be upon a land of corn and wine; also his heavens shall drop down dew. 29 Happy art thou, O Israel: who is like unto thee, O people saved by the Lord, the shield of thy help, and who is the sword of thy excellency! and thine enemies shall be found liars unto thee; and thou shalt tread upon their high places. + +Wednesday 06-September, 2023 diff --git a/scripture/kjv/09/06/23/scripture.tg.id b/scripture/kjv/09/06/23/scripture.tg.id new file mode 100644 index 00000000..b9650fd8 --- /dev/null +++ b/scripture/kjv/09/06/23/scripture.tg.id @@ -0,0 +1 @@ +1068 diff --git a/scripture/kjv/09/06/23/scripture.today b/scripture/kjv/09/06/23/scripture.today new file mode 100644 index 00000000..c89cff99 --- /dev/null +++ b/scripture/kjv/09/06/23/scripture.today @@ -0,0 +1 @@ +5 33:25-29 diff --git a/scripture/kjv/09/06/24/scripture.html b/scripture/kjv/09/06/24/scripture.html new file mode 100644 index 00000000..4c9b6c98 --- /dev/null +++ b/scripture/kjv/09/06/24/scripture.html @@ -0,0 +1,3 @@ +1 Timothy 5:6
+6 But she that liveth in pleasure is dead while she liveth.

+Friday 06-September, 2024 diff --git a/scripture/kjv/09/06/24/scripture.json b/scripture/kjv/09/06/24/scripture.json new file mode 100644 index 00000000..1e5d2d50 --- /dev/null +++ b/scripture/kjv/09/06/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Timothy", + "chapter": "5", + "date": "Friday 06-September, 2024", + "getbible": "https://getbible.life/kjv/1 Timothy/5/6", + "name": "1 Timothy 5:6", + "scripture": [ + { + "nr": "6", + "text": "But she that liveth in pleasure is dead while she liveth." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6", + "version": "kjv" +} diff --git a/scripture/kjv/09/06/24/scripture.md b/scripture/kjv/09/06/24/scripture.md new file mode 100644 index 00000000..74f084e4 --- /dev/null +++ b/scripture/kjv/09/06/24/scripture.md @@ -0,0 +1,5 @@ +**1 Timothy 5:6** + +6 But she that liveth in pleasure is dead while she liveth. + +[Friday 06-September, 2024](https://getbible.life/kjv/1 Timothy/5/6) diff --git a/scripture/kjv/09/06/24/scripture.tg b/scripture/kjv/09/06/24/scripture.tg new file mode 100644 index 00000000..50fa9bc3 --- /dev/null +++ b/scripture/kjv/09/06/24/scripture.tg @@ -0,0 +1,4 @@ +1 Timothy 5:6 +6 But she that liveth in pleasure is dead while she liveth. + +Friday 06-September, 2024 diff --git a/scripture/kjv/09/06/24/scripture.tg.id b/scripture/kjv/09/06/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/06/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/06/24/scripture.today b/scripture/kjv/09/06/24/scripture.today new file mode 100644 index 00000000..d0b781d5 --- /dev/null +++ b/scripture/kjv/09/06/24/scripture.today @@ -0,0 +1 @@ +54 5:6 diff --git a/scripture/kjv/09/06/25/scripture.html b/scripture/kjv/09/06/25/scripture.html new file mode 100644 index 00000000..bff30db9 --- /dev/null +++ b/scripture/kjv/09/06/25/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 4:10
+10 Always bearing about in the body the dying of the Lord Jesus, that the life also of Jesus might be made manifest in our body.

+Saturday 06-September, 2025 diff --git a/scripture/kjv/09/06/25/scripture.json b/scripture/kjv/09/06/25/scripture.json new file mode 100644 index 00000000..3852ebbf --- /dev/null +++ b/scripture/kjv/09/06/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "4", + "date": "Saturday 06-September, 2025", + "getbible": "https://getbible.life/kjv/2 Corinthians/4/10", + "name": "2 Corinthians 4:10", + "scripture": [ + { + "nr": "10", + "text": "Always bearing about in the body the dying of the Lord Jesus, that the life also of Jesus might be made manifest in our body." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/09/06/25/scripture.md b/scripture/kjv/09/06/25/scripture.md new file mode 100644 index 00000000..3e20d5d7 --- /dev/null +++ b/scripture/kjv/09/06/25/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 4:10** + +10 Always bearing about in the body the dying of the Lord Jesus, that the life also of Jesus might be made manifest in our body. + +[Saturday 06-September, 2025](https://getbible.life/kjv/2 Corinthians/4/10) diff --git a/scripture/kjv/09/06/25/scripture.tg b/scripture/kjv/09/06/25/scripture.tg new file mode 100644 index 00000000..a3a448ed --- /dev/null +++ b/scripture/kjv/09/06/25/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 4:10 +10 Always bearing about in the body the dying of the Lord Jesus, that the life also of Jesus might be made manifest in our body. + +Saturday 06-September, 2025 diff --git a/scripture/kjv/09/06/25/scripture.tg.id b/scripture/kjv/09/06/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/06/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/06/25/scripture.today b/scripture/kjv/09/06/25/scripture.today new file mode 100644 index 00000000..982171e5 --- /dev/null +++ b/scripture/kjv/09/06/25/scripture.today @@ -0,0 +1 @@ +47 4:10 diff --git a/scripture/kjv/09/07/23/scripture.html b/scripture/kjv/09/07/23/scripture.html new file mode 100644 index 00000000..37d7955f --- /dev/null +++ b/scripture/kjv/09/07/23/scripture.html @@ -0,0 +1,3 @@ +Hebrews 12:2-4
+2 Looking unto Jesus the author and finisher of our faith; who for the joy that was set before him endured the cross, despising the shame, and is set down at the right hand of the throne of God. 3 For consider him that endured such contradiction of sinners against himself, lest ye be wearied and faint in your minds. 4 Ye have not yet resisted unto blood, striving against sin.

+Thursday 07-September, 2023 diff --git a/scripture/kjv/09/07/23/scripture.json b/scripture/kjv/09/07/23/scripture.json new file mode 100644 index 00000000..bf1e5afe --- /dev/null +++ b/scripture/kjv/09/07/23/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Hebrews", + "chapter": "12", + "date": "Thursday 07-September, 2023", + "getbible": "https://getbible.life/kjv/Hebrews/12/2-4", + "name": "Hebrews 12:2-4", + "scripture": [ + { + "nr": "2", + "text": "Looking unto Jesus the author and finisher of our faith; who for the joy that was set before him endured the cross, despising the shame, and is set down at the right hand of the throne of God." + }, + { + "nr": "3", + "text": "For consider him that endured such contradiction of sinners against himself, lest ye be wearied and faint in your minds." + }, + { + "nr": "4", + "text": "Ye have not yet resisted unto blood, striving against sin." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "2-4", + "version": "kjv" +} diff --git a/scripture/kjv/09/07/23/scripture.md b/scripture/kjv/09/07/23/scripture.md new file mode 100644 index 00000000..174a640a --- /dev/null +++ b/scripture/kjv/09/07/23/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 12:2-4** + +2 Looking unto Jesus the author and finisher of our faith; who for the joy that was set before him endured the cross, despising the shame, and is set down at the right hand of the throne of God. 3 For consider him that endured such contradiction of sinners against himself, lest ye be wearied and faint in your minds. 4 Ye have not yet resisted unto blood, striving against sin. + +[Thursday 07-September, 2023](https://getbible.life/kjv/Hebrews/12/2-4) diff --git a/scripture/kjv/09/07/23/scripture.tg b/scripture/kjv/09/07/23/scripture.tg new file mode 100644 index 00000000..225f641f --- /dev/null +++ b/scripture/kjv/09/07/23/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 12:2-4 +2 Looking unto Jesus the author and finisher of our faith; who for the joy that was set before him endured the cross, despising the shame, and is set down at the right hand of the throne of God. 3 For consider him that endured such contradiction of sinners against himself, lest ye be wearied and faint in your minds. 4 Ye have not yet resisted unto blood, striving against sin. + +Thursday 07-September, 2023 diff --git a/scripture/kjv/09/07/23/scripture.tg.id b/scripture/kjv/09/07/23/scripture.tg.id new file mode 100644 index 00000000..48c6edb2 --- /dev/null +++ b/scripture/kjv/09/07/23/scripture.tg.id @@ -0,0 +1 @@ +1069 diff --git a/scripture/kjv/09/07/23/scripture.today b/scripture/kjv/09/07/23/scripture.today new file mode 100644 index 00000000..2972fa23 --- /dev/null +++ b/scripture/kjv/09/07/23/scripture.today @@ -0,0 +1 @@ +58 12:2-4 diff --git a/scripture/kjv/09/07/24/scripture.html b/scripture/kjv/09/07/24/scripture.html new file mode 100644 index 00000000..6faabeb5 --- /dev/null +++ b/scripture/kjv/09/07/24/scripture.html @@ -0,0 +1,3 @@ +James 1:26
+26 If any man among you seem to be religious, and bridleth not his tongue, but deceiveth his own heart, this man’s religion is vain.

+Saturday 07-September, 2024 diff --git a/scripture/kjv/09/07/24/scripture.json b/scripture/kjv/09/07/24/scripture.json new file mode 100644 index 00000000..40a2e756 --- /dev/null +++ b/scripture/kjv/09/07/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "James", + "chapter": "1", + "date": "Saturday 07-September, 2024", + "getbible": "https://getbible.life/kjv/James/1/26", + "name": "James 1:26", + "scripture": [ + { + "nr": "26", + "text": "If any man among you seem to be religious, and bridleth not his tongue, but deceiveth his own heart, this man’s religion is vain." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "26", + "version": "kjv" +} diff --git a/scripture/kjv/09/07/24/scripture.md b/scripture/kjv/09/07/24/scripture.md new file mode 100644 index 00000000..be281731 --- /dev/null +++ b/scripture/kjv/09/07/24/scripture.md @@ -0,0 +1,5 @@ +**James 1:26** + +26 If any man among you seem to be religious, and bridleth not his tongue, but deceiveth his own heart, this man’s religion is vain. + +[Saturday 07-September, 2024](https://getbible.life/kjv/James/1/26) diff --git a/scripture/kjv/09/07/24/scripture.tg b/scripture/kjv/09/07/24/scripture.tg new file mode 100644 index 00000000..62f83dbf --- /dev/null +++ b/scripture/kjv/09/07/24/scripture.tg @@ -0,0 +1,4 @@ +James 1:26 +26 If any man among you seem to be religious, and bridleth not his tongue, but deceiveth his own heart, this man’s religion is vain. + +Saturday 07-September, 2024 diff --git a/scripture/kjv/09/07/24/scripture.tg.id b/scripture/kjv/09/07/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/07/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/07/24/scripture.today b/scripture/kjv/09/07/24/scripture.today new file mode 100644 index 00000000..d0f2a262 --- /dev/null +++ b/scripture/kjv/09/07/24/scripture.today @@ -0,0 +1 @@ +59 1:26 diff --git a/scripture/kjv/09/07/25/scripture.html b/scripture/kjv/09/07/25/scripture.html new file mode 100644 index 00000000..9630d2a0 --- /dev/null +++ b/scripture/kjv/09/07/25/scripture.html @@ -0,0 +1,3 @@ +2 Thessalonians 3:10
+10 For even when we were with you, this we commanded you, that if any would not work, neither should he eat.

+Sunday 07-September, 2025 diff --git a/scripture/kjv/09/07/25/scripture.json b/scripture/kjv/09/07/25/scripture.json new file mode 100644 index 00000000..f8340a37 --- /dev/null +++ b/scripture/kjv/09/07/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Thessalonians", + "chapter": "3", + "date": "Sunday 07-September, 2025", + "getbible": "https://getbible.life/kjv/2 Thessalonians/3/10", + "name": "2 Thessalonians 3:10", + "scripture": [ + { + "nr": "10", + "text": "For even when we were with you, this we commanded you, that if any would not work, neither should he eat." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/09/07/25/scripture.md b/scripture/kjv/09/07/25/scripture.md new file mode 100644 index 00000000..b7691daf --- /dev/null +++ b/scripture/kjv/09/07/25/scripture.md @@ -0,0 +1,5 @@ +**2 Thessalonians 3:10** + +10 For even when we were with you, this we commanded you, that if any would not work, neither should he eat. + +[Sunday 07-September, 2025](https://getbible.life/kjv/2 Thessalonians/3/10) diff --git a/scripture/kjv/09/07/25/scripture.tg b/scripture/kjv/09/07/25/scripture.tg new file mode 100644 index 00000000..3abb2459 --- /dev/null +++ b/scripture/kjv/09/07/25/scripture.tg @@ -0,0 +1,4 @@ +2 Thessalonians 3:10 +10 For even when we were with you, this we commanded you, that if any would not work, neither should he eat. + +Sunday 07-September, 2025 diff --git a/scripture/kjv/09/07/25/scripture.tg.id b/scripture/kjv/09/07/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/07/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/07/25/scripture.today b/scripture/kjv/09/07/25/scripture.today new file mode 100644 index 00000000..a9cf9279 --- /dev/null +++ b/scripture/kjv/09/07/25/scripture.today @@ -0,0 +1 @@ +53 3:10 diff --git a/scripture/kjv/09/08/23/scripture.html b/scripture/kjv/09/08/23/scripture.html new file mode 100644 index 00000000..f3b1c8cb --- /dev/null +++ b/scripture/kjv/09/08/23/scripture.html @@ -0,0 +1,3 @@ +Romans 14:23
+23 And he that doubteth is damned if he eat, because he eateth not of faith: for whatsoever is not of faith is sin.

+Friday 08-September, 2023 diff --git a/scripture/kjv/09/08/23/scripture.json b/scripture/kjv/09/08/23/scripture.json new file mode 100644 index 00000000..a9fc7a7d --- /dev/null +++ b/scripture/kjv/09/08/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Romans", + "chapter": "14", + "date": "Friday 08-September, 2023", + "getbible": "https://getbible.life/kjv/Romans/14/23", + "name": "Romans 14:23", + "scripture": [ + { + "nr": "23", + "text": "And he that doubteth is damned if he eat, because he eateth not of faith: for whatsoever is not of faith is sin. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "23", + "version": "kjv" +} diff --git a/scripture/kjv/09/08/23/scripture.md b/scripture/kjv/09/08/23/scripture.md new file mode 100644 index 00000000..e0c85380 --- /dev/null +++ b/scripture/kjv/09/08/23/scripture.md @@ -0,0 +1,5 @@ +**Romans 14:23** + +23 And he that doubteth is damned if he eat, because he eateth not of faith: for whatsoever is not of faith is sin. + +[Friday 08-September, 2023](https://getbible.life/kjv/Romans/14/23) diff --git a/scripture/kjv/09/08/23/scripture.tg b/scripture/kjv/09/08/23/scripture.tg new file mode 100644 index 00000000..5502a860 --- /dev/null +++ b/scripture/kjv/09/08/23/scripture.tg @@ -0,0 +1,4 @@ +Romans 14:23 +23 And he that doubteth is damned if he eat, because he eateth not of faith: for whatsoever is not of faith is sin. + +Friday 08-September, 2023 diff --git a/scripture/kjv/09/08/23/scripture.tg.id b/scripture/kjv/09/08/23/scripture.tg.id new file mode 100644 index 00000000..7d3a042f --- /dev/null +++ b/scripture/kjv/09/08/23/scripture.tg.id @@ -0,0 +1 @@ +1070 diff --git a/scripture/kjv/09/08/23/scripture.today b/scripture/kjv/09/08/23/scripture.today new file mode 100644 index 00000000..56fd9c89 --- /dev/null +++ b/scripture/kjv/09/08/23/scripture.today @@ -0,0 +1 @@ +45 14:23 diff --git a/scripture/kjv/09/08/24/scripture.html b/scripture/kjv/09/08/24/scripture.html new file mode 100644 index 00000000..20058d80 --- /dev/null +++ b/scripture/kjv/09/08/24/scripture.html @@ -0,0 +1,3 @@ +John 4:37-38
+37 And herein is that saying true, One soweth, and another reapeth. 38 I sent you to reap that whereon ye bestowed no labour: other men laboured, and ye are entered into their labours.

+Sunday 08-September, 2024 diff --git a/scripture/kjv/09/08/24/scripture.json b/scripture/kjv/09/08/24/scripture.json new file mode 100644 index 00000000..7684107e --- /dev/null +++ b/scripture/kjv/09/08/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "John", + "chapter": "4", + "date": "Sunday 08-September, 2024", + "getbible": "https://getbible.life/kjv/John/4/37-38", + "name": "John 4:37-38", + "scripture": [ + { + "nr": "37", + "text": "And herein is that saying true, One soweth, and another reapeth." + }, + { + "nr": "38", + "text": "I sent you to reap that whereon ye bestowed no labour: other men laboured, and ye are entered into their labours." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "37-38", + "version": "kjv" +} diff --git a/scripture/kjv/09/08/24/scripture.md b/scripture/kjv/09/08/24/scripture.md new file mode 100644 index 00000000..e8d0345d --- /dev/null +++ b/scripture/kjv/09/08/24/scripture.md @@ -0,0 +1,5 @@ +**John 4:37-38** + +37 And herein is that saying true, One soweth, and another reapeth. 38 I sent you to reap that whereon ye bestowed no labour: other men laboured, and ye are entered into their labours. + +[Sunday 08-September, 2024](https://getbible.life/kjv/John/4/37-38) diff --git a/scripture/kjv/09/08/24/scripture.tg b/scripture/kjv/09/08/24/scripture.tg new file mode 100644 index 00000000..f862d6e0 --- /dev/null +++ b/scripture/kjv/09/08/24/scripture.tg @@ -0,0 +1,4 @@ +John 4:37-38 +37 And herein is that saying true, One soweth, and another reapeth. 38 I sent you to reap that whereon ye bestowed no labour: other men laboured, and ye are entered into their labours. + +Sunday 08-September, 2024 diff --git a/scripture/kjv/09/08/24/scripture.tg.id b/scripture/kjv/09/08/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/08/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/08/24/scripture.today b/scripture/kjv/09/08/24/scripture.today new file mode 100644 index 00000000..6f71e860 --- /dev/null +++ b/scripture/kjv/09/08/24/scripture.today @@ -0,0 +1 @@ +43 4:37-38 diff --git a/scripture/kjv/09/08/25/scripture.html b/scripture/kjv/09/08/25/scripture.html new file mode 100644 index 00000000..7a83e90f --- /dev/null +++ b/scripture/kjv/09/08/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 37:4
+4 Delight thyself also in the Lord; and he shall give thee the desires of thine heart.

+Monday 08-September, 2025 diff --git a/scripture/kjv/09/08/25/scripture.json b/scripture/kjv/09/08/25/scripture.json new file mode 100644 index 00000000..872bfa9e --- /dev/null +++ b/scripture/kjv/09/08/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "37", + "date": "Monday 08-September, 2025", + "getbible": "https://getbible.life/kjv/Psalms/37/4", + "name": "Psalms 37:4", + "scripture": [ + { + "nr": "4", + "text": "Delight thyself also in the Lord; and he shall give thee the desires of thine heart." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4", + "version": "kjv" +} diff --git a/scripture/kjv/09/08/25/scripture.md b/scripture/kjv/09/08/25/scripture.md new file mode 100644 index 00000000..b4bd652c --- /dev/null +++ b/scripture/kjv/09/08/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 37:4** + +4 Delight thyself also in the Lord; and he shall give thee the desires of thine heart. + +[Monday 08-September, 2025](https://getbible.life/kjv/Psalms/37/4) diff --git a/scripture/kjv/09/08/25/scripture.tg b/scripture/kjv/09/08/25/scripture.tg new file mode 100644 index 00000000..3745edf5 --- /dev/null +++ b/scripture/kjv/09/08/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 37:4 +4 Delight thyself also in the Lord; and he shall give thee the desires of thine heart. + +Monday 08-September, 2025 diff --git a/scripture/kjv/09/08/25/scripture.tg.id b/scripture/kjv/09/08/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/08/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/08/25/scripture.today b/scripture/kjv/09/08/25/scripture.today new file mode 100644 index 00000000..9ab8aa51 --- /dev/null +++ b/scripture/kjv/09/08/25/scripture.today @@ -0,0 +1 @@ +19 37:4 diff --git a/scripture/kjv/09/09/23/scripture.html b/scripture/kjv/09/09/23/scripture.html new file mode 100644 index 00000000..f024577f --- /dev/null +++ b/scripture/kjv/09/09/23/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 12:24
+24 For our comely parts have no need: but God hath tempered the body together, having given more abundant honour to that part which lacked:

+Saturday 09-September, 2023 diff --git a/scripture/kjv/09/09/23/scripture.json b/scripture/kjv/09/09/23/scripture.json new file mode 100644 index 00000000..4bfefd22 --- /dev/null +++ b/scripture/kjv/09/09/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "12", + "date": "Saturday 09-September, 2023", + "getbible": "https://getbible.life/kjv/1 Corinthians/12/24", + "name": "1 Corinthians 12:24", + "scripture": [ + { + "nr": "24", + "text": "For our comely parts have no need: but God hath tempered the body together, having given more abundant honour to that part which lacked:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "24", + "version": "kjv" +} diff --git a/scripture/kjv/09/09/23/scripture.md b/scripture/kjv/09/09/23/scripture.md new file mode 100644 index 00000000..f55eff46 --- /dev/null +++ b/scripture/kjv/09/09/23/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 12:24** + +24 For our comely parts have no need: but God hath tempered the body together, having given more abundant honour to that part which lacked: + +[Saturday 09-September, 2023](https://getbible.life/kjv/1 Corinthians/12/24) diff --git a/scripture/kjv/09/09/23/scripture.tg b/scripture/kjv/09/09/23/scripture.tg new file mode 100644 index 00000000..bf4c014c --- /dev/null +++ b/scripture/kjv/09/09/23/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 12:24 +24 For our comely parts have no need: but God hath tempered the body together, having given more abundant honour to that part which lacked: + +Saturday 09-September, 2023 diff --git a/scripture/kjv/09/09/23/scripture.tg.id b/scripture/kjv/09/09/23/scripture.tg.id new file mode 100644 index 00000000..7e179677 --- /dev/null +++ b/scripture/kjv/09/09/23/scripture.tg.id @@ -0,0 +1 @@ +1071 diff --git a/scripture/kjv/09/09/23/scripture.today b/scripture/kjv/09/09/23/scripture.today new file mode 100644 index 00000000..937578d1 --- /dev/null +++ b/scripture/kjv/09/09/23/scripture.today @@ -0,0 +1 @@ +46 12:24 diff --git a/scripture/kjv/09/09/24/scripture.html b/scripture/kjv/09/09/24/scripture.html new file mode 100644 index 00000000..4960b3b8 --- /dev/null +++ b/scripture/kjv/09/09/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 10:27
+27 The fear of the Lord prolongeth days: but the years of the wicked shall be shortened.

+Monday 09-September, 2024 diff --git a/scripture/kjv/09/09/24/scripture.json b/scripture/kjv/09/09/24/scripture.json new file mode 100644 index 00000000..493a3358 --- /dev/null +++ b/scripture/kjv/09/09/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "10", + "date": "Monday 09-September, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/10/27", + "name": "Proverbs 10:27", + "scripture": [ + { + "nr": "27", + "text": "The fear of the Lord prolongeth days: but the years of the wicked shall be shortened." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "27", + "version": "kjv" +} diff --git a/scripture/kjv/09/09/24/scripture.md b/scripture/kjv/09/09/24/scripture.md new file mode 100644 index 00000000..35e695ab --- /dev/null +++ b/scripture/kjv/09/09/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 10:27** + +27 The fear of the Lord prolongeth days: but the years of the wicked shall be shortened. + +[Monday 09-September, 2024](https://getbible.life/kjv/Proverbs/10/27) diff --git a/scripture/kjv/09/09/24/scripture.tg b/scripture/kjv/09/09/24/scripture.tg new file mode 100644 index 00000000..58be02f2 --- /dev/null +++ b/scripture/kjv/09/09/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 10:27 +27 The fear of the Lord prolongeth days: but the years of the wicked shall be shortened. + +Monday 09-September, 2024 diff --git a/scripture/kjv/09/09/24/scripture.tg.id b/scripture/kjv/09/09/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/09/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/09/24/scripture.today b/scripture/kjv/09/09/24/scripture.today new file mode 100644 index 00000000..0e708fbe --- /dev/null +++ b/scripture/kjv/09/09/24/scripture.today @@ -0,0 +1 @@ +20 10:27 diff --git a/scripture/kjv/09/09/25/scripture.html b/scripture/kjv/09/09/25/scripture.html new file mode 100644 index 00000000..dd7a218a --- /dev/null +++ b/scripture/kjv/09/09/25/scripture.html @@ -0,0 +1,3 @@ +Nehemiah 4:17
+17 They which builded on the wall, and they that bare burdens, with those that laded, every one with one of his hands wrought in the work, and with the other hand held a weapon.

+Tuesday 09-September, 2025 diff --git a/scripture/kjv/09/09/25/scripture.json b/scripture/kjv/09/09/25/scripture.json new file mode 100644 index 00000000..ef7653ec --- /dev/null +++ b/scripture/kjv/09/09/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Nehemiah", + "chapter": "4", + "date": "Tuesday 09-September, 2025", + "getbible": "https://getbible.life/kjv/Nehemiah/4/17", + "name": "Nehemiah 4:17", + "scripture": [ + { + "nr": "17", + "text": "They which builded on the wall, and they that bare burdens, with those that laded, every one with one of his hands wrought in the work, and with the other hand held a weapon." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17", + "version": "kjv" +} diff --git a/scripture/kjv/09/09/25/scripture.md b/scripture/kjv/09/09/25/scripture.md new file mode 100644 index 00000000..07ac307f --- /dev/null +++ b/scripture/kjv/09/09/25/scripture.md @@ -0,0 +1,5 @@ +**Nehemiah 4:17** + +17 They which builded on the wall, and they that bare burdens, with those that laded, every one with one of his hands wrought in the work, and with the other hand held a weapon. + +[Tuesday 09-September, 2025](https://getbible.life/kjv/Nehemiah/4/17) diff --git a/scripture/kjv/09/09/25/scripture.tg b/scripture/kjv/09/09/25/scripture.tg new file mode 100644 index 00000000..2ff1f834 --- /dev/null +++ b/scripture/kjv/09/09/25/scripture.tg @@ -0,0 +1,4 @@ +Nehemiah 4:17 +17 They which builded on the wall, and they that bare burdens, with those that laded, every one with one of his hands wrought in the work, and with the other hand held a weapon. + +Tuesday 09-September, 2025 diff --git a/scripture/kjv/09/09/25/scripture.tg.id b/scripture/kjv/09/09/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/09/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/09/25/scripture.today b/scripture/kjv/09/09/25/scripture.today new file mode 100644 index 00000000..fa8e9c30 --- /dev/null +++ b/scripture/kjv/09/09/25/scripture.today @@ -0,0 +1 @@ +16 4:17 diff --git a/scripture/kjv/09/10/23/scripture.html b/scripture/kjv/09/10/23/scripture.html new file mode 100644 index 00000000..19643585 --- /dev/null +++ b/scripture/kjv/09/10/23/scripture.html @@ -0,0 +1,3 @@ +1 Timothy 2:15
+15 Notwithstanding she shall be saved in childbearing, if they continue in faith and charity and holiness with sobriety.

+Sunday 10-September, 2023 diff --git a/scripture/kjv/09/10/23/scripture.json b/scripture/kjv/09/10/23/scripture.json new file mode 100644 index 00000000..8e2538ca --- /dev/null +++ b/scripture/kjv/09/10/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Timothy", + "chapter": "2", + "date": "Sunday 10-September, 2023", + "getbible": "https://getbible.life/kjv/1 Timothy/2/15", + "name": "1 Timothy 2:15", + "scripture": [ + { + "nr": "15", + "text": "Notwithstanding she shall be saved in childbearing, if they continue in faith and charity and holiness with sobriety. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15", + "version": "kjv" +} diff --git a/scripture/kjv/09/10/23/scripture.md b/scripture/kjv/09/10/23/scripture.md new file mode 100644 index 00000000..18aad660 --- /dev/null +++ b/scripture/kjv/09/10/23/scripture.md @@ -0,0 +1,5 @@ +**1 Timothy 2:15** + +15 Notwithstanding she shall be saved in childbearing, if they continue in faith and charity and holiness with sobriety. + +[Sunday 10-September, 2023](https://getbible.life/kjv/1 Timothy/2/15) diff --git a/scripture/kjv/09/10/23/scripture.tg b/scripture/kjv/09/10/23/scripture.tg new file mode 100644 index 00000000..ed30bfb0 --- /dev/null +++ b/scripture/kjv/09/10/23/scripture.tg @@ -0,0 +1,4 @@ +1 Timothy 2:15 +15 Notwithstanding she shall be saved in childbearing, if they continue in faith and charity and holiness with sobriety. + +Sunday 10-September, 2023 diff --git a/scripture/kjv/09/10/23/scripture.tg.id b/scripture/kjv/09/10/23/scripture.tg.id new file mode 100644 index 00000000..e255a855 --- /dev/null +++ b/scripture/kjv/09/10/23/scripture.tg.id @@ -0,0 +1 @@ +1072 diff --git a/scripture/kjv/09/10/23/scripture.today b/scripture/kjv/09/10/23/scripture.today new file mode 100644 index 00000000..0df7e093 --- /dev/null +++ b/scripture/kjv/09/10/23/scripture.today @@ -0,0 +1 @@ +54 2:15 diff --git a/scripture/kjv/09/10/24/scripture.html b/scripture/kjv/09/10/24/scripture.html new file mode 100644 index 00000000..5a683ec6 --- /dev/null +++ b/scripture/kjv/09/10/24/scripture.html @@ -0,0 +1,3 @@ +Daniel 3:25
+25 He answered and said, Lo, I see four men loose, walking in the midst of the fire, and they have no hurt; and the form of the fourth is like the Son of God.

+Tuesday 10-September, 2024 diff --git a/scripture/kjv/09/10/24/scripture.json b/scripture/kjv/09/10/24/scripture.json new file mode 100644 index 00000000..aa18b9cd --- /dev/null +++ b/scripture/kjv/09/10/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Daniel", + "chapter": "3", + "date": "Tuesday 10-September, 2024", + "getbible": "https://getbible.life/kjv/Daniel/3/25", + "name": "Daniel 3:25", + "scripture": [ + { + "nr": "25", + "text": "He answered and said, Lo, I see four men loose, walking in the midst of the fire, and they have no hurt; and the form of the fourth is like the Son of God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "25", + "version": "kjv" +} diff --git a/scripture/kjv/09/10/24/scripture.md b/scripture/kjv/09/10/24/scripture.md new file mode 100644 index 00000000..fffc46a5 --- /dev/null +++ b/scripture/kjv/09/10/24/scripture.md @@ -0,0 +1,5 @@ +**Daniel 3:25** + +25 He answered and said, Lo, I see four men loose, walking in the midst of the fire, and they have no hurt; and the form of the fourth is like the Son of God. + +[Tuesday 10-September, 2024](https://getbible.life/kjv/Daniel/3/25) diff --git a/scripture/kjv/09/10/24/scripture.tg b/scripture/kjv/09/10/24/scripture.tg new file mode 100644 index 00000000..cc45d890 --- /dev/null +++ b/scripture/kjv/09/10/24/scripture.tg @@ -0,0 +1,4 @@ +Daniel 3:25 +25 He answered and said, Lo, I see four men loose, walking in the midst of the fire, and they have no hurt; and the form of the fourth is like the Son of God. + +Tuesday 10-September, 2024 diff --git a/scripture/kjv/09/10/24/scripture.tg.id b/scripture/kjv/09/10/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/10/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/10/24/scripture.today b/scripture/kjv/09/10/24/scripture.today new file mode 100644 index 00000000..a950ca6f --- /dev/null +++ b/scripture/kjv/09/10/24/scripture.today @@ -0,0 +1 @@ +27 3:25 diff --git a/scripture/kjv/09/10/25/scripture.html b/scripture/kjv/09/10/25/scripture.html new file mode 100644 index 00000000..42c53567 --- /dev/null +++ b/scripture/kjv/09/10/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 32:1
+1 Blessed is he whose transgression is forgiven, whose sin is covered.

+Wednesday 10-September, 2025 diff --git a/scripture/kjv/09/10/25/scripture.json b/scripture/kjv/09/10/25/scripture.json new file mode 100644 index 00000000..af4f9254 --- /dev/null +++ b/scripture/kjv/09/10/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "32", + "date": "Wednesday 10-September, 2025", + "getbible": "https://getbible.life/kjv/Psalms/32/1", + "name": "Psalms 32:1", + "scripture": [ + { + "nr": "1", + "text": "Blessed is he whose transgression is forgiven, whose sin is covered." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1", + "version": "kjv" +} diff --git a/scripture/kjv/09/10/25/scripture.md b/scripture/kjv/09/10/25/scripture.md new file mode 100644 index 00000000..2d8bd1d2 --- /dev/null +++ b/scripture/kjv/09/10/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 32:1** + +1 Blessed is he whose transgression is forgiven, whose sin is covered. + +[Wednesday 10-September, 2025](https://getbible.life/kjv/Psalms/32/1) diff --git a/scripture/kjv/09/10/25/scripture.tg b/scripture/kjv/09/10/25/scripture.tg new file mode 100644 index 00000000..47bda9ae --- /dev/null +++ b/scripture/kjv/09/10/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 32:1 +1 Blessed is he whose transgression is forgiven, whose sin is covered. + +Wednesday 10-September, 2025 diff --git a/scripture/kjv/09/10/25/scripture.tg.id b/scripture/kjv/09/10/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/10/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/10/25/scripture.today b/scripture/kjv/09/10/25/scripture.today new file mode 100644 index 00000000..02289ddb --- /dev/null +++ b/scripture/kjv/09/10/25/scripture.today @@ -0,0 +1 @@ +19 32:1 diff --git a/scripture/kjv/09/11/23/scripture.html b/scripture/kjv/09/11/23/scripture.html new file mode 100644 index 00000000..e6212550 --- /dev/null +++ b/scripture/kjv/09/11/23/scripture.html @@ -0,0 +1,3 @@ +John 4:50
+50 Jesus saith unto him, Go thy way; thy son liveth. And the man believed the word that Jesus had spoken unto him, and he went his way.

+Monday 11-September, 2023 diff --git a/scripture/kjv/09/11/23/scripture.json b/scripture/kjv/09/11/23/scripture.json new file mode 100644 index 00000000..50136e46 --- /dev/null +++ b/scripture/kjv/09/11/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "4", + "date": "Monday 11-September, 2023", + "getbible": "https://getbible.life/kjv/John/4/50", + "name": "John 4:50", + "scripture": [ + { + "nr": "50", + "text": "Jesus saith unto him, Go thy way; thy son liveth. And the man believed the word that Jesus had spoken unto him, and he went his way." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "50", + "version": "kjv" +} diff --git a/scripture/kjv/09/11/23/scripture.md b/scripture/kjv/09/11/23/scripture.md new file mode 100644 index 00000000..25558095 --- /dev/null +++ b/scripture/kjv/09/11/23/scripture.md @@ -0,0 +1,5 @@ +**John 4:50** + +50 Jesus saith unto him, Go thy way; thy son liveth. And the man believed the word that Jesus had spoken unto him, and he went his way. + +[Monday 11-September, 2023](https://getbible.life/kjv/John/4/50) diff --git a/scripture/kjv/09/11/23/scripture.tg b/scripture/kjv/09/11/23/scripture.tg new file mode 100644 index 00000000..19a0ffc0 --- /dev/null +++ b/scripture/kjv/09/11/23/scripture.tg @@ -0,0 +1,4 @@ +John 4:50 +50 Jesus saith unto him, Go thy way; thy son liveth. And the man believed the word that Jesus had spoken unto him, and he went his way. + +Monday 11-September, 2023 diff --git a/scripture/kjv/09/11/23/scripture.tg.id b/scripture/kjv/09/11/23/scripture.tg.id new file mode 100644 index 00000000..bba0bc80 --- /dev/null +++ b/scripture/kjv/09/11/23/scripture.tg.id @@ -0,0 +1 @@ +1073 diff --git a/scripture/kjv/09/11/23/scripture.today b/scripture/kjv/09/11/23/scripture.today new file mode 100644 index 00000000..20a8bad2 --- /dev/null +++ b/scripture/kjv/09/11/23/scripture.today @@ -0,0 +1 @@ +43 4:50 diff --git a/scripture/kjv/09/11/24/scripture.html b/scripture/kjv/09/11/24/scripture.html new file mode 100644 index 00000000..0b63beae --- /dev/null +++ b/scripture/kjv/09/11/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 20:19
+19 He that goeth about as a talebearer revealeth secrets: therefore meddle not with him that flattereth with his lips.

+Wednesday 11-September, 2024 diff --git a/scripture/kjv/09/11/24/scripture.json b/scripture/kjv/09/11/24/scripture.json new file mode 100644 index 00000000..c17240cf --- /dev/null +++ b/scripture/kjv/09/11/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "20", + "date": "Wednesday 11-September, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/20/19", + "name": "Proverbs 20:19", + "scripture": [ + { + "nr": "19", + "text": "He that goeth about as a talebearer revealeth secrets: therefore meddle not with him that flattereth with his lips." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "19", + "version": "kjv" +} diff --git a/scripture/kjv/09/11/24/scripture.md b/scripture/kjv/09/11/24/scripture.md new file mode 100644 index 00000000..f4fe9a50 --- /dev/null +++ b/scripture/kjv/09/11/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 20:19** + +19 He that goeth about as a talebearer revealeth secrets: therefore meddle not with him that flattereth with his lips. + +[Wednesday 11-September, 2024](https://getbible.life/kjv/Proverbs/20/19) diff --git a/scripture/kjv/09/11/24/scripture.tg b/scripture/kjv/09/11/24/scripture.tg new file mode 100644 index 00000000..6bebd639 --- /dev/null +++ b/scripture/kjv/09/11/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 20:19 +19 He that goeth about as a talebearer revealeth secrets: therefore meddle not with him that flattereth with his lips. + +Wednesday 11-September, 2024 diff --git a/scripture/kjv/09/11/24/scripture.tg.id b/scripture/kjv/09/11/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/11/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/11/24/scripture.today b/scripture/kjv/09/11/24/scripture.today new file mode 100644 index 00000000..d27d9a8d --- /dev/null +++ b/scripture/kjv/09/11/24/scripture.today @@ -0,0 +1 @@ +20 20:19 diff --git a/scripture/kjv/09/11/25/scripture.html b/scripture/kjv/09/11/25/scripture.html new file mode 100644 index 00000000..5a3d4169 --- /dev/null +++ b/scripture/kjv/09/11/25/scripture.html @@ -0,0 +1,3 @@ +Luke 16:16
+16 The law and the prophets were until John: since that time the kingdom of God is preached, and every man presseth into it.

+Thursday 11-September, 2025 diff --git a/scripture/kjv/09/11/25/scripture.json b/scripture/kjv/09/11/25/scripture.json new file mode 100644 index 00000000..55c0d3cc --- /dev/null +++ b/scripture/kjv/09/11/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "16", + "date": "Thursday 11-September, 2025", + "getbible": "https://getbible.life/kjv/Luke/16/16", + "name": "Luke 16:16", + "scripture": [ + { + "nr": "16", + "text": "The law and the prophets were until John: since that time the kingdom of God is preached, and every man presseth into it." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16", + "version": "kjv" +} diff --git a/scripture/kjv/09/11/25/scripture.md b/scripture/kjv/09/11/25/scripture.md new file mode 100644 index 00000000..551a7ac9 --- /dev/null +++ b/scripture/kjv/09/11/25/scripture.md @@ -0,0 +1,5 @@ +**Luke 16:16** + +16 The law and the prophets were until John: since that time the kingdom of God is preached, and every man presseth into it. + +[Thursday 11-September, 2025](https://getbible.life/kjv/Luke/16/16) diff --git a/scripture/kjv/09/11/25/scripture.tg b/scripture/kjv/09/11/25/scripture.tg new file mode 100644 index 00000000..06177d22 --- /dev/null +++ b/scripture/kjv/09/11/25/scripture.tg @@ -0,0 +1,4 @@ +Luke 16:16 +16 The law and the prophets were until John: since that time the kingdom of God is preached, and every man presseth into it. + +Thursday 11-September, 2025 diff --git a/scripture/kjv/09/11/25/scripture.tg.id b/scripture/kjv/09/11/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/11/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/11/25/scripture.today b/scripture/kjv/09/11/25/scripture.today new file mode 100644 index 00000000..b425fb05 --- /dev/null +++ b/scripture/kjv/09/11/25/scripture.today @@ -0,0 +1 @@ +42 16:16 diff --git a/scripture/kjv/09/12/23/scripture.html b/scripture/kjv/09/12/23/scripture.html new file mode 100644 index 00000000..204fc8ad --- /dev/null +++ b/scripture/kjv/09/12/23/scripture.html @@ -0,0 +1,3 @@ +Daniel 3:29
+29 Therefore I make a decree, That every people, nation, and language, which speak any thing amiss against the God of Shadrach, Meshach, and Abed–nego, shall be cut in pieces, and their houses shall be made a dunghill: because there is no other God that can deliver after this sort.

+Tuesday 12-September, 2023 diff --git a/scripture/kjv/09/12/23/scripture.json b/scripture/kjv/09/12/23/scripture.json new file mode 100644 index 00000000..098587c7 --- /dev/null +++ b/scripture/kjv/09/12/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Daniel", + "chapter": "3", + "date": "Tuesday 12-September, 2023", + "getbible": "https://getbible.life/kjv/Daniel/3/29", + "name": "Daniel 3:29", + "scripture": [ + { + "nr": "29", + "text": "Therefore I make a decree, That every people, nation, and language, which speak any thing amiss against the God of Shadrach, Meshach, and Abed–nego, shall be cut in pieces, and their houses shall be made a dunghill: because there is no other God that can deliver after this sort." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "29", + "version": "kjv" +} diff --git a/scripture/kjv/09/12/23/scripture.md b/scripture/kjv/09/12/23/scripture.md new file mode 100644 index 00000000..c04a47df --- /dev/null +++ b/scripture/kjv/09/12/23/scripture.md @@ -0,0 +1,5 @@ +**Daniel 3:29** + +29 Therefore I make a decree, That every people, nation, and language, which speak any thing amiss against the God of Shadrach, Meshach, and Abed–nego, shall be cut in pieces, and their houses shall be made a dunghill: because there is no other God that can deliver after this sort. + +[Tuesday 12-September, 2023](https://getbible.life/kjv/Daniel/3/29) diff --git a/scripture/kjv/09/12/23/scripture.tg b/scripture/kjv/09/12/23/scripture.tg new file mode 100644 index 00000000..d4a2969e --- /dev/null +++ b/scripture/kjv/09/12/23/scripture.tg @@ -0,0 +1,4 @@ +Daniel 3:29 +29 Therefore I make a decree, That every people, nation, and language, which speak any thing amiss against the God of Shadrach, Meshach, and Abed–nego, shall be cut in pieces, and their houses shall be made a dunghill: because there is no other God that can deliver after this sort. + +Tuesday 12-September, 2023 diff --git a/scripture/kjv/09/12/23/scripture.tg.id b/scripture/kjv/09/12/23/scripture.tg.id new file mode 100644 index 00000000..cf635ffb --- /dev/null +++ b/scripture/kjv/09/12/23/scripture.tg.id @@ -0,0 +1 @@ +1074 diff --git a/scripture/kjv/09/12/23/scripture.today b/scripture/kjv/09/12/23/scripture.today new file mode 100644 index 00000000..7e3e745c --- /dev/null +++ b/scripture/kjv/09/12/23/scripture.today @@ -0,0 +1 @@ +27 3:29 diff --git a/scripture/kjv/09/12/24/scripture.html b/scripture/kjv/09/12/24/scripture.html new file mode 100644 index 00000000..9c6057e3 --- /dev/null +++ b/scripture/kjv/09/12/24/scripture.html @@ -0,0 +1,3 @@ +Exodus 23:1-2
+1 Thou shalt not raise a false report: put not thine hand with the wicked to be an unrighteous witness. 2 Thou shalt not follow a multitude to do evil; neither shalt thou speak in a cause to decline after many to wrest judgment:

+Thursday 12-September, 2024 diff --git a/scripture/kjv/09/12/24/scripture.json b/scripture/kjv/09/12/24/scripture.json new file mode 100644 index 00000000..8f384fde --- /dev/null +++ b/scripture/kjv/09/12/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Exodus", + "chapter": "23", + "date": "Thursday 12-September, 2024", + "getbible": "https://getbible.life/kjv/Exodus/23/1-2", + "name": "Exodus 23:1-2", + "scripture": [ + { + "nr": "1", + "text": "Thou shalt not raise a false report: put not thine hand with the wicked to be an unrighteous witness." + }, + { + "nr": "2", + "text": "Thou shalt not follow a multitude to do evil; neither shalt thou speak in a cause to decline after many to wrest judgment:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-2", + "version": "kjv" +} diff --git a/scripture/kjv/09/12/24/scripture.md b/scripture/kjv/09/12/24/scripture.md new file mode 100644 index 00000000..48f9d98c --- /dev/null +++ b/scripture/kjv/09/12/24/scripture.md @@ -0,0 +1,5 @@ +**Exodus 23:1-2** + +1 Thou shalt not raise a false report: put not thine hand with the wicked to be an unrighteous witness. 2 Thou shalt not follow a multitude to do evil; neither shalt thou speak in a cause to decline after many to wrest judgment: + +[Thursday 12-September, 2024](https://getbible.life/kjv/Exodus/23/1-2) diff --git a/scripture/kjv/09/12/24/scripture.tg b/scripture/kjv/09/12/24/scripture.tg new file mode 100644 index 00000000..a9741432 --- /dev/null +++ b/scripture/kjv/09/12/24/scripture.tg @@ -0,0 +1,4 @@ +Exodus 23:1-2 +1 Thou shalt not raise a false report: put not thine hand with the wicked to be an unrighteous witness. 2 Thou shalt not follow a multitude to do evil; neither shalt thou speak in a cause to decline after many to wrest judgment: + +Thursday 12-September, 2024 diff --git a/scripture/kjv/09/12/24/scripture.tg.id b/scripture/kjv/09/12/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/12/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/12/24/scripture.today b/scripture/kjv/09/12/24/scripture.today new file mode 100644 index 00000000..b4a8b62a --- /dev/null +++ b/scripture/kjv/09/12/24/scripture.today @@ -0,0 +1 @@ +2 23:1-2 diff --git a/scripture/kjv/09/12/25/scripture.html b/scripture/kjv/09/12/25/scripture.html new file mode 100644 index 00000000..6c223017 --- /dev/null +++ b/scripture/kjv/09/12/25/scripture.html @@ -0,0 +1,3 @@ +Acts 2:28
+28 Thou hast made known to me the ways of life; thou shalt make me full of joy with thy countenance.

+Friday 12-September, 2025 diff --git a/scripture/kjv/09/12/25/scripture.json b/scripture/kjv/09/12/25/scripture.json new file mode 100644 index 00000000..d98cb61a --- /dev/null +++ b/scripture/kjv/09/12/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Acts", + "chapter": "2", + "date": "Friday 12-September, 2025", + "getbible": "https://getbible.life/kjv/Acts/2/28", + "name": "Acts 2:28", + "scripture": [ + { + "nr": "28", + "text": "Thou hast made known to me the ways of life; thou shalt make me full of joy with thy countenance." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "28", + "version": "kjv" +} diff --git a/scripture/kjv/09/12/25/scripture.md b/scripture/kjv/09/12/25/scripture.md new file mode 100644 index 00000000..562111ca --- /dev/null +++ b/scripture/kjv/09/12/25/scripture.md @@ -0,0 +1,5 @@ +**Acts 2:28** + +28 Thou hast made known to me the ways of life; thou shalt make me full of joy with thy countenance. + +[Friday 12-September, 2025](https://getbible.life/kjv/Acts/2/28) diff --git a/scripture/kjv/09/12/25/scripture.tg b/scripture/kjv/09/12/25/scripture.tg new file mode 100644 index 00000000..d57db10a --- /dev/null +++ b/scripture/kjv/09/12/25/scripture.tg @@ -0,0 +1,4 @@ +Acts 2:28 +28 Thou hast made known to me the ways of life; thou shalt make me full of joy with thy countenance. + +Friday 12-September, 2025 diff --git a/scripture/kjv/09/12/25/scripture.tg.id b/scripture/kjv/09/12/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/12/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/12/25/scripture.today b/scripture/kjv/09/12/25/scripture.today new file mode 100644 index 00000000..ba3f1902 --- /dev/null +++ b/scripture/kjv/09/12/25/scripture.today @@ -0,0 +1 @@ +44 2:28 diff --git a/scripture/kjv/09/13/23/scripture.html b/scripture/kjv/09/13/23/scripture.html new file mode 100644 index 00000000..8f132185 --- /dev/null +++ b/scripture/kjv/09/13/23/scripture.html @@ -0,0 +1,3 @@ +2 Kings 20:5-6
+5 Turn again, and tell Hezekiah the captain of my people, Thus saith the Lord, the God of David thy father, I have heard thy prayer, I have seen thy tears: behold, I will heal thee: on the third day thou shalt go up unto the house of the Lord. 6 And I will add unto thy days fifteen years; and I will deliver thee and this city out of the hand of the king of Assyria; and I will defend this city for mine own sake, and for my servant David’s sake.

+Wednesday 13-September, 2023 diff --git a/scripture/kjv/09/13/23/scripture.json b/scripture/kjv/09/13/23/scripture.json new file mode 100644 index 00000000..0705dfb8 --- /dev/null +++ b/scripture/kjv/09/13/23/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "2 Kings", + "chapter": "20", + "date": "Wednesday 13-September, 2023", + "getbible": "https://getbible.life/kjv/2 Kings/20/5-6", + "name": "2 Kings 20:5-6", + "scripture": [ + { + "nr": "5", + "text": "Turn again, and tell Hezekiah the captain of my people, Thus saith the Lord, the God of David thy father, I have heard thy prayer, I have seen thy tears: behold, I will heal thee: on the third day thou shalt go up unto the house of the Lord." + }, + { + "nr": "6", + "text": "And I will add unto thy days fifteen years; and I will deliver thee and this city out of the hand of the king of Assyria; and I will defend this city for mine own sake, and for my servant David’s sake." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5-6", + "version": "kjv" +} diff --git a/scripture/kjv/09/13/23/scripture.md b/scripture/kjv/09/13/23/scripture.md new file mode 100644 index 00000000..587e4b3d --- /dev/null +++ b/scripture/kjv/09/13/23/scripture.md @@ -0,0 +1,5 @@ +**2 Kings 20:5-6** + +5 Turn again, and tell Hezekiah the captain of my people, Thus saith the Lord, the God of David thy father, I have heard thy prayer, I have seen thy tears: behold, I will heal thee: on the third day thou shalt go up unto the house of the Lord. 6 And I will add unto thy days fifteen years; and I will deliver thee and this city out of the hand of the king of Assyria; and I will defend this city for mine own sake, and for my servant David’s sake. + +[Wednesday 13-September, 2023](https://getbible.life/kjv/2 Kings/20/5-6) diff --git a/scripture/kjv/09/13/23/scripture.tg b/scripture/kjv/09/13/23/scripture.tg new file mode 100644 index 00000000..8b6304ec --- /dev/null +++ b/scripture/kjv/09/13/23/scripture.tg @@ -0,0 +1,4 @@ +2 Kings 20:5-6 +5 Turn again, and tell Hezekiah the captain of my people, Thus saith the Lord, the God of David thy father, I have heard thy prayer, I have seen thy tears: behold, I will heal thee: on the third day thou shalt go up unto the house of the Lord. 6 And I will add unto thy days fifteen years; and I will deliver thee and this city out of the hand of the king of Assyria; and I will defend this city for mine own sake, and for my servant David’s sake. + +Wednesday 13-September, 2023 diff --git a/scripture/kjv/09/13/23/scripture.tg.id b/scripture/kjv/09/13/23/scripture.tg.id new file mode 100644 index 00000000..69559761 --- /dev/null +++ b/scripture/kjv/09/13/23/scripture.tg.id @@ -0,0 +1 @@ +1075 diff --git a/scripture/kjv/09/13/23/scripture.today b/scripture/kjv/09/13/23/scripture.today new file mode 100644 index 00000000..7e8cb01e --- /dev/null +++ b/scripture/kjv/09/13/23/scripture.today @@ -0,0 +1 @@ +12 20:5-6 diff --git a/scripture/kjv/09/13/24/scripture.html b/scripture/kjv/09/13/24/scripture.html new file mode 100644 index 00000000..646c1866 --- /dev/null +++ b/scripture/kjv/09/13/24/scripture.html @@ -0,0 +1,3 @@ +3 John 1:6-8
+6 Which have borne witness of thy charity before the church: whom if thou bring forward on their journey after a godly sort, thou shalt do well: 7 Because that for his name’s sake they went forth, taking nothing of the Gentiles. 8 We therefore ought to receive such, that we might be fellowhelpers to the truth.

+Friday 13-September, 2024 diff --git a/scripture/kjv/09/13/24/scripture.json b/scripture/kjv/09/13/24/scripture.json new file mode 100644 index 00000000..51fb8d2d --- /dev/null +++ b/scripture/kjv/09/13/24/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "3 John", + "chapter": "1", + "date": "Friday 13-September, 2024", + "getbible": "https://getbible.life/kjv/3 John/1/6-8", + "name": "3 John 1:6-8", + "scripture": [ + { + "nr": "6", + "text": "Which have borne witness of thy charity before the church: whom if thou bring forward on their journey after a godly sort, thou shalt do well:" + }, + { + "nr": "7", + "text": "Because that for his name’s sake they went forth, taking nothing of the Gentiles." + }, + { + "nr": "8", + "text": "We therefore ought to receive such, that we might be fellowhelpers to the truth." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6-8", + "version": "kjv" +} diff --git a/scripture/kjv/09/13/24/scripture.md b/scripture/kjv/09/13/24/scripture.md new file mode 100644 index 00000000..4de7af55 --- /dev/null +++ b/scripture/kjv/09/13/24/scripture.md @@ -0,0 +1,5 @@ +**3 John 1:6-8** + +6 Which have borne witness of thy charity before the church: whom if thou bring forward on their journey after a godly sort, thou shalt do well: 7 Because that for his name’s sake they went forth, taking nothing of the Gentiles. 8 We therefore ought to receive such, that we might be fellowhelpers to the truth. + +[Friday 13-September, 2024](https://getbible.life/kjv/3 John/1/6-8) diff --git a/scripture/kjv/09/13/24/scripture.tg b/scripture/kjv/09/13/24/scripture.tg new file mode 100644 index 00000000..22b3a003 --- /dev/null +++ b/scripture/kjv/09/13/24/scripture.tg @@ -0,0 +1,4 @@ +3 John 1:6-8 +6 Which have borne witness of thy charity before the church: whom if thou bring forward on their journey after a godly sort, thou shalt do well: 7 Because that for his name’s sake they went forth, taking nothing of the Gentiles. 8 We therefore ought to receive such, that we might be fellowhelpers to the truth. + +Friday 13-September, 2024 diff --git a/scripture/kjv/09/13/24/scripture.tg.id b/scripture/kjv/09/13/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/13/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/13/24/scripture.today b/scripture/kjv/09/13/24/scripture.today new file mode 100644 index 00000000..7ae11a72 --- /dev/null +++ b/scripture/kjv/09/13/24/scripture.today @@ -0,0 +1 @@ +64 1:6-8 diff --git a/scripture/kjv/09/13/25/scripture.html b/scripture/kjv/09/13/25/scripture.html new file mode 100644 index 00000000..4ed13c1f --- /dev/null +++ b/scripture/kjv/09/13/25/scripture.html @@ -0,0 +1,3 @@ +Judges 15:18-19
+18 And he was sore athirst, and called on the Lord, and said, Thou hast given this great deliverance into the hand of thy servant: and now shall I die for thirst, and fall into the hand of the uncircumcised? 19 But God clave an hollow place that was in the jaw, and there came water thereout; and when he had drunk, his spirit came again, and he revived: wherefore he called the name thereof En–hakkore, which is in Lehi unto this day.

+Saturday 13-September, 2025 diff --git a/scripture/kjv/09/13/25/scripture.json b/scripture/kjv/09/13/25/scripture.json new file mode 100644 index 00000000..eb7192cf --- /dev/null +++ b/scripture/kjv/09/13/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Judges", + "chapter": "15", + "date": "Saturday 13-September, 2025", + "getbible": "https://getbible.life/kjv/Judges/15/18-19", + "name": "Judges 15:18-19", + "scripture": [ + { + "nr": "18", + "text": "And he was sore athirst, and called on the Lord, and said, Thou hast given this great deliverance into the hand of thy servant: and now shall I die for thirst, and fall into the hand of the uncircumcised?" + }, + { + "nr": "19", + "text": "But God clave an hollow place that was in the jaw, and there came water thereout; and when he had drunk, his spirit came again, and he revived: wherefore he called the name thereof En–hakkore, which is in Lehi unto this day." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18-19", + "version": "kjv" +} diff --git a/scripture/kjv/09/13/25/scripture.md b/scripture/kjv/09/13/25/scripture.md new file mode 100644 index 00000000..353ec4ba --- /dev/null +++ b/scripture/kjv/09/13/25/scripture.md @@ -0,0 +1,5 @@ +**Judges 15:18-19** + +18 And he was sore athirst, and called on the Lord, and said, Thou hast given this great deliverance into the hand of thy servant: and now shall I die for thirst, and fall into the hand of the uncircumcised? 19 But God clave an hollow place that was in the jaw, and there came water thereout; and when he had drunk, his spirit came again, and he revived: wherefore he called the name thereof En–hakkore, which is in Lehi unto this day. + +[Saturday 13-September, 2025](https://getbible.life/kjv/Judges/15/18-19) diff --git a/scripture/kjv/09/13/25/scripture.tg b/scripture/kjv/09/13/25/scripture.tg new file mode 100644 index 00000000..bc7ba89a --- /dev/null +++ b/scripture/kjv/09/13/25/scripture.tg @@ -0,0 +1,4 @@ +Judges 15:18-19 +18 And he was sore athirst, and called on the Lord, and said, Thou hast given this great deliverance into the hand of thy servant: and now shall I die for thirst, and fall into the hand of the uncircumcised? 19 But God clave an hollow place that was in the jaw, and there came water thereout; and when he had drunk, his spirit came again, and he revived: wherefore he called the name thereof En–hakkore, which is in Lehi unto this day. + +Saturday 13-September, 2025 diff --git a/scripture/kjv/09/13/25/scripture.tg.id b/scripture/kjv/09/13/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/13/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/13/25/scripture.today b/scripture/kjv/09/13/25/scripture.today new file mode 100644 index 00000000..10700274 --- /dev/null +++ b/scripture/kjv/09/13/25/scripture.today @@ -0,0 +1 @@ +7 15:18-19 diff --git a/scripture/kjv/09/14/23/scripture.html b/scripture/kjv/09/14/23/scripture.html new file mode 100644 index 00000000..a4c89f52 --- /dev/null +++ b/scripture/kjv/09/14/23/scripture.html @@ -0,0 +1,3 @@ +Isaiah 41:17-20
+17 When the poor and needy seek water, and there is none, and their tongue faileth for thirst, I the Lord will hear them, I the God of Israel will not forsake them. 18 I will open rivers in high places, and fountains in the midst of the valleys: I will make the wilderness a pool of water, and the dry land springs of water. 19 I will plant in the wilderness the cedar, the shittah tree, and the myrtle, and the oil tree; I will set in the desert the fir tree, and the pine, and the box tree together: 20 That they may see, and know, and consider, and understand together, that the hand of the Lord hath done this, and the Holy One of Israel hath created it.

+Thursday 14-September, 2023 diff --git a/scripture/kjv/09/14/23/scripture.json b/scripture/kjv/09/14/23/scripture.json new file mode 100644 index 00000000..573bed29 --- /dev/null +++ b/scripture/kjv/09/14/23/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "Isaiah", + "chapter": "41", + "date": "Thursday 14-September, 2023", + "getbible": "https://getbible.life/kjv/Isaiah/41/17-20", + "name": "Isaiah 41:17-20", + "scripture": [ + { + "nr": "17", + "text": "When the poor and needy seek water, and there is none, and their tongue faileth for thirst, I the Lord will hear them, I the God of Israel will not forsake them." + }, + { + "nr": "18", + "text": "I will open rivers in high places, and fountains in the midst of the valleys: I will make the wilderness a pool of water, and the dry land springs of water." + }, + { + "nr": "19", + "text": "I will plant in the wilderness the cedar, the shittah tree, and the myrtle, and the oil tree; I will set in the desert the fir tree, and the pine, and the box tree together:" + }, + { + "nr": "20", + "text": "That they may see, and know, and consider, and understand together, that the hand of the Lord hath done this, and the Holy One of Israel hath created it." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17-20", + "version": "kjv" +} diff --git a/scripture/kjv/09/14/23/scripture.md b/scripture/kjv/09/14/23/scripture.md new file mode 100644 index 00000000..31afcb1c --- /dev/null +++ b/scripture/kjv/09/14/23/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 41:17-20** + +17 When the poor and needy seek water, and there is none, and their tongue faileth for thirst, I the Lord will hear them, I the God of Israel will not forsake them. 18 I will open rivers in high places, and fountains in the midst of the valleys: I will make the wilderness a pool of water, and the dry land springs of water. 19 I will plant in the wilderness the cedar, the shittah tree, and the myrtle, and the oil tree; I will set in the desert the fir tree, and the pine, and the box tree together: 20 That they may see, and know, and consider, and understand together, that the hand of the Lord hath done this, and the Holy One of Israel hath created it. + +[Thursday 14-September, 2023](https://getbible.life/kjv/Isaiah/41/17-20) diff --git a/scripture/kjv/09/14/23/scripture.tg b/scripture/kjv/09/14/23/scripture.tg new file mode 100644 index 00000000..acd46518 --- /dev/null +++ b/scripture/kjv/09/14/23/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 41:17-20 +17 When the poor and needy seek water, and there is none, and their tongue faileth for thirst, I the Lord will hear them, I the God of Israel will not forsake them. 18 I will open rivers in high places, and fountains in the midst of the valleys: I will make the wilderness a pool of water, and the dry land springs of water. 19 I will plant in the wilderness the cedar, the shittah tree, and the myrtle, and the oil tree; I will set in the desert the fir tree, and the pine, and the box tree together: 20 That they may see, and know, and consider, and understand together, that the hand of the Lord hath done this, and the Holy One of Israel hath created it. + +Thursday 14-September, 2023 diff --git a/scripture/kjv/09/14/23/scripture.tg.id b/scripture/kjv/09/14/23/scripture.tg.id new file mode 100644 index 00000000..bb953c4b --- /dev/null +++ b/scripture/kjv/09/14/23/scripture.tg.id @@ -0,0 +1 @@ +1076 diff --git a/scripture/kjv/09/14/23/scripture.today b/scripture/kjv/09/14/23/scripture.today new file mode 100644 index 00000000..83479225 --- /dev/null +++ b/scripture/kjv/09/14/23/scripture.today @@ -0,0 +1 @@ +23 41:17-20 diff --git a/scripture/kjv/09/14/24/scripture.html b/scripture/kjv/09/14/24/scripture.html new file mode 100644 index 00000000..581826ed --- /dev/null +++ b/scripture/kjv/09/14/24/scripture.html @@ -0,0 +1,3 @@ +Galatians 5:13
+13 For, brethren, ye have been called unto liberty; only use not liberty for an occasion to the flesh, but by love serve one another.

+Saturday 14-September, 2024 diff --git a/scripture/kjv/09/14/24/scripture.json b/scripture/kjv/09/14/24/scripture.json new file mode 100644 index 00000000..743caa89 --- /dev/null +++ b/scripture/kjv/09/14/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Galatians", + "chapter": "5", + "date": "Saturday 14-September, 2024", + "getbible": "https://getbible.life/kjv/Galatians/5/13", + "name": "Galatians 5:13", + "scripture": [ + { + "nr": "13", + "text": "For, brethren, ye have been called unto liberty; only use not liberty for an occasion to the flesh, but by love serve one another." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13", + "version": "kjv" +} diff --git a/scripture/kjv/09/14/24/scripture.md b/scripture/kjv/09/14/24/scripture.md new file mode 100644 index 00000000..7df4fb51 --- /dev/null +++ b/scripture/kjv/09/14/24/scripture.md @@ -0,0 +1,5 @@ +**Galatians 5:13** + +13 For, brethren, ye have been called unto liberty; only use not liberty for an occasion to the flesh, but by love serve one another. + +[Saturday 14-September, 2024](https://getbible.life/kjv/Galatians/5/13) diff --git a/scripture/kjv/09/14/24/scripture.tg b/scripture/kjv/09/14/24/scripture.tg new file mode 100644 index 00000000..48276464 --- /dev/null +++ b/scripture/kjv/09/14/24/scripture.tg @@ -0,0 +1,4 @@ +Galatians 5:13 +13 For, brethren, ye have been called unto liberty; only use not liberty for an occasion to the flesh, but by love serve one another. + +Saturday 14-September, 2024 diff --git a/scripture/kjv/09/14/24/scripture.tg.id b/scripture/kjv/09/14/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/14/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/14/24/scripture.today b/scripture/kjv/09/14/24/scripture.today new file mode 100644 index 00000000..13860489 --- /dev/null +++ b/scripture/kjv/09/14/24/scripture.today @@ -0,0 +1 @@ +48 5:13 diff --git a/scripture/kjv/09/14/25/scripture.html b/scripture/kjv/09/14/25/scripture.html new file mode 100644 index 00000000..53066622 --- /dev/null +++ b/scripture/kjv/09/14/25/scripture.html @@ -0,0 +1,3 @@ +1 Timothy 4:16
+16 Take heed unto thyself, and unto the doctrine; continue in them: for in doing this thou shalt both save thyself, and them that hear thee.

+Sunday 14-September, 2025 diff --git a/scripture/kjv/09/14/25/scripture.json b/scripture/kjv/09/14/25/scripture.json new file mode 100644 index 00000000..a75928cd --- /dev/null +++ b/scripture/kjv/09/14/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Timothy", + "chapter": "4", + "date": "Sunday 14-September, 2025", + "getbible": "https://getbible.life/kjv/1 Timothy/4/16", + "name": "1 Timothy 4:16", + "scripture": [ + { + "nr": "16", + "text": "Take heed unto thyself, and unto the doctrine; continue in them: for in doing this thou shalt both save thyself, and them that hear thee. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16", + "version": "kjv" +} diff --git a/scripture/kjv/09/14/25/scripture.md b/scripture/kjv/09/14/25/scripture.md new file mode 100644 index 00000000..898a1ae8 --- /dev/null +++ b/scripture/kjv/09/14/25/scripture.md @@ -0,0 +1,5 @@ +**1 Timothy 4:16** + +16 Take heed unto thyself, and unto the doctrine; continue in them: for in doing this thou shalt both save thyself, and them that hear thee. + +[Sunday 14-September, 2025](https://getbible.life/kjv/1 Timothy/4/16) diff --git a/scripture/kjv/09/14/25/scripture.tg b/scripture/kjv/09/14/25/scripture.tg new file mode 100644 index 00000000..ceb5cd69 --- /dev/null +++ b/scripture/kjv/09/14/25/scripture.tg @@ -0,0 +1,4 @@ +1 Timothy 4:16 +16 Take heed unto thyself, and unto the doctrine; continue in them: for in doing this thou shalt both save thyself, and them that hear thee. + +Sunday 14-September, 2025 diff --git a/scripture/kjv/09/14/25/scripture.tg.id b/scripture/kjv/09/14/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/14/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/14/25/scripture.today b/scripture/kjv/09/14/25/scripture.today new file mode 100644 index 00000000..e5f2486a --- /dev/null +++ b/scripture/kjv/09/14/25/scripture.today @@ -0,0 +1 @@ +54 4:16 diff --git a/scripture/kjv/09/15/23/scripture.html b/scripture/kjv/09/15/23/scripture.html new file mode 100644 index 00000000..2a096182 --- /dev/null +++ b/scripture/kjv/09/15/23/scripture.html @@ -0,0 +1,3 @@ +Matthew 13:16-17
+16 But blessed are your eyes, for they see: and your ears, for they hear. 17 For verily I say unto you, That many prophets and righteous men have desired to see those things which ye see, and have not seen them; and to hear those things which ye hear, and have not heard them.

+Friday 15-September, 2023 diff --git a/scripture/kjv/09/15/23/scripture.json b/scripture/kjv/09/15/23/scripture.json new file mode 100644 index 00000000..e7080450 --- /dev/null +++ b/scripture/kjv/09/15/23/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Matthew", + "chapter": "13", + "date": "Friday 15-September, 2023", + "getbible": "https://getbible.life/kjv/Matthew/13/16-17", + "name": "Matthew 13:16-17", + "scripture": [ + { + "nr": "16", + "text": "But blessed are your eyes, for they see: and your ears, for they hear." + }, + { + "nr": "17", + "text": "For verily I say unto you, That many prophets and righteous men have desired to see those things which ye see, and have not seen them; and to hear those things which ye hear, and have not heard them." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16-17", + "version": "kjv" +} diff --git a/scripture/kjv/09/15/23/scripture.md b/scripture/kjv/09/15/23/scripture.md new file mode 100644 index 00000000..e7361b49 --- /dev/null +++ b/scripture/kjv/09/15/23/scripture.md @@ -0,0 +1,5 @@ +**Matthew 13:16-17** + +16 But blessed are your eyes, for they see: and your ears, for they hear. 17 For verily I say unto you, That many prophets and righteous men have desired to see those things which ye see, and have not seen them; and to hear those things which ye hear, and have not heard them. + +[Friday 15-September, 2023](https://getbible.life/kjv/Matthew/13/16-17) diff --git a/scripture/kjv/09/15/23/scripture.tg b/scripture/kjv/09/15/23/scripture.tg new file mode 100644 index 00000000..d5d57a91 --- /dev/null +++ b/scripture/kjv/09/15/23/scripture.tg @@ -0,0 +1,4 @@ +Matthew 13:16-17 +16 But blessed are your eyes, for they see: and your ears, for they hear. 17 For verily I say unto you, That many prophets and righteous men have desired to see those things which ye see, and have not seen them; and to hear those things which ye hear, and have not heard them. + +Friday 15-September, 2023 diff --git a/scripture/kjv/09/15/23/scripture.tg.id b/scripture/kjv/09/15/23/scripture.tg.id new file mode 100644 index 00000000..6d0c1073 --- /dev/null +++ b/scripture/kjv/09/15/23/scripture.tg.id @@ -0,0 +1 @@ +1077 diff --git a/scripture/kjv/09/15/23/scripture.today b/scripture/kjv/09/15/23/scripture.today new file mode 100644 index 00000000..419a8d46 --- /dev/null +++ b/scripture/kjv/09/15/23/scripture.today @@ -0,0 +1 @@ +40 13:16-17 diff --git a/scripture/kjv/09/15/24/scripture.html b/scripture/kjv/09/15/24/scripture.html new file mode 100644 index 00000000..7db8808a --- /dev/null +++ b/scripture/kjv/09/15/24/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 7:10-11
+10 And unto the married I command, yet not I, but the Lord, Let not the wife depart from her husband: 11 But and if she depart, let her remain unmarried, or be reconciled to her husband: and let not the husband put away his wife.

+Sunday 15-September, 2024 diff --git a/scripture/kjv/09/15/24/scripture.json b/scripture/kjv/09/15/24/scripture.json new file mode 100644 index 00000000..7a355801 --- /dev/null +++ b/scripture/kjv/09/15/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "1 Corinthians", + "chapter": "7", + "date": "Sunday 15-September, 2024", + "getbible": "https://getbible.life/kjv/1 Corinthians/7/10-11", + "name": "1 Corinthians 7:10-11", + "scripture": [ + { + "nr": "10", + "text": "And unto the married I command, yet not I, but the Lord, Let not the wife depart from her husband:" + }, + { + "nr": "11", + "text": "But and if she depart, let her remain unmarried, or be reconciled to her husband: and let not the husband put away his wife." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10-11", + "version": "kjv" +} diff --git a/scripture/kjv/09/15/24/scripture.md b/scripture/kjv/09/15/24/scripture.md new file mode 100644 index 00000000..4ce2d96c --- /dev/null +++ b/scripture/kjv/09/15/24/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 7:10-11** + +10 And unto the married I command, yet not I, but the Lord, Let not the wife depart from her husband: 11 But and if she depart, let her remain unmarried, or be reconciled to her husband: and let not the husband put away his wife. + +[Sunday 15-September, 2024](https://getbible.life/kjv/1 Corinthians/7/10-11) diff --git a/scripture/kjv/09/15/24/scripture.tg b/scripture/kjv/09/15/24/scripture.tg new file mode 100644 index 00000000..e4bc2c21 --- /dev/null +++ b/scripture/kjv/09/15/24/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 7:10-11 +10 And unto the married I command, yet not I, but the Lord, Let not the wife depart from her husband: 11 But and if she depart, let her remain unmarried, or be reconciled to her husband: and let not the husband put away his wife. + +Sunday 15-September, 2024 diff --git a/scripture/kjv/09/15/24/scripture.tg.id b/scripture/kjv/09/15/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/15/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/15/24/scripture.today b/scripture/kjv/09/15/24/scripture.today new file mode 100644 index 00000000..1483f9f3 --- /dev/null +++ b/scripture/kjv/09/15/24/scripture.today @@ -0,0 +1 @@ +46 7:10-11 diff --git a/scripture/kjv/09/15/25/scripture.html b/scripture/kjv/09/15/25/scripture.html new file mode 100644 index 00000000..0015d14b --- /dev/null +++ b/scripture/kjv/09/15/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 34:4
+4 I sought the Lord, and he heard me, and delivered me from all my fears.

+Monday 15-September, 2025 diff --git a/scripture/kjv/09/15/25/scripture.json b/scripture/kjv/09/15/25/scripture.json new file mode 100644 index 00000000..4fd64b2f --- /dev/null +++ b/scripture/kjv/09/15/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "34", + "date": "Monday 15-September, 2025", + "getbible": "https://getbible.life/kjv/Psalms/34/4", + "name": "Psalms 34:4", + "scripture": [ + { + "nr": "4", + "text": "I sought the Lord, and he heard me, and delivered me from all my fears." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4", + "version": "kjv" +} diff --git a/scripture/kjv/09/15/25/scripture.md b/scripture/kjv/09/15/25/scripture.md new file mode 100644 index 00000000..bce17171 --- /dev/null +++ b/scripture/kjv/09/15/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 34:4** + +4 I sought the Lord, and he heard me, and delivered me from all my fears. + +[Monday 15-September, 2025](https://getbible.life/kjv/Psalms/34/4) diff --git a/scripture/kjv/09/15/25/scripture.tg b/scripture/kjv/09/15/25/scripture.tg new file mode 100644 index 00000000..feba4b5f --- /dev/null +++ b/scripture/kjv/09/15/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 34:4 +4 I sought the Lord, and he heard me, and delivered me from all my fears. + +Monday 15-September, 2025 diff --git a/scripture/kjv/09/15/25/scripture.tg.id b/scripture/kjv/09/15/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/15/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/15/25/scripture.today b/scripture/kjv/09/15/25/scripture.today new file mode 100644 index 00000000..f33694e9 --- /dev/null +++ b/scripture/kjv/09/15/25/scripture.today @@ -0,0 +1 @@ +19 34:4 diff --git a/scripture/kjv/09/16/23/scripture.html b/scripture/kjv/09/16/23/scripture.html new file mode 100644 index 00000000..55231d98 --- /dev/null +++ b/scripture/kjv/09/16/23/scripture.html @@ -0,0 +1,3 @@ +Colossians 1:12
+12 Giving thanks unto the Father, which hath made us meet to be partakers of the inheritance of the saints in light:

+Saturday 16-September, 2023 diff --git a/scripture/kjv/09/16/23/scripture.json b/scripture/kjv/09/16/23/scripture.json new file mode 100644 index 00000000..e8842b64 --- /dev/null +++ b/scripture/kjv/09/16/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Colossians", + "chapter": "1", + "date": "Saturday 16-September, 2023", + "getbible": "https://getbible.life/kjv/Colossians/1/12", + "name": "Colossians 1:12", + "scripture": [ + { + "nr": "12", + "text": "Giving thanks unto the Father, which hath made us meet to be partakers of the inheritance of the saints in light:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/09/16/23/scripture.md b/scripture/kjv/09/16/23/scripture.md new file mode 100644 index 00000000..dc26b3d1 --- /dev/null +++ b/scripture/kjv/09/16/23/scripture.md @@ -0,0 +1,5 @@ +**Colossians 1:12** + +12 Giving thanks unto the Father, which hath made us meet to be partakers of the inheritance of the saints in light: + +[Saturday 16-September, 2023](https://getbible.life/kjv/Colossians/1/12) diff --git a/scripture/kjv/09/16/23/scripture.tg b/scripture/kjv/09/16/23/scripture.tg new file mode 100644 index 00000000..d0e03ff2 --- /dev/null +++ b/scripture/kjv/09/16/23/scripture.tg @@ -0,0 +1,4 @@ +Colossians 1:12 +12 Giving thanks unto the Father, which hath made us meet to be partakers of the inheritance of the saints in light: + +Saturday 16-September, 2023 diff --git a/scripture/kjv/09/16/23/scripture.tg.id b/scripture/kjv/09/16/23/scripture.tg.id new file mode 100644 index 00000000..19d50492 --- /dev/null +++ b/scripture/kjv/09/16/23/scripture.tg.id @@ -0,0 +1 @@ +1078 diff --git a/scripture/kjv/09/16/23/scripture.today b/scripture/kjv/09/16/23/scripture.today new file mode 100644 index 00000000..be7093e8 --- /dev/null +++ b/scripture/kjv/09/16/23/scripture.today @@ -0,0 +1 @@ +51 1:12 diff --git a/scripture/kjv/09/16/24/scripture.html b/scripture/kjv/09/16/24/scripture.html new file mode 100644 index 00000000..7fa4ff25 --- /dev/null +++ b/scripture/kjv/09/16/24/scripture.html @@ -0,0 +1,3 @@ +1 Peter 4:19
+19 Wherefore let them that suffer according to the will of God commit the keeping of their souls to him in well doing, as unto a faithful Creator.

+Monday 16-September, 2024 diff --git a/scripture/kjv/09/16/24/scripture.json b/scripture/kjv/09/16/24/scripture.json new file mode 100644 index 00000000..b4276c85 --- /dev/null +++ b/scripture/kjv/09/16/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Peter", + "chapter": "4", + "date": "Monday 16-September, 2024", + "getbible": "https://getbible.life/kjv/1 Peter/4/19", + "name": "1 Peter 4:19", + "scripture": [ + { + "nr": "19", + "text": "Wherefore let them that suffer according to the will of God commit the keeping of their souls to him in well doing, as unto a faithful Creator. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "19", + "version": "kjv" +} diff --git a/scripture/kjv/09/16/24/scripture.md b/scripture/kjv/09/16/24/scripture.md new file mode 100644 index 00000000..c081b2c2 --- /dev/null +++ b/scripture/kjv/09/16/24/scripture.md @@ -0,0 +1,5 @@ +**1 Peter 4:19** + +19 Wherefore let them that suffer according to the will of God commit the keeping of their souls to him in well doing, as unto a faithful Creator. + +[Monday 16-September, 2024](https://getbible.life/kjv/1 Peter/4/19) diff --git a/scripture/kjv/09/16/24/scripture.tg b/scripture/kjv/09/16/24/scripture.tg new file mode 100644 index 00000000..490e87a5 --- /dev/null +++ b/scripture/kjv/09/16/24/scripture.tg @@ -0,0 +1,4 @@ +1 Peter 4:19 +19 Wherefore let them that suffer according to the will of God commit the keeping of their souls to him in well doing, as unto a faithful Creator. + +Monday 16-September, 2024 diff --git a/scripture/kjv/09/16/24/scripture.tg.id b/scripture/kjv/09/16/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/16/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/16/24/scripture.today b/scripture/kjv/09/16/24/scripture.today new file mode 100644 index 00000000..2926edc1 --- /dev/null +++ b/scripture/kjv/09/16/24/scripture.today @@ -0,0 +1 @@ +60 4:19 diff --git a/scripture/kjv/09/16/25/scripture.html b/scripture/kjv/09/16/25/scripture.html new file mode 100644 index 00000000..72ea53e2 --- /dev/null +++ b/scripture/kjv/09/16/25/scripture.html @@ -0,0 +1,3 @@ +Romans 8:28
+28 And we know that all things work together for good to them that love God, to them who are the called according to his purpose.

+Tuesday 16-September, 2025 diff --git a/scripture/kjv/09/16/25/scripture.json b/scripture/kjv/09/16/25/scripture.json new file mode 100644 index 00000000..7ea45daf --- /dev/null +++ b/scripture/kjv/09/16/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Romans", + "chapter": "8", + "date": "Tuesday 16-September, 2025", + "getbible": "https://getbible.life/kjv/Romans/8/28", + "name": "Romans 8:28", + "scripture": [ + { + "nr": "28", + "text": "And we know that all things work together for good to them that love God, to them who are the called according to his purpose." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "28", + "version": "kjv" +} diff --git a/scripture/kjv/09/16/25/scripture.md b/scripture/kjv/09/16/25/scripture.md new file mode 100644 index 00000000..6e9ce99b --- /dev/null +++ b/scripture/kjv/09/16/25/scripture.md @@ -0,0 +1,5 @@ +**Romans 8:28** + +28 And we know that all things work together for good to them that love God, to them who are the called according to his purpose. + +[Tuesday 16-September, 2025](https://getbible.life/kjv/Romans/8/28) diff --git a/scripture/kjv/09/16/25/scripture.tg b/scripture/kjv/09/16/25/scripture.tg new file mode 100644 index 00000000..9ab3a68e --- /dev/null +++ b/scripture/kjv/09/16/25/scripture.tg @@ -0,0 +1,4 @@ +Romans 8:28 +28 And we know that all things work together for good to them that love God, to them who are the called according to his purpose. + +Tuesday 16-September, 2025 diff --git a/scripture/kjv/09/16/25/scripture.tg.id b/scripture/kjv/09/16/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/16/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/16/25/scripture.today b/scripture/kjv/09/16/25/scripture.today new file mode 100644 index 00000000..6f619f59 --- /dev/null +++ b/scripture/kjv/09/16/25/scripture.today @@ -0,0 +1 @@ +45 8:28 diff --git a/scripture/kjv/09/17/23/scripture.html b/scripture/kjv/09/17/23/scripture.html new file mode 100644 index 00000000..b49f1979 --- /dev/null +++ b/scripture/kjv/09/17/23/scripture.html @@ -0,0 +1,3 @@ +1 John 4:10-11
+10 Herein is love, not that we loved God, but that he loved us, and sent his Son to be the propitiation for our sins. 11 Beloved, if God so loved us, we ought also to love one another.

+Sunday 17-September, 2023 diff --git a/scripture/kjv/09/17/23/scripture.json b/scripture/kjv/09/17/23/scripture.json new file mode 100644 index 00000000..b3e2d94a --- /dev/null +++ b/scripture/kjv/09/17/23/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "1 John", + "chapter": "4", + "date": "Sunday 17-September, 2023", + "getbible": "https://getbible.life/kjv/1 John/4/10-11", + "name": "1 John 4:10-11", + "scripture": [ + { + "nr": "10", + "text": "Herein is love, not that we loved God, but that he loved us, and sent his Son to be the propitiation for our sins." + }, + { + "nr": "11", + "text": "Beloved, if God so loved us, we ought also to love one another." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10-11", + "version": "kjv" +} diff --git a/scripture/kjv/09/17/23/scripture.md b/scripture/kjv/09/17/23/scripture.md new file mode 100644 index 00000000..1969ab2a --- /dev/null +++ b/scripture/kjv/09/17/23/scripture.md @@ -0,0 +1,5 @@ +**1 John 4:10-11** + +10 Herein is love, not that we loved God, but that he loved us, and sent his Son to be the propitiation for our sins. 11 Beloved, if God so loved us, we ought also to love one another. + +[Sunday 17-September, 2023](https://getbible.life/kjv/1 John/4/10-11) diff --git a/scripture/kjv/09/17/23/scripture.tg b/scripture/kjv/09/17/23/scripture.tg new file mode 100644 index 00000000..e82226ac --- /dev/null +++ b/scripture/kjv/09/17/23/scripture.tg @@ -0,0 +1,4 @@ +1 John 4:10-11 +10 Herein is love, not that we loved God, but that he loved us, and sent his Son to be the propitiation for our sins. 11 Beloved, if God so loved us, we ought also to love one another. + +Sunday 17-September, 2023 diff --git a/scripture/kjv/09/17/23/scripture.tg.id b/scripture/kjv/09/17/23/scripture.tg.id new file mode 100644 index 00000000..41495a48 --- /dev/null +++ b/scripture/kjv/09/17/23/scripture.tg.id @@ -0,0 +1 @@ +1079 diff --git a/scripture/kjv/09/17/23/scripture.today b/scripture/kjv/09/17/23/scripture.today new file mode 100644 index 00000000..82fded2b --- /dev/null +++ b/scripture/kjv/09/17/23/scripture.today @@ -0,0 +1 @@ +62 4:10-11 diff --git a/scripture/kjv/09/17/24/scripture.html b/scripture/kjv/09/17/24/scripture.html new file mode 100644 index 00000000..805597c7 --- /dev/null +++ b/scripture/kjv/09/17/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 51:1-3
+1 Have mercy upon me, O God, according to thy lovingkindness: according unto the multitude of thy tender mercies blot out my transgressions. 2 Wash me throughly from mine iniquity, and cleanse me from my sin. 3 For I acknowledge my transgressions: and my sin is ever before me.

+Tuesday 17-September, 2024 diff --git a/scripture/kjv/09/17/24/scripture.json b/scripture/kjv/09/17/24/scripture.json new file mode 100644 index 00000000..3c89ee3e --- /dev/null +++ b/scripture/kjv/09/17/24/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Psalms", + "chapter": "51", + "date": "Tuesday 17-September, 2024", + "getbible": "https://getbible.life/kjv/Psalms/51/1-3", + "name": "Psalms 51:1-3", + "scripture": [ + { + "nr": "1", + "text": "Have mercy upon me, O God, according to thy lovingkindness: according unto the multitude of thy tender mercies blot out my transgressions." + }, + { + "nr": "2", + "text": "Wash me throughly from mine iniquity, and cleanse me from my sin." + }, + { + "nr": "3", + "text": "For I acknowledge my transgressions: and my sin is ever before me." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-3", + "version": "kjv" +} diff --git a/scripture/kjv/09/17/24/scripture.md b/scripture/kjv/09/17/24/scripture.md new file mode 100644 index 00000000..c6b5e189 --- /dev/null +++ b/scripture/kjv/09/17/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 51:1-3** + +1 Have mercy upon me, O God, according to thy lovingkindness: according unto the multitude of thy tender mercies blot out my transgressions. 2 Wash me throughly from mine iniquity, and cleanse me from my sin. 3 For I acknowledge my transgressions: and my sin is ever before me. + +[Tuesday 17-September, 2024](https://getbible.life/kjv/Psalms/51/1-3) diff --git a/scripture/kjv/09/17/24/scripture.tg b/scripture/kjv/09/17/24/scripture.tg new file mode 100644 index 00000000..39017ffc --- /dev/null +++ b/scripture/kjv/09/17/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 51:1-3 +1 Have mercy upon me, O God, according to thy lovingkindness: according unto the multitude of thy tender mercies blot out my transgressions. 2 Wash me throughly from mine iniquity, and cleanse me from my sin. 3 For I acknowledge my transgressions: and my sin is ever before me. + +Tuesday 17-September, 2024 diff --git a/scripture/kjv/09/17/24/scripture.tg.id b/scripture/kjv/09/17/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/17/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/17/24/scripture.today b/scripture/kjv/09/17/24/scripture.today new file mode 100644 index 00000000..a0e1749f --- /dev/null +++ b/scripture/kjv/09/17/24/scripture.today @@ -0,0 +1 @@ +19 51:1-3 diff --git a/scripture/kjv/09/17/25/scripture.html b/scripture/kjv/09/17/25/scripture.html new file mode 100644 index 00000000..94afa8b1 --- /dev/null +++ b/scripture/kjv/09/17/25/scripture.html @@ -0,0 +1,3 @@ +Ephesians 2:1
+1 And you hath he quickened, who were dead in trespasses and sins;

+Wednesday 17-September, 2025 diff --git a/scripture/kjv/09/17/25/scripture.json b/scripture/kjv/09/17/25/scripture.json new file mode 100644 index 00000000..6cb7474f --- /dev/null +++ b/scripture/kjv/09/17/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ephesians", + "chapter": "2", + "date": "Wednesday 17-September, 2025", + "getbible": "https://getbible.life/kjv/Ephesians/2/1", + "name": "Ephesians 2:1", + "scripture": [ + { + "nr": "1", + "text": "And you hath he quickened, who were dead in trespasses and sins;" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1", + "version": "kjv" +} diff --git a/scripture/kjv/09/17/25/scripture.md b/scripture/kjv/09/17/25/scripture.md new file mode 100644 index 00000000..7cc8e66a --- /dev/null +++ b/scripture/kjv/09/17/25/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 2:1** + +1 And you hath he quickened, who were dead in trespasses and sins; + +[Wednesday 17-September, 2025](https://getbible.life/kjv/Ephesians/2/1) diff --git a/scripture/kjv/09/17/25/scripture.tg b/scripture/kjv/09/17/25/scripture.tg new file mode 100644 index 00000000..0168e3a8 --- /dev/null +++ b/scripture/kjv/09/17/25/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 2:1 +1 And you hath he quickened, who were dead in trespasses and sins; + +Wednesday 17-September, 2025 diff --git a/scripture/kjv/09/17/25/scripture.tg.id b/scripture/kjv/09/17/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/17/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/17/25/scripture.today b/scripture/kjv/09/17/25/scripture.today new file mode 100644 index 00000000..07d6409b --- /dev/null +++ b/scripture/kjv/09/17/25/scripture.today @@ -0,0 +1 @@ +49 2:1 diff --git a/scripture/kjv/09/18/23/scripture.html b/scripture/kjv/09/18/23/scripture.html new file mode 100644 index 00000000..82fada4e --- /dev/null +++ b/scripture/kjv/09/18/23/scripture.html @@ -0,0 +1,3 @@ +Matthew 14:30-31
+30 But when he saw the wind boisterous, he was afraid; and beginning to sink, he cried, saying, Lord, save me. 31 And immediately Jesus stretched forth his hand, and caught him, and said unto him, O thou of little faith, wherefore didst thou doubt?

+Monday 18-September, 2023 diff --git a/scripture/kjv/09/18/23/scripture.json b/scripture/kjv/09/18/23/scripture.json new file mode 100644 index 00000000..05fc66eb --- /dev/null +++ b/scripture/kjv/09/18/23/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Matthew", + "chapter": "14", + "date": "Monday 18-September, 2023", + "getbible": "https://getbible.life/kjv/Matthew/14/30-31", + "name": "Matthew 14:30-31", + "scripture": [ + { + "nr": "30", + "text": "But when he saw the wind boisterous, he was afraid; and beginning to sink, he cried, saying, Lord, save me." + }, + { + "nr": "31", + "text": "And immediately Jesus stretched forth his hand, and caught him, and said unto him, O thou of little faith, wherefore didst thou doubt?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "30-31", + "version": "kjv" +} diff --git a/scripture/kjv/09/18/23/scripture.md b/scripture/kjv/09/18/23/scripture.md new file mode 100644 index 00000000..5ba30fe3 --- /dev/null +++ b/scripture/kjv/09/18/23/scripture.md @@ -0,0 +1,5 @@ +**Matthew 14:30-31** + +30 But when he saw the wind boisterous, he was afraid; and beginning to sink, he cried, saying, Lord, save me. 31 And immediately Jesus stretched forth his hand, and caught him, and said unto him, O thou of little faith, wherefore didst thou doubt? + +[Monday 18-September, 2023](https://getbible.life/kjv/Matthew/14/30-31) diff --git a/scripture/kjv/09/18/23/scripture.tg b/scripture/kjv/09/18/23/scripture.tg new file mode 100644 index 00000000..2d9279d0 --- /dev/null +++ b/scripture/kjv/09/18/23/scripture.tg @@ -0,0 +1,4 @@ +Matthew 14:30-31 +30 But when he saw the wind boisterous, he was afraid; and beginning to sink, he cried, saying, Lord, save me. 31 And immediately Jesus stretched forth his hand, and caught him, and said unto him, O thou of little faith, wherefore didst thou doubt? + +Monday 18-September, 2023 diff --git a/scripture/kjv/09/18/23/scripture.tg.id b/scripture/kjv/09/18/23/scripture.tg.id new file mode 100644 index 00000000..5b146698 --- /dev/null +++ b/scripture/kjv/09/18/23/scripture.tg.id @@ -0,0 +1 @@ +1080 diff --git a/scripture/kjv/09/18/23/scripture.today b/scripture/kjv/09/18/23/scripture.today new file mode 100644 index 00000000..eacd3892 --- /dev/null +++ b/scripture/kjv/09/18/23/scripture.today @@ -0,0 +1 @@ +40 14:30-31 diff --git a/scripture/kjv/09/18/24/scripture.html b/scripture/kjv/09/18/24/scripture.html new file mode 100644 index 00000000..7832d02d --- /dev/null +++ b/scripture/kjv/09/18/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 101:3
+3 I will set no wicked thing before mine eyes: I hate the work of them that turn aside; it shall not cleave to me.

+Wednesday 18-September, 2024 diff --git a/scripture/kjv/09/18/24/scripture.json b/scripture/kjv/09/18/24/scripture.json new file mode 100644 index 00000000..2a174074 --- /dev/null +++ b/scripture/kjv/09/18/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "101", + "date": "Wednesday 18-September, 2024", + "getbible": "https://getbible.life/kjv/Psalms/101/3", + "name": "Psalms 101:3", + "scripture": [ + { + "nr": "3", + "text": "I will set no wicked thing before mine eyes: I hate the work of them that turn aside; it shall not cleave to me." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3", + "version": "kjv" +} diff --git a/scripture/kjv/09/18/24/scripture.md b/scripture/kjv/09/18/24/scripture.md new file mode 100644 index 00000000..eece3ecf --- /dev/null +++ b/scripture/kjv/09/18/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 101:3** + +3 I will set no wicked thing before mine eyes: I hate the work of them that turn aside; it shall not cleave to me. + +[Wednesday 18-September, 2024](https://getbible.life/kjv/Psalms/101/3) diff --git a/scripture/kjv/09/18/24/scripture.tg b/scripture/kjv/09/18/24/scripture.tg new file mode 100644 index 00000000..abc2f099 --- /dev/null +++ b/scripture/kjv/09/18/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 101:3 +3 I will set no wicked thing before mine eyes: I hate the work of them that turn aside; it shall not cleave to me. + +Wednesday 18-September, 2024 diff --git a/scripture/kjv/09/18/24/scripture.tg.id b/scripture/kjv/09/18/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/18/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/18/24/scripture.today b/scripture/kjv/09/18/24/scripture.today new file mode 100644 index 00000000..5f955412 --- /dev/null +++ b/scripture/kjv/09/18/24/scripture.today @@ -0,0 +1 @@ +19 101:3 diff --git a/scripture/kjv/09/18/25/scripture.html b/scripture/kjv/09/18/25/scripture.html new file mode 100644 index 00000000..b59119a0 --- /dev/null +++ b/scripture/kjv/09/18/25/scripture.html @@ -0,0 +1,3 @@ +Isaiah 11:6-9
+6 The wolf also shall dwell with the lamb, and the leopard shall lie down with the kid; and the calf and the young lion and the fatling together; and a little child shall lead them. 7 And the cow and the bear shall feed; their young ones shall lie down together: and the lion shall eat straw like the ox. 8 And the sucking child shall play on the hole of the asp, and the weaned child shall put his hand on the cockatrice’ den. 9 They shall not hurt nor destroy in all my holy mountain: for the earth shall be full of the knowledge of the Lord, as the waters cover the sea.

+Thursday 18-September, 2025 diff --git a/scripture/kjv/09/18/25/scripture.json b/scripture/kjv/09/18/25/scripture.json new file mode 100644 index 00000000..9b528f62 --- /dev/null +++ b/scripture/kjv/09/18/25/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "Isaiah", + "chapter": "11", + "date": "Thursday 18-September, 2025", + "getbible": "https://getbible.life/kjv/Isaiah/11/6-9", + "name": "Isaiah 11:6-9", + "scripture": [ + { + "nr": "6", + "text": "The wolf also shall dwell with the lamb, and the leopard shall lie down with the kid; and the calf and the young lion and the fatling together; and a little child shall lead them." + }, + { + "nr": "7", + "text": "And the cow and the bear shall feed; their young ones shall lie down together: and the lion shall eat straw like the ox." + }, + { + "nr": "8", + "text": "And the sucking child shall play on the hole of the asp, and the weaned child shall put his hand on the cockatrice’ den." + }, + { + "nr": "9", + "text": "They shall not hurt nor destroy in all my holy mountain: for the earth shall be full of the knowledge of the Lord, as the waters cover the sea." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6-9", + "version": "kjv" +} diff --git a/scripture/kjv/09/18/25/scripture.md b/scripture/kjv/09/18/25/scripture.md new file mode 100644 index 00000000..0774b4b4 --- /dev/null +++ b/scripture/kjv/09/18/25/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 11:6-9** + +6 The wolf also shall dwell with the lamb, and the leopard shall lie down with the kid; and the calf and the young lion and the fatling together; and a little child shall lead them. 7 And the cow and the bear shall feed; their young ones shall lie down together: and the lion shall eat straw like the ox. 8 And the sucking child shall play on the hole of the asp, and the weaned child shall put his hand on the cockatrice’ den. 9 They shall not hurt nor destroy in all my holy mountain: for the earth shall be full of the knowledge of the Lord, as the waters cover the sea. + +[Thursday 18-September, 2025](https://getbible.life/kjv/Isaiah/11/6-9) diff --git a/scripture/kjv/09/18/25/scripture.tg b/scripture/kjv/09/18/25/scripture.tg new file mode 100644 index 00000000..94e442ac --- /dev/null +++ b/scripture/kjv/09/18/25/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 11:6-9 +6 The wolf also shall dwell with the lamb, and the leopard shall lie down with the kid; and the calf and the young lion and the fatling together; and a little child shall lead them. 7 And the cow and the bear shall feed; their young ones shall lie down together: and the lion shall eat straw like the ox. 8 And the sucking child shall play on the hole of the asp, and the weaned child shall put his hand on the cockatrice’ den. 9 They shall not hurt nor destroy in all my holy mountain: for the earth shall be full of the knowledge of the Lord, as the waters cover the sea. + +Thursday 18-September, 2025 diff --git a/scripture/kjv/09/18/25/scripture.tg.id b/scripture/kjv/09/18/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/18/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/18/25/scripture.today b/scripture/kjv/09/18/25/scripture.today new file mode 100644 index 00000000..25caaef4 --- /dev/null +++ b/scripture/kjv/09/18/25/scripture.today @@ -0,0 +1 @@ +23 11:6-9 diff --git a/scripture/kjv/09/19/23/scripture.html b/scripture/kjv/09/19/23/scripture.html new file mode 100644 index 00000000..37bc2508 --- /dev/null +++ b/scripture/kjv/09/19/23/scripture.html @@ -0,0 +1,3 @@ +Ezra 7:26
+26 And whosoever will not do the law of thy God, and the law of the king, let judgment be executed speedily upon him, whether it be unto death, or to banishment, or to confiscation of goods, or to imprisonment.

+Tuesday 19-September, 2023 diff --git a/scripture/kjv/09/19/23/scripture.json b/scripture/kjv/09/19/23/scripture.json new file mode 100644 index 00000000..64d4a575 --- /dev/null +++ b/scripture/kjv/09/19/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ezra", + "chapter": "7", + "date": "Tuesday 19-September, 2023", + "getbible": "https://getbible.life/kjv/Ezra/7/26", + "name": "Ezra 7:26", + "scripture": [ + { + "nr": "26", + "text": "And whosoever will not do the law of thy God, and the law of the king, let judgment be executed speedily upon him, whether it be unto death, or to banishment, or to confiscation of goods, or to imprisonment." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "26", + "version": "kjv" +} diff --git a/scripture/kjv/09/19/23/scripture.md b/scripture/kjv/09/19/23/scripture.md new file mode 100644 index 00000000..d60972c5 --- /dev/null +++ b/scripture/kjv/09/19/23/scripture.md @@ -0,0 +1,5 @@ +**Ezra 7:26** + +26 And whosoever will not do the law of thy God, and the law of the king, let judgment be executed speedily upon him, whether it be unto death, or to banishment, or to confiscation of goods, or to imprisonment. + +[Tuesday 19-September, 2023](https://getbible.life/kjv/Ezra/7/26) diff --git a/scripture/kjv/09/19/23/scripture.tg b/scripture/kjv/09/19/23/scripture.tg new file mode 100644 index 00000000..423e241a --- /dev/null +++ b/scripture/kjv/09/19/23/scripture.tg @@ -0,0 +1,4 @@ +Ezra 7:26 +26 And whosoever will not do the law of thy God, and the law of the king, let judgment be executed speedily upon him, whether it be unto death, or to banishment, or to confiscation of goods, or to imprisonment. + +Tuesday 19-September, 2023 diff --git a/scripture/kjv/09/19/23/scripture.tg.id b/scripture/kjv/09/19/23/scripture.tg.id new file mode 100644 index 00000000..e74c832b --- /dev/null +++ b/scripture/kjv/09/19/23/scripture.tg.id @@ -0,0 +1 @@ +1081 diff --git a/scripture/kjv/09/19/23/scripture.today b/scripture/kjv/09/19/23/scripture.today new file mode 100644 index 00000000..97e5b359 --- /dev/null +++ b/scripture/kjv/09/19/23/scripture.today @@ -0,0 +1 @@ +15 7:26 diff --git a/scripture/kjv/09/19/24/scripture.html b/scripture/kjv/09/19/24/scripture.html new file mode 100644 index 00000000..3c5b3747 --- /dev/null +++ b/scripture/kjv/09/19/24/scripture.html @@ -0,0 +1,3 @@ +Joel 2:28
+28 And it shall come to pass afterward, that I will pour out my spirit upon all flesh; and your sons and your daughters shall prophesy, your old men shall dream dreams, your young men shall see visions:

+Thursday 19-September, 2024 diff --git a/scripture/kjv/09/19/24/scripture.json b/scripture/kjv/09/19/24/scripture.json new file mode 100644 index 00000000..7e15fa26 --- /dev/null +++ b/scripture/kjv/09/19/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Joel", + "chapter": "2", + "date": "Thursday 19-September, 2024", + "getbible": "https://getbible.life/kjv/Joel/2/28", + "name": "Joel 2:28", + "scripture": [ + { + "nr": "28", + "text": "And it shall come to pass afterward, that I will pour out my spirit upon all flesh; and your sons and your daughters shall prophesy, your old men shall dream dreams, your young men shall see visions:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "28", + "version": "kjv" +} diff --git a/scripture/kjv/09/19/24/scripture.md b/scripture/kjv/09/19/24/scripture.md new file mode 100644 index 00000000..0d7adb20 --- /dev/null +++ b/scripture/kjv/09/19/24/scripture.md @@ -0,0 +1,5 @@ +**Joel 2:28** + +28 And it shall come to pass afterward, that I will pour out my spirit upon all flesh; and your sons and your daughters shall prophesy, your old men shall dream dreams, your young men shall see visions: + +[Thursday 19-September, 2024](https://getbible.life/kjv/Joel/2/28) diff --git a/scripture/kjv/09/19/24/scripture.tg b/scripture/kjv/09/19/24/scripture.tg new file mode 100644 index 00000000..1ead252d --- /dev/null +++ b/scripture/kjv/09/19/24/scripture.tg @@ -0,0 +1,4 @@ +Joel 2:28 +28 And it shall come to pass afterward, that I will pour out my spirit upon all flesh; and your sons and your daughters shall prophesy, your old men shall dream dreams, your young men shall see visions: + +Thursday 19-September, 2024 diff --git a/scripture/kjv/09/19/24/scripture.tg.id b/scripture/kjv/09/19/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/19/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/19/24/scripture.today b/scripture/kjv/09/19/24/scripture.today new file mode 100644 index 00000000..7d6d9e82 --- /dev/null +++ b/scripture/kjv/09/19/24/scripture.today @@ -0,0 +1 @@ +29 2:28 diff --git a/scripture/kjv/09/19/25/scripture.html b/scripture/kjv/09/19/25/scripture.html new file mode 100644 index 00000000..fb3a287f --- /dev/null +++ b/scripture/kjv/09/19/25/scripture.html @@ -0,0 +1,3 @@ +John 11:26
+26 And whosoever liveth and believeth in me shall never die. Believest thou this?

+Friday 19-September, 2025 diff --git a/scripture/kjv/09/19/25/scripture.json b/scripture/kjv/09/19/25/scripture.json new file mode 100644 index 00000000..6fdbe94e --- /dev/null +++ b/scripture/kjv/09/19/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "11", + "date": "Friday 19-September, 2025", + "getbible": "https://getbible.life/kjv/John/11/26", + "name": "John 11:26", + "scripture": [ + { + "nr": "26", + "text": "And whosoever liveth and believeth in me shall never die. Believest thou this?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "26", + "version": "kjv" +} diff --git a/scripture/kjv/09/19/25/scripture.md b/scripture/kjv/09/19/25/scripture.md new file mode 100644 index 00000000..ad30d731 --- /dev/null +++ b/scripture/kjv/09/19/25/scripture.md @@ -0,0 +1,5 @@ +**John 11:26** + +26 And whosoever liveth and believeth in me shall never die. Believest thou this? + +[Friday 19-September, 2025](https://getbible.life/kjv/John/11/26) diff --git a/scripture/kjv/09/19/25/scripture.tg b/scripture/kjv/09/19/25/scripture.tg new file mode 100644 index 00000000..80ebc602 --- /dev/null +++ b/scripture/kjv/09/19/25/scripture.tg @@ -0,0 +1,4 @@ +John 11:26 +26 And whosoever liveth and believeth in me shall never die. Believest thou this? + +Friday 19-September, 2025 diff --git a/scripture/kjv/09/19/25/scripture.tg.id b/scripture/kjv/09/19/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/19/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/19/25/scripture.today b/scripture/kjv/09/19/25/scripture.today new file mode 100644 index 00000000..068aa911 --- /dev/null +++ b/scripture/kjv/09/19/25/scripture.today @@ -0,0 +1 @@ +43 11:26 diff --git a/scripture/kjv/09/20/23/scripture.html b/scripture/kjv/09/20/23/scripture.html new file mode 100644 index 00000000..8c3ea7f8 --- /dev/null +++ b/scripture/kjv/09/20/23/scripture.html @@ -0,0 +1,3 @@ +James 1:16-17
+16 Do not err, my beloved brethren. 17 Every good gift and every perfect gift is from above, and cometh down from the Father of lights, with whom is no variableness, neither shadow of turning.

+Wednesday 20-September, 2023 diff --git a/scripture/kjv/09/20/23/scripture.json b/scripture/kjv/09/20/23/scripture.json new file mode 100644 index 00000000..43a97837 --- /dev/null +++ b/scripture/kjv/09/20/23/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "James", + "chapter": "1", + "date": "Wednesday 20-September, 2023", + "getbible": "https://getbible.life/kjv/James/1/16-17", + "name": "James 1:16-17", + "scripture": [ + { + "nr": "16", + "text": "Do not err, my beloved brethren." + }, + { + "nr": "17", + "text": "Every good gift and every perfect gift is from above, and cometh down from the Father of lights, with whom is no variableness, neither shadow of turning." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16-17", + "version": "kjv" +} diff --git a/scripture/kjv/09/20/23/scripture.md b/scripture/kjv/09/20/23/scripture.md new file mode 100644 index 00000000..f4f2b6f0 --- /dev/null +++ b/scripture/kjv/09/20/23/scripture.md @@ -0,0 +1,5 @@ +**James 1:16-17** + +16 Do not err, my beloved brethren. 17 Every good gift and every perfect gift is from above, and cometh down from the Father of lights, with whom is no variableness, neither shadow of turning. + +[Wednesday 20-September, 2023](https://getbible.life/kjv/James/1/16-17) diff --git a/scripture/kjv/09/20/23/scripture.tg b/scripture/kjv/09/20/23/scripture.tg new file mode 100644 index 00000000..3746040b --- /dev/null +++ b/scripture/kjv/09/20/23/scripture.tg @@ -0,0 +1,4 @@ +James 1:16-17 +16 Do not err, my beloved brethren. 17 Every good gift and every perfect gift is from above, and cometh down from the Father of lights, with whom is no variableness, neither shadow of turning. + +Wednesday 20-September, 2023 diff --git a/scripture/kjv/09/20/23/scripture.tg.id b/scripture/kjv/09/20/23/scripture.tg.id new file mode 100644 index 00000000..6d5177e4 --- /dev/null +++ b/scripture/kjv/09/20/23/scripture.tg.id @@ -0,0 +1 @@ +1082 diff --git a/scripture/kjv/09/20/23/scripture.today b/scripture/kjv/09/20/23/scripture.today new file mode 100644 index 00000000..c4407377 --- /dev/null +++ b/scripture/kjv/09/20/23/scripture.today @@ -0,0 +1 @@ +59 1:16-17 diff --git a/scripture/kjv/09/20/24/scripture.html b/scripture/kjv/09/20/24/scripture.html new file mode 100644 index 00000000..23e43637 --- /dev/null +++ b/scripture/kjv/09/20/24/scripture.html @@ -0,0 +1,3 @@ +Acts 8:40
+40 But Philip was found at Azotus: and passing through he preached in all the cities, till he came to Cesarea.

+Friday 20-September, 2024 diff --git a/scripture/kjv/09/20/24/scripture.json b/scripture/kjv/09/20/24/scripture.json new file mode 100644 index 00000000..44b791ec --- /dev/null +++ b/scripture/kjv/09/20/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Acts", + "chapter": "8", + "date": "Friday 20-September, 2024", + "getbible": "https://getbible.life/kjv/Acts/8/40", + "name": "Acts 8:40", + "scripture": [ + { + "nr": "40", + "text": "But Philip was found at Azotus: and passing through he preached in all the cities, till he came to Cesarea. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "40", + "version": "kjv" +} diff --git a/scripture/kjv/09/20/24/scripture.md b/scripture/kjv/09/20/24/scripture.md new file mode 100644 index 00000000..cc1a7b8b --- /dev/null +++ b/scripture/kjv/09/20/24/scripture.md @@ -0,0 +1,5 @@ +**Acts 8:40** + +40 But Philip was found at Azotus: and passing through he preached in all the cities, till he came to Cesarea. + +[Friday 20-September, 2024](https://getbible.life/kjv/Acts/8/40) diff --git a/scripture/kjv/09/20/24/scripture.tg b/scripture/kjv/09/20/24/scripture.tg new file mode 100644 index 00000000..1c3c0027 --- /dev/null +++ b/scripture/kjv/09/20/24/scripture.tg @@ -0,0 +1,4 @@ +Acts 8:40 +40 But Philip was found at Azotus: and passing through he preached in all the cities, till he came to Cesarea. + +Friday 20-September, 2024 diff --git a/scripture/kjv/09/20/24/scripture.tg.id b/scripture/kjv/09/20/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/20/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/20/24/scripture.today b/scripture/kjv/09/20/24/scripture.today new file mode 100644 index 00000000..5a62ef64 --- /dev/null +++ b/scripture/kjv/09/20/24/scripture.today @@ -0,0 +1 @@ +44 8:40 diff --git a/scripture/kjv/09/20/25/scripture.html b/scripture/kjv/09/20/25/scripture.html new file mode 100644 index 00000000..0de5f8a1 --- /dev/null +++ b/scripture/kjv/09/20/25/scripture.html @@ -0,0 +1,3 @@ +Isaiah 62:1
+1 For Zion’s sake will I not hold my peace, and for Jerusalem’s sake I will not rest, until the righteousness thereof go forth as brightness, and the salvation thereof as a lamp that burneth.

+Saturday 20-September, 2025 diff --git a/scripture/kjv/09/20/25/scripture.json b/scripture/kjv/09/20/25/scripture.json new file mode 100644 index 00000000..f6cd64c7 --- /dev/null +++ b/scripture/kjv/09/20/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "62", + "date": "Saturday 20-September, 2025", + "getbible": "https://getbible.life/kjv/Isaiah/62/1", + "name": "Isaiah 62:1", + "scripture": [ + { + "nr": "1", + "text": "For Zion’s sake will I not hold my peace, and for Jerusalem’s sake I will not rest, until the righteousness thereof go forth as brightness, and the salvation thereof as a lamp that burneth." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1", + "version": "kjv" +} diff --git a/scripture/kjv/09/20/25/scripture.md b/scripture/kjv/09/20/25/scripture.md new file mode 100644 index 00000000..52436a84 --- /dev/null +++ b/scripture/kjv/09/20/25/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 62:1** + +1 For Zion’s sake will I not hold my peace, and for Jerusalem’s sake I will not rest, until the righteousness thereof go forth as brightness, and the salvation thereof as a lamp that burneth. + +[Saturday 20-September, 2025](https://getbible.life/kjv/Isaiah/62/1) diff --git a/scripture/kjv/09/20/25/scripture.tg b/scripture/kjv/09/20/25/scripture.tg new file mode 100644 index 00000000..e32d0f50 --- /dev/null +++ b/scripture/kjv/09/20/25/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 62:1 +1 For Zion’s sake will I not hold my peace, and for Jerusalem’s sake I will not rest, until the righteousness thereof go forth as brightness, and the salvation thereof as a lamp that burneth. + +Saturday 20-September, 2025 diff --git a/scripture/kjv/09/20/25/scripture.tg.id b/scripture/kjv/09/20/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/20/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/20/25/scripture.today b/scripture/kjv/09/20/25/scripture.today new file mode 100644 index 00000000..996d4dfd --- /dev/null +++ b/scripture/kjv/09/20/25/scripture.today @@ -0,0 +1 @@ +23 62:1 diff --git a/scripture/kjv/09/21/23/scripture.html b/scripture/kjv/09/21/23/scripture.html new file mode 100644 index 00000000..c5488375 --- /dev/null +++ b/scripture/kjv/09/21/23/scripture.html @@ -0,0 +1,3 @@ +John 4:35
+35 Say not ye, There are yet four months, and then cometh harvest? behold, I say unto you, Lift up your eyes, and look on the fields; for they are white already to harvest.

+Thursday 21-September, 2023 diff --git a/scripture/kjv/09/21/23/scripture.json b/scripture/kjv/09/21/23/scripture.json new file mode 100644 index 00000000..62a0fb0a --- /dev/null +++ b/scripture/kjv/09/21/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "4", + "date": "Thursday 21-September, 2023", + "getbible": "https://getbible.life/kjv/John/4/35", + "name": "John 4:35", + "scripture": [ + { + "nr": "35", + "text": "Say not ye, There are yet four months, and then cometh harvest? behold, I say unto you, Lift up your eyes, and look on the fields; for they are white already to harvest." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "35", + "version": "kjv" +} diff --git a/scripture/kjv/09/21/23/scripture.md b/scripture/kjv/09/21/23/scripture.md new file mode 100644 index 00000000..e5e8c89a --- /dev/null +++ b/scripture/kjv/09/21/23/scripture.md @@ -0,0 +1,5 @@ +**John 4:35** + +35 Say not ye, There are yet four months, and then cometh harvest? behold, I say unto you, Lift up your eyes, and look on the fields; for they are white already to harvest. + +[Thursday 21-September, 2023](https://getbible.life/kjv/John/4/35) diff --git a/scripture/kjv/09/21/23/scripture.tg b/scripture/kjv/09/21/23/scripture.tg new file mode 100644 index 00000000..63d2c714 --- /dev/null +++ b/scripture/kjv/09/21/23/scripture.tg @@ -0,0 +1,4 @@ +John 4:35 +35 Say not ye, There are yet four months, and then cometh harvest? behold, I say unto you, Lift up your eyes, and look on the fields; for they are white already to harvest. + +Thursday 21-September, 2023 diff --git a/scripture/kjv/09/21/23/scripture.tg.id b/scripture/kjv/09/21/23/scripture.tg.id new file mode 100644 index 00000000..15f05f40 --- /dev/null +++ b/scripture/kjv/09/21/23/scripture.tg.id @@ -0,0 +1 @@ +1083 diff --git a/scripture/kjv/09/21/23/scripture.today b/scripture/kjv/09/21/23/scripture.today new file mode 100644 index 00000000..0e1e5527 --- /dev/null +++ b/scripture/kjv/09/21/23/scripture.today @@ -0,0 +1 @@ +43 4:35 diff --git a/scripture/kjv/09/21/24/scripture.html b/scripture/kjv/09/21/24/scripture.html new file mode 100644 index 00000000..631151fa --- /dev/null +++ b/scripture/kjv/09/21/24/scripture.html @@ -0,0 +1,3 @@ +James 1:27
+27 Pure religion and undefiled before God and the Father is this, To visit the fatherless and widows in their affliction, and to keep himself unspotted from the world.

+Saturday 21-September, 2024 diff --git a/scripture/kjv/09/21/24/scripture.json b/scripture/kjv/09/21/24/scripture.json new file mode 100644 index 00000000..e727e143 --- /dev/null +++ b/scripture/kjv/09/21/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "James", + "chapter": "1", + "date": "Saturday 21-September, 2024", + "getbible": "https://getbible.life/kjv/James/1/27", + "name": "James 1:27", + "scripture": [ + { + "nr": "27", + "text": "Pure religion and undefiled before God and the Father is this, To visit the fatherless and widows in their affliction, and to keep himself unspotted from the world. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "27", + "version": "kjv" +} diff --git a/scripture/kjv/09/21/24/scripture.md b/scripture/kjv/09/21/24/scripture.md new file mode 100644 index 00000000..6246bd94 --- /dev/null +++ b/scripture/kjv/09/21/24/scripture.md @@ -0,0 +1,5 @@ +**James 1:27** + +27 Pure religion and undefiled before God and the Father is this, To visit the fatherless and widows in their affliction, and to keep himself unspotted from the world. + +[Saturday 21-September, 2024](https://getbible.life/kjv/James/1/27) diff --git a/scripture/kjv/09/21/24/scripture.tg b/scripture/kjv/09/21/24/scripture.tg new file mode 100644 index 00000000..31d2703e --- /dev/null +++ b/scripture/kjv/09/21/24/scripture.tg @@ -0,0 +1,4 @@ +James 1:27 +27 Pure religion and undefiled before God and the Father is this, To visit the fatherless and widows in their affliction, and to keep himself unspotted from the world. + +Saturday 21-September, 2024 diff --git a/scripture/kjv/09/21/24/scripture.tg.id b/scripture/kjv/09/21/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/21/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/21/24/scripture.today b/scripture/kjv/09/21/24/scripture.today new file mode 100644 index 00000000..98eee36d --- /dev/null +++ b/scripture/kjv/09/21/24/scripture.today @@ -0,0 +1 @@ +59 1:27 diff --git a/scripture/kjv/09/21/25/scripture.html b/scripture/kjv/09/21/25/scripture.html new file mode 100644 index 00000000..faf1e558 --- /dev/null +++ b/scripture/kjv/09/21/25/scripture.html @@ -0,0 +1,3 @@ +Proverbs 14:29
+29 He that is slow to wrath is of great understanding: but he that is hasty of spirit exalteth folly.

+Sunday 21-September, 2025 diff --git a/scripture/kjv/09/21/25/scripture.json b/scripture/kjv/09/21/25/scripture.json new file mode 100644 index 00000000..a68d34a1 --- /dev/null +++ b/scripture/kjv/09/21/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "14", + "date": "Sunday 21-September, 2025", + "getbible": "https://getbible.life/kjv/Proverbs/14/29", + "name": "Proverbs 14:29", + "scripture": [ + { + "nr": "29", + "text": "He that is slow to wrath is of great understanding: but he that is hasty of spirit exalteth folly." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "29", + "version": "kjv" +} diff --git a/scripture/kjv/09/21/25/scripture.md b/scripture/kjv/09/21/25/scripture.md new file mode 100644 index 00000000..c8f811e4 --- /dev/null +++ b/scripture/kjv/09/21/25/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 14:29** + +29 He that is slow to wrath is of great understanding: but he that is hasty of spirit exalteth folly. + +[Sunday 21-September, 2025](https://getbible.life/kjv/Proverbs/14/29) diff --git a/scripture/kjv/09/21/25/scripture.tg b/scripture/kjv/09/21/25/scripture.tg new file mode 100644 index 00000000..197c99f9 --- /dev/null +++ b/scripture/kjv/09/21/25/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 14:29 +29 He that is slow to wrath is of great understanding: but he that is hasty of spirit exalteth folly. + +Sunday 21-September, 2025 diff --git a/scripture/kjv/09/21/25/scripture.tg.id b/scripture/kjv/09/21/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/21/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/21/25/scripture.today b/scripture/kjv/09/21/25/scripture.today new file mode 100644 index 00000000..127bfac9 --- /dev/null +++ b/scripture/kjv/09/21/25/scripture.today @@ -0,0 +1 @@ +20 14:29 diff --git a/scripture/kjv/09/22/23/scripture.html b/scripture/kjv/09/22/23/scripture.html new file mode 100644 index 00000000..24c9037b --- /dev/null +++ b/scripture/kjv/09/22/23/scripture.html @@ -0,0 +1,3 @@ +Acts 19:36
+36 Seeing then that these things cannot be spoken against, ye ought to be quiet, and to do nothing rashly.

+Friday 22-September, 2023 diff --git a/scripture/kjv/09/22/23/scripture.json b/scripture/kjv/09/22/23/scripture.json new file mode 100644 index 00000000..16f4e36d --- /dev/null +++ b/scripture/kjv/09/22/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Acts", + "chapter": "19", + "date": "Friday 22-September, 2023", + "getbible": "https://getbible.life/kjv/Acts/19/36", + "name": "Acts 19:36", + "scripture": [ + { + "nr": "36", + "text": "Seeing then that these things cannot be spoken against, ye ought to be quiet, and to do nothing rashly." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "36", + "version": "kjv" +} diff --git a/scripture/kjv/09/22/23/scripture.md b/scripture/kjv/09/22/23/scripture.md new file mode 100644 index 00000000..6cc8b813 --- /dev/null +++ b/scripture/kjv/09/22/23/scripture.md @@ -0,0 +1,5 @@ +**Acts 19:36** + +36 Seeing then that these things cannot be spoken against, ye ought to be quiet, and to do nothing rashly. + +[Friday 22-September, 2023](https://getbible.life/kjv/Acts/19/36) diff --git a/scripture/kjv/09/22/23/scripture.tg b/scripture/kjv/09/22/23/scripture.tg new file mode 100644 index 00000000..3c6862b0 --- /dev/null +++ b/scripture/kjv/09/22/23/scripture.tg @@ -0,0 +1,4 @@ +Acts 19:36 +36 Seeing then that these things cannot be spoken against, ye ought to be quiet, and to do nothing rashly. + +Friday 22-September, 2023 diff --git a/scripture/kjv/09/22/23/scripture.tg.id b/scripture/kjv/09/22/23/scripture.tg.id new file mode 100644 index 00000000..ca298e35 --- /dev/null +++ b/scripture/kjv/09/22/23/scripture.tg.id @@ -0,0 +1 @@ +1084 diff --git a/scripture/kjv/09/22/23/scripture.today b/scripture/kjv/09/22/23/scripture.today new file mode 100644 index 00000000..f2602f1b --- /dev/null +++ b/scripture/kjv/09/22/23/scripture.today @@ -0,0 +1 @@ +44 19:36 diff --git a/scripture/kjv/09/22/24/scripture.html b/scripture/kjv/09/22/24/scripture.html new file mode 100644 index 00000000..876402a3 --- /dev/null +++ b/scripture/kjv/09/22/24/scripture.html @@ -0,0 +1,3 @@ +Exodus 15:26
+26 And said, If thou wilt diligently hearken to the voice of the Lord thy God, and wilt do that which is right in his sight, and wilt give ear to his commandments, and keep all his statutes, I will put none of these diseases upon thee, which I have brought upon the Egyptians: for I am the Lord that healeth thee.

+Sunday 22-September, 2024 diff --git a/scripture/kjv/09/22/24/scripture.json b/scripture/kjv/09/22/24/scripture.json new file mode 100644 index 00000000..62352200 --- /dev/null +++ b/scripture/kjv/09/22/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Exodus", + "chapter": "15", + "date": "Sunday 22-September, 2024", + "getbible": "https://getbible.life/kjv/Exodus/15/26", + "name": "Exodus 15:26", + "scripture": [ + { + "nr": "26", + "text": "And said, If thou wilt diligently hearken to the voice of the Lord thy God, and wilt do that which is right in his sight, and wilt give ear to his commandments, and keep all his statutes, I will put none of these diseases upon thee, which I have brought upon the Egyptians: for I am the Lord that healeth thee." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "26", + "version": "kjv" +} diff --git a/scripture/kjv/09/22/24/scripture.md b/scripture/kjv/09/22/24/scripture.md new file mode 100644 index 00000000..469b3a1a --- /dev/null +++ b/scripture/kjv/09/22/24/scripture.md @@ -0,0 +1,5 @@ +**Exodus 15:26** + +26 And said, If thou wilt diligently hearken to the voice of the Lord thy God, and wilt do that which is right in his sight, and wilt give ear to his commandments, and keep all his statutes, I will put none of these diseases upon thee, which I have brought upon the Egyptians: for I am the Lord that healeth thee. + +[Sunday 22-September, 2024](https://getbible.life/kjv/Exodus/15/26) diff --git a/scripture/kjv/09/22/24/scripture.tg b/scripture/kjv/09/22/24/scripture.tg new file mode 100644 index 00000000..ac30a7d6 --- /dev/null +++ b/scripture/kjv/09/22/24/scripture.tg @@ -0,0 +1,4 @@ +Exodus 15:26 +26 And said, If thou wilt diligently hearken to the voice of the Lord thy God, and wilt do that which is right in his sight, and wilt give ear to his commandments, and keep all his statutes, I will put none of these diseases upon thee, which I have brought upon the Egyptians: for I am the Lord that healeth thee. + +Sunday 22-September, 2024 diff --git a/scripture/kjv/09/22/24/scripture.tg.id b/scripture/kjv/09/22/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/22/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/22/24/scripture.today b/scripture/kjv/09/22/24/scripture.today new file mode 100644 index 00000000..029b7b21 --- /dev/null +++ b/scripture/kjv/09/22/24/scripture.today @@ -0,0 +1 @@ +2 15:26 diff --git a/scripture/kjv/09/22/25/scripture.html b/scripture/kjv/09/22/25/scripture.html new file mode 100644 index 00000000..abbd2e8c --- /dev/null +++ b/scripture/kjv/09/22/25/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 1:28
+28 And base things of the world, and things which are despised, hath God chosen, yea, and things which are not, to bring to nought things that are:

+Monday 22-September, 2025 diff --git a/scripture/kjv/09/22/25/scripture.json b/scripture/kjv/09/22/25/scripture.json new file mode 100644 index 00000000..0a27dece --- /dev/null +++ b/scripture/kjv/09/22/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "1", + "date": "Monday 22-September, 2025", + "getbible": "https://getbible.life/kjv/1 Corinthians/1/28", + "name": "1 Corinthians 1:28", + "scripture": [ + { + "nr": "28", + "text": "And base things of the world, and things which are despised, hath God chosen, yea, and things which are not, to bring to nought things that are:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "28", + "version": "kjv" +} diff --git a/scripture/kjv/09/22/25/scripture.md b/scripture/kjv/09/22/25/scripture.md new file mode 100644 index 00000000..aae17d7f --- /dev/null +++ b/scripture/kjv/09/22/25/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 1:28** + +28 And base things of the world, and things which are despised, hath God chosen, yea, and things which are not, to bring to nought things that are: + +[Monday 22-September, 2025](https://getbible.life/kjv/1 Corinthians/1/28) diff --git a/scripture/kjv/09/22/25/scripture.tg b/scripture/kjv/09/22/25/scripture.tg new file mode 100644 index 00000000..67e14f86 --- /dev/null +++ b/scripture/kjv/09/22/25/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 1:28 +28 And base things of the world, and things which are despised, hath God chosen, yea, and things which are not, to bring to nought things that are: + +Monday 22-September, 2025 diff --git a/scripture/kjv/09/22/25/scripture.tg.id b/scripture/kjv/09/22/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/22/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/22/25/scripture.today b/scripture/kjv/09/22/25/scripture.today new file mode 100644 index 00000000..ca9b07d9 --- /dev/null +++ b/scripture/kjv/09/22/25/scripture.today @@ -0,0 +1 @@ +46 1:28 diff --git a/scripture/kjv/09/23/23/scripture.html b/scripture/kjv/09/23/23/scripture.html new file mode 100644 index 00000000..56d5a5e7 --- /dev/null +++ b/scripture/kjv/09/23/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 27:6
+6 Faithful are the wounds of a friend; but the kisses of an enemy are deceitful.

+Saturday 23-September, 2023 diff --git a/scripture/kjv/09/23/23/scripture.json b/scripture/kjv/09/23/23/scripture.json new file mode 100644 index 00000000..a7dbbdf4 --- /dev/null +++ b/scripture/kjv/09/23/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "27", + "date": "Saturday 23-September, 2023", + "getbible": "https://getbible.life/kjv/Proverbs/27/6", + "name": "Proverbs 27:6", + "scripture": [ + { + "nr": "6", + "text": "Faithful are the wounds of a friend; but the kisses of an enemy are deceitful." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6", + "version": "kjv" +} diff --git a/scripture/kjv/09/23/23/scripture.md b/scripture/kjv/09/23/23/scripture.md new file mode 100644 index 00000000..c270553d --- /dev/null +++ b/scripture/kjv/09/23/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 27:6** + +6 Faithful are the wounds of a friend; but the kisses of an enemy are deceitful. + +[Saturday 23-September, 2023](https://getbible.life/kjv/Proverbs/27/6) diff --git a/scripture/kjv/09/23/23/scripture.tg b/scripture/kjv/09/23/23/scripture.tg new file mode 100644 index 00000000..d070c764 --- /dev/null +++ b/scripture/kjv/09/23/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 27:6 +6 Faithful are the wounds of a friend; but the kisses of an enemy are deceitful. + +Saturday 23-September, 2023 diff --git a/scripture/kjv/09/23/23/scripture.tg.id b/scripture/kjv/09/23/23/scripture.tg.id new file mode 100644 index 00000000..fd1f63c2 --- /dev/null +++ b/scripture/kjv/09/23/23/scripture.tg.id @@ -0,0 +1 @@ +1085 diff --git a/scripture/kjv/09/23/23/scripture.today b/scripture/kjv/09/23/23/scripture.today new file mode 100644 index 00000000..96b4c48a --- /dev/null +++ b/scripture/kjv/09/23/23/scripture.today @@ -0,0 +1 @@ +20 27:6 diff --git a/scripture/kjv/09/23/24/scripture.html b/scripture/kjv/09/23/24/scripture.html new file mode 100644 index 00000000..1a26a74e --- /dev/null +++ b/scripture/kjv/09/23/24/scripture.html @@ -0,0 +1,3 @@ +Romans 1:9-13
+9 For God is my witness, whom I serve with my spirit in the gospel of his Son, that without ceasing I make mention of you always in my prayers; 10 Making request, if by any means now at length I might have a prosperous journey by the will of God to come unto you. 11 For I long to see you, that I may impart unto you some spiritual gift, to the end ye may be established; 12 That is, that I may be comforted together with you by the mutual faith both of you and me. 13 Now I would not have you ignorant, brethren, that oftentimes I purposed to come unto you, (but was let hitherto,) that I might have some fruit among you also, even as among other Gentiles.

+Monday 23-September, 2024 diff --git a/scripture/kjv/09/23/24/scripture.json b/scripture/kjv/09/23/24/scripture.json new file mode 100644 index 00000000..2b910b69 --- /dev/null +++ b/scripture/kjv/09/23/24/scripture.json @@ -0,0 +1,33 @@ +{ + "book": "Romans", + "chapter": "1", + "date": "Monday 23-September, 2024", + "getbible": "https://getbible.life/kjv/Romans/1/9-13", + "name": "Romans 1:9-13", + "scripture": [ + { + "nr": "9", + "text": "For God is my witness, whom I serve with my spirit in the gospel of his Son, that without ceasing I make mention of you always in my prayers;" + }, + { + "nr": "10", + "text": "Making request, if by any means now at length I might have a prosperous journey by the will of God to come unto you." + }, + { + "nr": "11", + "text": "For I long to see you, that I may impart unto you some spiritual gift, to the end ye may be established;" + }, + { + "nr": "12", + "text": "That is, that I may be comforted together with you by the mutual faith both of you and me." + }, + { + "nr": "13", + "text": "Now I would not have you ignorant, brethren, that oftentimes I purposed to come unto you, (but was let hitherto,) that I might have some fruit among you also, even as among other Gentiles." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9-13", + "version": "kjv" +} diff --git a/scripture/kjv/09/23/24/scripture.md b/scripture/kjv/09/23/24/scripture.md new file mode 100644 index 00000000..74d0a5ee --- /dev/null +++ b/scripture/kjv/09/23/24/scripture.md @@ -0,0 +1,5 @@ +**Romans 1:9-13** + +9 For God is my witness, whom I serve with my spirit in the gospel of his Son, that without ceasing I make mention of you always in my prayers; 10 Making request, if by any means now at length I might have a prosperous journey by the will of God to come unto you. 11 For I long to see you, that I may impart unto you some spiritual gift, to the end ye may be established; 12 That is, that I may be comforted together with you by the mutual faith both of you and me. 13 Now I would not have you ignorant, brethren, that oftentimes I purposed to come unto you, (but was let hitherto,) that I might have some fruit among you also, even as among other Gentiles. + +[Monday 23-September, 2024](https://getbible.life/kjv/Romans/1/9-13) diff --git a/scripture/kjv/09/23/24/scripture.tg b/scripture/kjv/09/23/24/scripture.tg new file mode 100644 index 00000000..36d85934 --- /dev/null +++ b/scripture/kjv/09/23/24/scripture.tg @@ -0,0 +1,4 @@ +Romans 1:9-13 +9 For God is my witness, whom I serve with my spirit in the gospel of his Son, that without ceasing I make mention of you always in my prayers; 10 Making request, if by any means now at length I might have a prosperous journey by the will of God to come unto you. 11 For I long to see you, that I may impart unto you some spiritual gift, to the end ye may be established; 12 That is, that I may be comforted together with you by the mutual faith both of you and me. 13 Now I would not have you ignorant, brethren, that oftentimes I purposed to come unto you, (but was let hitherto,) that I might have some fruit among you also, even as among other Gentiles. + +Monday 23-September, 2024 diff --git a/scripture/kjv/09/23/24/scripture.tg.id b/scripture/kjv/09/23/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/23/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/23/24/scripture.today b/scripture/kjv/09/23/24/scripture.today new file mode 100644 index 00000000..df578073 --- /dev/null +++ b/scripture/kjv/09/23/24/scripture.today @@ -0,0 +1 @@ +45 1:9-13 diff --git a/scripture/kjv/09/23/25/scripture.html b/scripture/kjv/09/23/25/scripture.html new file mode 100644 index 00000000..ad8b36f1 --- /dev/null +++ b/scripture/kjv/09/23/25/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 9:11
+11 If we have sown unto you spiritual things, is it a great thing if we shall reap your carnal things?

+Tuesday 23-September, 2025 diff --git a/scripture/kjv/09/23/25/scripture.json b/scripture/kjv/09/23/25/scripture.json new file mode 100644 index 00000000..e3131553 --- /dev/null +++ b/scripture/kjv/09/23/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "9", + "date": "Tuesday 23-September, 2025", + "getbible": "https://getbible.life/kjv/1 Corinthians/9/11", + "name": "1 Corinthians 9:11", + "scripture": [ + { + "nr": "11", + "text": "If we have sown unto you spiritual things, is it a great thing if we shall reap your carnal things?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/09/23/25/scripture.md b/scripture/kjv/09/23/25/scripture.md new file mode 100644 index 00000000..b86364d5 --- /dev/null +++ b/scripture/kjv/09/23/25/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 9:11** + +11 If we have sown unto you spiritual things, is it a great thing if we shall reap your carnal things? + +[Tuesday 23-September, 2025](https://getbible.life/kjv/1 Corinthians/9/11) diff --git a/scripture/kjv/09/23/25/scripture.tg b/scripture/kjv/09/23/25/scripture.tg new file mode 100644 index 00000000..2f9b0428 --- /dev/null +++ b/scripture/kjv/09/23/25/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 9:11 +11 If we have sown unto you spiritual things, is it a great thing if we shall reap your carnal things? + +Tuesday 23-September, 2025 diff --git a/scripture/kjv/09/23/25/scripture.tg.id b/scripture/kjv/09/23/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/23/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/23/25/scripture.today b/scripture/kjv/09/23/25/scripture.today new file mode 100644 index 00000000..87833f22 --- /dev/null +++ b/scripture/kjv/09/23/25/scripture.today @@ -0,0 +1 @@ +46 9:11 diff --git a/scripture/kjv/09/24/23/scripture.html b/scripture/kjv/09/24/23/scripture.html new file mode 100644 index 00000000..24cc38db --- /dev/null +++ b/scripture/kjv/09/24/23/scripture.html @@ -0,0 +1,3 @@ +1 Timothy 1:15
+15 This is a faithful saying, and worthy of all acceptation, that Christ Jesus came into the world to save sinners; of whom I am chief.

+Sunday 24-September, 2023 diff --git a/scripture/kjv/09/24/23/scripture.json b/scripture/kjv/09/24/23/scripture.json new file mode 100644 index 00000000..c891ace2 --- /dev/null +++ b/scripture/kjv/09/24/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Timothy", + "chapter": "1", + "date": "Sunday 24-September, 2023", + "getbible": "https://getbible.life/kjv/1 Timothy/1/15", + "name": "1 Timothy 1:15", + "scripture": [ + { + "nr": "15", + "text": "This is a faithful saying, and worthy of all acceptation, that Christ Jesus came into the world to save sinners; of whom I am chief." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15", + "version": "kjv" +} diff --git a/scripture/kjv/09/24/23/scripture.md b/scripture/kjv/09/24/23/scripture.md new file mode 100644 index 00000000..241f37c0 --- /dev/null +++ b/scripture/kjv/09/24/23/scripture.md @@ -0,0 +1,5 @@ +**1 Timothy 1:15** + +15 This is a faithful saying, and worthy of all acceptation, that Christ Jesus came into the world to save sinners; of whom I am chief. + +[Sunday 24-September, 2023](https://getbible.life/kjv/1 Timothy/1/15) diff --git a/scripture/kjv/09/24/23/scripture.tg b/scripture/kjv/09/24/23/scripture.tg new file mode 100644 index 00000000..74ce5abc --- /dev/null +++ b/scripture/kjv/09/24/23/scripture.tg @@ -0,0 +1,4 @@ +1 Timothy 1:15 +15 This is a faithful saying, and worthy of all acceptation, that Christ Jesus came into the world to save sinners; of whom I am chief. + +Sunday 24-September, 2023 diff --git a/scripture/kjv/09/24/23/scripture.tg.id b/scripture/kjv/09/24/23/scripture.tg.id new file mode 100644 index 00000000..75864bc5 --- /dev/null +++ b/scripture/kjv/09/24/23/scripture.tg.id @@ -0,0 +1 @@ +1086 diff --git a/scripture/kjv/09/24/23/scripture.today b/scripture/kjv/09/24/23/scripture.today new file mode 100644 index 00000000..8d1aa128 --- /dev/null +++ b/scripture/kjv/09/24/23/scripture.today @@ -0,0 +1 @@ +54 1:15 diff --git a/scripture/kjv/09/24/24/scripture.html b/scripture/kjv/09/24/24/scripture.html new file mode 100644 index 00000000..4a289817 --- /dev/null +++ b/scripture/kjv/09/24/24/scripture.html @@ -0,0 +1,3 @@ +Acts 3:16
+16 And his name through faith in his name hath made this man strong, whom ye see and know: yea, the faith which is by him hath given him this perfect soundness in the presence of you all.

+Tuesday 24-September, 2024 diff --git a/scripture/kjv/09/24/24/scripture.json b/scripture/kjv/09/24/24/scripture.json new file mode 100644 index 00000000..4b35a904 --- /dev/null +++ b/scripture/kjv/09/24/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Acts", + "chapter": "3", + "date": "Tuesday 24-September, 2024", + "getbible": "https://getbible.life/kjv/Acts/3/16", + "name": "Acts 3:16", + "scripture": [ + { + "nr": "16", + "text": "And his name through faith in his name hath made this man strong, whom ye see and know: yea, the faith which is by him hath given him this perfect soundness in the presence of you all." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16", + "version": "kjv" +} diff --git a/scripture/kjv/09/24/24/scripture.md b/scripture/kjv/09/24/24/scripture.md new file mode 100644 index 00000000..a5aec9ab --- /dev/null +++ b/scripture/kjv/09/24/24/scripture.md @@ -0,0 +1,5 @@ +**Acts 3:16** + +16 And his name through faith in his name hath made this man strong, whom ye see and know: yea, the faith which is by him hath given him this perfect soundness in the presence of you all. + +[Tuesday 24-September, 2024](https://getbible.life/kjv/Acts/3/16) diff --git a/scripture/kjv/09/24/24/scripture.tg b/scripture/kjv/09/24/24/scripture.tg new file mode 100644 index 00000000..9c184616 --- /dev/null +++ b/scripture/kjv/09/24/24/scripture.tg @@ -0,0 +1,4 @@ +Acts 3:16 +16 And his name through faith in his name hath made this man strong, whom ye see and know: yea, the faith which is by him hath given him this perfect soundness in the presence of you all. + +Tuesday 24-September, 2024 diff --git a/scripture/kjv/09/24/24/scripture.tg.id b/scripture/kjv/09/24/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/24/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/24/24/scripture.today b/scripture/kjv/09/24/24/scripture.today new file mode 100644 index 00000000..5c23f335 --- /dev/null +++ b/scripture/kjv/09/24/24/scripture.today @@ -0,0 +1 @@ +44 3:16 diff --git a/scripture/kjv/09/24/25/scripture.html b/scripture/kjv/09/24/25/scripture.html new file mode 100644 index 00000000..e0fada57 --- /dev/null +++ b/scripture/kjv/09/24/25/scripture.html @@ -0,0 +1,3 @@ +Romans 14:23
+23 And he that doubteth is damned if he eat, because he eateth not of faith: for whatsoever is not of faith is sin.

+Wednesday 24-September, 2025 diff --git a/scripture/kjv/09/24/25/scripture.json b/scripture/kjv/09/24/25/scripture.json new file mode 100644 index 00000000..90e9b3ad --- /dev/null +++ b/scripture/kjv/09/24/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Romans", + "chapter": "14", + "date": "Wednesday 24-September, 2025", + "getbible": "https://getbible.life/kjv/Romans/14/23", + "name": "Romans 14:23", + "scripture": [ + { + "nr": "23", + "text": "And he that doubteth is damned if he eat, because he eateth not of faith: for whatsoever is not of faith is sin. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "23", + "version": "kjv" +} diff --git a/scripture/kjv/09/24/25/scripture.md b/scripture/kjv/09/24/25/scripture.md new file mode 100644 index 00000000..33c8e6f7 --- /dev/null +++ b/scripture/kjv/09/24/25/scripture.md @@ -0,0 +1,5 @@ +**Romans 14:23** + +23 And he that doubteth is damned if he eat, because he eateth not of faith: for whatsoever is not of faith is sin. + +[Wednesday 24-September, 2025](https://getbible.life/kjv/Romans/14/23) diff --git a/scripture/kjv/09/24/25/scripture.tg b/scripture/kjv/09/24/25/scripture.tg new file mode 100644 index 00000000..64128f07 --- /dev/null +++ b/scripture/kjv/09/24/25/scripture.tg @@ -0,0 +1,4 @@ +Romans 14:23 +23 And he that doubteth is damned if he eat, because he eateth not of faith: for whatsoever is not of faith is sin. + +Wednesday 24-September, 2025 diff --git a/scripture/kjv/09/24/25/scripture.tg.id b/scripture/kjv/09/24/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/24/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/24/25/scripture.today b/scripture/kjv/09/24/25/scripture.today new file mode 100644 index 00000000..56fd9c89 --- /dev/null +++ b/scripture/kjv/09/24/25/scripture.today @@ -0,0 +1 @@ +45 14:23 diff --git a/scripture/kjv/09/25/23/scripture.html b/scripture/kjv/09/25/23/scripture.html new file mode 100644 index 00000000..3e89aa86 --- /dev/null +++ b/scripture/kjv/09/25/23/scripture.html @@ -0,0 +1,3 @@ +Matthew 7:20-23
+20 Wherefore by their fruits ye shall know them. 21 Not every one that saith unto me, Lord, Lord, shall enter into the kingdom of heaven; but he that doeth the will of my Father which is in heaven. 22 Many will say to me in that day, Lord, Lord, have we not prophesied in thy name? and in thy name have cast out devils? and in thy name done many wonderful works? 23 And then will I profess unto them, I never knew you: depart from me, ye that work iniquity.

+Monday 25-September, 2023 diff --git a/scripture/kjv/09/25/23/scripture.json b/scripture/kjv/09/25/23/scripture.json new file mode 100644 index 00000000..6e814b13 --- /dev/null +++ b/scripture/kjv/09/25/23/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "Matthew", + "chapter": "7", + "date": "Monday 25-September, 2023", + "getbible": "https://getbible.life/kjv/Matthew/7/20-23", + "name": "Matthew 7:20-23", + "scripture": [ + { + "nr": "20", + "text": "Wherefore by their fruits ye shall know them." + }, + { + "nr": "21", + "text": "Not every one that saith unto me, Lord, Lord, shall enter into the kingdom of heaven; but he that doeth the will of my Father which is in heaven." + }, + { + "nr": "22", + "text": "Many will say to me in that day, Lord, Lord, have we not prophesied in thy name? and in thy name have cast out devils? and in thy name done many wonderful works?" + }, + { + "nr": "23", + "text": "And then will I profess unto them, I never knew you: depart from me, ye that work iniquity." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20-23", + "version": "kjv" +} diff --git a/scripture/kjv/09/25/23/scripture.md b/scripture/kjv/09/25/23/scripture.md new file mode 100644 index 00000000..df3aacea --- /dev/null +++ b/scripture/kjv/09/25/23/scripture.md @@ -0,0 +1,5 @@ +**Matthew 7:20-23** + +20 Wherefore by their fruits ye shall know them. 21 Not every one that saith unto me, Lord, Lord, shall enter into the kingdom of heaven; but he that doeth the will of my Father which is in heaven. 22 Many will say to me in that day, Lord, Lord, have we not prophesied in thy name? and in thy name have cast out devils? and in thy name done many wonderful works? 23 And then will I profess unto them, I never knew you: depart from me, ye that work iniquity. + +[Monday 25-September, 2023](https://getbible.life/kjv/Matthew/7/20-23) diff --git a/scripture/kjv/09/25/23/scripture.tg b/scripture/kjv/09/25/23/scripture.tg new file mode 100644 index 00000000..2e4619ec --- /dev/null +++ b/scripture/kjv/09/25/23/scripture.tg @@ -0,0 +1,4 @@ +Matthew 7:20-23 +20 Wherefore by their fruits ye shall know them. 21 Not every one that saith unto me, Lord, Lord, shall enter into the kingdom of heaven; but he that doeth the will of my Father which is in heaven. 22 Many will say to me in that day, Lord, Lord, have we not prophesied in thy name? and in thy name have cast out devils? and in thy name done many wonderful works? 23 And then will I profess unto them, I never knew you: depart from me, ye that work iniquity. + +Monday 25-September, 2023 diff --git a/scripture/kjv/09/25/23/scripture.tg.id b/scripture/kjv/09/25/23/scripture.tg.id new file mode 100644 index 00000000..669ca49f --- /dev/null +++ b/scripture/kjv/09/25/23/scripture.tg.id @@ -0,0 +1 @@ +1087 diff --git a/scripture/kjv/09/25/23/scripture.today b/scripture/kjv/09/25/23/scripture.today new file mode 100644 index 00000000..a6f8b672 --- /dev/null +++ b/scripture/kjv/09/25/23/scripture.today @@ -0,0 +1 @@ +40 7:20-23 diff --git a/scripture/kjv/09/25/24/scripture.html b/scripture/kjv/09/25/24/scripture.html new file mode 100644 index 00000000..ac5feba7 --- /dev/null +++ b/scripture/kjv/09/25/24/scripture.html @@ -0,0 +1,3 @@ +Ephesians 6:24
+24 Grace be with all them that love our Lord Jesus Christ in sincerity. Amen. Written from Rome unto the Ephesians by Tychicus.

+Wednesday 25-September, 2024 diff --git a/scripture/kjv/09/25/24/scripture.json b/scripture/kjv/09/25/24/scripture.json new file mode 100644 index 00000000..21a8eef7 --- /dev/null +++ b/scripture/kjv/09/25/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ephesians", + "chapter": "6", + "date": "Wednesday 25-September, 2024", + "getbible": "https://getbible.life/kjv/Ephesians/6/24", + "name": "Ephesians 6:24", + "scripture": [ + { + "nr": "24", + "text": "Grace be with all them that love our Lord Jesus Christ in sincerity. Amen. Written from Rome unto the Ephesians by Tychicus. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "24", + "version": "kjv" +} diff --git a/scripture/kjv/09/25/24/scripture.md b/scripture/kjv/09/25/24/scripture.md new file mode 100644 index 00000000..95ca8e18 --- /dev/null +++ b/scripture/kjv/09/25/24/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 6:24** + +24 Grace be with all them that love our Lord Jesus Christ in sincerity. Amen. Written from Rome unto the Ephesians by Tychicus. + +[Wednesday 25-September, 2024](https://getbible.life/kjv/Ephesians/6/24) diff --git a/scripture/kjv/09/25/24/scripture.tg b/scripture/kjv/09/25/24/scripture.tg new file mode 100644 index 00000000..8a21e3bd --- /dev/null +++ b/scripture/kjv/09/25/24/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 6:24 +24 Grace be with all them that love our Lord Jesus Christ in sincerity. Amen. Written from Rome unto the Ephesians by Tychicus. + +Wednesday 25-September, 2024 diff --git a/scripture/kjv/09/25/24/scripture.tg.id b/scripture/kjv/09/25/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/25/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/25/24/scripture.today b/scripture/kjv/09/25/24/scripture.today new file mode 100644 index 00000000..8f82b7ca --- /dev/null +++ b/scripture/kjv/09/25/24/scripture.today @@ -0,0 +1 @@ +49 6:24 diff --git a/scripture/kjv/09/25/25/scripture.html b/scripture/kjv/09/25/25/scripture.html new file mode 100644 index 00000000..5292a25f --- /dev/null +++ b/scripture/kjv/09/25/25/scripture.html @@ -0,0 +1,3 @@ +Romans 10:1
+1 Brethren, my heart’s desire and prayer to God for Israel is, that they might be saved.

+Thursday 25-September, 2025 diff --git a/scripture/kjv/09/25/25/scripture.json b/scripture/kjv/09/25/25/scripture.json new file mode 100644 index 00000000..4732c454 --- /dev/null +++ b/scripture/kjv/09/25/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Romans", + "chapter": "10", + "date": "Thursday 25-September, 2025", + "getbible": "https://getbible.life/kjv/Romans/10/1", + "name": "Romans 10:1", + "scripture": [ + { + "nr": "1", + "text": "Brethren, my heart’s desire and prayer to God for Israel is, that they might be saved." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1", + "version": "kjv" +} diff --git a/scripture/kjv/09/25/25/scripture.md b/scripture/kjv/09/25/25/scripture.md new file mode 100644 index 00000000..5bce6175 --- /dev/null +++ b/scripture/kjv/09/25/25/scripture.md @@ -0,0 +1,5 @@ +**Romans 10:1** + +1 Brethren, my heart’s desire and prayer to God for Israel is, that they might be saved. + +[Thursday 25-September, 2025](https://getbible.life/kjv/Romans/10/1) diff --git a/scripture/kjv/09/25/25/scripture.tg b/scripture/kjv/09/25/25/scripture.tg new file mode 100644 index 00000000..0b857673 --- /dev/null +++ b/scripture/kjv/09/25/25/scripture.tg @@ -0,0 +1,4 @@ +Romans 10:1 +1 Brethren, my heart’s desire and prayer to God for Israel is, that they might be saved. + +Thursday 25-September, 2025 diff --git a/scripture/kjv/09/25/25/scripture.tg.id b/scripture/kjv/09/25/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/25/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/25/25/scripture.today b/scripture/kjv/09/25/25/scripture.today new file mode 100644 index 00000000..cf5bb574 --- /dev/null +++ b/scripture/kjv/09/25/25/scripture.today @@ -0,0 +1 @@ +45 10:1 diff --git a/scripture/kjv/09/26/23/scripture.html b/scripture/kjv/09/26/23/scripture.html new file mode 100644 index 00000000..67d9ccaa --- /dev/null +++ b/scripture/kjv/09/26/23/scripture.html @@ -0,0 +1,3 @@ +Matthew 9:36-38
+36 But when he saw the multitudes, he was moved with compassion on them, because they fainted, and were scattered abroad, as sheep having no shepherd. 37 Then saith he unto his disciples, The harvest truly is plenteous, but the labourers are few; 38 Pray ye therefore the Lord of the harvest, that he will send forth labourers into his harvest.

+Tuesday 26-September, 2023 diff --git a/scripture/kjv/09/26/23/scripture.json b/scripture/kjv/09/26/23/scripture.json new file mode 100644 index 00000000..060a23eb --- /dev/null +++ b/scripture/kjv/09/26/23/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Matthew", + "chapter": "9", + "date": "Tuesday 26-September, 2023", + "getbible": "https://getbible.life/kjv/Matthew/9/36-38", + "name": "Matthew 9:36-38", + "scripture": [ + { + "nr": "36", + "text": "But when he saw the multitudes, he was moved with compassion on them, because they fainted, and were scattered abroad, as sheep having no shepherd." + }, + { + "nr": "37", + "text": "Then saith he unto his disciples, The harvest truly is plenteous, but the labourers are few;" + }, + { + "nr": "38", + "text": "Pray ye therefore the Lord of the harvest, that he will send forth labourers into his harvest. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "36-38", + "version": "kjv" +} diff --git a/scripture/kjv/09/26/23/scripture.md b/scripture/kjv/09/26/23/scripture.md new file mode 100644 index 00000000..7b6655d7 --- /dev/null +++ b/scripture/kjv/09/26/23/scripture.md @@ -0,0 +1,5 @@ +**Matthew 9:36-38** + +36 But when he saw the multitudes, he was moved with compassion on them, because they fainted, and were scattered abroad, as sheep having no shepherd. 37 Then saith he unto his disciples, The harvest truly is plenteous, but the labourers are few; 38 Pray ye therefore the Lord of the harvest, that he will send forth labourers into his harvest. + +[Tuesday 26-September, 2023](https://getbible.life/kjv/Matthew/9/36-38) diff --git a/scripture/kjv/09/26/23/scripture.tg b/scripture/kjv/09/26/23/scripture.tg new file mode 100644 index 00000000..86cac925 --- /dev/null +++ b/scripture/kjv/09/26/23/scripture.tg @@ -0,0 +1,4 @@ +Matthew 9:36-38 +36 But when he saw the multitudes, he was moved with compassion on them, because they fainted, and were scattered abroad, as sheep having no shepherd. 37 Then saith he unto his disciples, The harvest truly is plenteous, but the labourers are few; 38 Pray ye therefore the Lord of the harvest, that he will send forth labourers into his harvest. + +Tuesday 26-September, 2023 diff --git a/scripture/kjv/09/26/23/scripture.tg.id b/scripture/kjv/09/26/23/scripture.tg.id new file mode 100644 index 00000000..d8d14439 --- /dev/null +++ b/scripture/kjv/09/26/23/scripture.tg.id @@ -0,0 +1 @@ +1088 diff --git a/scripture/kjv/09/26/23/scripture.today b/scripture/kjv/09/26/23/scripture.today new file mode 100644 index 00000000..2ec61f81 --- /dev/null +++ b/scripture/kjv/09/26/23/scripture.today @@ -0,0 +1 @@ +40 9:36-38 diff --git a/scripture/kjv/09/26/24/scripture.html b/scripture/kjv/09/26/24/scripture.html new file mode 100644 index 00000000..0211cf9e --- /dev/null +++ b/scripture/kjv/09/26/24/scripture.html @@ -0,0 +1,3 @@ +Galatians 6:15-16
+15 For in Christ Jesus neither circumcision availeth any thing, nor uncircumcision, but a new creature. 16 And as many as walk according to this rule, peace be on them, and mercy, and upon the Israel of God.

+Thursday 26-September, 2024 diff --git a/scripture/kjv/09/26/24/scripture.json b/scripture/kjv/09/26/24/scripture.json new file mode 100644 index 00000000..a0a64f02 --- /dev/null +++ b/scripture/kjv/09/26/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Galatians", + "chapter": "6", + "date": "Thursday 26-September, 2024", + "getbible": "https://getbible.life/kjv/Galatians/6/15-16", + "name": "Galatians 6:15-16", + "scripture": [ + { + "nr": "15", + "text": "For in Christ Jesus neither circumcision availeth any thing, nor uncircumcision, but a new creature." + }, + { + "nr": "16", + "text": "And as many as walk according to this rule, peace be on them, and mercy, and upon the Israel of God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15-16", + "version": "kjv" +} diff --git a/scripture/kjv/09/26/24/scripture.md b/scripture/kjv/09/26/24/scripture.md new file mode 100644 index 00000000..df0b84bd --- /dev/null +++ b/scripture/kjv/09/26/24/scripture.md @@ -0,0 +1,5 @@ +**Galatians 6:15-16** + +15 For in Christ Jesus neither circumcision availeth any thing, nor uncircumcision, but a new creature. 16 And as many as walk according to this rule, peace be on them, and mercy, and upon the Israel of God. + +[Thursday 26-September, 2024](https://getbible.life/kjv/Galatians/6/15-16) diff --git a/scripture/kjv/09/26/24/scripture.tg b/scripture/kjv/09/26/24/scripture.tg new file mode 100644 index 00000000..07bc149d --- /dev/null +++ b/scripture/kjv/09/26/24/scripture.tg @@ -0,0 +1,4 @@ +Galatians 6:15-16 +15 For in Christ Jesus neither circumcision availeth any thing, nor uncircumcision, but a new creature. 16 And as many as walk according to this rule, peace be on them, and mercy, and upon the Israel of God. + +Thursday 26-September, 2024 diff --git a/scripture/kjv/09/26/24/scripture.tg.id b/scripture/kjv/09/26/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/26/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/26/24/scripture.today b/scripture/kjv/09/26/24/scripture.today new file mode 100644 index 00000000..f6dfcee4 --- /dev/null +++ b/scripture/kjv/09/26/24/scripture.today @@ -0,0 +1 @@ +48 6:15-16 diff --git a/scripture/kjv/09/26/25/scripture.html b/scripture/kjv/09/26/25/scripture.html new file mode 100644 index 00000000..9f7bcaf3 --- /dev/null +++ b/scripture/kjv/09/26/25/scripture.html @@ -0,0 +1,3 @@ +John 15:11
+11 These things have I spoken unto you, that my joy might remain in you, and that your joy might be full.

+Friday 26-September, 2025 diff --git a/scripture/kjv/09/26/25/scripture.json b/scripture/kjv/09/26/25/scripture.json new file mode 100644 index 00000000..7005f797 --- /dev/null +++ b/scripture/kjv/09/26/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "15", + "date": "Friday 26-September, 2025", + "getbible": "https://getbible.life/kjv/John/15/11", + "name": "John 15:11", + "scripture": [ + { + "nr": "11", + "text": "These things have I spoken unto you, that my joy might remain in you, and that your joy might be full." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/09/26/25/scripture.md b/scripture/kjv/09/26/25/scripture.md new file mode 100644 index 00000000..8da7f8ff --- /dev/null +++ b/scripture/kjv/09/26/25/scripture.md @@ -0,0 +1,5 @@ +**John 15:11** + +11 These things have I spoken unto you, that my joy might remain in you, and that your joy might be full. + +[Friday 26-September, 2025](https://getbible.life/kjv/John/15/11) diff --git a/scripture/kjv/09/26/25/scripture.tg b/scripture/kjv/09/26/25/scripture.tg new file mode 100644 index 00000000..9cc4e601 --- /dev/null +++ b/scripture/kjv/09/26/25/scripture.tg @@ -0,0 +1,4 @@ +John 15:11 +11 These things have I spoken unto you, that my joy might remain in you, and that your joy might be full. + +Friday 26-September, 2025 diff --git a/scripture/kjv/09/26/25/scripture.tg.id b/scripture/kjv/09/26/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/26/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/26/25/scripture.today b/scripture/kjv/09/26/25/scripture.today new file mode 100644 index 00000000..252439dc --- /dev/null +++ b/scripture/kjv/09/26/25/scripture.today @@ -0,0 +1 @@ +43 15:11 diff --git a/scripture/kjv/09/27/23/scripture.html b/scripture/kjv/09/27/23/scripture.html new file mode 100644 index 00000000..87fbbd6b --- /dev/null +++ b/scripture/kjv/09/27/23/scripture.html @@ -0,0 +1,3 @@ +John 6:60
+60 Many therefore of his disciples, when they had heard this, said, This is an hard saying; who can hear it?

+Wednesday 27-September, 2023 diff --git a/scripture/kjv/09/27/23/scripture.json b/scripture/kjv/09/27/23/scripture.json new file mode 100644 index 00000000..9c5727af --- /dev/null +++ b/scripture/kjv/09/27/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "6", + "date": "Wednesday 27-September, 2023", + "getbible": "https://getbible.life/kjv/John/6/60", + "name": "John 6:60", + "scripture": [ + { + "nr": "60", + "text": "Many therefore of his disciples, when they had heard this, said, This is an hard saying; who can hear it?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "60", + "version": "kjv" +} diff --git a/scripture/kjv/09/27/23/scripture.md b/scripture/kjv/09/27/23/scripture.md new file mode 100644 index 00000000..6cdb11b7 --- /dev/null +++ b/scripture/kjv/09/27/23/scripture.md @@ -0,0 +1,5 @@ +**John 6:60** + +60 Many therefore of his disciples, when they had heard this, said, This is an hard saying; who can hear it? + +[Wednesday 27-September, 2023](https://getbible.life/kjv/John/6/60) diff --git a/scripture/kjv/09/27/23/scripture.tg b/scripture/kjv/09/27/23/scripture.tg new file mode 100644 index 00000000..0489b352 --- /dev/null +++ b/scripture/kjv/09/27/23/scripture.tg @@ -0,0 +1,4 @@ +John 6:60 +60 Many therefore of his disciples, when they had heard this, said, This is an hard saying; who can hear it? + +Wednesday 27-September, 2023 diff --git a/scripture/kjv/09/27/23/scripture.tg.id b/scripture/kjv/09/27/23/scripture.tg.id new file mode 100644 index 00000000..c6ce0c4f --- /dev/null +++ b/scripture/kjv/09/27/23/scripture.tg.id @@ -0,0 +1 @@ +1089 diff --git a/scripture/kjv/09/27/23/scripture.today b/scripture/kjv/09/27/23/scripture.today new file mode 100644 index 00000000..81eac8b4 --- /dev/null +++ b/scripture/kjv/09/27/23/scripture.today @@ -0,0 +1 @@ +43 6:60 diff --git a/scripture/kjv/09/27/24/scripture.html b/scripture/kjv/09/27/24/scripture.html new file mode 100644 index 00000000..9c55fc59 --- /dev/null +++ b/scripture/kjv/09/27/24/scripture.html @@ -0,0 +1,3 @@ +Matthew 10:27-28
+27 What I tell you in darkness, that speak ye in light: and what ye hear in the ear, that preach ye upon the housetops. 28 And fear not them which kill the body, but are not able to kill the soul: but rather fear him which is able to destroy both soul and body in hell.

+Friday 27-September, 2024 diff --git a/scripture/kjv/09/27/24/scripture.json b/scripture/kjv/09/27/24/scripture.json new file mode 100644 index 00000000..f192fdeb --- /dev/null +++ b/scripture/kjv/09/27/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Matthew", + "chapter": "10", + "date": "Friday 27-September, 2024", + "getbible": "https://getbible.life/kjv/Matthew/10/27-28", + "name": "Matthew 10:27-28", + "scripture": [ + { + "nr": "27", + "text": "What I tell you in darkness, that speak ye in light: and what ye hear in the ear, that preach ye upon the housetops." + }, + { + "nr": "28", + "text": "And fear not them which kill the body, but are not able to kill the soul: but rather fear him which is able to destroy both soul and body in hell." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "27-28", + "version": "kjv" +} diff --git a/scripture/kjv/09/27/24/scripture.md b/scripture/kjv/09/27/24/scripture.md new file mode 100644 index 00000000..b25acb4a --- /dev/null +++ b/scripture/kjv/09/27/24/scripture.md @@ -0,0 +1,5 @@ +**Matthew 10:27-28** + +27 What I tell you in darkness, that speak ye in light: and what ye hear in the ear, that preach ye upon the housetops. 28 And fear not them which kill the body, but are not able to kill the soul: but rather fear him which is able to destroy both soul and body in hell. + +[Friday 27-September, 2024](https://getbible.life/kjv/Matthew/10/27-28) diff --git a/scripture/kjv/09/27/24/scripture.tg b/scripture/kjv/09/27/24/scripture.tg new file mode 100644 index 00000000..2d6b6be2 --- /dev/null +++ b/scripture/kjv/09/27/24/scripture.tg @@ -0,0 +1,4 @@ +Matthew 10:27-28 +27 What I tell you in darkness, that speak ye in light: and what ye hear in the ear, that preach ye upon the housetops. 28 And fear not them which kill the body, but are not able to kill the soul: but rather fear him which is able to destroy both soul and body in hell. + +Friday 27-September, 2024 diff --git a/scripture/kjv/09/27/24/scripture.tg.id b/scripture/kjv/09/27/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/27/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/27/24/scripture.today b/scripture/kjv/09/27/24/scripture.today new file mode 100644 index 00000000..649a9c8e --- /dev/null +++ b/scripture/kjv/09/27/24/scripture.today @@ -0,0 +1 @@ +40 10:27-28 diff --git a/scripture/kjv/09/27/25/scripture.html b/scripture/kjv/09/27/25/scripture.html new file mode 100644 index 00000000..d56997f7 --- /dev/null +++ b/scripture/kjv/09/27/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 40:9-10
+9 I have preached righteousness in the great congregation: lo, I have not refrained my lips, O Lord, thou knowest. 10 I have not hid thy righteousness within my heart; I have declared thy faithfulness and thy salvation: I have not concealed thy lovingkindness and thy truth from the great congregation.

+Saturday 27-September, 2025 diff --git a/scripture/kjv/09/27/25/scripture.json b/scripture/kjv/09/27/25/scripture.json new file mode 100644 index 00000000..09fed4cf --- /dev/null +++ b/scripture/kjv/09/27/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Psalms", + "chapter": "40", + "date": "Saturday 27-September, 2025", + "getbible": "https://getbible.life/kjv/Psalms/40/9-10", + "name": "Psalms 40:9-10", + "scripture": [ + { + "nr": "9", + "text": "I have preached righteousness in the great congregation: lo, I have not refrained my lips, O Lord, thou knowest." + }, + { + "nr": "10", + "text": "I have not hid thy righteousness within my heart; I have declared thy faithfulness and thy salvation: I have not concealed thy lovingkindness and thy truth from the great congregation." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9-10", + "version": "kjv" +} diff --git a/scripture/kjv/09/27/25/scripture.md b/scripture/kjv/09/27/25/scripture.md new file mode 100644 index 00000000..b7ac27da --- /dev/null +++ b/scripture/kjv/09/27/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 40:9-10** + +9 I have preached righteousness in the great congregation: lo, I have not refrained my lips, O Lord, thou knowest. 10 I have not hid thy righteousness within my heart; I have declared thy faithfulness and thy salvation: I have not concealed thy lovingkindness and thy truth from the great congregation. + +[Saturday 27-September, 2025](https://getbible.life/kjv/Psalms/40/9-10) diff --git a/scripture/kjv/09/27/25/scripture.tg b/scripture/kjv/09/27/25/scripture.tg new file mode 100644 index 00000000..266775e6 --- /dev/null +++ b/scripture/kjv/09/27/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 40:9-10 +9 I have preached righteousness in the great congregation: lo, I have not refrained my lips, O Lord, thou knowest. 10 I have not hid thy righteousness within my heart; I have declared thy faithfulness and thy salvation: I have not concealed thy lovingkindness and thy truth from the great congregation. + +Saturday 27-September, 2025 diff --git a/scripture/kjv/09/27/25/scripture.tg.id b/scripture/kjv/09/27/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/27/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/27/25/scripture.today b/scripture/kjv/09/27/25/scripture.today new file mode 100644 index 00000000..1e655d6c --- /dev/null +++ b/scripture/kjv/09/27/25/scripture.today @@ -0,0 +1 @@ +19 40:9-10 diff --git a/scripture/kjv/09/28/23/scripture.html b/scripture/kjv/09/28/23/scripture.html new file mode 100644 index 00000000..8b4a5d15 --- /dev/null +++ b/scripture/kjv/09/28/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 60:11
+11 Give us help from trouble: for vain is the help of man.

+Thursday 28-September, 2023 diff --git a/scripture/kjv/09/28/23/scripture.json b/scripture/kjv/09/28/23/scripture.json new file mode 100644 index 00000000..36ba3bc7 --- /dev/null +++ b/scripture/kjv/09/28/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "60", + "date": "Thursday 28-September, 2023", + "getbible": "https://getbible.life/kjv/Psalms/60/11", + "name": "Psalms 60:11", + "scripture": [ + { + "nr": "11", + "text": "Give us help from trouble: for vain is the help of man." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/09/28/23/scripture.md b/scripture/kjv/09/28/23/scripture.md new file mode 100644 index 00000000..4e662ae0 --- /dev/null +++ b/scripture/kjv/09/28/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 60:11** + +11 Give us help from trouble: for vain is the help of man. + +[Thursday 28-September, 2023](https://getbible.life/kjv/Psalms/60/11) diff --git a/scripture/kjv/09/28/23/scripture.tg b/scripture/kjv/09/28/23/scripture.tg new file mode 100644 index 00000000..228839e6 --- /dev/null +++ b/scripture/kjv/09/28/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 60:11 +11 Give us help from trouble: for vain is the help of man. + +Thursday 28-September, 2023 diff --git a/scripture/kjv/09/28/23/scripture.tg.id b/scripture/kjv/09/28/23/scripture.tg.id new file mode 100644 index 00000000..336df569 --- /dev/null +++ b/scripture/kjv/09/28/23/scripture.tg.id @@ -0,0 +1 @@ +1090 diff --git a/scripture/kjv/09/28/23/scripture.today b/scripture/kjv/09/28/23/scripture.today new file mode 100644 index 00000000..3a6161e0 --- /dev/null +++ b/scripture/kjv/09/28/23/scripture.today @@ -0,0 +1 @@ +19 60:11 diff --git a/scripture/kjv/09/28/24/scripture.html b/scripture/kjv/09/28/24/scripture.html new file mode 100644 index 00000000..0b8e710c --- /dev/null +++ b/scripture/kjv/09/28/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 33:16-19
+16 There is no king saved by the multitude of an host: a mighty man is not delivered by much strength. 17 An horse is a vain thing for safety: neither shall he deliver any by his great strength. 18 Behold, the eye of the Lord is upon them that fear him, upon them that hope in his mercy; 19 To deliver their soul from death, and to keep them alive in famine.

+Saturday 28-September, 2024 diff --git a/scripture/kjv/09/28/24/scripture.json b/scripture/kjv/09/28/24/scripture.json new file mode 100644 index 00000000..8bb8d382 --- /dev/null +++ b/scripture/kjv/09/28/24/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "Psalms", + "chapter": "33", + "date": "Saturday 28-September, 2024", + "getbible": "https://getbible.life/kjv/Psalms/33/16-19", + "name": "Psalms 33:16-19", + "scripture": [ + { + "nr": "16", + "text": "There is no king saved by the multitude of an host: a mighty man is not delivered by much strength." + }, + { + "nr": "17", + "text": "An horse is a vain thing for safety: neither shall he deliver any by his great strength." + }, + { + "nr": "18", + "text": "Behold, the eye of the Lord is upon them that fear him, upon them that hope in his mercy;" + }, + { + "nr": "19", + "text": "To deliver their soul from death, and to keep them alive in famine." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16-19", + "version": "kjv" +} diff --git a/scripture/kjv/09/28/24/scripture.md b/scripture/kjv/09/28/24/scripture.md new file mode 100644 index 00000000..0dcae248 --- /dev/null +++ b/scripture/kjv/09/28/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 33:16-19** + +16 There is no king saved by the multitude of an host: a mighty man is not delivered by much strength. 17 An horse is a vain thing for safety: neither shall he deliver any by his great strength. 18 Behold, the eye of the Lord is upon them that fear him, upon them that hope in his mercy; 19 To deliver their soul from death, and to keep them alive in famine. + +[Saturday 28-September, 2024](https://getbible.life/kjv/Psalms/33/16-19) diff --git a/scripture/kjv/09/28/24/scripture.tg b/scripture/kjv/09/28/24/scripture.tg new file mode 100644 index 00000000..d1048d62 --- /dev/null +++ b/scripture/kjv/09/28/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 33:16-19 +16 There is no king saved by the multitude of an host: a mighty man is not delivered by much strength. 17 An horse is a vain thing for safety: neither shall he deliver any by his great strength. 18 Behold, the eye of the Lord is upon them that fear him, upon them that hope in his mercy; 19 To deliver their soul from death, and to keep them alive in famine. + +Saturday 28-September, 2024 diff --git a/scripture/kjv/09/28/24/scripture.tg.id b/scripture/kjv/09/28/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/28/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/28/24/scripture.today b/scripture/kjv/09/28/24/scripture.today new file mode 100644 index 00000000..1d975934 --- /dev/null +++ b/scripture/kjv/09/28/24/scripture.today @@ -0,0 +1 @@ +19 33:16-19 diff --git a/scripture/kjv/09/28/25/scripture.html b/scripture/kjv/09/28/25/scripture.html new file mode 100644 index 00000000..ccf58397 --- /dev/null +++ b/scripture/kjv/09/28/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 31:15
+15 My times are in thy hand: deliver me from the hand of mine enemies, and from them that persecute me.

+Sunday 28-September, 2025 diff --git a/scripture/kjv/09/28/25/scripture.json b/scripture/kjv/09/28/25/scripture.json new file mode 100644 index 00000000..9e73a806 --- /dev/null +++ b/scripture/kjv/09/28/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "31", + "date": "Sunday 28-September, 2025", + "getbible": "https://getbible.life/kjv/Psalms/31/15", + "name": "Psalms 31:15", + "scripture": [ + { + "nr": "15", + "text": "My times are in thy hand: deliver me from the hand of mine enemies, and from them that persecute me." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15", + "version": "kjv" +} diff --git a/scripture/kjv/09/28/25/scripture.md b/scripture/kjv/09/28/25/scripture.md new file mode 100644 index 00000000..f8abb8e5 --- /dev/null +++ b/scripture/kjv/09/28/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 31:15** + +15 My times are in thy hand: deliver me from the hand of mine enemies, and from them that persecute me. + +[Sunday 28-September, 2025](https://getbible.life/kjv/Psalms/31/15) diff --git a/scripture/kjv/09/28/25/scripture.tg b/scripture/kjv/09/28/25/scripture.tg new file mode 100644 index 00000000..a348c69b --- /dev/null +++ b/scripture/kjv/09/28/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 31:15 +15 My times are in thy hand: deliver me from the hand of mine enemies, and from them that persecute me. + +Sunday 28-September, 2025 diff --git a/scripture/kjv/09/28/25/scripture.tg.id b/scripture/kjv/09/28/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/28/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/28/25/scripture.today b/scripture/kjv/09/28/25/scripture.today new file mode 100644 index 00000000..4a7df208 --- /dev/null +++ b/scripture/kjv/09/28/25/scripture.today @@ -0,0 +1 @@ +19 31:15 diff --git a/scripture/kjv/09/29/23/scripture.html b/scripture/kjv/09/29/23/scripture.html new file mode 100644 index 00000000..36a2a28f --- /dev/null +++ b/scripture/kjv/09/29/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 22:6
+6 Train up a child in the way he should go: and when he is old, he will not depart from it.

+Friday 29-September, 2023 diff --git a/scripture/kjv/09/29/23/scripture.json b/scripture/kjv/09/29/23/scripture.json new file mode 100644 index 00000000..568d69a4 --- /dev/null +++ b/scripture/kjv/09/29/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "22", + "date": "Friday 29-September, 2023", + "getbible": "https://getbible.life/kjv/Proverbs/22/6", + "name": "Proverbs 22:6", + "scripture": [ + { + "nr": "6", + "text": "Train up a child in the way he should go: and when he is old, he will not depart from it." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6", + "version": "kjv" +} diff --git a/scripture/kjv/09/29/23/scripture.md b/scripture/kjv/09/29/23/scripture.md new file mode 100644 index 00000000..32b8c4b0 --- /dev/null +++ b/scripture/kjv/09/29/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 22:6** + +6 Train up a child in the way he should go: and when he is old, he will not depart from it. + +[Friday 29-September, 2023](https://getbible.life/kjv/Proverbs/22/6) diff --git a/scripture/kjv/09/29/23/scripture.tg b/scripture/kjv/09/29/23/scripture.tg new file mode 100644 index 00000000..a7f7581b --- /dev/null +++ b/scripture/kjv/09/29/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 22:6 +6 Train up a child in the way he should go: and when he is old, he will not depart from it. + +Friday 29-September, 2023 diff --git a/scripture/kjv/09/29/23/scripture.tg.id b/scripture/kjv/09/29/23/scripture.tg.id new file mode 100644 index 00000000..97938e6e --- /dev/null +++ b/scripture/kjv/09/29/23/scripture.tg.id @@ -0,0 +1 @@ +1091 diff --git a/scripture/kjv/09/29/23/scripture.today b/scripture/kjv/09/29/23/scripture.today new file mode 100644 index 00000000..9b5e15ff --- /dev/null +++ b/scripture/kjv/09/29/23/scripture.today @@ -0,0 +1 @@ +20 22:6 diff --git a/scripture/kjv/09/29/24/scripture.html b/scripture/kjv/09/29/24/scripture.html new file mode 100644 index 00000000..ffc7a368 --- /dev/null +++ b/scripture/kjv/09/29/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 41:1-3
+1 Blessed is he that considereth the poor: the Lord will deliver him in time of trouble. 2 The Lord will preserve him, and keep him alive; and he shall be blessed upon the earth: and thou wilt not deliver him unto the will of his enemies. 3 The Lord will strengthen him upon the bed of languishing: thou wilt make all his bed in his sickness.

+Sunday 29-September, 2024 diff --git a/scripture/kjv/09/29/24/scripture.json b/scripture/kjv/09/29/24/scripture.json new file mode 100644 index 00000000..3bebb6b5 --- /dev/null +++ b/scripture/kjv/09/29/24/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Psalms", + "chapter": "41", + "date": "Sunday 29-September, 2024", + "getbible": "https://getbible.life/kjv/Psalms/41/1-3", + "name": "Psalms 41:1-3", + "scripture": [ + { + "nr": "1", + "text": "Blessed is he that considereth the poor: the Lord will deliver him in time of trouble." + }, + { + "nr": "2", + "text": "The Lord will preserve him, and keep him alive; and he shall be blessed upon the earth: and thou wilt not deliver him unto the will of his enemies." + }, + { + "nr": "3", + "text": "The Lord will strengthen him upon the bed of languishing: thou wilt make all his bed in his sickness." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-3", + "version": "kjv" +} diff --git a/scripture/kjv/09/29/24/scripture.md b/scripture/kjv/09/29/24/scripture.md new file mode 100644 index 00000000..21cdca39 --- /dev/null +++ b/scripture/kjv/09/29/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 41:1-3** + +1 Blessed is he that considereth the poor: the Lord will deliver him in time of trouble. 2 The Lord will preserve him, and keep him alive; and he shall be blessed upon the earth: and thou wilt not deliver him unto the will of his enemies. 3 The Lord will strengthen him upon the bed of languishing: thou wilt make all his bed in his sickness. + +[Sunday 29-September, 2024](https://getbible.life/kjv/Psalms/41/1-3) diff --git a/scripture/kjv/09/29/24/scripture.tg b/scripture/kjv/09/29/24/scripture.tg new file mode 100644 index 00000000..de7ba515 --- /dev/null +++ b/scripture/kjv/09/29/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 41:1-3 +1 Blessed is he that considereth the poor: the Lord will deliver him in time of trouble. 2 The Lord will preserve him, and keep him alive; and he shall be blessed upon the earth: and thou wilt not deliver him unto the will of his enemies. 3 The Lord will strengthen him upon the bed of languishing: thou wilt make all his bed in his sickness. + +Sunday 29-September, 2024 diff --git a/scripture/kjv/09/29/24/scripture.tg.id b/scripture/kjv/09/29/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/29/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/29/24/scripture.today b/scripture/kjv/09/29/24/scripture.today new file mode 100644 index 00000000..60817d4e --- /dev/null +++ b/scripture/kjv/09/29/24/scripture.today @@ -0,0 +1 @@ +19 41:1-3 diff --git a/scripture/kjv/09/29/25/scripture.html b/scripture/kjv/09/29/25/scripture.html new file mode 100644 index 00000000..d59d13ba --- /dev/null +++ b/scripture/kjv/09/29/25/scripture.html @@ -0,0 +1,3 @@ +Proverbs 27:22
+22 Though thou shouldest bray a fool in a mortar among wheat with a pestle, yet will not his foolishness depart from him.

+Monday 29-September, 2025 diff --git a/scripture/kjv/09/29/25/scripture.json b/scripture/kjv/09/29/25/scripture.json new file mode 100644 index 00000000..454d35e3 --- /dev/null +++ b/scripture/kjv/09/29/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "27", + "date": "Monday 29-September, 2025", + "getbible": "https://getbible.life/kjv/Proverbs/27/22", + "name": "Proverbs 27:22", + "scripture": [ + { + "nr": "22", + "text": "Though thou shouldest bray a fool in a mortar among wheat with a pestle, yet will not his foolishness depart from him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "22", + "version": "kjv" +} diff --git a/scripture/kjv/09/29/25/scripture.md b/scripture/kjv/09/29/25/scripture.md new file mode 100644 index 00000000..3cdaa715 --- /dev/null +++ b/scripture/kjv/09/29/25/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 27:22** + +22 Though thou shouldest bray a fool in a mortar among wheat with a pestle, yet will not his foolishness depart from him. + +[Monday 29-September, 2025](https://getbible.life/kjv/Proverbs/27/22) diff --git a/scripture/kjv/09/29/25/scripture.tg b/scripture/kjv/09/29/25/scripture.tg new file mode 100644 index 00000000..1517bfb2 --- /dev/null +++ b/scripture/kjv/09/29/25/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 27:22 +22 Though thou shouldest bray a fool in a mortar among wheat with a pestle, yet will not his foolishness depart from him. + +Monday 29-September, 2025 diff --git a/scripture/kjv/09/29/25/scripture.tg.id b/scripture/kjv/09/29/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/29/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/29/25/scripture.today b/scripture/kjv/09/29/25/scripture.today new file mode 100644 index 00000000..03e27487 --- /dev/null +++ b/scripture/kjv/09/29/25/scripture.today @@ -0,0 +1 @@ +20 27:22 diff --git a/scripture/kjv/09/30/23/scripture.html b/scripture/kjv/09/30/23/scripture.html new file mode 100644 index 00000000..6d38d248 --- /dev/null +++ b/scripture/kjv/09/30/23/scripture.html @@ -0,0 +1,3 @@ +2 Timothy 4:22
+22 The Lord Jesus Christ be with thy spirit. Grace be with you. Amen. The second epistle unto Timotheus, ordained the first bishop of the church of the Ephesians, was written from Rome, when Paul was brought before Nero the second time.

+Saturday 30-September, 2023 diff --git a/scripture/kjv/09/30/23/scripture.json b/scripture/kjv/09/30/23/scripture.json new file mode 100644 index 00000000..fc9a1fc1 --- /dev/null +++ b/scripture/kjv/09/30/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Timothy", + "chapter": "4", + "date": "Saturday 30-September, 2023", + "getbible": "https://getbible.life/kjv/2 Timothy/4/22", + "name": "2 Timothy 4:22", + "scripture": [ + { + "nr": "22", + "text": "The Lord Jesus Christ be with thy spirit. Grace be with you. Amen. The second epistle unto Timotheus, ordained the first bishop of the church of the Ephesians, was written from Rome, when Paul was brought before Nero the second time. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "22", + "version": "kjv" +} diff --git a/scripture/kjv/09/30/23/scripture.md b/scripture/kjv/09/30/23/scripture.md new file mode 100644 index 00000000..7e65f3d8 --- /dev/null +++ b/scripture/kjv/09/30/23/scripture.md @@ -0,0 +1,5 @@ +**2 Timothy 4:22** + +22 The Lord Jesus Christ be with thy spirit. Grace be with you. Amen. The second epistle unto Timotheus, ordained the first bishop of the church of the Ephesians, was written from Rome, when Paul was brought before Nero the second time. + +[Saturday 30-September, 2023](https://getbible.life/kjv/2 Timothy/4/22) diff --git a/scripture/kjv/09/30/23/scripture.tg b/scripture/kjv/09/30/23/scripture.tg new file mode 100644 index 00000000..af69bb8a --- /dev/null +++ b/scripture/kjv/09/30/23/scripture.tg @@ -0,0 +1,4 @@ +2 Timothy 4:22 +22 The Lord Jesus Christ be with thy spirit. Grace be with you. Amen. The second epistle unto Timotheus, ordained the first bishop of the church of the Ephesians, was written from Rome, when Paul was brought before Nero the second time. + +Saturday 30-September, 2023 diff --git a/scripture/kjv/09/30/23/scripture.tg.id b/scripture/kjv/09/30/23/scripture.tg.id new file mode 100644 index 00000000..9c79b4ba --- /dev/null +++ b/scripture/kjv/09/30/23/scripture.tg.id @@ -0,0 +1 @@ +1092 diff --git a/scripture/kjv/09/30/23/scripture.today b/scripture/kjv/09/30/23/scripture.today new file mode 100644 index 00000000..792695ab --- /dev/null +++ b/scripture/kjv/09/30/23/scripture.today @@ -0,0 +1 @@ +55 4:22 diff --git a/scripture/kjv/09/30/24/scripture.html b/scripture/kjv/09/30/24/scripture.html new file mode 100644 index 00000000..61c625b2 --- /dev/null +++ b/scripture/kjv/09/30/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 27:14
+14 Wait on the Lord: be of good courage, and he shall strengthen thine heart: wait, I say, on the Lord.

+Monday 30-September, 2024 diff --git a/scripture/kjv/09/30/24/scripture.json b/scripture/kjv/09/30/24/scripture.json new file mode 100644 index 00000000..6318b5e9 --- /dev/null +++ b/scripture/kjv/09/30/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "27", + "date": "Monday 30-September, 2024", + "getbible": "https://getbible.life/kjv/Psalms/27/14", + "name": "Psalms 27:14", + "scripture": [ + { + "nr": "14", + "text": "Wait on the Lord: be of good courage, and he shall strengthen thine heart: wait, I say, on the Lord. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/09/30/24/scripture.md b/scripture/kjv/09/30/24/scripture.md new file mode 100644 index 00000000..ca5cbfeb --- /dev/null +++ b/scripture/kjv/09/30/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 27:14** + +14 Wait on the Lord: be of good courage, and he shall strengthen thine heart: wait, I say, on the Lord. + +[Monday 30-September, 2024](https://getbible.life/kjv/Psalms/27/14) diff --git a/scripture/kjv/09/30/24/scripture.tg b/scripture/kjv/09/30/24/scripture.tg new file mode 100644 index 00000000..529c82ff --- /dev/null +++ b/scripture/kjv/09/30/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 27:14 +14 Wait on the Lord: be of good courage, and he shall strengthen thine heart: wait, I say, on the Lord. + +Monday 30-September, 2024 diff --git a/scripture/kjv/09/30/24/scripture.tg.id b/scripture/kjv/09/30/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/30/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/30/24/scripture.today b/scripture/kjv/09/30/24/scripture.today new file mode 100644 index 00000000..c966a23d --- /dev/null +++ b/scripture/kjv/09/30/24/scripture.today @@ -0,0 +1 @@ +19 27:14 diff --git a/scripture/kjv/09/30/25/scripture.html b/scripture/kjv/09/30/25/scripture.html new file mode 100644 index 00000000..d65380b3 --- /dev/null +++ b/scripture/kjv/09/30/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 119:11
+11 Thy word have I hid in mine heart, that I might not sin against thee.

+Tuesday 30-September, 2025 diff --git a/scripture/kjv/09/30/25/scripture.json b/scripture/kjv/09/30/25/scripture.json new file mode 100644 index 00000000..bf8d3f95 --- /dev/null +++ b/scripture/kjv/09/30/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "119", + "date": "Tuesday 30-September, 2025", + "getbible": "https://getbible.life/kjv/Psalms/119/11", + "name": "Psalms 119:11", + "scripture": [ + { + "nr": "11", + "text": "Thy word have I hid in mine heart, that I might not sin against thee." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/09/30/25/scripture.md b/scripture/kjv/09/30/25/scripture.md new file mode 100644 index 00000000..6dab2485 --- /dev/null +++ b/scripture/kjv/09/30/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 119:11** + +11 Thy word have I hid in mine heart, that I might not sin against thee. + +[Tuesday 30-September, 2025](https://getbible.life/kjv/Psalms/119/11) diff --git a/scripture/kjv/09/30/25/scripture.tg b/scripture/kjv/09/30/25/scripture.tg new file mode 100644 index 00000000..b7ba8edd --- /dev/null +++ b/scripture/kjv/09/30/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 119:11 +11 Thy word have I hid in mine heart, that I might not sin against thee. + +Tuesday 30-September, 2025 diff --git a/scripture/kjv/09/30/25/scripture.tg.id b/scripture/kjv/09/30/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/09/30/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/09/30/25/scripture.today b/scripture/kjv/09/30/25/scripture.today new file mode 100644 index 00000000..ca7c639d --- /dev/null +++ b/scripture/kjv/09/30/25/scripture.today @@ -0,0 +1 @@ +19 119:11 diff --git a/scripture/kjv/10/01/23/scripture.html b/scripture/kjv/10/01/23/scripture.html new file mode 100644 index 00000000..9e97f4f3 --- /dev/null +++ b/scripture/kjv/10/01/23/scripture.html @@ -0,0 +1,3 @@ +Hebrews 11:32-38
+32 And what shall I more say? for the time would fail me to tell of Gedeon, and of Barak, and of Samson, and of Jephthae; of David also, and Samuel, and of the prophets: 33 Who through faith subdued kingdoms, wrought righteousness, obtained promises, stopped the mouths of lions, 34 Quenched the violence of fire, escaped the edge of the sword, out of weakness were made strong, waxed valiant in fight, turned to flight the armies of the aliens. 35 Women received their dead raised to life again: and others were tortured, not accepting deliverance; that they might obtain a better resurrection: 36 And others had trial of cruel mockings and scourgings, yea, moreover of bonds and imprisonment: 37 They were stoned, they were sawn asunder, were tempted, were slain with the sword: they wandered about in sheepskins and goatskins; being destitute, afflicted, tormented; 38 (Of whom the world was not worthy:) they wandered in deserts, and in mountains, and in dens and caves of the earth.

+Sunday 01-October, 2023 diff --git a/scripture/kjv/10/01/23/scripture.json b/scripture/kjv/10/01/23/scripture.json new file mode 100644 index 00000000..36555691 --- /dev/null +++ b/scripture/kjv/10/01/23/scripture.json @@ -0,0 +1,41 @@ +{ + "book": "Hebrews", + "chapter": "11", + "date": "Sunday 01-October, 2023", + "getbible": "https://getbible.life/kjv/Hebrews/11/32-38", + "name": "Hebrews 11:32-38", + "scripture": [ + { + "nr": "32", + "text": "And what shall I more say? for the time would fail me to tell of Gedeon, and of Barak, and of Samson, and of Jephthae; of David also, and Samuel, and of the prophets:" + }, + { + "nr": "33", + "text": "Who through faith subdued kingdoms, wrought righteousness, obtained promises, stopped the mouths of lions," + }, + { + "nr": "34", + "text": "Quenched the violence of fire, escaped the edge of the sword, out of weakness were made strong, waxed valiant in fight, turned to flight the armies of the aliens." + }, + { + "nr": "35", + "text": "Women received their dead raised to life again: and others were tortured, not accepting deliverance; that they might obtain a better resurrection:" + }, + { + "nr": "36", + "text": "And others had trial of cruel mockings and scourgings, yea, moreover of bonds and imprisonment:" + }, + { + "nr": "37", + "text": "They were stoned, they were sawn asunder, were tempted, were slain with the sword: they wandered about in sheepskins and goatskins; being destitute, afflicted, tormented;" + }, + { + "nr": "38", + "text": "(Of whom the world was not worthy:) they wandered in deserts, and in mountains, and in dens and caves of the earth." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "32-38", + "version": "kjv" +} diff --git a/scripture/kjv/10/01/23/scripture.md b/scripture/kjv/10/01/23/scripture.md new file mode 100644 index 00000000..6980db2b --- /dev/null +++ b/scripture/kjv/10/01/23/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 11:32-38** + +32 And what shall I more say? for the time would fail me to tell of Gedeon, and of Barak, and of Samson, and of Jephthae; of David also, and Samuel, and of the prophets: 33 Who through faith subdued kingdoms, wrought righteousness, obtained promises, stopped the mouths of lions, 34 Quenched the violence of fire, escaped the edge of the sword, out of weakness were made strong, waxed valiant in fight, turned to flight the armies of the aliens. 35 Women received their dead raised to life again: and others were tortured, not accepting deliverance; that they might obtain a better resurrection: 36 And others had trial of cruel mockings and scourgings, yea, moreover of bonds and imprisonment: 37 They were stoned, they were sawn asunder, were tempted, were slain with the sword: they wandered about in sheepskins and goatskins; being destitute, afflicted, tormented; 38 (Of whom the world was not worthy:) they wandered in deserts, and in mountains, and in dens and caves of the earth. + +[Sunday 01-October, 2023](https://getbible.life/kjv/Hebrews/11/32-38) diff --git a/scripture/kjv/10/01/23/scripture.tg b/scripture/kjv/10/01/23/scripture.tg new file mode 100644 index 00000000..2936df1c --- /dev/null +++ b/scripture/kjv/10/01/23/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 11:32-38 +32 And what shall I more say? for the time would fail me to tell of Gedeon, and of Barak, and of Samson, and of Jephthae; of David also, and Samuel, and of the prophets: 33 Who through faith subdued kingdoms, wrought righteousness, obtained promises, stopped the mouths of lions, 34 Quenched the violence of fire, escaped the edge of the sword, out of weakness were made strong, waxed valiant in fight, turned to flight the armies of the aliens. 35 Women received their dead raised to life again: and others were tortured, not accepting deliverance; that they might obtain a better resurrection: 36 And others had trial of cruel mockings and scourgings, yea, moreover of bonds and imprisonment: 37 They were stoned, they were sawn asunder, were tempted, were slain with the sword: they wandered about in sheepskins and goatskins; being destitute, afflicted, tormented; 38 (Of whom the world was not worthy:) they wandered in deserts, and in mountains, and in dens and caves of the earth. + +Sunday 01-October, 2023 diff --git a/scripture/kjv/10/01/23/scripture.tg.id b/scripture/kjv/10/01/23/scripture.tg.id new file mode 100644 index 00000000..113c4d24 --- /dev/null +++ b/scripture/kjv/10/01/23/scripture.tg.id @@ -0,0 +1 @@ +1093 diff --git a/scripture/kjv/10/01/23/scripture.today b/scripture/kjv/10/01/23/scripture.today new file mode 100644 index 00000000..e2d6b434 --- /dev/null +++ b/scripture/kjv/10/01/23/scripture.today @@ -0,0 +1 @@ +58 11:32-38 diff --git a/scripture/kjv/10/01/24/scripture.html b/scripture/kjv/10/01/24/scripture.html new file mode 100644 index 00000000..d71a99c0 --- /dev/null +++ b/scripture/kjv/10/01/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 88:18
+18 Lover and friend hast thou put far from me, and mine acquaintance into darkness.

+Tuesday 01-October, 2024 diff --git a/scripture/kjv/10/01/24/scripture.json b/scripture/kjv/10/01/24/scripture.json new file mode 100644 index 00000000..49e9596b --- /dev/null +++ b/scripture/kjv/10/01/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "88", + "date": "Tuesday 01-October, 2024", + "getbible": "https://getbible.life/kjv/Psalms/88/18", + "name": "Psalms 88:18", + "scripture": [ + { + "nr": "18", + "text": "Lover and friend hast thou put far from me, and mine acquaintance into darkness. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18", + "version": "kjv" +} diff --git a/scripture/kjv/10/01/24/scripture.md b/scripture/kjv/10/01/24/scripture.md new file mode 100644 index 00000000..865172cd --- /dev/null +++ b/scripture/kjv/10/01/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 88:18** + +18 Lover and friend hast thou put far from me, and mine acquaintance into darkness. + +[Tuesday 01-October, 2024](https://getbible.life/kjv/Psalms/88/18) diff --git a/scripture/kjv/10/01/24/scripture.tg b/scripture/kjv/10/01/24/scripture.tg new file mode 100644 index 00000000..c7e2301a --- /dev/null +++ b/scripture/kjv/10/01/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 88:18 +18 Lover and friend hast thou put far from me, and mine acquaintance into darkness. + +Tuesday 01-October, 2024 diff --git a/scripture/kjv/10/01/24/scripture.tg.id b/scripture/kjv/10/01/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/01/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/01/24/scripture.today b/scripture/kjv/10/01/24/scripture.today new file mode 100644 index 00000000..2a44b1ae --- /dev/null +++ b/scripture/kjv/10/01/24/scripture.today @@ -0,0 +1 @@ +19 88:18 diff --git a/scripture/kjv/10/01/25/scripture.html b/scripture/kjv/10/01/25/scripture.html new file mode 100644 index 00000000..c493fb16 --- /dev/null +++ b/scripture/kjv/10/01/25/scripture.html @@ -0,0 +1,3 @@ +Malachi 3:1-3
+1 Behold, I will send my messenger, and he shall prepare the way before me: and the Lord, whom ye seek, shall suddenly come to his temple, even the messenger of the covenant, whom ye delight in: behold, he shall come, saith the Lord of hosts. 2 But who may abide the day of his coming? and who shall stand when he appeareth? for he is like a refiner’s fire, and like fullers’ soap: 3 And he shall sit as a refiner and purifier of silver: and he shall purify the sons of Levi, and purge them as gold and silver, that they may offer unto the Lord an offering in righteousness.

+Wednesday 01-October, 2025 diff --git a/scripture/kjv/10/01/25/scripture.json b/scripture/kjv/10/01/25/scripture.json new file mode 100644 index 00000000..38def03e --- /dev/null +++ b/scripture/kjv/10/01/25/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Malachi", + "chapter": "3", + "date": "Wednesday 01-October, 2025", + "getbible": "https://getbible.life/kjv/Malachi/3/1-3", + "name": "Malachi 3:1-3", + "scripture": [ + { + "nr": "1", + "text": "Behold, I will send my messenger, and he shall prepare the way before me: and the Lord, whom ye seek, shall suddenly come to his temple, even the messenger of the covenant, whom ye delight in: behold, he shall come, saith the Lord of hosts." + }, + { + "nr": "2", + "text": "But who may abide the day of his coming? and who shall stand when he appeareth? for he is like a refiner’s fire, and like fullers’ soap:" + }, + { + "nr": "3", + "text": "And he shall sit as a refiner and purifier of silver: and he shall purify the sons of Levi, and purge them as gold and silver, that they may offer unto the Lord an offering in righteousness." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-3", + "version": "kjv" +} diff --git a/scripture/kjv/10/01/25/scripture.md b/scripture/kjv/10/01/25/scripture.md new file mode 100644 index 00000000..6b559209 --- /dev/null +++ b/scripture/kjv/10/01/25/scripture.md @@ -0,0 +1,5 @@ +**Malachi 3:1-3** + +1 Behold, I will send my messenger, and he shall prepare the way before me: and the Lord, whom ye seek, shall suddenly come to his temple, even the messenger of the covenant, whom ye delight in: behold, he shall come, saith the Lord of hosts. 2 But who may abide the day of his coming? and who shall stand when he appeareth? for he is like a refiner’s fire, and like fullers’ soap: 3 And he shall sit as a refiner and purifier of silver: and he shall purify the sons of Levi, and purge them as gold and silver, that they may offer unto the Lord an offering in righteousness. + +[Wednesday 01-October, 2025](https://getbible.life/kjv/Malachi/3/1-3) diff --git a/scripture/kjv/10/01/25/scripture.tg b/scripture/kjv/10/01/25/scripture.tg new file mode 100644 index 00000000..e298bdbe --- /dev/null +++ b/scripture/kjv/10/01/25/scripture.tg @@ -0,0 +1,4 @@ +Malachi 3:1-3 +1 Behold, I will send my messenger, and he shall prepare the way before me: and the Lord, whom ye seek, shall suddenly come to his temple, even the messenger of the covenant, whom ye delight in: behold, he shall come, saith the Lord of hosts. 2 But who may abide the day of his coming? and who shall stand when he appeareth? for he is like a refiner’s fire, and like fullers’ soap: 3 And he shall sit as a refiner and purifier of silver: and he shall purify the sons of Levi, and purge them as gold and silver, that they may offer unto the Lord an offering in righteousness. + +Wednesday 01-October, 2025 diff --git a/scripture/kjv/10/01/25/scripture.tg.id b/scripture/kjv/10/01/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/01/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/01/25/scripture.today b/scripture/kjv/10/01/25/scripture.today new file mode 100644 index 00000000..7ad6bf92 --- /dev/null +++ b/scripture/kjv/10/01/25/scripture.today @@ -0,0 +1 @@ +39 3:1-3 diff --git a/scripture/kjv/10/02/23/scripture.html b/scripture/kjv/10/02/23/scripture.html new file mode 100644 index 00000000..477bf03a --- /dev/null +++ b/scripture/kjv/10/02/23/scripture.html @@ -0,0 +1,3 @@ +Isaiah 49:25
+25 But thus saith the Lord, Even the captives of the mighty shall be taken away, and the prey of the terrible shall be delivered: for I will contend with him that contendeth with thee, and I will save thy children.

+Monday 02-October, 2023 diff --git a/scripture/kjv/10/02/23/scripture.json b/scripture/kjv/10/02/23/scripture.json new file mode 100644 index 00000000..56cc0dc3 --- /dev/null +++ b/scripture/kjv/10/02/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "49", + "date": "Monday 02-October, 2023", + "getbible": "https://getbible.life/kjv/Isaiah/49/25", + "name": "Isaiah 49:25", + "scripture": [ + { + "nr": "25", + "text": "But thus saith the Lord, Even the captives of the mighty shall be taken away, and the prey of the terrible shall be delivered: for I will contend with him that contendeth with thee, and I will save thy children." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "25", + "version": "kjv" +} diff --git a/scripture/kjv/10/02/23/scripture.md b/scripture/kjv/10/02/23/scripture.md new file mode 100644 index 00000000..139868f7 --- /dev/null +++ b/scripture/kjv/10/02/23/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 49:25** + +25 But thus saith the Lord, Even the captives of the mighty shall be taken away, and the prey of the terrible shall be delivered: for I will contend with him that contendeth with thee, and I will save thy children. + +[Monday 02-October, 2023](https://getbible.life/kjv/Isaiah/49/25) diff --git a/scripture/kjv/10/02/23/scripture.tg b/scripture/kjv/10/02/23/scripture.tg new file mode 100644 index 00000000..f2c8789b --- /dev/null +++ b/scripture/kjv/10/02/23/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 49:25 +25 But thus saith the Lord, Even the captives of the mighty shall be taken away, and the prey of the terrible shall be delivered: for I will contend with him that contendeth with thee, and I will save thy children. + +Monday 02-October, 2023 diff --git a/scripture/kjv/10/02/23/scripture.tg.id b/scripture/kjv/10/02/23/scripture.tg.id new file mode 100644 index 00000000..cf23797b --- /dev/null +++ b/scripture/kjv/10/02/23/scripture.tg.id @@ -0,0 +1 @@ +1094 diff --git a/scripture/kjv/10/02/23/scripture.today b/scripture/kjv/10/02/23/scripture.today new file mode 100644 index 00000000..10b9141e --- /dev/null +++ b/scripture/kjv/10/02/23/scripture.today @@ -0,0 +1 @@ +23 49:25 diff --git a/scripture/kjv/10/02/24/scripture.html b/scripture/kjv/10/02/24/scripture.html new file mode 100644 index 00000000..170181ac --- /dev/null +++ b/scripture/kjv/10/02/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 16:8
+8 I have set the Lord always before me: because he is at my right hand, I shall not be moved.

+Wednesday 02-October, 2024 diff --git a/scripture/kjv/10/02/24/scripture.json b/scripture/kjv/10/02/24/scripture.json new file mode 100644 index 00000000..12961b69 --- /dev/null +++ b/scripture/kjv/10/02/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "16", + "date": "Wednesday 02-October, 2024", + "getbible": "https://getbible.life/kjv/Psalms/16/8", + "name": "Psalms 16:8", + "scripture": [ + { + "nr": "8", + "text": "I have set the Lord always before me: because he is at my right hand, I shall not be moved." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8", + "version": "kjv" +} diff --git a/scripture/kjv/10/02/24/scripture.md b/scripture/kjv/10/02/24/scripture.md new file mode 100644 index 00000000..4a7130a9 --- /dev/null +++ b/scripture/kjv/10/02/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 16:8** + +8 I have set the Lord always before me: because he is at my right hand, I shall not be moved. + +[Wednesday 02-October, 2024](https://getbible.life/kjv/Psalms/16/8) diff --git a/scripture/kjv/10/02/24/scripture.tg b/scripture/kjv/10/02/24/scripture.tg new file mode 100644 index 00000000..fabc68ad --- /dev/null +++ b/scripture/kjv/10/02/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 16:8 +8 I have set the Lord always before me: because he is at my right hand, I shall not be moved. + +Wednesday 02-October, 2024 diff --git a/scripture/kjv/10/02/24/scripture.tg.id b/scripture/kjv/10/02/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/02/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/02/24/scripture.today b/scripture/kjv/10/02/24/scripture.today new file mode 100644 index 00000000..2342e54d --- /dev/null +++ b/scripture/kjv/10/02/24/scripture.today @@ -0,0 +1 @@ +19 16:8 diff --git a/scripture/kjv/10/02/25/scripture.html b/scripture/kjv/10/02/25/scripture.html new file mode 100644 index 00000000..45253529 --- /dev/null +++ b/scripture/kjv/10/02/25/scripture.html @@ -0,0 +1,3 @@ +Luke 8:11
+11 Now the parable is this: The seed is the word of God.

+Thursday 02-October, 2025 diff --git a/scripture/kjv/10/02/25/scripture.json b/scripture/kjv/10/02/25/scripture.json new file mode 100644 index 00000000..d2ef6d01 --- /dev/null +++ b/scripture/kjv/10/02/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "8", + "date": "Thursday 02-October, 2025", + "getbible": "https://getbible.life/kjv/Luke/8/11", + "name": "Luke 8:11", + "scripture": [ + { + "nr": "11", + "text": "Now the parable is this: The seed is the word of God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/10/02/25/scripture.md b/scripture/kjv/10/02/25/scripture.md new file mode 100644 index 00000000..4fae35fa --- /dev/null +++ b/scripture/kjv/10/02/25/scripture.md @@ -0,0 +1,5 @@ +**Luke 8:11** + +11 Now the parable is this: The seed is the word of God. + +[Thursday 02-October, 2025](https://getbible.life/kjv/Luke/8/11) diff --git a/scripture/kjv/10/02/25/scripture.tg b/scripture/kjv/10/02/25/scripture.tg new file mode 100644 index 00000000..de12ce47 --- /dev/null +++ b/scripture/kjv/10/02/25/scripture.tg @@ -0,0 +1,4 @@ +Luke 8:11 +11 Now the parable is this: The seed is the word of God. + +Thursday 02-October, 2025 diff --git a/scripture/kjv/10/02/25/scripture.tg.id b/scripture/kjv/10/02/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/02/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/02/25/scripture.today b/scripture/kjv/10/02/25/scripture.today new file mode 100644 index 00000000..9a9fa9a1 --- /dev/null +++ b/scripture/kjv/10/02/25/scripture.today @@ -0,0 +1 @@ +42 8:11 diff --git a/scripture/kjv/10/03/23/scripture.html b/scripture/kjv/10/03/23/scripture.html new file mode 100644 index 00000000..3c3ce947 --- /dev/null +++ b/scripture/kjv/10/03/23/scripture.html @@ -0,0 +1,3 @@ +1 John 4:20
+20 If a man say, I love God, and hateth his brother, he is a liar: for he that loveth not his brother whom he hath seen, how can he love God whom he hath not seen?

+Tuesday 03-October, 2023 diff --git a/scripture/kjv/10/03/23/scripture.json b/scripture/kjv/10/03/23/scripture.json new file mode 100644 index 00000000..25ed81c1 --- /dev/null +++ b/scripture/kjv/10/03/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 John", + "chapter": "4", + "date": "Tuesday 03-October, 2023", + "getbible": "https://getbible.life/kjv/1 John/4/20", + "name": "1 John 4:20", + "scripture": [ + { + "nr": "20", + "text": "If a man say, I love God, and hateth his brother, he is a liar: for he that loveth not his brother whom he hath seen, how can he love God whom he hath not seen?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20", + "version": "kjv" +} diff --git a/scripture/kjv/10/03/23/scripture.md b/scripture/kjv/10/03/23/scripture.md new file mode 100644 index 00000000..aa6c2c8c --- /dev/null +++ b/scripture/kjv/10/03/23/scripture.md @@ -0,0 +1,5 @@ +**1 John 4:20** + +20 If a man say, I love God, and hateth his brother, he is a liar: for he that loveth not his brother whom he hath seen, how can he love God whom he hath not seen? + +[Tuesday 03-October, 2023](https://getbible.life/kjv/1 John/4/20) diff --git a/scripture/kjv/10/03/23/scripture.tg b/scripture/kjv/10/03/23/scripture.tg new file mode 100644 index 00000000..c3502067 --- /dev/null +++ b/scripture/kjv/10/03/23/scripture.tg @@ -0,0 +1,4 @@ +1 John 4:20 +20 If a man say, I love God, and hateth his brother, he is a liar: for he that loveth not his brother whom he hath seen, how can he love God whom he hath not seen? + +Tuesday 03-October, 2023 diff --git a/scripture/kjv/10/03/23/scripture.tg.id b/scripture/kjv/10/03/23/scripture.tg.id new file mode 100644 index 00000000..fc15416f --- /dev/null +++ b/scripture/kjv/10/03/23/scripture.tg.id @@ -0,0 +1 @@ +1095 diff --git a/scripture/kjv/10/03/23/scripture.today b/scripture/kjv/10/03/23/scripture.today new file mode 100644 index 00000000..8b2cca22 --- /dev/null +++ b/scripture/kjv/10/03/23/scripture.today @@ -0,0 +1 @@ +62 4:20 diff --git a/scripture/kjv/10/03/24/scripture.html b/scripture/kjv/10/03/24/scripture.html new file mode 100644 index 00000000..28261e67 --- /dev/null +++ b/scripture/kjv/10/03/24/scripture.html @@ -0,0 +1,3 @@ +Luke 7:29-30
+29 And all the people that heard him, and the publicans, justified God, being baptized with the baptism of John. 30 But the Pharisees and lawyers rejected the counsel of God against themselves, being not baptized of him.

+Thursday 03-October, 2024 diff --git a/scripture/kjv/10/03/24/scripture.json b/scripture/kjv/10/03/24/scripture.json new file mode 100644 index 00000000..97602fb6 --- /dev/null +++ b/scripture/kjv/10/03/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Luke", + "chapter": "7", + "date": "Thursday 03-October, 2024", + "getbible": "https://getbible.life/kjv/Luke/7/29-30", + "name": "Luke 7:29-30", + "scripture": [ + { + "nr": "29", + "text": "And all the people that heard him, and the publicans, justified God, being baptized with the baptism of John." + }, + { + "nr": "30", + "text": "But the Pharisees and lawyers rejected the counsel of God against themselves, being not baptized of him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "29-30", + "version": "kjv" +} diff --git a/scripture/kjv/10/03/24/scripture.md b/scripture/kjv/10/03/24/scripture.md new file mode 100644 index 00000000..f23527c9 --- /dev/null +++ b/scripture/kjv/10/03/24/scripture.md @@ -0,0 +1,5 @@ +**Luke 7:29-30** + +29 And all the people that heard him, and the publicans, justified God, being baptized with the baptism of John. 30 But the Pharisees and lawyers rejected the counsel of God against themselves, being not baptized of him. + +[Thursday 03-October, 2024](https://getbible.life/kjv/Luke/7/29-30) diff --git a/scripture/kjv/10/03/24/scripture.tg b/scripture/kjv/10/03/24/scripture.tg new file mode 100644 index 00000000..2f5b8c34 --- /dev/null +++ b/scripture/kjv/10/03/24/scripture.tg @@ -0,0 +1,4 @@ +Luke 7:29-30 +29 And all the people that heard him, and the publicans, justified God, being baptized with the baptism of John. 30 But the Pharisees and lawyers rejected the counsel of God against themselves, being not baptized of him. + +Thursday 03-October, 2024 diff --git a/scripture/kjv/10/03/24/scripture.tg.id b/scripture/kjv/10/03/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/03/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/03/24/scripture.today b/scripture/kjv/10/03/24/scripture.today new file mode 100644 index 00000000..eb1abaea --- /dev/null +++ b/scripture/kjv/10/03/24/scripture.today @@ -0,0 +1 @@ +42 7:29-30 diff --git a/scripture/kjv/10/03/25/scripture.html b/scripture/kjv/10/03/25/scripture.html new file mode 100644 index 00000000..3e45ff37 --- /dev/null +++ b/scripture/kjv/10/03/25/scripture.html @@ -0,0 +1,3 @@ +Obadiah 1:18
+18 And the house of Jacob shall be a fire, and the house of Joseph a flame, and the house of Esau for stubble, and they shall kindle in them, and devour them; and there shall not be any remaining of the house of Esau; for the Lord hath spoken it.

+Friday 03-October, 2025 diff --git a/scripture/kjv/10/03/25/scripture.json b/scripture/kjv/10/03/25/scripture.json new file mode 100644 index 00000000..69694f02 --- /dev/null +++ b/scripture/kjv/10/03/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Obadiah", + "chapter": "1", + "date": "Friday 03-October, 2025", + "getbible": "https://getbible.life/kjv/Obadiah/1/18", + "name": "Obadiah 1:18", + "scripture": [ + { + "nr": "18", + "text": "And the house of Jacob shall be a fire, and the house of Joseph a flame, and the house of Esau for stubble, and they shall kindle in them, and devour them; and there shall not be any remaining of the house of Esau; for the Lord hath spoken it." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18", + "version": "kjv" +} diff --git a/scripture/kjv/10/03/25/scripture.md b/scripture/kjv/10/03/25/scripture.md new file mode 100644 index 00000000..0b21f037 --- /dev/null +++ b/scripture/kjv/10/03/25/scripture.md @@ -0,0 +1,5 @@ +**Obadiah 1:18** + +18 And the house of Jacob shall be a fire, and the house of Joseph a flame, and the house of Esau for stubble, and they shall kindle in them, and devour them; and there shall not be any remaining of the house of Esau; for the Lord hath spoken it. + +[Friday 03-October, 2025](https://getbible.life/kjv/Obadiah/1/18) diff --git a/scripture/kjv/10/03/25/scripture.tg b/scripture/kjv/10/03/25/scripture.tg new file mode 100644 index 00000000..cd28b206 --- /dev/null +++ b/scripture/kjv/10/03/25/scripture.tg @@ -0,0 +1,4 @@ +Obadiah 1:18 +18 And the house of Jacob shall be a fire, and the house of Joseph a flame, and the house of Esau for stubble, and they shall kindle in them, and devour them; and there shall not be any remaining of the house of Esau; for the Lord hath spoken it. + +Friday 03-October, 2025 diff --git a/scripture/kjv/10/03/25/scripture.tg.id b/scripture/kjv/10/03/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/03/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/03/25/scripture.today b/scripture/kjv/10/03/25/scripture.today new file mode 100644 index 00000000..7262c234 --- /dev/null +++ b/scripture/kjv/10/03/25/scripture.today @@ -0,0 +1 @@ +31 1:18 diff --git a/scripture/kjv/10/04/23/scripture.html b/scripture/kjv/10/04/23/scripture.html new file mode 100644 index 00000000..ef2980bc --- /dev/null +++ b/scripture/kjv/10/04/23/scripture.html @@ -0,0 +1,3 @@ +Hebrews 3:1-2
+1 Wherefore, holy brethren, partakers of the heavenly calling, consider the Apostle and High Priest of our profession, Christ Jesus; 2 Who was faithful to him that appointed him, as also Moses was faithful in all his house.

+Wednesday 04-October, 2023 diff --git a/scripture/kjv/10/04/23/scripture.json b/scripture/kjv/10/04/23/scripture.json new file mode 100644 index 00000000..ca91d42b --- /dev/null +++ b/scripture/kjv/10/04/23/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Hebrews", + "chapter": "3", + "date": "Wednesday 04-October, 2023", + "getbible": "https://getbible.life/kjv/Hebrews/3/1-2", + "name": "Hebrews 3:1-2", + "scripture": [ + { + "nr": "1", + "text": "Wherefore, holy brethren, partakers of the heavenly calling, consider the Apostle and High Priest of our profession, Christ Jesus;" + }, + { + "nr": "2", + "text": "Who was faithful to him that appointed him, as also Moses was faithful in all his house." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-2", + "version": "kjv" +} diff --git a/scripture/kjv/10/04/23/scripture.md b/scripture/kjv/10/04/23/scripture.md new file mode 100644 index 00000000..8945c02d --- /dev/null +++ b/scripture/kjv/10/04/23/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 3:1-2** + +1 Wherefore, holy brethren, partakers of the heavenly calling, consider the Apostle and High Priest of our profession, Christ Jesus; 2 Who was faithful to him that appointed him, as also Moses was faithful in all his house. + +[Wednesday 04-October, 2023](https://getbible.life/kjv/Hebrews/3/1-2) diff --git a/scripture/kjv/10/04/23/scripture.tg b/scripture/kjv/10/04/23/scripture.tg new file mode 100644 index 00000000..07ba33c7 --- /dev/null +++ b/scripture/kjv/10/04/23/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 3:1-2 +1 Wherefore, holy brethren, partakers of the heavenly calling, consider the Apostle and High Priest of our profession, Christ Jesus; 2 Who was faithful to him that appointed him, as also Moses was faithful in all his house. + +Wednesday 04-October, 2023 diff --git a/scripture/kjv/10/04/23/scripture.tg.id b/scripture/kjv/10/04/23/scripture.tg.id new file mode 100644 index 00000000..ba851d84 --- /dev/null +++ b/scripture/kjv/10/04/23/scripture.tg.id @@ -0,0 +1 @@ +1096 diff --git a/scripture/kjv/10/04/23/scripture.today b/scripture/kjv/10/04/23/scripture.today new file mode 100644 index 00000000..7109ee31 --- /dev/null +++ b/scripture/kjv/10/04/23/scripture.today @@ -0,0 +1 @@ +58 3:1-2 diff --git a/scripture/kjv/10/04/24/scripture.html b/scripture/kjv/10/04/24/scripture.html new file mode 100644 index 00000000..e91c8d29 --- /dev/null +++ b/scripture/kjv/10/04/24/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 10:14-16
+14 For we stretch not ourselves beyond our measure, as though we reached not unto you: for we are come as far as to you also in preaching the gospel of Christ: 15 Not boasting of things without our measure, that is, of other men’s labours; but having hope, when your faith is increased, that we shall be enlarged by you according to our rule abundantly, 16 To preach the gospel in the regions beyond you, and not to boast in another man’s line of things made ready to our hand.

+Friday 04-October, 2024 diff --git a/scripture/kjv/10/04/24/scripture.json b/scripture/kjv/10/04/24/scripture.json new file mode 100644 index 00000000..d71f936d --- /dev/null +++ b/scripture/kjv/10/04/24/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "2 Corinthians", + "chapter": "10", + "date": "Friday 04-October, 2024", + "getbible": "https://getbible.life/kjv/2 Corinthians/10/14-16", + "name": "2 Corinthians 10:14-16", + "scripture": [ + { + "nr": "14", + "text": "For we stretch not ourselves beyond our measure, as though we reached not unto you: for we are come as far as to you also in preaching the gospel of Christ:" + }, + { + "nr": "15", + "text": "Not boasting of things without our measure, that is, of other men’s labours; but having hope, when your faith is increased, that we shall be enlarged by you according to our rule abundantly," + }, + { + "nr": "16", + "text": "To preach the gospel in the regions beyond you, and not to boast in another man’s line of things made ready to our hand." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14-16", + "version": "kjv" +} diff --git a/scripture/kjv/10/04/24/scripture.md b/scripture/kjv/10/04/24/scripture.md new file mode 100644 index 00000000..f98fa645 --- /dev/null +++ b/scripture/kjv/10/04/24/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 10:14-16** + +14 For we stretch not ourselves beyond our measure, as though we reached not unto you: for we are come as far as to you also in preaching the gospel of Christ: 15 Not boasting of things without our measure, that is, of other men’s labours; but having hope, when your faith is increased, that we shall be enlarged by you according to our rule abundantly, 16 To preach the gospel in the regions beyond you, and not to boast in another man’s line of things made ready to our hand. + +[Friday 04-October, 2024](https://getbible.life/kjv/2 Corinthians/10/14-16) diff --git a/scripture/kjv/10/04/24/scripture.tg b/scripture/kjv/10/04/24/scripture.tg new file mode 100644 index 00000000..5399b96d --- /dev/null +++ b/scripture/kjv/10/04/24/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 10:14-16 +14 For we stretch not ourselves beyond our measure, as though we reached not unto you: for we are come as far as to you also in preaching the gospel of Christ: 15 Not boasting of things without our measure, that is, of other men’s labours; but having hope, when your faith is increased, that we shall be enlarged by you according to our rule abundantly, 16 To preach the gospel in the regions beyond you, and not to boast in another man’s line of things made ready to our hand. + +Friday 04-October, 2024 diff --git a/scripture/kjv/10/04/24/scripture.tg.id b/scripture/kjv/10/04/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/04/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/04/24/scripture.today b/scripture/kjv/10/04/24/scripture.today new file mode 100644 index 00000000..14fa8ee0 --- /dev/null +++ b/scripture/kjv/10/04/24/scripture.today @@ -0,0 +1 @@ +47 10:14-16 diff --git a/scripture/kjv/10/04/25/scripture.html b/scripture/kjv/10/04/25/scripture.html new file mode 100644 index 00000000..34f75e48 --- /dev/null +++ b/scripture/kjv/10/04/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 78:22-32
+22 Because they believed not in God, and trusted not in his salvation: 23 Though he had commanded the clouds from above, and opened the doors of heaven, 24 And had rained down manna upon them to eat, and had given them of the corn of heaven. 25 Man did eat angels’ food: he sent them meat to the full. 26 He caused an east wind to blow in the heaven: and by his power he brought in the south wind. 27 He rained flesh also upon them as dust, and feathered fowls like as the sand of the sea: 28 And he let it fall in the midst of their camp, round about their habitations. 29 So they did eat, and were well filled: for he gave them their own desire; 30 They were not estranged from their lust. But while their meat was yet in their mouths, 31 The wrath of God came upon them, and slew the fattest of them, and smote down the chosen men of Israel. 32 For all this they sinned still, and believed not for his wondrous works.

+Saturday 04-October, 2025 diff --git a/scripture/kjv/10/04/25/scripture.json b/scripture/kjv/10/04/25/scripture.json new file mode 100644 index 00000000..08a9bad4 --- /dev/null +++ b/scripture/kjv/10/04/25/scripture.json @@ -0,0 +1,57 @@ +{ + "book": "Psalms", + "chapter": "78", + "date": "Saturday 04-October, 2025", + "getbible": "https://getbible.life/kjv/Psalms/78/22-32", + "name": "Psalms 78:22-32", + "scripture": [ + { + "nr": "22", + "text": "Because they believed not in God, and trusted not in his salvation:" + }, + { + "nr": "23", + "text": "Though he had commanded the clouds from above, and opened the doors of heaven," + }, + { + "nr": "24", + "text": "And had rained down manna upon them to eat, and had given them of the corn of heaven." + }, + { + "nr": "25", + "text": "Man did eat angels’ food: he sent them meat to the full." + }, + { + "nr": "26", + "text": "He caused an east wind to blow in the heaven: and by his power he brought in the south wind." + }, + { + "nr": "27", + "text": "He rained flesh also upon them as dust, and feathered fowls like as the sand of the sea:" + }, + { + "nr": "28", + "text": "And he let it fall in the midst of their camp, round about their habitations." + }, + { + "nr": "29", + "text": "So they did eat, and were well filled: for he gave them their own desire;" + }, + { + "nr": "30", + "text": "They were not estranged from their lust. But while their meat was yet in their mouths," + }, + { + "nr": "31", + "text": "The wrath of God came upon them, and slew the fattest of them, and smote down the chosen men of Israel." + }, + { + "nr": "32", + "text": "For all this they sinned still, and believed not for his wondrous works." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "22-32", + "version": "kjv" +} diff --git a/scripture/kjv/10/04/25/scripture.md b/scripture/kjv/10/04/25/scripture.md new file mode 100644 index 00000000..a4eccb63 --- /dev/null +++ b/scripture/kjv/10/04/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 78:22-32** + +22 Because they believed not in God, and trusted not in his salvation: 23 Though he had commanded the clouds from above, and opened the doors of heaven, 24 And had rained down manna upon them to eat, and had given them of the corn of heaven. 25 Man did eat angels’ food: he sent them meat to the full. 26 He caused an east wind to blow in the heaven: and by his power he brought in the south wind. 27 He rained flesh also upon them as dust, and feathered fowls like as the sand of the sea: 28 And he let it fall in the midst of their camp, round about their habitations. 29 So they did eat, and were well filled: for he gave them their own desire; 30 They were not estranged from their lust. But while their meat was yet in their mouths, 31 The wrath of God came upon them, and slew the fattest of them, and smote down the chosen men of Israel. 32 For all this they sinned still, and believed not for his wondrous works. + +[Saturday 04-October, 2025](https://getbible.life/kjv/Psalms/78/22-32) diff --git a/scripture/kjv/10/04/25/scripture.tg b/scripture/kjv/10/04/25/scripture.tg new file mode 100644 index 00000000..0b6c66b3 --- /dev/null +++ b/scripture/kjv/10/04/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 78:22-32 +22 Because they believed not in God, and trusted not in his salvation: 23 Though he had commanded the clouds from above, and opened the doors of heaven, 24 And had rained down manna upon them to eat, and had given them of the corn of heaven. 25 Man did eat angels’ food: he sent them meat to the full. 26 He caused an east wind to blow in the heaven: and by his power he brought in the south wind. 27 He rained flesh also upon them as dust, and feathered fowls like as the sand of the sea: 28 And he let it fall in the midst of their camp, round about their habitations. 29 So they did eat, and were well filled: for he gave them their own desire; 30 They were not estranged from their lust. But while their meat was yet in their mouths, 31 The wrath of God came upon them, and slew the fattest of them, and smote down the chosen men of Israel. 32 For all this they sinned still, and believed not for his wondrous works. + +Saturday 04-October, 2025 diff --git a/scripture/kjv/10/04/25/scripture.tg.id b/scripture/kjv/10/04/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/04/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/04/25/scripture.today b/scripture/kjv/10/04/25/scripture.today new file mode 100644 index 00000000..75f36d4b --- /dev/null +++ b/scripture/kjv/10/04/25/scripture.today @@ -0,0 +1 @@ +19 78:22-32 diff --git a/scripture/kjv/10/05/23/scripture.html b/scripture/kjv/10/05/23/scripture.html new file mode 100644 index 00000000..e93ea610 --- /dev/null +++ b/scripture/kjv/10/05/23/scripture.html @@ -0,0 +1,3 @@ +Colossians 3:16
+16 Let the word of Christ dwell in you richly in all wisdom; teaching and admonishing one another in psalms and hymns and spiritual songs, singing with grace in your hearts to the Lord.

+Thursday 05-October, 2023 diff --git a/scripture/kjv/10/05/23/scripture.json b/scripture/kjv/10/05/23/scripture.json new file mode 100644 index 00000000..78f7318f --- /dev/null +++ b/scripture/kjv/10/05/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Colossians", + "chapter": "3", + "date": "Thursday 05-October, 2023", + "getbible": "https://getbible.life/kjv/Colossians/3/16", + "name": "Colossians 3:16", + "scripture": [ + { + "nr": "16", + "text": "Let the word of Christ dwell in you richly in all wisdom; teaching and admonishing one another in psalms and hymns and spiritual songs, singing with grace in your hearts to the Lord." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16", + "version": "kjv" +} diff --git a/scripture/kjv/10/05/23/scripture.md b/scripture/kjv/10/05/23/scripture.md new file mode 100644 index 00000000..19e69759 --- /dev/null +++ b/scripture/kjv/10/05/23/scripture.md @@ -0,0 +1,5 @@ +**Colossians 3:16** + +16 Let the word of Christ dwell in you richly in all wisdom; teaching and admonishing one another in psalms and hymns and spiritual songs, singing with grace in your hearts to the Lord. + +[Thursday 05-October, 2023](https://getbible.life/kjv/Colossians/3/16) diff --git a/scripture/kjv/10/05/23/scripture.tg b/scripture/kjv/10/05/23/scripture.tg new file mode 100644 index 00000000..c648f200 --- /dev/null +++ b/scripture/kjv/10/05/23/scripture.tg @@ -0,0 +1,4 @@ +Colossians 3:16 +16 Let the word of Christ dwell in you richly in all wisdom; teaching and admonishing one another in psalms and hymns and spiritual songs, singing with grace in your hearts to the Lord. + +Thursday 05-October, 2023 diff --git a/scripture/kjv/10/05/23/scripture.tg.id b/scripture/kjv/10/05/23/scripture.tg.id new file mode 100644 index 00000000..54ba9c11 --- /dev/null +++ b/scripture/kjv/10/05/23/scripture.tg.id @@ -0,0 +1 @@ +1097 diff --git a/scripture/kjv/10/05/23/scripture.today b/scripture/kjv/10/05/23/scripture.today new file mode 100644 index 00000000..620a144e --- /dev/null +++ b/scripture/kjv/10/05/23/scripture.today @@ -0,0 +1 @@ +51 3:16 diff --git a/scripture/kjv/10/05/24/scripture.html b/scripture/kjv/10/05/24/scripture.html new file mode 100644 index 00000000..cf49673a --- /dev/null +++ b/scripture/kjv/10/05/24/scripture.html @@ -0,0 +1,3 @@ +John 2:17
+17 And his disciples remembered that it was written, The zeal of thine house hath eaten me up.

+Saturday 05-October, 2024 diff --git a/scripture/kjv/10/05/24/scripture.json b/scripture/kjv/10/05/24/scripture.json new file mode 100644 index 00000000..e44ec774 --- /dev/null +++ b/scripture/kjv/10/05/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "2", + "date": "Saturday 05-October, 2024", + "getbible": "https://getbible.life/kjv/John/2/17", + "name": "John 2:17", + "scripture": [ + { + "nr": "17", + "text": "And his disciples remembered that it was written, The zeal of thine house hath eaten me up." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17", + "version": "kjv" +} diff --git a/scripture/kjv/10/05/24/scripture.md b/scripture/kjv/10/05/24/scripture.md new file mode 100644 index 00000000..3e6ff42f --- /dev/null +++ b/scripture/kjv/10/05/24/scripture.md @@ -0,0 +1,5 @@ +**John 2:17** + +17 And his disciples remembered that it was written, The zeal of thine house hath eaten me up. + +[Saturday 05-October, 2024](https://getbible.life/kjv/John/2/17) diff --git a/scripture/kjv/10/05/24/scripture.tg b/scripture/kjv/10/05/24/scripture.tg new file mode 100644 index 00000000..ae1d72c4 --- /dev/null +++ b/scripture/kjv/10/05/24/scripture.tg @@ -0,0 +1,4 @@ +John 2:17 +17 And his disciples remembered that it was written, The zeal of thine house hath eaten me up. + +Saturday 05-October, 2024 diff --git a/scripture/kjv/10/05/24/scripture.tg.id b/scripture/kjv/10/05/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/05/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/05/24/scripture.today b/scripture/kjv/10/05/24/scripture.today new file mode 100644 index 00000000..34a45ae0 --- /dev/null +++ b/scripture/kjv/10/05/24/scripture.today @@ -0,0 +1 @@ +43 2:17 diff --git a/scripture/kjv/10/05/25/scripture.html b/scripture/kjv/10/05/25/scripture.html new file mode 100644 index 00000000..3efee4b0 --- /dev/null +++ b/scripture/kjv/10/05/25/scripture.html @@ -0,0 +1,3 @@ +Philippians 3:13-14
+13 Brethren, I count not myself to have apprehended: but this one thing I do, forgetting those things which are behind, and reaching forth unto those things which are before, 14 I press toward the mark for the prize of the high calling of God in Christ Jesus.

+Sunday 05-October, 2025 diff --git a/scripture/kjv/10/05/25/scripture.json b/scripture/kjv/10/05/25/scripture.json new file mode 100644 index 00000000..8b2860df --- /dev/null +++ b/scripture/kjv/10/05/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Philippians", + "chapter": "3", + "date": "Sunday 05-October, 2025", + "getbible": "https://getbible.life/kjv/Philippians/3/13-14", + "name": "Philippians 3:13-14", + "scripture": [ + { + "nr": "13", + "text": "Brethren, I count not myself to have apprehended: but this one thing I do, forgetting those things which are behind, and reaching forth unto those things which are before," + }, + { + "nr": "14", + "text": "I press toward the mark for the prize of the high calling of God in Christ Jesus." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13-14", + "version": "kjv" +} diff --git a/scripture/kjv/10/05/25/scripture.md b/scripture/kjv/10/05/25/scripture.md new file mode 100644 index 00000000..26a15cda --- /dev/null +++ b/scripture/kjv/10/05/25/scripture.md @@ -0,0 +1,5 @@ +**Philippians 3:13-14** + +13 Brethren, I count not myself to have apprehended: but this one thing I do, forgetting those things which are behind, and reaching forth unto those things which are before, 14 I press toward the mark for the prize of the high calling of God in Christ Jesus. + +[Sunday 05-October, 2025](https://getbible.life/kjv/Philippians/3/13-14) diff --git a/scripture/kjv/10/05/25/scripture.tg b/scripture/kjv/10/05/25/scripture.tg new file mode 100644 index 00000000..50b6c748 --- /dev/null +++ b/scripture/kjv/10/05/25/scripture.tg @@ -0,0 +1,4 @@ +Philippians 3:13-14 +13 Brethren, I count not myself to have apprehended: but this one thing I do, forgetting those things which are behind, and reaching forth unto those things which are before, 14 I press toward the mark for the prize of the high calling of God in Christ Jesus. + +Sunday 05-October, 2025 diff --git a/scripture/kjv/10/05/25/scripture.tg.id b/scripture/kjv/10/05/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/05/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/05/25/scripture.today b/scripture/kjv/10/05/25/scripture.today new file mode 100644 index 00000000..417ffa5b --- /dev/null +++ b/scripture/kjv/10/05/25/scripture.today @@ -0,0 +1 @@ +50 3:13-14 diff --git a/scripture/kjv/10/06/23/scripture.html b/scripture/kjv/10/06/23/scripture.html new file mode 100644 index 00000000..cc45e8c5 --- /dev/null +++ b/scripture/kjv/10/06/23/scripture.html @@ -0,0 +1,3 @@ +Philippians 2:3
+3 Let nothing be done through strife or vainglory; but in lowliness of mind let each esteem other better than themselves.

+Friday 06-October, 2023 diff --git a/scripture/kjv/10/06/23/scripture.json b/scripture/kjv/10/06/23/scripture.json new file mode 100644 index 00000000..dd357ad2 --- /dev/null +++ b/scripture/kjv/10/06/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Philippians", + "chapter": "2", + "date": "Friday 06-October, 2023", + "getbible": "https://getbible.life/kjv/Philippians/2/3", + "name": "Philippians 2:3", + "scripture": [ + { + "nr": "3", + "text": "Let nothing be done through strife or vainglory; but in lowliness of mind let each esteem other better than themselves." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3", + "version": "kjv" +} diff --git a/scripture/kjv/10/06/23/scripture.md b/scripture/kjv/10/06/23/scripture.md new file mode 100644 index 00000000..ffe483a7 --- /dev/null +++ b/scripture/kjv/10/06/23/scripture.md @@ -0,0 +1,5 @@ +**Philippians 2:3** + +3 Let nothing be done through strife or vainglory; but in lowliness of mind let each esteem other better than themselves. + +[Friday 06-October, 2023](https://getbible.life/kjv/Philippians/2/3) diff --git a/scripture/kjv/10/06/23/scripture.tg b/scripture/kjv/10/06/23/scripture.tg new file mode 100644 index 00000000..d2be2c54 --- /dev/null +++ b/scripture/kjv/10/06/23/scripture.tg @@ -0,0 +1,4 @@ +Philippians 2:3 +3 Let nothing be done through strife or vainglory; but in lowliness of mind let each esteem other better than themselves. + +Friday 06-October, 2023 diff --git a/scripture/kjv/10/06/23/scripture.tg.id b/scripture/kjv/10/06/23/scripture.tg.id new file mode 100644 index 00000000..e2bb11da --- /dev/null +++ b/scripture/kjv/10/06/23/scripture.tg.id @@ -0,0 +1 @@ +1098 diff --git a/scripture/kjv/10/06/23/scripture.today b/scripture/kjv/10/06/23/scripture.today new file mode 100644 index 00000000..71d4634c --- /dev/null +++ b/scripture/kjv/10/06/23/scripture.today @@ -0,0 +1 @@ +50 2:3 diff --git a/scripture/kjv/10/06/24/scripture.html b/scripture/kjv/10/06/24/scripture.html new file mode 100644 index 00000000..4e4cfa56 --- /dev/null +++ b/scripture/kjv/10/06/24/scripture.html @@ -0,0 +1,3 @@ +Lamentations 3:31-33
+31 For the Lord will not cast off for ever: 32 But though he cause grief, yet will he have compassion according to the multitude of his mercies. 33 For he doth not afflict willingly nor grieve the children of men.

+Sunday 06-October, 2024 diff --git a/scripture/kjv/10/06/24/scripture.json b/scripture/kjv/10/06/24/scripture.json new file mode 100644 index 00000000..e223bd38 --- /dev/null +++ b/scripture/kjv/10/06/24/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Lamentations", + "chapter": "3", + "date": "Sunday 06-October, 2024", + "getbible": "https://getbible.life/kjv/Lamentations/3/31-33", + "name": "Lamentations 3:31-33", + "scripture": [ + { + "nr": "31", + "text": "For the Lord will not cast off for ever:" + }, + { + "nr": "32", + "text": "But though he cause grief, yet will he have compassion according to the multitude of his mercies." + }, + { + "nr": "33", + "text": "For he doth not afflict willingly nor grieve the children of men." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "31-33", + "version": "kjv" +} diff --git a/scripture/kjv/10/06/24/scripture.md b/scripture/kjv/10/06/24/scripture.md new file mode 100644 index 00000000..1718687e --- /dev/null +++ b/scripture/kjv/10/06/24/scripture.md @@ -0,0 +1,5 @@ +**Lamentations 3:31-33** + +31 For the Lord will not cast off for ever: 32 But though he cause grief, yet will he have compassion according to the multitude of his mercies. 33 For he doth not afflict willingly nor grieve the children of men. + +[Sunday 06-October, 2024](https://getbible.life/kjv/Lamentations/3/31-33) diff --git a/scripture/kjv/10/06/24/scripture.tg b/scripture/kjv/10/06/24/scripture.tg new file mode 100644 index 00000000..64170a7b --- /dev/null +++ b/scripture/kjv/10/06/24/scripture.tg @@ -0,0 +1,4 @@ +Lamentations 3:31-33 +31 For the Lord will not cast off for ever: 32 But though he cause grief, yet will he have compassion according to the multitude of his mercies. 33 For he doth not afflict willingly nor grieve the children of men. + +Sunday 06-October, 2024 diff --git a/scripture/kjv/10/06/24/scripture.tg.id b/scripture/kjv/10/06/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/06/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/06/24/scripture.today b/scripture/kjv/10/06/24/scripture.today new file mode 100644 index 00000000..f3af4a73 --- /dev/null +++ b/scripture/kjv/10/06/24/scripture.today @@ -0,0 +1 @@ +25 3:31-33 diff --git a/scripture/kjv/10/06/25/scripture.html b/scripture/kjv/10/06/25/scripture.html new file mode 100644 index 00000000..89bd2a6b --- /dev/null +++ b/scripture/kjv/10/06/25/scripture.html @@ -0,0 +1,3 @@ +1 Peter 5:10
+10 But the God of all grace, who hath called us unto his eternal glory by Christ Jesus, after that ye have suffered a while, make you perfect, stablish, strengthen, settle you.

+Monday 06-October, 2025 diff --git a/scripture/kjv/10/06/25/scripture.json b/scripture/kjv/10/06/25/scripture.json new file mode 100644 index 00000000..0497888f --- /dev/null +++ b/scripture/kjv/10/06/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Peter", + "chapter": "5", + "date": "Monday 06-October, 2025", + "getbible": "https://getbible.life/kjv/1 Peter/5/10", + "name": "1 Peter 5:10", + "scripture": [ + { + "nr": "10", + "text": "But the God of all grace, who hath called us unto his eternal glory by Christ Jesus, after that ye have suffered a while, make you perfect, stablish, strengthen, settle you." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/10/06/25/scripture.md b/scripture/kjv/10/06/25/scripture.md new file mode 100644 index 00000000..73cd3c61 --- /dev/null +++ b/scripture/kjv/10/06/25/scripture.md @@ -0,0 +1,5 @@ +**1 Peter 5:10** + +10 But the God of all grace, who hath called us unto his eternal glory by Christ Jesus, after that ye have suffered a while, make you perfect, stablish, strengthen, settle you. + +[Monday 06-October, 2025](https://getbible.life/kjv/1 Peter/5/10) diff --git a/scripture/kjv/10/06/25/scripture.tg b/scripture/kjv/10/06/25/scripture.tg new file mode 100644 index 00000000..fbaf8d1d --- /dev/null +++ b/scripture/kjv/10/06/25/scripture.tg @@ -0,0 +1,4 @@ +1 Peter 5:10 +10 But the God of all grace, who hath called us unto his eternal glory by Christ Jesus, after that ye have suffered a while, make you perfect, stablish, strengthen, settle you. + +Monday 06-October, 2025 diff --git a/scripture/kjv/10/06/25/scripture.tg.id b/scripture/kjv/10/06/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/06/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/06/25/scripture.today b/scripture/kjv/10/06/25/scripture.today new file mode 100644 index 00000000..b362e695 --- /dev/null +++ b/scripture/kjv/10/06/25/scripture.today @@ -0,0 +1 @@ +60 5:10 diff --git a/scripture/kjv/10/07/23/scripture.html b/scripture/kjv/10/07/23/scripture.html new file mode 100644 index 00000000..cc2754fe --- /dev/null +++ b/scripture/kjv/10/07/23/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 34:3-4
+3 Ye eat the fat, and ye clothe you with the wool, ye kill them that are fed: but ye feed not the flock. 4 The diseased have ye not strengthened, neither have ye healed that which was sick, neither have ye bound up that which was broken, neither have ye brought again that which was driven away, neither have ye sought that which was lost; but with force and with cruelty have ye ruled them.

+Saturday 07-October, 2023 diff --git a/scripture/kjv/10/07/23/scripture.json b/scripture/kjv/10/07/23/scripture.json new file mode 100644 index 00000000..45c56289 --- /dev/null +++ b/scripture/kjv/10/07/23/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Ezekiel", + "chapter": "34", + "date": "Saturday 07-October, 2023", + "getbible": "https://getbible.life/kjv/Ezekiel/34/3-4", + "name": "Ezekiel 34:3-4", + "scripture": [ + { + "nr": "3", + "text": "Ye eat the fat, and ye clothe you with the wool, ye kill them that are fed: but ye feed not the flock." + }, + { + "nr": "4", + "text": "The diseased have ye not strengthened, neither have ye healed that which was sick, neither have ye bound up that which was broken, neither have ye brought again that which was driven away, neither have ye sought that which was lost; but with force and with cruelty have ye ruled them." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3-4", + "version": "kjv" +} diff --git a/scripture/kjv/10/07/23/scripture.md b/scripture/kjv/10/07/23/scripture.md new file mode 100644 index 00000000..141fd2ef --- /dev/null +++ b/scripture/kjv/10/07/23/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 34:3-4** + +3 Ye eat the fat, and ye clothe you with the wool, ye kill them that are fed: but ye feed not the flock. 4 The diseased have ye not strengthened, neither have ye healed that which was sick, neither have ye bound up that which was broken, neither have ye brought again that which was driven away, neither have ye sought that which was lost; but with force and with cruelty have ye ruled them. + +[Saturday 07-October, 2023](https://getbible.life/kjv/Ezekiel/34/3-4) diff --git a/scripture/kjv/10/07/23/scripture.tg b/scripture/kjv/10/07/23/scripture.tg new file mode 100644 index 00000000..09f32694 --- /dev/null +++ b/scripture/kjv/10/07/23/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 34:3-4 +3 Ye eat the fat, and ye clothe you with the wool, ye kill them that are fed: but ye feed not the flock. 4 The diseased have ye not strengthened, neither have ye healed that which was sick, neither have ye bound up that which was broken, neither have ye brought again that which was driven away, neither have ye sought that which was lost; but with force and with cruelty have ye ruled them. + +Saturday 07-October, 2023 diff --git a/scripture/kjv/10/07/23/scripture.tg.id b/scripture/kjv/10/07/23/scripture.tg.id new file mode 100644 index 00000000..7d58aa7a --- /dev/null +++ b/scripture/kjv/10/07/23/scripture.tg.id @@ -0,0 +1 @@ +1099 diff --git a/scripture/kjv/10/07/23/scripture.today b/scripture/kjv/10/07/23/scripture.today new file mode 100644 index 00000000..684d75a1 --- /dev/null +++ b/scripture/kjv/10/07/23/scripture.today @@ -0,0 +1 @@ +26 34:3-4 diff --git a/scripture/kjv/10/07/24/scripture.html b/scripture/kjv/10/07/24/scripture.html new file mode 100644 index 00000000..492d30db --- /dev/null +++ b/scripture/kjv/10/07/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 15:4
+4 A wholesome tongue is a tree of life: but perverseness therein is a breach in the spirit.

+Monday 07-October, 2024 diff --git a/scripture/kjv/10/07/24/scripture.json b/scripture/kjv/10/07/24/scripture.json new file mode 100644 index 00000000..150d7b6c --- /dev/null +++ b/scripture/kjv/10/07/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "15", + "date": "Monday 07-October, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/15/4", + "name": "Proverbs 15:4", + "scripture": [ + { + "nr": "4", + "text": "A wholesome tongue is a tree of life: but perverseness therein is a breach in the spirit." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4", + "version": "kjv" +} diff --git a/scripture/kjv/10/07/24/scripture.md b/scripture/kjv/10/07/24/scripture.md new file mode 100644 index 00000000..6c023144 --- /dev/null +++ b/scripture/kjv/10/07/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 15:4** + +4 A wholesome tongue is a tree of life: but perverseness therein is a breach in the spirit. + +[Monday 07-October, 2024](https://getbible.life/kjv/Proverbs/15/4) diff --git a/scripture/kjv/10/07/24/scripture.tg b/scripture/kjv/10/07/24/scripture.tg new file mode 100644 index 00000000..2c6525d7 --- /dev/null +++ b/scripture/kjv/10/07/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 15:4 +4 A wholesome tongue is a tree of life: but perverseness therein is a breach in the spirit. + +Monday 07-October, 2024 diff --git a/scripture/kjv/10/07/24/scripture.tg.id b/scripture/kjv/10/07/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/07/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/07/24/scripture.today b/scripture/kjv/10/07/24/scripture.today new file mode 100644 index 00000000..38c49212 --- /dev/null +++ b/scripture/kjv/10/07/24/scripture.today @@ -0,0 +1 @@ +20 15:4 diff --git a/scripture/kjv/10/07/25/scripture.html b/scripture/kjv/10/07/25/scripture.html new file mode 100644 index 00000000..42abcb33 --- /dev/null +++ b/scripture/kjv/10/07/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 42:5
+5 Why art thou cast down, O my soul? and why art thou disquieted in me? hope thou in God: for I shall yet praise him for the help of his countenance.

+Tuesday 07-October, 2025 diff --git a/scripture/kjv/10/07/25/scripture.json b/scripture/kjv/10/07/25/scripture.json new file mode 100644 index 00000000..6c499b4d --- /dev/null +++ b/scripture/kjv/10/07/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "42", + "date": "Tuesday 07-October, 2025", + "getbible": "https://getbible.life/kjv/Psalms/42/5", + "name": "Psalms 42:5", + "scripture": [ + { + "nr": "5", + "text": "Why art thou cast down, O my soul? and why art thou disquieted in me? hope thou in God: for I shall yet praise him for the help of his countenance." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5", + "version": "kjv" +} diff --git a/scripture/kjv/10/07/25/scripture.md b/scripture/kjv/10/07/25/scripture.md new file mode 100644 index 00000000..ab19cb6d --- /dev/null +++ b/scripture/kjv/10/07/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 42:5** + +5 Why art thou cast down, O my soul? and why art thou disquieted in me? hope thou in God: for I shall yet praise him for the help of his countenance. + +[Tuesday 07-October, 2025](https://getbible.life/kjv/Psalms/42/5) diff --git a/scripture/kjv/10/07/25/scripture.tg b/scripture/kjv/10/07/25/scripture.tg new file mode 100644 index 00000000..e01fcf14 --- /dev/null +++ b/scripture/kjv/10/07/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 42:5 +5 Why art thou cast down, O my soul? and why art thou disquieted in me? hope thou in God: for I shall yet praise him for the help of his countenance. + +Tuesday 07-October, 2025 diff --git a/scripture/kjv/10/07/25/scripture.tg.id b/scripture/kjv/10/07/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/07/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/07/25/scripture.today b/scripture/kjv/10/07/25/scripture.today new file mode 100644 index 00000000..9468d4f3 --- /dev/null +++ b/scripture/kjv/10/07/25/scripture.today @@ -0,0 +1 @@ +19 42:5 diff --git a/scripture/kjv/10/08/23/scripture.html b/scripture/kjv/10/08/23/scripture.html new file mode 100644 index 00000000..410ef22a --- /dev/null +++ b/scripture/kjv/10/08/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 18:24
+24 A man that hath friends must shew himself friendly: and there is a friend that sticketh closer than a brother.

+Sunday 08-October, 2023 diff --git a/scripture/kjv/10/08/23/scripture.json b/scripture/kjv/10/08/23/scripture.json new file mode 100644 index 00000000..3aaa71d4 --- /dev/null +++ b/scripture/kjv/10/08/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "18", + "date": "Sunday 08-October, 2023", + "getbible": "https://getbible.life/kjv/Proverbs/18/24", + "name": "Proverbs 18:24", + "scripture": [ + { + "nr": "24", + "text": "A man that hath friends must shew himself friendly: and there is a friend that sticketh closer than a brother. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "24", + "version": "kjv" +} diff --git a/scripture/kjv/10/08/23/scripture.md b/scripture/kjv/10/08/23/scripture.md new file mode 100644 index 00000000..416c0733 --- /dev/null +++ b/scripture/kjv/10/08/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 18:24** + +24 A man that hath friends must shew himself friendly: and there is a friend that sticketh closer than a brother. + +[Sunday 08-October, 2023](https://getbible.life/kjv/Proverbs/18/24) diff --git a/scripture/kjv/10/08/23/scripture.tg b/scripture/kjv/10/08/23/scripture.tg new file mode 100644 index 00000000..e0db8dec --- /dev/null +++ b/scripture/kjv/10/08/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 18:24 +24 A man that hath friends must shew himself friendly: and there is a friend that sticketh closer than a brother. + +Sunday 08-October, 2023 diff --git a/scripture/kjv/10/08/23/scripture.tg.id b/scripture/kjv/10/08/23/scripture.tg.id new file mode 100644 index 00000000..d878b321 --- /dev/null +++ b/scripture/kjv/10/08/23/scripture.tg.id @@ -0,0 +1 @@ +1100 diff --git a/scripture/kjv/10/08/23/scripture.today b/scripture/kjv/10/08/23/scripture.today new file mode 100644 index 00000000..7fd7b59c --- /dev/null +++ b/scripture/kjv/10/08/23/scripture.today @@ -0,0 +1 @@ +20 18:24 diff --git a/scripture/kjv/10/08/24/scripture.html b/scripture/kjv/10/08/24/scripture.html new file mode 100644 index 00000000..5227cf42 --- /dev/null +++ b/scripture/kjv/10/08/24/scripture.html @@ -0,0 +1,3 @@ +James 3:10-12
+10 Out of the same mouth proceedeth blessing and cursing. My brethren, these things ought not so to be. 11 Doth a fountain send forth at the same place sweet water and bitter? 12 Can the fig tree, my brethren, bear olive berries? either a vine, figs? so can no fountain both yield salt water and fresh.

+Tuesday 08-October, 2024 diff --git a/scripture/kjv/10/08/24/scripture.json b/scripture/kjv/10/08/24/scripture.json new file mode 100644 index 00000000..714d8b36 --- /dev/null +++ b/scripture/kjv/10/08/24/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "James", + "chapter": "3", + "date": "Tuesday 08-October, 2024", + "getbible": "https://getbible.life/kjv/James/3/10-12", + "name": "James 3:10-12", + "scripture": [ + { + "nr": "10", + "text": "Out of the same mouth proceedeth blessing and cursing. My brethren, these things ought not so to be." + }, + { + "nr": "11", + "text": "Doth a fountain send forth at the same place sweet water and bitter?" + }, + { + "nr": "12", + "text": "Can the fig tree, my brethren, bear olive berries? either a vine, figs? so can no fountain both yield salt water and fresh." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10-12", + "version": "kjv" +} diff --git a/scripture/kjv/10/08/24/scripture.md b/scripture/kjv/10/08/24/scripture.md new file mode 100644 index 00000000..d9de796b --- /dev/null +++ b/scripture/kjv/10/08/24/scripture.md @@ -0,0 +1,5 @@ +**James 3:10-12** + +10 Out of the same mouth proceedeth blessing and cursing. My brethren, these things ought not so to be. 11 Doth a fountain send forth at the same place sweet water and bitter? 12 Can the fig tree, my brethren, bear olive berries? either a vine, figs? so can no fountain both yield salt water and fresh. + +[Tuesday 08-October, 2024](https://getbible.life/kjv/James/3/10-12) diff --git a/scripture/kjv/10/08/24/scripture.tg b/scripture/kjv/10/08/24/scripture.tg new file mode 100644 index 00000000..eef3b37a --- /dev/null +++ b/scripture/kjv/10/08/24/scripture.tg @@ -0,0 +1,4 @@ +James 3:10-12 +10 Out of the same mouth proceedeth blessing and cursing. My brethren, these things ought not so to be. 11 Doth a fountain send forth at the same place sweet water and bitter? 12 Can the fig tree, my brethren, bear olive berries? either a vine, figs? so can no fountain both yield salt water and fresh. + +Tuesday 08-October, 2024 diff --git a/scripture/kjv/10/08/24/scripture.tg.id b/scripture/kjv/10/08/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/08/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/08/24/scripture.today b/scripture/kjv/10/08/24/scripture.today new file mode 100644 index 00000000..b4615fd8 --- /dev/null +++ b/scripture/kjv/10/08/24/scripture.today @@ -0,0 +1 @@ +59 3:10-12 diff --git a/scripture/kjv/10/08/25/scripture.html b/scripture/kjv/10/08/25/scripture.html new file mode 100644 index 00000000..33eeb53c --- /dev/null +++ b/scripture/kjv/10/08/25/scripture.html @@ -0,0 +1,3 @@ +Revelation 1:18
+18 I am he that liveth, and was dead; and, behold, I am alive for evermore, Amen; and have the keys of hell and of death.

+Wednesday 08-October, 2025 diff --git a/scripture/kjv/10/08/25/scripture.json b/scripture/kjv/10/08/25/scripture.json new file mode 100644 index 00000000..e867bd94 --- /dev/null +++ b/scripture/kjv/10/08/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Revelation", + "chapter": "1", + "date": "Wednesday 08-October, 2025", + "getbible": "https://getbible.life/kjv/Revelation/1/18", + "name": "Revelation 1:18", + "scripture": [ + { + "nr": "18", + "text": "I am he that liveth, and was dead; and, behold, I am alive for evermore, Amen; and have the keys of hell and of death." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18", + "version": "kjv" +} diff --git a/scripture/kjv/10/08/25/scripture.md b/scripture/kjv/10/08/25/scripture.md new file mode 100644 index 00000000..fa674b51 --- /dev/null +++ b/scripture/kjv/10/08/25/scripture.md @@ -0,0 +1,5 @@ +**Revelation 1:18** + +18 I am he that liveth, and was dead; and, behold, I am alive for evermore, Amen; and have the keys of hell and of death. + +[Wednesday 08-October, 2025](https://getbible.life/kjv/Revelation/1/18) diff --git a/scripture/kjv/10/08/25/scripture.tg b/scripture/kjv/10/08/25/scripture.tg new file mode 100644 index 00000000..107f1303 --- /dev/null +++ b/scripture/kjv/10/08/25/scripture.tg @@ -0,0 +1,4 @@ +Revelation 1:18 +18 I am he that liveth, and was dead; and, behold, I am alive for evermore, Amen; and have the keys of hell and of death. + +Wednesday 08-October, 2025 diff --git a/scripture/kjv/10/08/25/scripture.tg.id b/scripture/kjv/10/08/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/08/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/08/25/scripture.today b/scripture/kjv/10/08/25/scripture.today new file mode 100644 index 00000000..45c2dacc --- /dev/null +++ b/scripture/kjv/10/08/25/scripture.today @@ -0,0 +1 @@ +66 1:18 diff --git a/scripture/kjv/10/09/23/scripture.html b/scripture/kjv/10/09/23/scripture.html new file mode 100644 index 00000000..d41ff3cd --- /dev/null +++ b/scripture/kjv/10/09/23/scripture.html @@ -0,0 +1,3 @@ +Judges 13:25
+25 And the Spirit of the Lord began to move him at times in the camp of Dan between Zorah and Eshtaol.

+Monday 09-October, 2023 diff --git a/scripture/kjv/10/09/23/scripture.json b/scripture/kjv/10/09/23/scripture.json new file mode 100644 index 00000000..6eb9a7c9 --- /dev/null +++ b/scripture/kjv/10/09/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Judges", + "chapter": "13", + "date": "Monday 09-October, 2023", + "getbible": "https://getbible.life/kjv/Judges/13/25", + "name": "Judges 13:25", + "scripture": [ + { + "nr": "25", + "text": "And the Spirit of the Lord began to move him at times in the camp of Dan between Zorah and Eshtaol. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "25", + "version": "kjv" +} diff --git a/scripture/kjv/10/09/23/scripture.md b/scripture/kjv/10/09/23/scripture.md new file mode 100644 index 00000000..b572ab72 --- /dev/null +++ b/scripture/kjv/10/09/23/scripture.md @@ -0,0 +1,5 @@ +**Judges 13:25** + +25 And the Spirit of the Lord began to move him at times in the camp of Dan between Zorah and Eshtaol. + +[Monday 09-October, 2023](https://getbible.life/kjv/Judges/13/25) diff --git a/scripture/kjv/10/09/23/scripture.tg b/scripture/kjv/10/09/23/scripture.tg new file mode 100644 index 00000000..de4e9012 --- /dev/null +++ b/scripture/kjv/10/09/23/scripture.tg @@ -0,0 +1,4 @@ +Judges 13:25 +25 And the Spirit of the Lord began to move him at times in the camp of Dan between Zorah and Eshtaol. + +Monday 09-October, 2023 diff --git a/scripture/kjv/10/09/23/scripture.tg.id b/scripture/kjv/10/09/23/scripture.tg.id new file mode 100644 index 00000000..4f1e6aa1 --- /dev/null +++ b/scripture/kjv/10/09/23/scripture.tg.id @@ -0,0 +1 @@ +1101 diff --git a/scripture/kjv/10/09/23/scripture.today b/scripture/kjv/10/09/23/scripture.today new file mode 100644 index 00000000..71860845 --- /dev/null +++ b/scripture/kjv/10/09/23/scripture.today @@ -0,0 +1 @@ +7 13:25 diff --git a/scripture/kjv/10/09/24/scripture.html b/scripture/kjv/10/09/24/scripture.html new file mode 100644 index 00000000..77201e92 --- /dev/null +++ b/scripture/kjv/10/09/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 22:15
+15 Foolishness is bound in the heart of a child; but the rod of correction shall drive it far from him.

+Wednesday 09-October, 2024 diff --git a/scripture/kjv/10/09/24/scripture.json b/scripture/kjv/10/09/24/scripture.json new file mode 100644 index 00000000..c757a8a9 --- /dev/null +++ b/scripture/kjv/10/09/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "22", + "date": "Wednesday 09-October, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/22/15", + "name": "Proverbs 22:15", + "scripture": [ + { + "nr": "15", + "text": "Foolishness is bound in the heart of a child; but the rod of correction shall drive it far from him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15", + "version": "kjv" +} diff --git a/scripture/kjv/10/09/24/scripture.md b/scripture/kjv/10/09/24/scripture.md new file mode 100644 index 00000000..90bae5d6 --- /dev/null +++ b/scripture/kjv/10/09/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 22:15** + +15 Foolishness is bound in the heart of a child; but the rod of correction shall drive it far from him. + +[Wednesday 09-October, 2024](https://getbible.life/kjv/Proverbs/22/15) diff --git a/scripture/kjv/10/09/24/scripture.tg b/scripture/kjv/10/09/24/scripture.tg new file mode 100644 index 00000000..11510a32 --- /dev/null +++ b/scripture/kjv/10/09/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 22:15 +15 Foolishness is bound in the heart of a child; but the rod of correction shall drive it far from him. + +Wednesday 09-October, 2024 diff --git a/scripture/kjv/10/09/24/scripture.tg.id b/scripture/kjv/10/09/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/09/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/09/24/scripture.today b/scripture/kjv/10/09/24/scripture.today new file mode 100644 index 00000000..632284db --- /dev/null +++ b/scripture/kjv/10/09/24/scripture.today @@ -0,0 +1 @@ +20 22:15 diff --git a/scripture/kjv/10/09/25/scripture.html b/scripture/kjv/10/09/25/scripture.html new file mode 100644 index 00000000..e3a052a1 --- /dev/null +++ b/scripture/kjv/10/09/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 115:1
+1 Not unto us, O Lord, not unto us, but unto thy name give glory, for thy mercy, and for thy truth’s sake.

+Thursday 09-October, 2025 diff --git a/scripture/kjv/10/09/25/scripture.json b/scripture/kjv/10/09/25/scripture.json new file mode 100644 index 00000000..340f2458 --- /dev/null +++ b/scripture/kjv/10/09/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "115", + "date": "Thursday 09-October, 2025", + "getbible": "https://getbible.life/kjv/Psalms/115/1", + "name": "Psalms 115:1", + "scripture": [ + { + "nr": "1", + "text": "Not unto us, O Lord, not unto us, but unto thy name give glory, for thy mercy, and for thy truth’s sake." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1", + "version": "kjv" +} diff --git a/scripture/kjv/10/09/25/scripture.md b/scripture/kjv/10/09/25/scripture.md new file mode 100644 index 00000000..46c12339 --- /dev/null +++ b/scripture/kjv/10/09/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 115:1** + +1 Not unto us, O Lord, not unto us, but unto thy name give glory, for thy mercy, and for thy truth’s sake. + +[Thursday 09-October, 2025](https://getbible.life/kjv/Psalms/115/1) diff --git a/scripture/kjv/10/09/25/scripture.tg b/scripture/kjv/10/09/25/scripture.tg new file mode 100644 index 00000000..201d78f4 --- /dev/null +++ b/scripture/kjv/10/09/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 115:1 +1 Not unto us, O Lord, not unto us, but unto thy name give glory, for thy mercy, and for thy truth’s sake. + +Thursday 09-October, 2025 diff --git a/scripture/kjv/10/09/25/scripture.tg.id b/scripture/kjv/10/09/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/09/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/09/25/scripture.today b/scripture/kjv/10/09/25/scripture.today new file mode 100644 index 00000000..09249337 --- /dev/null +++ b/scripture/kjv/10/09/25/scripture.today @@ -0,0 +1 @@ +19 115:1 diff --git a/scripture/kjv/10/10/23/scripture.html b/scripture/kjv/10/10/23/scripture.html new file mode 100644 index 00000000..bcaf65d7 --- /dev/null +++ b/scripture/kjv/10/10/23/scripture.html @@ -0,0 +1,3 @@ +Mark 1:35
+35 And in the morning, rising up a great while before day, he went out, and departed into a solitary place, and there prayed.

+Tuesday 10-October, 2023 diff --git a/scripture/kjv/10/10/23/scripture.json b/scripture/kjv/10/10/23/scripture.json new file mode 100644 index 00000000..66c0aef0 --- /dev/null +++ b/scripture/kjv/10/10/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Mark", + "chapter": "1", + "date": "Tuesday 10-October, 2023", + "getbible": "https://getbible.life/kjv/Mark/1/35", + "name": "Mark 1:35", + "scripture": [ + { + "nr": "35", + "text": "And in the morning, rising up a great while before day, he went out, and departed into a solitary place, and there prayed." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "35", + "version": "kjv" +} diff --git a/scripture/kjv/10/10/23/scripture.md b/scripture/kjv/10/10/23/scripture.md new file mode 100644 index 00000000..13ef8687 --- /dev/null +++ b/scripture/kjv/10/10/23/scripture.md @@ -0,0 +1,5 @@ +**Mark 1:35** + +35 And in the morning, rising up a great while before day, he went out, and departed into a solitary place, and there prayed. + +[Tuesday 10-October, 2023](https://getbible.life/kjv/Mark/1/35) diff --git a/scripture/kjv/10/10/23/scripture.tg b/scripture/kjv/10/10/23/scripture.tg new file mode 100644 index 00000000..d4a02eb3 --- /dev/null +++ b/scripture/kjv/10/10/23/scripture.tg @@ -0,0 +1,4 @@ +Mark 1:35 +35 And in the morning, rising up a great while before day, he went out, and departed into a solitary place, and there prayed. + +Tuesday 10-October, 2023 diff --git a/scripture/kjv/10/10/23/scripture.tg.id b/scripture/kjv/10/10/23/scripture.tg.id new file mode 100644 index 00000000..13439025 --- /dev/null +++ b/scripture/kjv/10/10/23/scripture.tg.id @@ -0,0 +1 @@ +1102 diff --git a/scripture/kjv/10/10/23/scripture.today b/scripture/kjv/10/10/23/scripture.today new file mode 100644 index 00000000..5d35dc56 --- /dev/null +++ b/scripture/kjv/10/10/23/scripture.today @@ -0,0 +1 @@ +41 1:35 diff --git a/scripture/kjv/10/10/24/scripture.html b/scripture/kjv/10/10/24/scripture.html new file mode 100644 index 00000000..2c27911f --- /dev/null +++ b/scripture/kjv/10/10/24/scripture.html @@ -0,0 +1,3 @@ +Jonah 2:9
+9 But I will sacrifice unto thee with the voice of thanksgiving; I will pay that that I have vowed. Salvation is of the Lord.

+Thursday 10-October, 2024 diff --git a/scripture/kjv/10/10/24/scripture.json b/scripture/kjv/10/10/24/scripture.json new file mode 100644 index 00000000..b8956bb8 --- /dev/null +++ b/scripture/kjv/10/10/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Jonah", + "chapter": "2", + "date": "Thursday 10-October, 2024", + "getbible": "https://getbible.life/kjv/Jonah/2/9", + "name": "Jonah 2:9", + "scripture": [ + { + "nr": "9", + "text": "But I will sacrifice unto thee with the voice of thanksgiving; I will pay that that I have vowed. Salvation is of the Lord." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9", + "version": "kjv" +} diff --git a/scripture/kjv/10/10/24/scripture.md b/scripture/kjv/10/10/24/scripture.md new file mode 100644 index 00000000..d5f541d0 --- /dev/null +++ b/scripture/kjv/10/10/24/scripture.md @@ -0,0 +1,5 @@ +**Jonah 2:9** + +9 But I will sacrifice unto thee with the voice of thanksgiving; I will pay that that I have vowed. Salvation is of the Lord. + +[Thursday 10-October, 2024](https://getbible.life/kjv/Jonah/2/9) diff --git a/scripture/kjv/10/10/24/scripture.tg b/scripture/kjv/10/10/24/scripture.tg new file mode 100644 index 00000000..f6d5bcad --- /dev/null +++ b/scripture/kjv/10/10/24/scripture.tg @@ -0,0 +1,4 @@ +Jonah 2:9 +9 But I will sacrifice unto thee with the voice of thanksgiving; I will pay that that I have vowed. Salvation is of the Lord. + +Thursday 10-October, 2024 diff --git a/scripture/kjv/10/10/24/scripture.tg.id b/scripture/kjv/10/10/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/10/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/10/24/scripture.today b/scripture/kjv/10/10/24/scripture.today new file mode 100644 index 00000000..8bf590a4 --- /dev/null +++ b/scripture/kjv/10/10/24/scripture.today @@ -0,0 +1 @@ +32 2:9 diff --git a/scripture/kjv/10/10/25/scripture.html b/scripture/kjv/10/10/25/scripture.html new file mode 100644 index 00000000..9763ff73 --- /dev/null +++ b/scripture/kjv/10/10/25/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 43:10-11
+10 Thou son of man, shew the house to the house of Israel, that they may be ashamed of their iniquities: and let them measure the pattern. 11 And if they be ashamed of all that they have done, shew them the form of the house, and the fashion thereof, and the goings out thereof, and the comings in thereof, and all the forms thereof, and all the ordinances thereof, and all the forms thereof, and all the laws thereof: and write it in their sight, that they may keep the whole form thereof, and all the ordinances thereof, and do them.

+Friday 10-October, 2025 diff --git a/scripture/kjv/10/10/25/scripture.json b/scripture/kjv/10/10/25/scripture.json new file mode 100644 index 00000000..39d037d8 --- /dev/null +++ b/scripture/kjv/10/10/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Ezekiel", + "chapter": "43", + "date": "Friday 10-October, 2025", + "getbible": "https://getbible.life/kjv/Ezekiel/43/10-11", + "name": "Ezekiel 43:10-11", + "scripture": [ + { + "nr": "10", + "text": "Thou son of man, shew the house to the house of Israel, that they may be ashamed of their iniquities: and let them measure the pattern." + }, + { + "nr": "11", + "text": "And if they be ashamed of all that they have done, shew them the form of the house, and the fashion thereof, and the goings out thereof, and the comings in thereof, and all the forms thereof, and all the ordinances thereof, and all the forms thereof, and all the laws thereof: and write it in their sight, that they may keep the whole form thereof, and all the ordinances thereof, and do them." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10-11", + "version": "kjv" +} diff --git a/scripture/kjv/10/10/25/scripture.md b/scripture/kjv/10/10/25/scripture.md new file mode 100644 index 00000000..e0500af5 --- /dev/null +++ b/scripture/kjv/10/10/25/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 43:10-11** + +10 Thou son of man, shew the house to the house of Israel, that they may be ashamed of their iniquities: and let them measure the pattern. 11 And if they be ashamed of all that they have done, shew them the form of the house, and the fashion thereof, and the goings out thereof, and the comings in thereof, and all the forms thereof, and all the ordinances thereof, and all the forms thereof, and all the laws thereof: and write it in their sight, that they may keep the whole form thereof, and all the ordinances thereof, and do them. + +[Friday 10-October, 2025](https://getbible.life/kjv/Ezekiel/43/10-11) diff --git a/scripture/kjv/10/10/25/scripture.tg b/scripture/kjv/10/10/25/scripture.tg new file mode 100644 index 00000000..8b7c8610 --- /dev/null +++ b/scripture/kjv/10/10/25/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 43:10-11 +10 Thou son of man, shew the house to the house of Israel, that they may be ashamed of their iniquities: and let them measure the pattern. 11 And if they be ashamed of all that they have done, shew them the form of the house, and the fashion thereof, and the goings out thereof, and the comings in thereof, and all the forms thereof, and all the ordinances thereof, and all the forms thereof, and all the laws thereof: and write it in their sight, that they may keep the whole form thereof, and all the ordinances thereof, and do them. + +Friday 10-October, 2025 diff --git a/scripture/kjv/10/10/25/scripture.tg.id b/scripture/kjv/10/10/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/10/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/10/25/scripture.today b/scripture/kjv/10/10/25/scripture.today new file mode 100644 index 00000000..dbb50f88 --- /dev/null +++ b/scripture/kjv/10/10/25/scripture.today @@ -0,0 +1 @@ +26 43:10-11 diff --git a/scripture/kjv/10/11/23/scripture.html b/scripture/kjv/10/11/23/scripture.html new file mode 100644 index 00000000..3ec37dd5 --- /dev/null +++ b/scripture/kjv/10/11/23/scripture.html @@ -0,0 +1,3 @@ +Isaiah 30:26
+26 Moreover the light of the moon shall be as the light of the sun, and the light of the sun shall be sevenfold, as the light of seven days, in the day that the Lord bindeth up the breach of his people, and healeth the stroke of their wound.

+Wednesday 11-October, 2023 diff --git a/scripture/kjv/10/11/23/scripture.json b/scripture/kjv/10/11/23/scripture.json new file mode 100644 index 00000000..b87f07a7 --- /dev/null +++ b/scripture/kjv/10/11/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "30", + "date": "Wednesday 11-October, 2023", + "getbible": "https://getbible.life/kjv/Isaiah/30/26", + "name": "Isaiah 30:26", + "scripture": [ + { + "nr": "26", + "text": "Moreover the light of the moon shall be as the light of the sun, and the light of the sun shall be sevenfold, as the light of seven days, in the day that the Lord bindeth up the breach of his people, and healeth the stroke of their wound." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "26", + "version": "kjv" +} diff --git a/scripture/kjv/10/11/23/scripture.md b/scripture/kjv/10/11/23/scripture.md new file mode 100644 index 00000000..ffbf884d --- /dev/null +++ b/scripture/kjv/10/11/23/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 30:26** + +26 Moreover the light of the moon shall be as the light of the sun, and the light of the sun shall be sevenfold, as the light of seven days, in the day that the Lord bindeth up the breach of his people, and healeth the stroke of their wound. + +[Wednesday 11-October, 2023](https://getbible.life/kjv/Isaiah/30/26) diff --git a/scripture/kjv/10/11/23/scripture.tg b/scripture/kjv/10/11/23/scripture.tg new file mode 100644 index 00000000..a1745976 --- /dev/null +++ b/scripture/kjv/10/11/23/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 30:26 +26 Moreover the light of the moon shall be as the light of the sun, and the light of the sun shall be sevenfold, as the light of seven days, in the day that the Lord bindeth up the breach of his people, and healeth the stroke of their wound. + +Wednesday 11-October, 2023 diff --git a/scripture/kjv/10/11/23/scripture.tg.id b/scripture/kjv/10/11/23/scripture.tg.id new file mode 100644 index 00000000..21a801b4 --- /dev/null +++ b/scripture/kjv/10/11/23/scripture.tg.id @@ -0,0 +1 @@ +1103 diff --git a/scripture/kjv/10/11/23/scripture.today b/scripture/kjv/10/11/23/scripture.today new file mode 100644 index 00000000..b405af90 --- /dev/null +++ b/scripture/kjv/10/11/23/scripture.today @@ -0,0 +1 @@ +23 30:26 diff --git a/scripture/kjv/10/11/24/scripture.html b/scripture/kjv/10/11/24/scripture.html new file mode 100644 index 00000000..073dcf9a --- /dev/null +++ b/scripture/kjv/10/11/24/scripture.html @@ -0,0 +1,3 @@ +Romans 8:25
+25 But if we hope for that we see not, then do we with patience wait for it.

+Friday 11-October, 2024 diff --git a/scripture/kjv/10/11/24/scripture.json b/scripture/kjv/10/11/24/scripture.json new file mode 100644 index 00000000..2249da1e --- /dev/null +++ b/scripture/kjv/10/11/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Romans", + "chapter": "8", + "date": "Friday 11-October, 2024", + "getbible": "https://getbible.life/kjv/Romans/8/25", + "name": "Romans 8:25", + "scripture": [ + { + "nr": "25", + "text": "But if we hope for that we see not, then do we with patience wait for it. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "25", + "version": "kjv" +} diff --git a/scripture/kjv/10/11/24/scripture.md b/scripture/kjv/10/11/24/scripture.md new file mode 100644 index 00000000..d040a824 --- /dev/null +++ b/scripture/kjv/10/11/24/scripture.md @@ -0,0 +1,5 @@ +**Romans 8:25** + +25 But if we hope for that we see not, then do we with patience wait for it. + +[Friday 11-October, 2024](https://getbible.life/kjv/Romans/8/25) diff --git a/scripture/kjv/10/11/24/scripture.tg b/scripture/kjv/10/11/24/scripture.tg new file mode 100644 index 00000000..3f500333 --- /dev/null +++ b/scripture/kjv/10/11/24/scripture.tg @@ -0,0 +1,4 @@ +Romans 8:25 +25 But if we hope for that we see not, then do we with patience wait for it. + +Friday 11-October, 2024 diff --git a/scripture/kjv/10/11/24/scripture.tg.id b/scripture/kjv/10/11/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/11/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/11/24/scripture.today b/scripture/kjv/10/11/24/scripture.today new file mode 100644 index 00000000..19651b48 --- /dev/null +++ b/scripture/kjv/10/11/24/scripture.today @@ -0,0 +1 @@ +45 8:25 diff --git a/scripture/kjv/10/11/25/scripture.html b/scripture/kjv/10/11/25/scripture.html new file mode 100644 index 00000000..35e210bc --- /dev/null +++ b/scripture/kjv/10/11/25/scripture.html @@ -0,0 +1,3 @@ +Luke 19:41-42
+41 And when he was come near, he beheld the city, and wept over it, 42 Saying, If thou hadst known, even thou, at least in this thy day, the things which belong unto thy peace! but now they are hid from thine eyes.

+Saturday 11-October, 2025 diff --git a/scripture/kjv/10/11/25/scripture.json b/scripture/kjv/10/11/25/scripture.json new file mode 100644 index 00000000..9b982e24 --- /dev/null +++ b/scripture/kjv/10/11/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Luke", + "chapter": "19", + "date": "Saturday 11-October, 2025", + "getbible": "https://getbible.life/kjv/Luke/19/41-42", + "name": "Luke 19:41-42", + "scripture": [ + { + "nr": "41", + "text": "And when he was come near, he beheld the city, and wept over it," + }, + { + "nr": "42", + "text": "Saying, If thou hadst known, even thou, at least in this thy day, the things which belong unto thy peace! but now they are hid from thine eyes." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "41-42", + "version": "kjv" +} diff --git a/scripture/kjv/10/11/25/scripture.md b/scripture/kjv/10/11/25/scripture.md new file mode 100644 index 00000000..0de85314 --- /dev/null +++ b/scripture/kjv/10/11/25/scripture.md @@ -0,0 +1,5 @@ +**Luke 19:41-42** + +41 And when he was come near, he beheld the city, and wept over it, 42 Saying, If thou hadst known, even thou, at least in this thy day, the things which belong unto thy peace! but now they are hid from thine eyes. + +[Saturday 11-October, 2025](https://getbible.life/kjv/Luke/19/41-42) diff --git a/scripture/kjv/10/11/25/scripture.tg b/scripture/kjv/10/11/25/scripture.tg new file mode 100644 index 00000000..4e0e6c1d --- /dev/null +++ b/scripture/kjv/10/11/25/scripture.tg @@ -0,0 +1,4 @@ +Luke 19:41-42 +41 And when he was come near, he beheld the city, and wept over it, 42 Saying, If thou hadst known, even thou, at least in this thy day, the things which belong unto thy peace! but now they are hid from thine eyes. + +Saturday 11-October, 2025 diff --git a/scripture/kjv/10/11/25/scripture.tg.id b/scripture/kjv/10/11/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/11/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/11/25/scripture.today b/scripture/kjv/10/11/25/scripture.today new file mode 100644 index 00000000..66c44cbb --- /dev/null +++ b/scripture/kjv/10/11/25/scripture.today @@ -0,0 +1 @@ +42 19:41-42 diff --git a/scripture/kjv/10/12/23/scripture.html b/scripture/kjv/10/12/23/scripture.html new file mode 100644 index 00000000..11d11d14 --- /dev/null +++ b/scripture/kjv/10/12/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 115:1
+1 Not unto us, O Lord, not unto us, but unto thy name give glory, for thy mercy, and for thy truth’s sake.

+Thursday 12-October, 2023 diff --git a/scripture/kjv/10/12/23/scripture.json b/scripture/kjv/10/12/23/scripture.json new file mode 100644 index 00000000..95c224ff --- /dev/null +++ b/scripture/kjv/10/12/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "115", + "date": "Thursday 12-October, 2023", + "getbible": "https://getbible.life/kjv/Psalms/115/1", + "name": "Psalms 115:1", + "scripture": [ + { + "nr": "1", + "text": "Not unto us, O Lord, not unto us, but unto thy name give glory, for thy mercy, and for thy truth’s sake." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1", + "version": "kjv" +} diff --git a/scripture/kjv/10/12/23/scripture.md b/scripture/kjv/10/12/23/scripture.md new file mode 100644 index 00000000..2a8978c9 --- /dev/null +++ b/scripture/kjv/10/12/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 115:1** + +1 Not unto us, O Lord, not unto us, but unto thy name give glory, for thy mercy, and for thy truth’s sake. + +[Thursday 12-October, 2023](https://getbible.life/kjv/Psalms/115/1) diff --git a/scripture/kjv/10/12/23/scripture.tg b/scripture/kjv/10/12/23/scripture.tg new file mode 100644 index 00000000..962e429f --- /dev/null +++ b/scripture/kjv/10/12/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 115:1 +1 Not unto us, O Lord, not unto us, but unto thy name give glory, for thy mercy, and for thy truth’s sake. + +Thursday 12-October, 2023 diff --git a/scripture/kjv/10/12/23/scripture.tg.id b/scripture/kjv/10/12/23/scripture.tg.id new file mode 100644 index 00000000..0141c45d --- /dev/null +++ b/scripture/kjv/10/12/23/scripture.tg.id @@ -0,0 +1 @@ +1104 diff --git a/scripture/kjv/10/12/23/scripture.today b/scripture/kjv/10/12/23/scripture.today new file mode 100644 index 00000000..09249337 --- /dev/null +++ b/scripture/kjv/10/12/23/scripture.today @@ -0,0 +1 @@ +19 115:1 diff --git a/scripture/kjv/10/12/24/scripture.html b/scripture/kjv/10/12/24/scripture.html new file mode 100644 index 00000000..ce281a27 --- /dev/null +++ b/scripture/kjv/10/12/24/scripture.html @@ -0,0 +1,3 @@ +Zechariah 7:9-10
+9 Thus speaketh the Lord of hosts, saying, Execute true judgment, and shew mercy and compassions every man to his brother: 10 And oppress not the widow, nor the fatherless, the stranger, nor the poor; and let none of you imagine evil against his brother in your heart.

+Saturday 12-October, 2024 diff --git a/scripture/kjv/10/12/24/scripture.json b/scripture/kjv/10/12/24/scripture.json new file mode 100644 index 00000000..3d75f1c2 --- /dev/null +++ b/scripture/kjv/10/12/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Zechariah", + "chapter": "7", + "date": "Saturday 12-October, 2024", + "getbible": "https://getbible.life/kjv/Zechariah/7/9-10", + "name": "Zechariah 7:9-10", + "scripture": [ + { + "nr": "9", + "text": "Thus speaketh the Lord of hosts, saying, Execute true judgment, and shew mercy and compassions every man to his brother:" + }, + { + "nr": "10", + "text": "And oppress not the widow, nor the fatherless, the stranger, nor the poor; and let none of you imagine evil against his brother in your heart." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9-10", + "version": "kjv" +} diff --git a/scripture/kjv/10/12/24/scripture.md b/scripture/kjv/10/12/24/scripture.md new file mode 100644 index 00000000..9b7a2b65 --- /dev/null +++ b/scripture/kjv/10/12/24/scripture.md @@ -0,0 +1,5 @@ +**Zechariah 7:9-10** + +9 Thus speaketh the Lord of hosts, saying, Execute true judgment, and shew mercy and compassions every man to his brother: 10 And oppress not the widow, nor the fatherless, the stranger, nor the poor; and let none of you imagine evil against his brother in your heart. + +[Saturday 12-October, 2024](https://getbible.life/kjv/Zechariah/7/9-10) diff --git a/scripture/kjv/10/12/24/scripture.tg b/scripture/kjv/10/12/24/scripture.tg new file mode 100644 index 00000000..39033ba6 --- /dev/null +++ b/scripture/kjv/10/12/24/scripture.tg @@ -0,0 +1,4 @@ +Zechariah 7:9-10 +9 Thus speaketh the Lord of hosts, saying, Execute true judgment, and shew mercy and compassions every man to his brother: 10 And oppress not the widow, nor the fatherless, the stranger, nor the poor; and let none of you imagine evil against his brother in your heart. + +Saturday 12-October, 2024 diff --git a/scripture/kjv/10/12/24/scripture.tg.id b/scripture/kjv/10/12/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/12/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/12/24/scripture.today b/scripture/kjv/10/12/24/scripture.today new file mode 100644 index 00000000..a5a8346e --- /dev/null +++ b/scripture/kjv/10/12/24/scripture.today @@ -0,0 +1 @@ +38 7:9-10 diff --git a/scripture/kjv/10/12/25/scripture.html b/scripture/kjv/10/12/25/scripture.html new file mode 100644 index 00000000..ac4f46cb --- /dev/null +++ b/scripture/kjv/10/12/25/scripture.html @@ -0,0 +1,3 @@ +Galatians 6:15-16
+15 For in Christ Jesus neither circumcision availeth any thing, nor uncircumcision, but a new creature. 16 And as many as walk according to this rule, peace be on them, and mercy, and upon the Israel of God.

+Sunday 12-October, 2025 diff --git a/scripture/kjv/10/12/25/scripture.json b/scripture/kjv/10/12/25/scripture.json new file mode 100644 index 00000000..f3683020 --- /dev/null +++ b/scripture/kjv/10/12/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Galatians", + "chapter": "6", + "date": "Sunday 12-October, 2025", + "getbible": "https://getbible.life/kjv/Galatians/6/15-16", + "name": "Galatians 6:15-16", + "scripture": [ + { + "nr": "15", + "text": "For in Christ Jesus neither circumcision availeth any thing, nor uncircumcision, but a new creature." + }, + { + "nr": "16", + "text": "And as many as walk according to this rule, peace be on them, and mercy, and upon the Israel of God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15-16", + "version": "kjv" +} diff --git a/scripture/kjv/10/12/25/scripture.md b/scripture/kjv/10/12/25/scripture.md new file mode 100644 index 00000000..f01e07d9 --- /dev/null +++ b/scripture/kjv/10/12/25/scripture.md @@ -0,0 +1,5 @@ +**Galatians 6:15-16** + +15 For in Christ Jesus neither circumcision availeth any thing, nor uncircumcision, but a new creature. 16 And as many as walk according to this rule, peace be on them, and mercy, and upon the Israel of God. + +[Sunday 12-October, 2025](https://getbible.life/kjv/Galatians/6/15-16) diff --git a/scripture/kjv/10/12/25/scripture.tg b/scripture/kjv/10/12/25/scripture.tg new file mode 100644 index 00000000..4e8744fa --- /dev/null +++ b/scripture/kjv/10/12/25/scripture.tg @@ -0,0 +1,4 @@ +Galatians 6:15-16 +15 For in Christ Jesus neither circumcision availeth any thing, nor uncircumcision, but a new creature. 16 And as many as walk according to this rule, peace be on them, and mercy, and upon the Israel of God. + +Sunday 12-October, 2025 diff --git a/scripture/kjv/10/12/25/scripture.tg.id b/scripture/kjv/10/12/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/12/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/12/25/scripture.today b/scripture/kjv/10/12/25/scripture.today new file mode 100644 index 00000000..f6dfcee4 --- /dev/null +++ b/scripture/kjv/10/12/25/scripture.today @@ -0,0 +1 @@ +48 6:15-16 diff --git a/scripture/kjv/10/13/23/scripture.html b/scripture/kjv/10/13/23/scripture.html new file mode 100644 index 00000000..27764d90 --- /dev/null +++ b/scripture/kjv/10/13/23/scripture.html @@ -0,0 +1,3 @@ +Revelation 1:5
+5 And from Jesus Christ, who is the faithful witness, and the first begotten of the dead, and the prince of the kings of the earth. Unto him that loved us, and washed us from our sins in his own blood,

+Friday 13-October, 2023 diff --git a/scripture/kjv/10/13/23/scripture.json b/scripture/kjv/10/13/23/scripture.json new file mode 100644 index 00000000..3d6becfe --- /dev/null +++ b/scripture/kjv/10/13/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Revelation", + "chapter": "1", + "date": "Friday 13-October, 2023", + "getbible": "https://getbible.life/kjv/Revelation/1/5", + "name": "Revelation 1:5", + "scripture": [ + { + "nr": "5", + "text": "And from Jesus Christ, who is the faithful witness, and the first begotten of the dead, and the prince of the kings of the earth. Unto him that loved us, and washed us from our sins in his own blood," + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5", + "version": "kjv" +} diff --git a/scripture/kjv/10/13/23/scripture.md b/scripture/kjv/10/13/23/scripture.md new file mode 100644 index 00000000..a2c7a283 --- /dev/null +++ b/scripture/kjv/10/13/23/scripture.md @@ -0,0 +1,5 @@ +**Revelation 1:5** + +5 And from Jesus Christ, who is the faithful witness, and the first begotten of the dead, and the prince of the kings of the earth. Unto him that loved us, and washed us from our sins in his own blood, + +[Friday 13-October, 2023](https://getbible.life/kjv/Revelation/1/5) diff --git a/scripture/kjv/10/13/23/scripture.tg b/scripture/kjv/10/13/23/scripture.tg new file mode 100644 index 00000000..34fd8cb7 --- /dev/null +++ b/scripture/kjv/10/13/23/scripture.tg @@ -0,0 +1,4 @@ +Revelation 1:5 +5 And from Jesus Christ, who is the faithful witness, and the first begotten of the dead, and the prince of the kings of the earth. Unto him that loved us, and washed us from our sins in his own blood, + +Friday 13-October, 2023 diff --git a/scripture/kjv/10/13/23/scripture.tg.id b/scripture/kjv/10/13/23/scripture.tg.id new file mode 100644 index 00000000..cca9df41 --- /dev/null +++ b/scripture/kjv/10/13/23/scripture.tg.id @@ -0,0 +1 @@ +1105 diff --git a/scripture/kjv/10/13/23/scripture.today b/scripture/kjv/10/13/23/scripture.today new file mode 100644 index 00000000..47baa75b --- /dev/null +++ b/scripture/kjv/10/13/23/scripture.today @@ -0,0 +1 @@ +66 1:5 diff --git a/scripture/kjv/10/13/24/scripture.html b/scripture/kjv/10/13/24/scripture.html new file mode 100644 index 00000000..883b20f5 --- /dev/null +++ b/scripture/kjv/10/13/24/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 44:28
+28 And it shall be unto them for an inheritance: I am their inheritance: and ye shall give them no possession in Israel: I am their possession.

+Sunday 13-October, 2024 diff --git a/scripture/kjv/10/13/24/scripture.json b/scripture/kjv/10/13/24/scripture.json new file mode 100644 index 00000000..96b43c36 --- /dev/null +++ b/scripture/kjv/10/13/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ezekiel", + "chapter": "44", + "date": "Sunday 13-October, 2024", + "getbible": "https://getbible.life/kjv/Ezekiel/44/28", + "name": "Ezekiel 44:28", + "scripture": [ + { + "nr": "28", + "text": "And it shall be unto them for an inheritance: I am their inheritance: and ye shall give them no possession in Israel: I am their possession." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "28", + "version": "kjv" +} diff --git a/scripture/kjv/10/13/24/scripture.md b/scripture/kjv/10/13/24/scripture.md new file mode 100644 index 00000000..dafe7050 --- /dev/null +++ b/scripture/kjv/10/13/24/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 44:28** + +28 And it shall be unto them for an inheritance: I am their inheritance: and ye shall give them no possession in Israel: I am their possession. + +[Sunday 13-October, 2024](https://getbible.life/kjv/Ezekiel/44/28) diff --git a/scripture/kjv/10/13/24/scripture.tg b/scripture/kjv/10/13/24/scripture.tg new file mode 100644 index 00000000..9a5780b9 --- /dev/null +++ b/scripture/kjv/10/13/24/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 44:28 +28 And it shall be unto them for an inheritance: I am their inheritance: and ye shall give them no possession in Israel: I am their possession. + +Sunday 13-October, 2024 diff --git a/scripture/kjv/10/13/24/scripture.tg.id b/scripture/kjv/10/13/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/13/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/13/24/scripture.today b/scripture/kjv/10/13/24/scripture.today new file mode 100644 index 00000000..1010ac88 --- /dev/null +++ b/scripture/kjv/10/13/24/scripture.today @@ -0,0 +1 @@ +26 44:28 diff --git a/scripture/kjv/10/13/25/scripture.html b/scripture/kjv/10/13/25/scripture.html new file mode 100644 index 00000000..7324da01 --- /dev/null +++ b/scripture/kjv/10/13/25/scripture.html @@ -0,0 +1,3 @@ +John 11:52
+52 And not for that nation only, but that also he should gather together in one the children of God that were scattered abroad.

+Monday 13-October, 2025 diff --git a/scripture/kjv/10/13/25/scripture.json b/scripture/kjv/10/13/25/scripture.json new file mode 100644 index 00000000..31095970 --- /dev/null +++ b/scripture/kjv/10/13/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "11", + "date": "Monday 13-October, 2025", + "getbible": "https://getbible.life/kjv/John/11/52", + "name": "John 11:52", + "scripture": [ + { + "nr": "52", + "text": "And not for that nation only, but that also he should gather together in one the children of God that were scattered abroad." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "52", + "version": "kjv" +} diff --git a/scripture/kjv/10/13/25/scripture.md b/scripture/kjv/10/13/25/scripture.md new file mode 100644 index 00000000..347e057c --- /dev/null +++ b/scripture/kjv/10/13/25/scripture.md @@ -0,0 +1,5 @@ +**John 11:52** + +52 And not for that nation only, but that also he should gather together in one the children of God that were scattered abroad. + +[Monday 13-October, 2025](https://getbible.life/kjv/John/11/52) diff --git a/scripture/kjv/10/13/25/scripture.tg b/scripture/kjv/10/13/25/scripture.tg new file mode 100644 index 00000000..6cd70913 --- /dev/null +++ b/scripture/kjv/10/13/25/scripture.tg @@ -0,0 +1,4 @@ +John 11:52 +52 And not for that nation only, but that also he should gather together in one the children of God that were scattered abroad. + +Monday 13-October, 2025 diff --git a/scripture/kjv/10/13/25/scripture.tg.id b/scripture/kjv/10/13/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/13/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/13/25/scripture.today b/scripture/kjv/10/13/25/scripture.today new file mode 100644 index 00000000..0864f81f --- /dev/null +++ b/scripture/kjv/10/13/25/scripture.today @@ -0,0 +1 @@ +43 11:52 diff --git a/scripture/kjv/10/14/23/scripture.html b/scripture/kjv/10/14/23/scripture.html new file mode 100644 index 00000000..886e6bad --- /dev/null +++ b/scripture/kjv/10/14/23/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 6:18
+18 Flee fornication. Every sin that a man doeth is without the body; but he that committeth fornication sinneth against his own body.

+Saturday 14-October, 2023 diff --git a/scripture/kjv/10/14/23/scripture.json b/scripture/kjv/10/14/23/scripture.json new file mode 100644 index 00000000..7a60119a --- /dev/null +++ b/scripture/kjv/10/14/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "6", + "date": "Saturday 14-October, 2023", + "getbible": "https://getbible.life/kjv/1 Corinthians/6/18", + "name": "1 Corinthians 6:18", + "scripture": [ + { + "nr": "18", + "text": "Flee fornication. Every sin that a man doeth is without the body; but he that committeth fornication sinneth against his own body." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18", + "version": "kjv" +} diff --git a/scripture/kjv/10/14/23/scripture.md b/scripture/kjv/10/14/23/scripture.md new file mode 100644 index 00000000..9c8711c6 --- /dev/null +++ b/scripture/kjv/10/14/23/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 6:18** + +18 Flee fornication. Every sin that a man doeth is without the body; but he that committeth fornication sinneth against his own body. + +[Saturday 14-October, 2023](https://getbible.life/kjv/1 Corinthians/6/18) diff --git a/scripture/kjv/10/14/23/scripture.tg b/scripture/kjv/10/14/23/scripture.tg new file mode 100644 index 00000000..c99e1ac6 --- /dev/null +++ b/scripture/kjv/10/14/23/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 6:18 +18 Flee fornication. Every sin that a man doeth is without the body; but he that committeth fornication sinneth against his own body. + +Saturday 14-October, 2023 diff --git a/scripture/kjv/10/14/23/scripture.tg.id b/scripture/kjv/10/14/23/scripture.tg.id new file mode 100644 index 00000000..9437b2fe --- /dev/null +++ b/scripture/kjv/10/14/23/scripture.tg.id @@ -0,0 +1 @@ +1106 diff --git a/scripture/kjv/10/14/23/scripture.today b/scripture/kjv/10/14/23/scripture.today new file mode 100644 index 00000000..e54205bb --- /dev/null +++ b/scripture/kjv/10/14/23/scripture.today @@ -0,0 +1 @@ +46 6:18 diff --git a/scripture/kjv/10/14/24/scripture.html b/scripture/kjv/10/14/24/scripture.html new file mode 100644 index 00000000..ede70dba --- /dev/null +++ b/scripture/kjv/10/14/24/scripture.html @@ -0,0 +1,3 @@ +1 John 4:4
+4 Ye are of God, little children, and have overcome them: because greater is he that is in you, than he that is in the world.

+Monday 14-October, 2024 diff --git a/scripture/kjv/10/14/24/scripture.json b/scripture/kjv/10/14/24/scripture.json new file mode 100644 index 00000000..e5e6f3e9 --- /dev/null +++ b/scripture/kjv/10/14/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 John", + "chapter": "4", + "date": "Monday 14-October, 2024", + "getbible": "https://getbible.life/kjv/1 John/4/4", + "name": "1 John 4:4", + "scripture": [ + { + "nr": "4", + "text": "Ye are of God, little children, and have overcome them: because greater is he that is in you, than he that is in the world." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4", + "version": "kjv" +} diff --git a/scripture/kjv/10/14/24/scripture.md b/scripture/kjv/10/14/24/scripture.md new file mode 100644 index 00000000..3e2967b5 --- /dev/null +++ b/scripture/kjv/10/14/24/scripture.md @@ -0,0 +1,5 @@ +**1 John 4:4** + +4 Ye are of God, little children, and have overcome them: because greater is he that is in you, than he that is in the world. + +[Monday 14-October, 2024](https://getbible.life/kjv/1 John/4/4) diff --git a/scripture/kjv/10/14/24/scripture.tg b/scripture/kjv/10/14/24/scripture.tg new file mode 100644 index 00000000..0e5b3b20 --- /dev/null +++ b/scripture/kjv/10/14/24/scripture.tg @@ -0,0 +1,4 @@ +1 John 4:4 +4 Ye are of God, little children, and have overcome them: because greater is he that is in you, than he that is in the world. + +Monday 14-October, 2024 diff --git a/scripture/kjv/10/14/24/scripture.tg.id b/scripture/kjv/10/14/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/14/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/14/24/scripture.today b/scripture/kjv/10/14/24/scripture.today new file mode 100644 index 00000000..e648f6a0 --- /dev/null +++ b/scripture/kjv/10/14/24/scripture.today @@ -0,0 +1 @@ +62 4:4 diff --git a/scripture/kjv/10/14/25/scripture.html b/scripture/kjv/10/14/25/scripture.html new file mode 100644 index 00000000..8d19f89d --- /dev/null +++ b/scripture/kjv/10/14/25/scripture.html @@ -0,0 +1,3 @@ +Revelation 5:5
+5 And one of the elders saith unto me, Weep not: behold, the Lion of the tribe of Juda, the Root of David, hath prevailed to open the book, and to loose the seven seals thereof.

+Tuesday 14-October, 2025 diff --git a/scripture/kjv/10/14/25/scripture.json b/scripture/kjv/10/14/25/scripture.json new file mode 100644 index 00000000..f94a2990 --- /dev/null +++ b/scripture/kjv/10/14/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Revelation", + "chapter": "5", + "date": "Tuesday 14-October, 2025", + "getbible": "https://getbible.life/kjv/Revelation/5/5", + "name": "Revelation 5:5", + "scripture": [ + { + "nr": "5", + "text": "And one of the elders saith unto me, Weep not: behold, the Lion of the tribe of Juda, the Root of David, hath prevailed to open the book, and to loose the seven seals thereof." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5", + "version": "kjv" +} diff --git a/scripture/kjv/10/14/25/scripture.md b/scripture/kjv/10/14/25/scripture.md new file mode 100644 index 00000000..53c98dc6 --- /dev/null +++ b/scripture/kjv/10/14/25/scripture.md @@ -0,0 +1,5 @@ +**Revelation 5:5** + +5 And one of the elders saith unto me, Weep not: behold, the Lion of the tribe of Juda, the Root of David, hath prevailed to open the book, and to loose the seven seals thereof. + +[Tuesday 14-October, 2025](https://getbible.life/kjv/Revelation/5/5) diff --git a/scripture/kjv/10/14/25/scripture.tg b/scripture/kjv/10/14/25/scripture.tg new file mode 100644 index 00000000..07a5c3b1 --- /dev/null +++ b/scripture/kjv/10/14/25/scripture.tg @@ -0,0 +1,4 @@ +Revelation 5:5 +5 And one of the elders saith unto me, Weep not: behold, the Lion of the tribe of Juda, the Root of David, hath prevailed to open the book, and to loose the seven seals thereof. + +Tuesday 14-October, 2025 diff --git a/scripture/kjv/10/14/25/scripture.tg.id b/scripture/kjv/10/14/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/14/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/14/25/scripture.today b/scripture/kjv/10/14/25/scripture.today new file mode 100644 index 00000000..946fcff4 --- /dev/null +++ b/scripture/kjv/10/14/25/scripture.today @@ -0,0 +1 @@ +66 5:5 diff --git a/scripture/kjv/10/15/23/scripture.html b/scripture/kjv/10/15/23/scripture.html new file mode 100644 index 00000000..279bf0ae --- /dev/null +++ b/scripture/kjv/10/15/23/scripture.html @@ -0,0 +1,3 @@ +Philippians 4:4
+4 Rejoice in the Lord alway: and again I say, Rejoice.

+Sunday 15-October, 2023 diff --git a/scripture/kjv/10/15/23/scripture.json b/scripture/kjv/10/15/23/scripture.json new file mode 100644 index 00000000..33f05d0f --- /dev/null +++ b/scripture/kjv/10/15/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Philippians", + "chapter": "4", + "date": "Sunday 15-October, 2023", + "getbible": "https://getbible.life/kjv/Philippians/4/4", + "name": "Philippians 4:4", + "scripture": [ + { + "nr": "4", + "text": "Rejoice in the Lord alway: and again I say, Rejoice." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4", + "version": "kjv" +} diff --git a/scripture/kjv/10/15/23/scripture.md b/scripture/kjv/10/15/23/scripture.md new file mode 100644 index 00000000..eb30cdd1 --- /dev/null +++ b/scripture/kjv/10/15/23/scripture.md @@ -0,0 +1,5 @@ +**Philippians 4:4** + +4 Rejoice in the Lord alway: and again I say, Rejoice. + +[Sunday 15-October, 2023](https://getbible.life/kjv/Philippians/4/4) diff --git a/scripture/kjv/10/15/23/scripture.tg b/scripture/kjv/10/15/23/scripture.tg new file mode 100644 index 00000000..c78d3dcc --- /dev/null +++ b/scripture/kjv/10/15/23/scripture.tg @@ -0,0 +1,4 @@ +Philippians 4:4 +4 Rejoice in the Lord alway: and again I say, Rejoice. + +Sunday 15-October, 2023 diff --git a/scripture/kjv/10/15/23/scripture.tg.id b/scripture/kjv/10/15/23/scripture.tg.id new file mode 100644 index 00000000..967ba322 --- /dev/null +++ b/scripture/kjv/10/15/23/scripture.tg.id @@ -0,0 +1 @@ +1107 diff --git a/scripture/kjv/10/15/23/scripture.today b/scripture/kjv/10/15/23/scripture.today new file mode 100644 index 00000000..9bab6fe7 --- /dev/null +++ b/scripture/kjv/10/15/23/scripture.today @@ -0,0 +1 @@ +50 4:4 diff --git a/scripture/kjv/10/15/24/scripture.html b/scripture/kjv/10/15/24/scripture.html new file mode 100644 index 00000000..bbba3621 --- /dev/null +++ b/scripture/kjv/10/15/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 22:6
+6 Train up a child in the way he should go: and when he is old, he will not depart from it.

+Tuesday 15-October, 2024 diff --git a/scripture/kjv/10/15/24/scripture.json b/scripture/kjv/10/15/24/scripture.json new file mode 100644 index 00000000..7ad42fa8 --- /dev/null +++ b/scripture/kjv/10/15/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "22", + "date": "Tuesday 15-October, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/22/6", + "name": "Proverbs 22:6", + "scripture": [ + { + "nr": "6", + "text": "Train up a child in the way he should go: and when he is old, he will not depart from it." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6", + "version": "kjv" +} diff --git a/scripture/kjv/10/15/24/scripture.md b/scripture/kjv/10/15/24/scripture.md new file mode 100644 index 00000000..a71289b9 --- /dev/null +++ b/scripture/kjv/10/15/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 22:6** + +6 Train up a child in the way he should go: and when he is old, he will not depart from it. + +[Tuesday 15-October, 2024](https://getbible.life/kjv/Proverbs/22/6) diff --git a/scripture/kjv/10/15/24/scripture.tg b/scripture/kjv/10/15/24/scripture.tg new file mode 100644 index 00000000..1419c767 --- /dev/null +++ b/scripture/kjv/10/15/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 22:6 +6 Train up a child in the way he should go: and when he is old, he will not depart from it. + +Tuesday 15-October, 2024 diff --git a/scripture/kjv/10/15/24/scripture.tg.id b/scripture/kjv/10/15/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/15/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/15/24/scripture.today b/scripture/kjv/10/15/24/scripture.today new file mode 100644 index 00000000..9b5e15ff --- /dev/null +++ b/scripture/kjv/10/15/24/scripture.today @@ -0,0 +1 @@ +20 22:6 diff --git a/scripture/kjv/10/15/25/scripture.html b/scripture/kjv/10/15/25/scripture.html new file mode 100644 index 00000000..ea441af3 --- /dev/null +++ b/scripture/kjv/10/15/25/scripture.html @@ -0,0 +1,3 @@ +Romans 8:36-37
+36 As it is written, For thy sake we are killed all the day long; we are accounted as sheep for the slaughter. 37 Nay, in all these things we are more than conquerors through him that loved us.

+Wednesday 15-October, 2025 diff --git a/scripture/kjv/10/15/25/scripture.json b/scripture/kjv/10/15/25/scripture.json new file mode 100644 index 00000000..be390066 --- /dev/null +++ b/scripture/kjv/10/15/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Romans", + "chapter": "8", + "date": "Wednesday 15-October, 2025", + "getbible": "https://getbible.life/kjv/Romans/8/36-37", + "name": "Romans 8:36-37", + "scripture": [ + { + "nr": "36", + "text": "As it is written, For thy sake we are killed all the day long; we are accounted as sheep for the slaughter." + }, + { + "nr": "37", + "text": "Nay, in all these things we are more than conquerors through him that loved us." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "36-37", + "version": "kjv" +} diff --git a/scripture/kjv/10/15/25/scripture.md b/scripture/kjv/10/15/25/scripture.md new file mode 100644 index 00000000..fb082c33 --- /dev/null +++ b/scripture/kjv/10/15/25/scripture.md @@ -0,0 +1,5 @@ +**Romans 8:36-37** + +36 As it is written, For thy sake we are killed all the day long; we are accounted as sheep for the slaughter. 37 Nay, in all these things we are more than conquerors through him that loved us. + +[Wednesday 15-October, 2025](https://getbible.life/kjv/Romans/8/36-37) diff --git a/scripture/kjv/10/15/25/scripture.tg b/scripture/kjv/10/15/25/scripture.tg new file mode 100644 index 00000000..67784bb4 --- /dev/null +++ b/scripture/kjv/10/15/25/scripture.tg @@ -0,0 +1,4 @@ +Romans 8:36-37 +36 As it is written, For thy sake we are killed all the day long; we are accounted as sheep for the slaughter. 37 Nay, in all these things we are more than conquerors through him that loved us. + +Wednesday 15-October, 2025 diff --git a/scripture/kjv/10/15/25/scripture.tg.id b/scripture/kjv/10/15/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/15/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/15/25/scripture.today b/scripture/kjv/10/15/25/scripture.today new file mode 100644 index 00000000..0f3fca1a --- /dev/null +++ b/scripture/kjv/10/15/25/scripture.today @@ -0,0 +1 @@ +45 8:36-37 diff --git a/scripture/kjv/10/16/23/scripture.html b/scripture/kjv/10/16/23/scripture.html new file mode 100644 index 00000000..65901310 --- /dev/null +++ b/scripture/kjv/10/16/23/scripture.html @@ -0,0 +1,3 @@ +1 John 2:20
+20 But ye have an unction from the Holy One, and ye know all things.

+Monday 16-October, 2023 diff --git a/scripture/kjv/10/16/23/scripture.json b/scripture/kjv/10/16/23/scripture.json new file mode 100644 index 00000000..83ffd8ee --- /dev/null +++ b/scripture/kjv/10/16/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 John", + "chapter": "2", + "date": "Monday 16-October, 2023", + "getbible": "https://getbible.life/kjv/1 John/2/20", + "name": "1 John 2:20", + "scripture": [ + { + "nr": "20", + "text": "But ye have an unction from the Holy One, and ye know all things." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20", + "version": "kjv" +} diff --git a/scripture/kjv/10/16/23/scripture.md b/scripture/kjv/10/16/23/scripture.md new file mode 100644 index 00000000..c29f8c6f --- /dev/null +++ b/scripture/kjv/10/16/23/scripture.md @@ -0,0 +1,5 @@ +**1 John 2:20** + +20 But ye have an unction from the Holy One, and ye know all things. + +[Monday 16-October, 2023](https://getbible.life/kjv/1 John/2/20) diff --git a/scripture/kjv/10/16/23/scripture.tg b/scripture/kjv/10/16/23/scripture.tg new file mode 100644 index 00000000..c70b6af4 --- /dev/null +++ b/scripture/kjv/10/16/23/scripture.tg @@ -0,0 +1,4 @@ +1 John 2:20 +20 But ye have an unction from the Holy One, and ye know all things. + +Monday 16-October, 2023 diff --git a/scripture/kjv/10/16/23/scripture.tg.id b/scripture/kjv/10/16/23/scripture.tg.id new file mode 100644 index 00000000..9707e876 --- /dev/null +++ b/scripture/kjv/10/16/23/scripture.tg.id @@ -0,0 +1 @@ +1108 diff --git a/scripture/kjv/10/16/23/scripture.today b/scripture/kjv/10/16/23/scripture.today new file mode 100644 index 00000000..438bca5f --- /dev/null +++ b/scripture/kjv/10/16/23/scripture.today @@ -0,0 +1 @@ +62 2:20 diff --git a/scripture/kjv/10/16/24/scripture.html b/scripture/kjv/10/16/24/scripture.html new file mode 100644 index 00000000..b211faae --- /dev/null +++ b/scripture/kjv/10/16/24/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 6:9-10
+9 Know ye not that the unrighteous shall not inherit the kingdom of God? Be not deceived: neither fornicators, nor idolaters, nor adulterers, nor effeminate, nor abusers of themselves with mankind, 10 Nor thieves, nor covetous, nor drunkards, nor revilers, nor extortioners, shall inherit the kingdom of God.

+Wednesday 16-October, 2024 diff --git a/scripture/kjv/10/16/24/scripture.json b/scripture/kjv/10/16/24/scripture.json new file mode 100644 index 00000000..27c90a4f --- /dev/null +++ b/scripture/kjv/10/16/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "1 Corinthians", + "chapter": "6", + "date": "Wednesday 16-October, 2024", + "getbible": "https://getbible.life/kjv/1 Corinthians/6/9-10", + "name": "1 Corinthians 6:9-10", + "scripture": [ + { + "nr": "9", + "text": "Know ye not that the unrighteous shall not inherit the kingdom of God? Be not deceived: neither fornicators, nor idolaters, nor adulterers, nor effeminate, nor abusers of themselves with mankind," + }, + { + "nr": "10", + "text": "Nor thieves, nor covetous, nor drunkards, nor revilers, nor extortioners, shall inherit the kingdom of God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9-10", + "version": "kjv" +} diff --git a/scripture/kjv/10/16/24/scripture.md b/scripture/kjv/10/16/24/scripture.md new file mode 100644 index 00000000..baf6abab --- /dev/null +++ b/scripture/kjv/10/16/24/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 6:9-10** + +9 Know ye not that the unrighteous shall not inherit the kingdom of God? Be not deceived: neither fornicators, nor idolaters, nor adulterers, nor effeminate, nor abusers of themselves with mankind, 10 Nor thieves, nor covetous, nor drunkards, nor revilers, nor extortioners, shall inherit the kingdom of God. + +[Wednesday 16-October, 2024](https://getbible.life/kjv/1 Corinthians/6/9-10) diff --git a/scripture/kjv/10/16/24/scripture.tg b/scripture/kjv/10/16/24/scripture.tg new file mode 100644 index 00000000..cf61fa75 --- /dev/null +++ b/scripture/kjv/10/16/24/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 6:9-10 +9 Know ye not that the unrighteous shall not inherit the kingdom of God? Be not deceived: neither fornicators, nor idolaters, nor adulterers, nor effeminate, nor abusers of themselves with mankind, 10 Nor thieves, nor covetous, nor drunkards, nor revilers, nor extortioners, shall inherit the kingdom of God. + +Wednesday 16-October, 2024 diff --git a/scripture/kjv/10/16/24/scripture.tg.id b/scripture/kjv/10/16/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/16/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/16/24/scripture.today b/scripture/kjv/10/16/24/scripture.today new file mode 100644 index 00000000..0020adbf --- /dev/null +++ b/scripture/kjv/10/16/24/scripture.today @@ -0,0 +1 @@ +46 6:9-10 diff --git a/scripture/kjv/10/16/25/scripture.html b/scripture/kjv/10/16/25/scripture.html new file mode 100644 index 00000000..d6b64d25 --- /dev/null +++ b/scripture/kjv/10/16/25/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 21:16-17
+16 Go thee one way or other, either on the right hand, or on the left, whithersoever thy face is set. 17 I will also smite mine hands together, and I will cause my fury to rest: I the Lord have said it.

+Thursday 16-October, 2025 diff --git a/scripture/kjv/10/16/25/scripture.json b/scripture/kjv/10/16/25/scripture.json new file mode 100644 index 00000000..4d4f3c42 --- /dev/null +++ b/scripture/kjv/10/16/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Ezekiel", + "chapter": "21", + "date": "Thursday 16-October, 2025", + "getbible": "https://getbible.life/kjv/Ezekiel/21/16-17", + "name": "Ezekiel 21:16-17", + "scripture": [ + { + "nr": "16", + "text": "Go thee one way or other, either on the right hand, or on the left, whithersoever thy face is set." + }, + { + "nr": "17", + "text": "I will also smite mine hands together, and I will cause my fury to rest: I the Lord have said it." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16-17", + "version": "kjv" +} diff --git a/scripture/kjv/10/16/25/scripture.md b/scripture/kjv/10/16/25/scripture.md new file mode 100644 index 00000000..91863b2a --- /dev/null +++ b/scripture/kjv/10/16/25/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 21:16-17** + +16 Go thee one way or other, either on the right hand, or on the left, whithersoever thy face is set. 17 I will also smite mine hands together, and I will cause my fury to rest: I the Lord have said it. + +[Thursday 16-October, 2025](https://getbible.life/kjv/Ezekiel/21/16-17) diff --git a/scripture/kjv/10/16/25/scripture.tg b/scripture/kjv/10/16/25/scripture.tg new file mode 100644 index 00000000..b80a43ba --- /dev/null +++ b/scripture/kjv/10/16/25/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 21:16-17 +16 Go thee one way or other, either on the right hand, or on the left, whithersoever thy face is set. 17 I will also smite mine hands together, and I will cause my fury to rest: I the Lord have said it. + +Thursday 16-October, 2025 diff --git a/scripture/kjv/10/16/25/scripture.tg.id b/scripture/kjv/10/16/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/16/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/16/25/scripture.today b/scripture/kjv/10/16/25/scripture.today new file mode 100644 index 00000000..f6cd9a1c --- /dev/null +++ b/scripture/kjv/10/16/25/scripture.today @@ -0,0 +1 @@ +26 21:16-17 diff --git a/scripture/kjv/10/17/23/scripture.html b/scripture/kjv/10/17/23/scripture.html new file mode 100644 index 00000000..145a88e9 --- /dev/null +++ b/scripture/kjv/10/17/23/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 7:9
+9 But if they cannot contain, let them marry: for it is better to marry than to burn.

+Tuesday 17-October, 2023 diff --git a/scripture/kjv/10/17/23/scripture.json b/scripture/kjv/10/17/23/scripture.json new file mode 100644 index 00000000..2e8fcc25 --- /dev/null +++ b/scripture/kjv/10/17/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "7", + "date": "Tuesday 17-October, 2023", + "getbible": "https://getbible.life/kjv/1 Corinthians/7/9", + "name": "1 Corinthians 7:9", + "scripture": [ + { + "nr": "9", + "text": "But if they cannot contain, let them marry: for it is better to marry than to burn." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9", + "version": "kjv" +} diff --git a/scripture/kjv/10/17/23/scripture.md b/scripture/kjv/10/17/23/scripture.md new file mode 100644 index 00000000..5b871288 --- /dev/null +++ b/scripture/kjv/10/17/23/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 7:9** + +9 But if they cannot contain, let them marry: for it is better to marry than to burn. + +[Tuesday 17-October, 2023](https://getbible.life/kjv/1 Corinthians/7/9) diff --git a/scripture/kjv/10/17/23/scripture.tg b/scripture/kjv/10/17/23/scripture.tg new file mode 100644 index 00000000..e8eff145 --- /dev/null +++ b/scripture/kjv/10/17/23/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 7:9 +9 But if they cannot contain, let them marry: for it is better to marry than to burn. + +Tuesday 17-October, 2023 diff --git a/scripture/kjv/10/17/23/scripture.tg.id b/scripture/kjv/10/17/23/scripture.tg.id new file mode 100644 index 00000000..af6316f1 --- /dev/null +++ b/scripture/kjv/10/17/23/scripture.tg.id @@ -0,0 +1 @@ +1109 diff --git a/scripture/kjv/10/17/23/scripture.today b/scripture/kjv/10/17/23/scripture.today new file mode 100644 index 00000000..90e92b86 --- /dev/null +++ b/scripture/kjv/10/17/23/scripture.today @@ -0,0 +1 @@ +46 7:9 diff --git a/scripture/kjv/10/17/24/scripture.html b/scripture/kjv/10/17/24/scripture.html new file mode 100644 index 00000000..9220ab12 --- /dev/null +++ b/scripture/kjv/10/17/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 12:10
+10 A righteous man regardeth the life of his beast: but the tender mercies of the wicked are cruel.

+Thursday 17-October, 2024 diff --git a/scripture/kjv/10/17/24/scripture.json b/scripture/kjv/10/17/24/scripture.json new file mode 100644 index 00000000..bbf2c275 --- /dev/null +++ b/scripture/kjv/10/17/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "12", + "date": "Thursday 17-October, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/12/10", + "name": "Proverbs 12:10", + "scripture": [ + { + "nr": "10", + "text": "A righteous man regardeth the life of his beast: but the tender mercies of the wicked are cruel." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/10/17/24/scripture.md b/scripture/kjv/10/17/24/scripture.md new file mode 100644 index 00000000..0f5121af --- /dev/null +++ b/scripture/kjv/10/17/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 12:10** + +10 A righteous man regardeth the life of his beast: but the tender mercies of the wicked are cruel. + +[Thursday 17-October, 2024](https://getbible.life/kjv/Proverbs/12/10) diff --git a/scripture/kjv/10/17/24/scripture.tg b/scripture/kjv/10/17/24/scripture.tg new file mode 100644 index 00000000..bebf36c8 --- /dev/null +++ b/scripture/kjv/10/17/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 12:10 +10 A righteous man regardeth the life of his beast: but the tender mercies of the wicked are cruel. + +Thursday 17-October, 2024 diff --git a/scripture/kjv/10/17/24/scripture.tg.id b/scripture/kjv/10/17/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/17/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/17/24/scripture.today b/scripture/kjv/10/17/24/scripture.today new file mode 100644 index 00000000..72375334 --- /dev/null +++ b/scripture/kjv/10/17/24/scripture.today @@ -0,0 +1 @@ +20 12:10 diff --git a/scripture/kjv/10/17/25/scripture.html b/scripture/kjv/10/17/25/scripture.html new file mode 100644 index 00000000..857ee048 --- /dev/null +++ b/scripture/kjv/10/17/25/scripture.html @@ -0,0 +1,3 @@ +Hebrews 12:1
+1 Wherefore seeing we also are compassed about with so great a cloud of witnesses, let us lay aside every weight, and the sin which doth so easily beset us, and let us run with patience the race that is set before us,

+Friday 17-October, 2025 diff --git a/scripture/kjv/10/17/25/scripture.json b/scripture/kjv/10/17/25/scripture.json new file mode 100644 index 00000000..5c50ae84 --- /dev/null +++ b/scripture/kjv/10/17/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Hebrews", + "chapter": "12", + "date": "Friday 17-October, 2025", + "getbible": "https://getbible.life/kjv/Hebrews/12/1", + "name": "Hebrews 12:1", + "scripture": [ + { + "nr": "1", + "text": "Wherefore seeing we also are compassed about with so great a cloud of witnesses, let us lay aside every weight, and the sin which doth so easily beset us, and let us run with patience the race that is set before us," + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1", + "version": "kjv" +} diff --git a/scripture/kjv/10/17/25/scripture.md b/scripture/kjv/10/17/25/scripture.md new file mode 100644 index 00000000..c03777af --- /dev/null +++ b/scripture/kjv/10/17/25/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 12:1** + +1 Wherefore seeing we also are compassed about with so great a cloud of witnesses, let us lay aside every weight, and the sin which doth so easily beset us, and let us run with patience the race that is set before us, + +[Friday 17-October, 2025](https://getbible.life/kjv/Hebrews/12/1) diff --git a/scripture/kjv/10/17/25/scripture.tg b/scripture/kjv/10/17/25/scripture.tg new file mode 100644 index 00000000..43785269 --- /dev/null +++ b/scripture/kjv/10/17/25/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 12:1 +1 Wherefore seeing we also are compassed about with so great a cloud of witnesses, let us lay aside every weight, and the sin which doth so easily beset us, and let us run with patience the race that is set before us, + +Friday 17-October, 2025 diff --git a/scripture/kjv/10/17/25/scripture.tg.id b/scripture/kjv/10/17/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/17/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/17/25/scripture.today b/scripture/kjv/10/17/25/scripture.today new file mode 100644 index 00000000..e815cd03 --- /dev/null +++ b/scripture/kjv/10/17/25/scripture.today @@ -0,0 +1 @@ +58 12:1 diff --git a/scripture/kjv/10/18/23/scripture.html b/scripture/kjv/10/18/23/scripture.html new file mode 100644 index 00000000..5e030fc8 --- /dev/null +++ b/scripture/kjv/10/18/23/scripture.html @@ -0,0 +1,3 @@ +1 John 3:16-18
+16 Hereby perceive we the love of God, because he laid down his life for us: and we ought to lay down our lives for the brethren. 17 But whoso hath this world’s good, and seeth his brother have need, and shutteth up his bowels of compassion from him, how dwelleth the love of God in him? 18 My little children, let us not love in word, neither in tongue; but in deed and in truth.

+Wednesday 18-October, 2023 diff --git a/scripture/kjv/10/18/23/scripture.json b/scripture/kjv/10/18/23/scripture.json new file mode 100644 index 00000000..94a05042 --- /dev/null +++ b/scripture/kjv/10/18/23/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "1 John", + "chapter": "3", + "date": "Wednesday 18-October, 2023", + "getbible": "https://getbible.life/kjv/1 John/3/16-18", + "name": "1 John 3:16-18", + "scripture": [ + { + "nr": "16", + "text": "Hereby perceive we the love of God, because he laid down his life for us: and we ought to lay down our lives for the brethren." + }, + { + "nr": "17", + "text": "But whoso hath this world’s good, and seeth his brother have need, and shutteth up his bowels of compassion from him, how dwelleth the love of God in him?" + }, + { + "nr": "18", + "text": "My little children, let us not love in word, neither in tongue; but in deed and in truth." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16-18", + "version": "kjv" +} diff --git a/scripture/kjv/10/18/23/scripture.md b/scripture/kjv/10/18/23/scripture.md new file mode 100644 index 00000000..7c328609 --- /dev/null +++ b/scripture/kjv/10/18/23/scripture.md @@ -0,0 +1,5 @@ +**1 John 3:16-18** + +16 Hereby perceive we the love of God, because he laid down his life for us: and we ought to lay down our lives for the brethren. 17 But whoso hath this world’s good, and seeth his brother have need, and shutteth up his bowels of compassion from him, how dwelleth the love of God in him? 18 My little children, let us not love in word, neither in tongue; but in deed and in truth. + +[Wednesday 18-October, 2023](https://getbible.life/kjv/1 John/3/16-18) diff --git a/scripture/kjv/10/18/23/scripture.tg b/scripture/kjv/10/18/23/scripture.tg new file mode 100644 index 00000000..c48aeef0 --- /dev/null +++ b/scripture/kjv/10/18/23/scripture.tg @@ -0,0 +1,4 @@ +1 John 3:16-18 +16 Hereby perceive we the love of God, because he laid down his life for us: and we ought to lay down our lives for the brethren. 17 But whoso hath this world’s good, and seeth his brother have need, and shutteth up his bowels of compassion from him, how dwelleth the love of God in him? 18 My little children, let us not love in word, neither in tongue; but in deed and in truth. + +Wednesday 18-October, 2023 diff --git a/scripture/kjv/10/18/23/scripture.tg.id b/scripture/kjv/10/18/23/scripture.tg.id new file mode 100644 index 00000000..0a75ff76 --- /dev/null +++ b/scripture/kjv/10/18/23/scripture.tg.id @@ -0,0 +1 @@ +1110 diff --git a/scripture/kjv/10/18/23/scripture.today b/scripture/kjv/10/18/23/scripture.today new file mode 100644 index 00000000..c339cc0c --- /dev/null +++ b/scripture/kjv/10/18/23/scripture.today @@ -0,0 +1 @@ +62 3:16-18 diff --git a/scripture/kjv/10/18/24/scripture.html b/scripture/kjv/10/18/24/scripture.html new file mode 100644 index 00000000..baa1bd95 --- /dev/null +++ b/scripture/kjv/10/18/24/scripture.html @@ -0,0 +1,3 @@ +Isaiah 55:1-3
+1 Ho, every one that thirsteth, come ye to the waters, and he that hath no money; come ye, buy, and eat; yea, come, buy wine and milk without money and without price. 2 Wherefore do ye spend money for that which is not bread? and your labour for that which satisfieth not? hearken diligently unto me, and eat ye that which is good, and let your soul delight itself in fatness. 3 Incline your ear, and come unto me: hear, and your soul shall live; and I will make an everlasting covenant with you, even the sure mercies of David.

+Friday 18-October, 2024 diff --git a/scripture/kjv/10/18/24/scripture.json b/scripture/kjv/10/18/24/scripture.json new file mode 100644 index 00000000..0930edf3 --- /dev/null +++ b/scripture/kjv/10/18/24/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Isaiah", + "chapter": "55", + "date": "Friday 18-October, 2024", + "getbible": "https://getbible.life/kjv/Isaiah/55/1-3", + "name": "Isaiah 55:1-3", + "scripture": [ + { + "nr": "1", + "text": "Ho, every one that thirsteth, come ye to the waters, and he that hath no money; come ye, buy, and eat; yea, come, buy wine and milk without money and without price." + }, + { + "nr": "2", + "text": "Wherefore do ye spend money for that which is not bread? and your labour for that which satisfieth not? hearken diligently unto me, and eat ye that which is good, and let your soul delight itself in fatness." + }, + { + "nr": "3", + "text": "Incline your ear, and come unto me: hear, and your soul shall live; and I will make an everlasting covenant with you, even the sure mercies of David." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-3", + "version": "kjv" +} diff --git a/scripture/kjv/10/18/24/scripture.md b/scripture/kjv/10/18/24/scripture.md new file mode 100644 index 00000000..1cf2ee30 --- /dev/null +++ b/scripture/kjv/10/18/24/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 55:1-3** + +1 Ho, every one that thirsteth, come ye to the waters, and he that hath no money; come ye, buy, and eat; yea, come, buy wine and milk without money and without price. 2 Wherefore do ye spend money for that which is not bread? and your labour for that which satisfieth not? hearken diligently unto me, and eat ye that which is good, and let your soul delight itself in fatness. 3 Incline your ear, and come unto me: hear, and your soul shall live; and I will make an everlasting covenant with you, even the sure mercies of David. + +[Friday 18-October, 2024](https://getbible.life/kjv/Isaiah/55/1-3) diff --git a/scripture/kjv/10/18/24/scripture.tg b/scripture/kjv/10/18/24/scripture.tg new file mode 100644 index 00000000..331f88d2 --- /dev/null +++ b/scripture/kjv/10/18/24/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 55:1-3 +1 Ho, every one that thirsteth, come ye to the waters, and he that hath no money; come ye, buy, and eat; yea, come, buy wine and milk without money and without price. 2 Wherefore do ye spend money for that which is not bread? and your labour for that which satisfieth not? hearken diligently unto me, and eat ye that which is good, and let your soul delight itself in fatness. 3 Incline your ear, and come unto me: hear, and your soul shall live; and I will make an everlasting covenant with you, even the sure mercies of David. + +Friday 18-October, 2024 diff --git a/scripture/kjv/10/18/24/scripture.tg.id b/scripture/kjv/10/18/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/18/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/18/24/scripture.today b/scripture/kjv/10/18/24/scripture.today new file mode 100644 index 00000000..6e79aac2 --- /dev/null +++ b/scripture/kjv/10/18/24/scripture.today @@ -0,0 +1 @@ +23 55:1-3 diff --git a/scripture/kjv/10/18/25/scripture.html b/scripture/kjv/10/18/25/scripture.html new file mode 100644 index 00000000..c39903e1 --- /dev/null +++ b/scripture/kjv/10/18/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 145:18
+18 The Lord is nigh unto all them that call upon him, to all that call upon him in truth.

+Saturday 18-October, 2025 diff --git a/scripture/kjv/10/18/25/scripture.json b/scripture/kjv/10/18/25/scripture.json new file mode 100644 index 00000000..a39f01c6 --- /dev/null +++ b/scripture/kjv/10/18/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "145", + "date": "Saturday 18-October, 2025", + "getbible": "https://getbible.life/kjv/Psalms/145/18", + "name": "Psalms 145:18", + "scripture": [ + { + "nr": "18", + "text": "The Lord is nigh unto all them that call upon him, to all that call upon him in truth." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18", + "version": "kjv" +} diff --git a/scripture/kjv/10/18/25/scripture.md b/scripture/kjv/10/18/25/scripture.md new file mode 100644 index 00000000..7f6d1039 --- /dev/null +++ b/scripture/kjv/10/18/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 145:18** + +18 The Lord is nigh unto all them that call upon him, to all that call upon him in truth. + +[Saturday 18-October, 2025](https://getbible.life/kjv/Psalms/145/18) diff --git a/scripture/kjv/10/18/25/scripture.tg b/scripture/kjv/10/18/25/scripture.tg new file mode 100644 index 00000000..21200680 --- /dev/null +++ b/scripture/kjv/10/18/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 145:18 +18 The Lord is nigh unto all them that call upon him, to all that call upon him in truth. + +Saturday 18-October, 2025 diff --git a/scripture/kjv/10/18/25/scripture.tg.id b/scripture/kjv/10/18/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/18/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/18/25/scripture.today b/scripture/kjv/10/18/25/scripture.today new file mode 100644 index 00000000..75bffc12 --- /dev/null +++ b/scripture/kjv/10/18/25/scripture.today @@ -0,0 +1 @@ +19 145:18 diff --git a/scripture/kjv/10/19/23/scripture.html b/scripture/kjv/10/19/23/scripture.html new file mode 100644 index 00000000..6ac81536 --- /dev/null +++ b/scripture/kjv/10/19/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 26:12
+12 Seest thou a man wise in his own conceit? there is more hope of a fool than of him.

+Thursday 19-October, 2023 diff --git a/scripture/kjv/10/19/23/scripture.json b/scripture/kjv/10/19/23/scripture.json new file mode 100644 index 00000000..7a991db8 --- /dev/null +++ b/scripture/kjv/10/19/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "26", + "date": "Thursday 19-October, 2023", + "getbible": "https://getbible.life/kjv/Proverbs/26/12", + "name": "Proverbs 26:12", + "scripture": [ + { + "nr": "12", + "text": "Seest thou a man wise in his own conceit? there is more hope of a fool than of him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/10/19/23/scripture.md b/scripture/kjv/10/19/23/scripture.md new file mode 100644 index 00000000..b5fa4b51 --- /dev/null +++ b/scripture/kjv/10/19/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 26:12** + +12 Seest thou a man wise in his own conceit? there is more hope of a fool than of him. + +[Thursday 19-October, 2023](https://getbible.life/kjv/Proverbs/26/12) diff --git a/scripture/kjv/10/19/23/scripture.tg b/scripture/kjv/10/19/23/scripture.tg new file mode 100644 index 00000000..41577fac --- /dev/null +++ b/scripture/kjv/10/19/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 26:12 +12 Seest thou a man wise in his own conceit? there is more hope of a fool than of him. + +Thursday 19-October, 2023 diff --git a/scripture/kjv/10/19/23/scripture.tg.id b/scripture/kjv/10/19/23/scripture.tg.id new file mode 100644 index 00000000..5f2f16bf --- /dev/null +++ b/scripture/kjv/10/19/23/scripture.tg.id @@ -0,0 +1 @@ +1111 diff --git a/scripture/kjv/10/19/23/scripture.today b/scripture/kjv/10/19/23/scripture.today new file mode 100644 index 00000000..9e87195b --- /dev/null +++ b/scripture/kjv/10/19/23/scripture.today @@ -0,0 +1 @@ +20 26:12 diff --git a/scripture/kjv/10/19/24/scripture.html b/scripture/kjv/10/19/24/scripture.html new file mode 100644 index 00000000..a79fa507 --- /dev/null +++ b/scripture/kjv/10/19/24/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 11:12
+12 And ye shall know that I am the Lord: for ye have not walked in my statutes, neither executed my judgments, but have done after the manners of the heathen that are round about you.

+Saturday 19-October, 2024 diff --git a/scripture/kjv/10/19/24/scripture.json b/scripture/kjv/10/19/24/scripture.json new file mode 100644 index 00000000..dde2d560 --- /dev/null +++ b/scripture/kjv/10/19/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ezekiel", + "chapter": "11", + "date": "Saturday 19-October, 2024", + "getbible": "https://getbible.life/kjv/Ezekiel/11/12", + "name": "Ezekiel 11:12", + "scripture": [ + { + "nr": "12", + "text": "And ye shall know that I am the Lord: for ye have not walked in my statutes, neither executed my judgments, but have done after the manners of the heathen that are round about you." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/10/19/24/scripture.md b/scripture/kjv/10/19/24/scripture.md new file mode 100644 index 00000000..500f3e5e --- /dev/null +++ b/scripture/kjv/10/19/24/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 11:12** + +12 And ye shall know that I am the Lord: for ye have not walked in my statutes, neither executed my judgments, but have done after the manners of the heathen that are round about you. + +[Saturday 19-October, 2024](https://getbible.life/kjv/Ezekiel/11/12) diff --git a/scripture/kjv/10/19/24/scripture.tg b/scripture/kjv/10/19/24/scripture.tg new file mode 100644 index 00000000..d6f243d4 --- /dev/null +++ b/scripture/kjv/10/19/24/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 11:12 +12 And ye shall know that I am the Lord: for ye have not walked in my statutes, neither executed my judgments, but have done after the manners of the heathen that are round about you. + +Saturday 19-October, 2024 diff --git a/scripture/kjv/10/19/24/scripture.tg.id b/scripture/kjv/10/19/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/19/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/19/24/scripture.today b/scripture/kjv/10/19/24/scripture.today new file mode 100644 index 00000000..f7f69655 --- /dev/null +++ b/scripture/kjv/10/19/24/scripture.today @@ -0,0 +1 @@ +26 11:12 diff --git a/scripture/kjv/10/19/25/scripture.html b/scripture/kjv/10/19/25/scripture.html new file mode 100644 index 00000000..26e7449e --- /dev/null +++ b/scripture/kjv/10/19/25/scripture.html @@ -0,0 +1,3 @@ +Philippians 2:5-8
+5 Let this mind be in you, which was also in Christ Jesus: 6 Who, being in the form of God, thought it not robbery to be equal with God: 7 But made himself of no reputation, and took upon him the form of a servant, and was made in the likeness of men: 8 And being found in fashion as a man, he humbled himself, and became obedient unto death, even the death of the cross.

+Sunday 19-October, 2025 diff --git a/scripture/kjv/10/19/25/scripture.json b/scripture/kjv/10/19/25/scripture.json new file mode 100644 index 00000000..72ae202a --- /dev/null +++ b/scripture/kjv/10/19/25/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "Philippians", + "chapter": "2", + "date": "Sunday 19-October, 2025", + "getbible": "https://getbible.life/kjv/Philippians/2/5-8", + "name": "Philippians 2:5-8", + "scripture": [ + { + "nr": "5", + "text": "Let this mind be in you, which was also in Christ Jesus:" + }, + { + "nr": "6", + "text": "Who, being in the form of God, thought it not robbery to be equal with God:" + }, + { + "nr": "7", + "text": "But made himself of no reputation, and took upon him the form of a servant, and was made in the likeness of men:" + }, + { + "nr": "8", + "text": "And being found in fashion as a man, he humbled himself, and became obedient unto death, even the death of the cross." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5-8", + "version": "kjv" +} diff --git a/scripture/kjv/10/19/25/scripture.md b/scripture/kjv/10/19/25/scripture.md new file mode 100644 index 00000000..5d06dba9 --- /dev/null +++ b/scripture/kjv/10/19/25/scripture.md @@ -0,0 +1,5 @@ +**Philippians 2:5-8** + +5 Let this mind be in you, which was also in Christ Jesus: 6 Who, being in the form of God, thought it not robbery to be equal with God: 7 But made himself of no reputation, and took upon him the form of a servant, and was made in the likeness of men: 8 And being found in fashion as a man, he humbled himself, and became obedient unto death, even the death of the cross. + +[Sunday 19-October, 2025](https://getbible.life/kjv/Philippians/2/5-8) diff --git a/scripture/kjv/10/19/25/scripture.tg b/scripture/kjv/10/19/25/scripture.tg new file mode 100644 index 00000000..51aa89be --- /dev/null +++ b/scripture/kjv/10/19/25/scripture.tg @@ -0,0 +1,4 @@ +Philippians 2:5-8 +5 Let this mind be in you, which was also in Christ Jesus: 6 Who, being in the form of God, thought it not robbery to be equal with God: 7 But made himself of no reputation, and took upon him the form of a servant, and was made in the likeness of men: 8 And being found in fashion as a man, he humbled himself, and became obedient unto death, even the death of the cross. + +Sunday 19-October, 2025 diff --git a/scripture/kjv/10/19/25/scripture.tg.id b/scripture/kjv/10/19/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/19/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/19/25/scripture.today b/scripture/kjv/10/19/25/scripture.today new file mode 100644 index 00000000..7dbe2630 --- /dev/null +++ b/scripture/kjv/10/19/25/scripture.today @@ -0,0 +1 @@ +50 2:5-8 diff --git a/scripture/kjv/10/20/23/scripture.html b/scripture/kjv/10/20/23/scripture.html new file mode 100644 index 00000000..a5d30277 --- /dev/null +++ b/scripture/kjv/10/20/23/scripture.html @@ -0,0 +1,3 @@ +John 3:11
+11 Verily, verily, I say unto thee, We speak that we do know, and testify that we have seen; and ye receive not our witness.

+Friday 20-October, 2023 diff --git a/scripture/kjv/10/20/23/scripture.json b/scripture/kjv/10/20/23/scripture.json new file mode 100644 index 00000000..d883f139 --- /dev/null +++ b/scripture/kjv/10/20/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "3", + "date": "Friday 20-October, 2023", + "getbible": "https://getbible.life/kjv/John/3/11", + "name": "John 3:11", + "scripture": [ + { + "nr": "11", + "text": "Verily, verily, I say unto thee, We speak that we do know, and testify that we have seen; and ye receive not our witness." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/10/20/23/scripture.md b/scripture/kjv/10/20/23/scripture.md new file mode 100644 index 00000000..43126419 --- /dev/null +++ b/scripture/kjv/10/20/23/scripture.md @@ -0,0 +1,5 @@ +**John 3:11** + +11 Verily, verily, I say unto thee, We speak that we do know, and testify that we have seen; and ye receive not our witness. + +[Friday 20-October, 2023](https://getbible.life/kjv/John/3/11) diff --git a/scripture/kjv/10/20/23/scripture.tg b/scripture/kjv/10/20/23/scripture.tg new file mode 100644 index 00000000..6b26e3d9 --- /dev/null +++ b/scripture/kjv/10/20/23/scripture.tg @@ -0,0 +1,4 @@ +John 3:11 +11 Verily, verily, I say unto thee, We speak that we do know, and testify that we have seen; and ye receive not our witness. + +Friday 20-October, 2023 diff --git a/scripture/kjv/10/20/23/scripture.tg.id b/scripture/kjv/10/20/23/scripture.tg.id new file mode 100644 index 00000000..ecdb865e --- /dev/null +++ b/scripture/kjv/10/20/23/scripture.tg.id @@ -0,0 +1 @@ +1112 diff --git a/scripture/kjv/10/20/23/scripture.today b/scripture/kjv/10/20/23/scripture.today new file mode 100644 index 00000000..f26d9488 --- /dev/null +++ b/scripture/kjv/10/20/23/scripture.today @@ -0,0 +1 @@ +43 3:11 diff --git a/scripture/kjv/10/20/24/scripture.html b/scripture/kjv/10/20/24/scripture.html new file mode 100644 index 00000000..2f20930e --- /dev/null +++ b/scripture/kjv/10/20/24/scripture.html @@ -0,0 +1,3 @@ +Mark 12:10-11
+10 And have ye not read this scripture; The stone which the builders rejected is become the head of the corner: 11 This was the Lord’s doing, and it is marvellous in our eyes?

+Sunday 20-October, 2024 diff --git a/scripture/kjv/10/20/24/scripture.json b/scripture/kjv/10/20/24/scripture.json new file mode 100644 index 00000000..0ae99dfa --- /dev/null +++ b/scripture/kjv/10/20/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Mark", + "chapter": "12", + "date": "Sunday 20-October, 2024", + "getbible": "https://getbible.life/kjv/Mark/12/10-11", + "name": "Mark 12:10-11", + "scripture": [ + { + "nr": "10", + "text": "And have ye not read this scripture; The stone which the builders rejected is become the head of the corner:" + }, + { + "nr": "11", + "text": "This was the Lord’s doing, and it is marvellous in our eyes?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10-11", + "version": "kjv" +} diff --git a/scripture/kjv/10/20/24/scripture.md b/scripture/kjv/10/20/24/scripture.md new file mode 100644 index 00000000..ed3c34be --- /dev/null +++ b/scripture/kjv/10/20/24/scripture.md @@ -0,0 +1,5 @@ +**Mark 12:10-11** + +10 And have ye not read this scripture; The stone which the builders rejected is become the head of the corner: 11 This was the Lord’s doing, and it is marvellous in our eyes? + +[Sunday 20-October, 2024](https://getbible.life/kjv/Mark/12/10-11) diff --git a/scripture/kjv/10/20/24/scripture.tg b/scripture/kjv/10/20/24/scripture.tg new file mode 100644 index 00000000..bf08f6ad --- /dev/null +++ b/scripture/kjv/10/20/24/scripture.tg @@ -0,0 +1,4 @@ +Mark 12:10-11 +10 And have ye not read this scripture; The stone which the builders rejected is become the head of the corner: 11 This was the Lord’s doing, and it is marvellous in our eyes? + +Sunday 20-October, 2024 diff --git a/scripture/kjv/10/20/24/scripture.tg.id b/scripture/kjv/10/20/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/20/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/20/24/scripture.today b/scripture/kjv/10/20/24/scripture.today new file mode 100644 index 00000000..e77998ef --- /dev/null +++ b/scripture/kjv/10/20/24/scripture.today @@ -0,0 +1 @@ +41 12:10-11 diff --git a/scripture/kjv/10/20/25/scripture.html b/scripture/kjv/10/20/25/scripture.html new file mode 100644 index 00000000..6605c9ca --- /dev/null +++ b/scripture/kjv/10/20/25/scripture.html @@ -0,0 +1,3 @@ +1 Timothy 6:17-19
+17 Charge them that are rich in this world, that they be not highminded, nor trust in uncertain riches, but in the living God, who giveth us richly all things to enjoy; 18 That they do good, that they be rich in good works, ready to distribute, willing to communicate; 19 Laying up in store for themselves a good foundation against the time to come, that they may lay hold on eternal life.

+Monday 20-October, 2025 diff --git a/scripture/kjv/10/20/25/scripture.json b/scripture/kjv/10/20/25/scripture.json new file mode 100644 index 00000000..59a5bd23 --- /dev/null +++ b/scripture/kjv/10/20/25/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "1 Timothy", + "chapter": "6", + "date": "Monday 20-October, 2025", + "getbible": "https://getbible.life/kjv/1 Timothy/6/17-19", + "name": "1 Timothy 6:17-19", + "scripture": [ + { + "nr": "17", + "text": "Charge them that are rich in this world, that they be not highminded, nor trust in uncertain riches, but in the living God, who giveth us richly all things to enjoy;" + }, + { + "nr": "18", + "text": "That they do good, that they be rich in good works, ready to distribute, willing to communicate;" + }, + { + "nr": "19", + "text": "Laying up in store for themselves a good foundation against the time to come, that they may lay hold on eternal life." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17-19", + "version": "kjv" +} diff --git a/scripture/kjv/10/20/25/scripture.md b/scripture/kjv/10/20/25/scripture.md new file mode 100644 index 00000000..be85f046 --- /dev/null +++ b/scripture/kjv/10/20/25/scripture.md @@ -0,0 +1,5 @@ +**1 Timothy 6:17-19** + +17 Charge them that are rich in this world, that they be not highminded, nor trust in uncertain riches, but in the living God, who giveth us richly all things to enjoy; 18 That they do good, that they be rich in good works, ready to distribute, willing to communicate; 19 Laying up in store for themselves a good foundation against the time to come, that they may lay hold on eternal life. + +[Monday 20-October, 2025](https://getbible.life/kjv/1 Timothy/6/17-19) diff --git a/scripture/kjv/10/20/25/scripture.tg b/scripture/kjv/10/20/25/scripture.tg new file mode 100644 index 00000000..704e3868 --- /dev/null +++ b/scripture/kjv/10/20/25/scripture.tg @@ -0,0 +1,4 @@ +1 Timothy 6:17-19 +17 Charge them that are rich in this world, that they be not highminded, nor trust in uncertain riches, but in the living God, who giveth us richly all things to enjoy; 18 That they do good, that they be rich in good works, ready to distribute, willing to communicate; 19 Laying up in store for themselves a good foundation against the time to come, that they may lay hold on eternal life. + +Monday 20-October, 2025 diff --git a/scripture/kjv/10/20/25/scripture.tg.id b/scripture/kjv/10/20/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/20/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/20/25/scripture.today b/scripture/kjv/10/20/25/scripture.today new file mode 100644 index 00000000..e07d880c --- /dev/null +++ b/scripture/kjv/10/20/25/scripture.today @@ -0,0 +1 @@ +54 6:17-19 diff --git a/scripture/kjv/10/21/23/scripture.html b/scripture/kjv/10/21/23/scripture.html new file mode 100644 index 00000000..b1218715 --- /dev/null +++ b/scripture/kjv/10/21/23/scripture.html @@ -0,0 +1,3 @@ +James 5:10-11
+10 Take, my brethren, the prophets, who have spoken in the name of the Lord, for an example of suffering affliction, and of patience. 11 Behold, we count them happy which endure. Ye have heard of the patience of Job, and have seen the end of the Lord; that the Lord is very pitiful, and of tender mercy.

+Saturday 21-October, 2023 diff --git a/scripture/kjv/10/21/23/scripture.json b/scripture/kjv/10/21/23/scripture.json new file mode 100644 index 00000000..c9bedfb8 --- /dev/null +++ b/scripture/kjv/10/21/23/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "James", + "chapter": "5", + "date": "Saturday 21-October, 2023", + "getbible": "https://getbible.life/kjv/James/5/10-11", + "name": "James 5:10-11", + "scripture": [ + { + "nr": "10", + "text": "Take, my brethren, the prophets, who have spoken in the name of the Lord, for an example of suffering affliction, and of patience." + }, + { + "nr": "11", + "text": "Behold, we count them happy which endure. Ye have heard of the patience of Job, and have seen the end of the Lord; that the Lord is very pitiful, and of tender mercy." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10-11", + "version": "kjv" +} diff --git a/scripture/kjv/10/21/23/scripture.md b/scripture/kjv/10/21/23/scripture.md new file mode 100644 index 00000000..80bebbaa --- /dev/null +++ b/scripture/kjv/10/21/23/scripture.md @@ -0,0 +1,5 @@ +**James 5:10-11** + +10 Take, my brethren, the prophets, who have spoken in the name of the Lord, for an example of suffering affliction, and of patience. 11 Behold, we count them happy which endure. Ye have heard of the patience of Job, and have seen the end of the Lord; that the Lord is very pitiful, and of tender mercy. + +[Saturday 21-October, 2023](https://getbible.life/kjv/James/5/10-11) diff --git a/scripture/kjv/10/21/23/scripture.tg b/scripture/kjv/10/21/23/scripture.tg new file mode 100644 index 00000000..5de07b6c --- /dev/null +++ b/scripture/kjv/10/21/23/scripture.tg @@ -0,0 +1,4 @@ +James 5:10-11 +10 Take, my brethren, the prophets, who have spoken in the name of the Lord, for an example of suffering affliction, and of patience. 11 Behold, we count them happy which endure. Ye have heard of the patience of Job, and have seen the end of the Lord; that the Lord is very pitiful, and of tender mercy. + +Saturday 21-October, 2023 diff --git a/scripture/kjv/10/21/23/scripture.tg.id b/scripture/kjv/10/21/23/scripture.tg.id new file mode 100644 index 00000000..09e35abc --- /dev/null +++ b/scripture/kjv/10/21/23/scripture.tg.id @@ -0,0 +1 @@ +1113 diff --git a/scripture/kjv/10/21/23/scripture.today b/scripture/kjv/10/21/23/scripture.today new file mode 100644 index 00000000..90caf8a6 --- /dev/null +++ b/scripture/kjv/10/21/23/scripture.today @@ -0,0 +1 @@ +59 5:10-11 diff --git a/scripture/kjv/10/21/24/scripture.html b/scripture/kjv/10/21/24/scripture.html new file mode 100644 index 00000000..341b5efa --- /dev/null +++ b/scripture/kjv/10/21/24/scripture.html @@ -0,0 +1,3 @@ +Luke 20:21
+21 And they asked him, saying, Master, we know that thou sayest and teachest rightly, neither acceptest thou the person of any, but teachest the way of God truly:

+Monday 21-October, 2024 diff --git a/scripture/kjv/10/21/24/scripture.json b/scripture/kjv/10/21/24/scripture.json new file mode 100644 index 00000000..dc389cef --- /dev/null +++ b/scripture/kjv/10/21/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "20", + "date": "Monday 21-October, 2024", + "getbible": "https://getbible.life/kjv/Luke/20/21", + "name": "Luke 20:21", + "scripture": [ + { + "nr": "21", + "text": "And they asked him, saying, Master, we know that thou sayest and teachest rightly, neither acceptest thou the person of any, but teachest the way of God truly:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "21", + "version": "kjv" +} diff --git a/scripture/kjv/10/21/24/scripture.md b/scripture/kjv/10/21/24/scripture.md new file mode 100644 index 00000000..106958c0 --- /dev/null +++ b/scripture/kjv/10/21/24/scripture.md @@ -0,0 +1,5 @@ +**Luke 20:21** + +21 And they asked him, saying, Master, we know that thou sayest and teachest rightly, neither acceptest thou the person of any, but teachest the way of God truly: + +[Monday 21-October, 2024](https://getbible.life/kjv/Luke/20/21) diff --git a/scripture/kjv/10/21/24/scripture.tg b/scripture/kjv/10/21/24/scripture.tg new file mode 100644 index 00000000..cf982c35 --- /dev/null +++ b/scripture/kjv/10/21/24/scripture.tg @@ -0,0 +1,4 @@ +Luke 20:21 +21 And they asked him, saying, Master, we know that thou sayest and teachest rightly, neither acceptest thou the person of any, but teachest the way of God truly: + +Monday 21-October, 2024 diff --git a/scripture/kjv/10/21/24/scripture.tg.id b/scripture/kjv/10/21/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/21/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/21/24/scripture.today b/scripture/kjv/10/21/24/scripture.today new file mode 100644 index 00000000..4437556e --- /dev/null +++ b/scripture/kjv/10/21/24/scripture.today @@ -0,0 +1 @@ +42 20:21 diff --git a/scripture/kjv/10/21/25/scripture.html b/scripture/kjv/10/21/25/scripture.html new file mode 100644 index 00000000..963c369e --- /dev/null +++ b/scripture/kjv/10/21/25/scripture.html @@ -0,0 +1,3 @@ +1 John 3:13
+13 Marvel not, my brethren, if the world hate you.

+Tuesday 21-October, 2025 diff --git a/scripture/kjv/10/21/25/scripture.json b/scripture/kjv/10/21/25/scripture.json new file mode 100644 index 00000000..b584fb29 --- /dev/null +++ b/scripture/kjv/10/21/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 John", + "chapter": "3", + "date": "Tuesday 21-October, 2025", + "getbible": "https://getbible.life/kjv/1 John/3/13", + "name": "1 John 3:13", + "scripture": [ + { + "nr": "13", + "text": "Marvel not, my brethren, if the world hate you." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13", + "version": "kjv" +} diff --git a/scripture/kjv/10/21/25/scripture.md b/scripture/kjv/10/21/25/scripture.md new file mode 100644 index 00000000..21075839 --- /dev/null +++ b/scripture/kjv/10/21/25/scripture.md @@ -0,0 +1,5 @@ +**1 John 3:13** + +13 Marvel not, my brethren, if the world hate you. + +[Tuesday 21-October, 2025](https://getbible.life/kjv/1 John/3/13) diff --git a/scripture/kjv/10/21/25/scripture.tg b/scripture/kjv/10/21/25/scripture.tg new file mode 100644 index 00000000..7c175849 --- /dev/null +++ b/scripture/kjv/10/21/25/scripture.tg @@ -0,0 +1,4 @@ +1 John 3:13 +13 Marvel not, my brethren, if the world hate you. + +Tuesday 21-October, 2025 diff --git a/scripture/kjv/10/21/25/scripture.tg.id b/scripture/kjv/10/21/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/21/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/21/25/scripture.today b/scripture/kjv/10/21/25/scripture.today new file mode 100644 index 00000000..ec34d4d7 --- /dev/null +++ b/scripture/kjv/10/21/25/scripture.today @@ -0,0 +1 @@ +62 3:13 diff --git a/scripture/kjv/10/22/23/scripture.html b/scripture/kjv/10/22/23/scripture.html new file mode 100644 index 00000000..e47786c2 --- /dev/null +++ b/scripture/kjv/10/22/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 3:27
+27 Withhold not good from them to whom it is due, when it is in the power of thine hand to do it.

+Sunday 22-October, 2023 diff --git a/scripture/kjv/10/22/23/scripture.json b/scripture/kjv/10/22/23/scripture.json new file mode 100644 index 00000000..f32e58a3 --- /dev/null +++ b/scripture/kjv/10/22/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "3", + "date": "Sunday 22-October, 2023", + "getbible": "https://getbible.life/kjv/Proverbs/3/27", + "name": "Proverbs 3:27", + "scripture": [ + { + "nr": "27", + "text": "Withhold not good from them to whom it is due, when it is in the power of thine hand to do it." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "27", + "version": "kjv" +} diff --git a/scripture/kjv/10/22/23/scripture.md b/scripture/kjv/10/22/23/scripture.md new file mode 100644 index 00000000..d0849387 --- /dev/null +++ b/scripture/kjv/10/22/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 3:27** + +27 Withhold not good from them to whom it is due, when it is in the power of thine hand to do it. + +[Sunday 22-October, 2023](https://getbible.life/kjv/Proverbs/3/27) diff --git a/scripture/kjv/10/22/23/scripture.tg b/scripture/kjv/10/22/23/scripture.tg new file mode 100644 index 00000000..f04a0b7d --- /dev/null +++ b/scripture/kjv/10/22/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 3:27 +27 Withhold not good from them to whom it is due, when it is in the power of thine hand to do it. + +Sunday 22-October, 2023 diff --git a/scripture/kjv/10/22/23/scripture.tg.id b/scripture/kjv/10/22/23/scripture.tg.id new file mode 100644 index 00000000..2b4ff566 --- /dev/null +++ b/scripture/kjv/10/22/23/scripture.tg.id @@ -0,0 +1 @@ +1114 diff --git a/scripture/kjv/10/22/23/scripture.today b/scripture/kjv/10/22/23/scripture.today new file mode 100644 index 00000000..75d3d36d --- /dev/null +++ b/scripture/kjv/10/22/23/scripture.today @@ -0,0 +1 @@ +20 3:27 diff --git a/scripture/kjv/10/22/24/scripture.html b/scripture/kjv/10/22/24/scripture.html new file mode 100644 index 00000000..4f84510d --- /dev/null +++ b/scripture/kjv/10/22/24/scripture.html @@ -0,0 +1,3 @@ +2 Timothy 3:5
+5 Having a form of godliness, but denying the power thereof: from such turn away.

+Tuesday 22-October, 2024 diff --git a/scripture/kjv/10/22/24/scripture.json b/scripture/kjv/10/22/24/scripture.json new file mode 100644 index 00000000..ba91d598 --- /dev/null +++ b/scripture/kjv/10/22/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Timothy", + "chapter": "3", + "date": "Tuesday 22-October, 2024", + "getbible": "https://getbible.life/kjv/2 Timothy/3/5", + "name": "2 Timothy 3:5", + "scripture": [ + { + "nr": "5", + "text": "Having a form of godliness, but denying the power thereof: from such turn away." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5", + "version": "kjv" +} diff --git a/scripture/kjv/10/22/24/scripture.md b/scripture/kjv/10/22/24/scripture.md new file mode 100644 index 00000000..f78f8aa0 --- /dev/null +++ b/scripture/kjv/10/22/24/scripture.md @@ -0,0 +1,5 @@ +**2 Timothy 3:5** + +5 Having a form of godliness, but denying the power thereof: from such turn away. + +[Tuesday 22-October, 2024](https://getbible.life/kjv/2 Timothy/3/5) diff --git a/scripture/kjv/10/22/24/scripture.tg b/scripture/kjv/10/22/24/scripture.tg new file mode 100644 index 00000000..cf5a437e --- /dev/null +++ b/scripture/kjv/10/22/24/scripture.tg @@ -0,0 +1,4 @@ +2 Timothy 3:5 +5 Having a form of godliness, but denying the power thereof: from such turn away. + +Tuesday 22-October, 2024 diff --git a/scripture/kjv/10/22/24/scripture.tg.id b/scripture/kjv/10/22/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/22/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/22/24/scripture.today b/scripture/kjv/10/22/24/scripture.today new file mode 100644 index 00000000..992961da --- /dev/null +++ b/scripture/kjv/10/22/24/scripture.today @@ -0,0 +1 @@ +55 3:5 diff --git a/scripture/kjv/10/22/25/scripture.html b/scripture/kjv/10/22/25/scripture.html new file mode 100644 index 00000000..07b4cb9e --- /dev/null +++ b/scripture/kjv/10/22/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 16:2-3
+2 O my soul, thou hast said unto the Lord, Thou art my Lord: my goodness extendeth not to thee; 3 But to the saints that are in the earth, and to the excellent, in whom is all my delight.

+Wednesday 22-October, 2025 diff --git a/scripture/kjv/10/22/25/scripture.json b/scripture/kjv/10/22/25/scripture.json new file mode 100644 index 00000000..2bcb66c1 --- /dev/null +++ b/scripture/kjv/10/22/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Psalms", + "chapter": "16", + "date": "Wednesday 22-October, 2025", + "getbible": "https://getbible.life/kjv/Psalms/16/2-3", + "name": "Psalms 16:2-3", + "scripture": [ + { + "nr": "2", + "text": "O my soul, thou hast said unto the Lord, Thou art my Lord: my goodness extendeth not to thee;" + }, + { + "nr": "3", + "text": "But to the saints that are in the earth, and to the excellent, in whom is all my delight." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "2-3", + "version": "kjv" +} diff --git a/scripture/kjv/10/22/25/scripture.md b/scripture/kjv/10/22/25/scripture.md new file mode 100644 index 00000000..f8868301 --- /dev/null +++ b/scripture/kjv/10/22/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 16:2-3** + +2 O my soul, thou hast said unto the Lord, Thou art my Lord: my goodness extendeth not to thee; 3 But to the saints that are in the earth, and to the excellent, in whom is all my delight. + +[Wednesday 22-October, 2025](https://getbible.life/kjv/Psalms/16/2-3) diff --git a/scripture/kjv/10/22/25/scripture.tg b/scripture/kjv/10/22/25/scripture.tg new file mode 100644 index 00000000..de35ba49 --- /dev/null +++ b/scripture/kjv/10/22/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 16:2-3 +2 O my soul, thou hast said unto the Lord, Thou art my Lord: my goodness extendeth not to thee; 3 But to the saints that are in the earth, and to the excellent, in whom is all my delight. + +Wednesday 22-October, 2025 diff --git a/scripture/kjv/10/22/25/scripture.tg.id b/scripture/kjv/10/22/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/22/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/22/25/scripture.today b/scripture/kjv/10/22/25/scripture.today new file mode 100644 index 00000000..369f6ee7 --- /dev/null +++ b/scripture/kjv/10/22/25/scripture.today @@ -0,0 +1 @@ +19 16:2-3 diff --git a/scripture/kjv/10/23/23/scripture.html b/scripture/kjv/10/23/23/scripture.html new file mode 100644 index 00000000..8c00d254 --- /dev/null +++ b/scripture/kjv/10/23/23/scripture.html @@ -0,0 +1,3 @@ +John 15:11
+11 These things have I spoken unto you, that my joy might remain in you, and that your joy might be full.

+Monday 23-October, 2023 diff --git a/scripture/kjv/10/23/23/scripture.json b/scripture/kjv/10/23/23/scripture.json new file mode 100644 index 00000000..4801a441 --- /dev/null +++ b/scripture/kjv/10/23/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "15", + "date": "Monday 23-October, 2023", + "getbible": "https://getbible.life/kjv/John/15/11", + "name": "John 15:11", + "scripture": [ + { + "nr": "11", + "text": "These things have I spoken unto you, that my joy might remain in you, and that your joy might be full." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/10/23/23/scripture.md b/scripture/kjv/10/23/23/scripture.md new file mode 100644 index 00000000..bacf8a13 --- /dev/null +++ b/scripture/kjv/10/23/23/scripture.md @@ -0,0 +1,5 @@ +**John 15:11** + +11 These things have I spoken unto you, that my joy might remain in you, and that your joy might be full. + +[Monday 23-October, 2023](https://getbible.life/kjv/John/15/11) diff --git a/scripture/kjv/10/23/23/scripture.tg b/scripture/kjv/10/23/23/scripture.tg new file mode 100644 index 00000000..2af6ab22 --- /dev/null +++ b/scripture/kjv/10/23/23/scripture.tg @@ -0,0 +1,4 @@ +John 15:11 +11 These things have I spoken unto you, that my joy might remain in you, and that your joy might be full. + +Monday 23-October, 2023 diff --git a/scripture/kjv/10/23/23/scripture.tg.id b/scripture/kjv/10/23/23/scripture.tg.id new file mode 100644 index 00000000..1b6d75c8 --- /dev/null +++ b/scripture/kjv/10/23/23/scripture.tg.id @@ -0,0 +1 @@ +1115 diff --git a/scripture/kjv/10/23/23/scripture.today b/scripture/kjv/10/23/23/scripture.today new file mode 100644 index 00000000..252439dc --- /dev/null +++ b/scripture/kjv/10/23/23/scripture.today @@ -0,0 +1 @@ +43 15:11 diff --git a/scripture/kjv/10/23/24/scripture.html b/scripture/kjv/10/23/24/scripture.html new file mode 100644 index 00000000..71d9bf68 --- /dev/null +++ b/scripture/kjv/10/23/24/scripture.html @@ -0,0 +1,3 @@ +1 Timothy 2:1-4
+1 I exhort therefore, that, first of all, supplications, prayers, intercessions, and giving of thanks, be made for all men; 2 For kings, and for all that are in authority; that we may lead a quiet and peaceable life in all godliness and honesty. 3 For this is good and acceptable in the sight of God our Saviour; 4 Who will have all men to be saved, and to come unto the knowledge of the truth.

+Wednesday 23-October, 2024 diff --git a/scripture/kjv/10/23/24/scripture.json b/scripture/kjv/10/23/24/scripture.json new file mode 100644 index 00000000..053c2f5b --- /dev/null +++ b/scripture/kjv/10/23/24/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "1 Timothy", + "chapter": "2", + "date": "Wednesday 23-October, 2024", + "getbible": "https://getbible.life/kjv/1 Timothy/2/1-4", + "name": "1 Timothy 2:1-4", + "scripture": [ + { + "nr": "1", + "text": "I exhort therefore, that, first of all, supplications, prayers, intercessions, and giving of thanks, be made for all men;" + }, + { + "nr": "2", + "text": "For kings, and for all that are in authority; that we may lead a quiet and peaceable life in all godliness and honesty." + }, + { + "nr": "3", + "text": "For this is good and acceptable in the sight of God our Saviour;" + }, + { + "nr": "4", + "text": "Who will have all men to be saved, and to come unto the knowledge of the truth." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-4", + "version": "kjv" +} diff --git a/scripture/kjv/10/23/24/scripture.md b/scripture/kjv/10/23/24/scripture.md new file mode 100644 index 00000000..0c30d636 --- /dev/null +++ b/scripture/kjv/10/23/24/scripture.md @@ -0,0 +1,5 @@ +**1 Timothy 2:1-4** + +1 I exhort therefore, that, first of all, supplications, prayers, intercessions, and giving of thanks, be made for all men; 2 For kings, and for all that are in authority; that we may lead a quiet and peaceable life in all godliness and honesty. 3 For this is good and acceptable in the sight of God our Saviour; 4 Who will have all men to be saved, and to come unto the knowledge of the truth. + +[Wednesday 23-October, 2024](https://getbible.life/kjv/1 Timothy/2/1-4) diff --git a/scripture/kjv/10/23/24/scripture.tg b/scripture/kjv/10/23/24/scripture.tg new file mode 100644 index 00000000..b9d4deff --- /dev/null +++ b/scripture/kjv/10/23/24/scripture.tg @@ -0,0 +1,4 @@ +1 Timothy 2:1-4 +1 I exhort therefore, that, first of all, supplications, prayers, intercessions, and giving of thanks, be made for all men; 2 For kings, and for all that are in authority; that we may lead a quiet and peaceable life in all godliness and honesty. 3 For this is good and acceptable in the sight of God our Saviour; 4 Who will have all men to be saved, and to come unto the knowledge of the truth. + +Wednesday 23-October, 2024 diff --git a/scripture/kjv/10/23/24/scripture.tg.id b/scripture/kjv/10/23/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/23/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/23/24/scripture.today b/scripture/kjv/10/23/24/scripture.today new file mode 100644 index 00000000..1b22f5e5 --- /dev/null +++ b/scripture/kjv/10/23/24/scripture.today @@ -0,0 +1 @@ +54 2:1-4 diff --git a/scripture/kjv/10/23/25/scripture.html b/scripture/kjv/10/23/25/scripture.html new file mode 100644 index 00000000..bbf4f3c9 --- /dev/null +++ b/scripture/kjv/10/23/25/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 15:33
+33 Be not deceived: evil communications corrupt good manners.

+Thursday 23-October, 2025 diff --git a/scripture/kjv/10/23/25/scripture.json b/scripture/kjv/10/23/25/scripture.json new file mode 100644 index 00000000..cbef5f4a --- /dev/null +++ b/scripture/kjv/10/23/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "15", + "date": "Thursday 23-October, 2025", + "getbible": "https://getbible.life/kjv/1 Corinthians/15/33", + "name": "1 Corinthians 15:33", + "scripture": [ + { + "nr": "33", + "text": "Be not deceived: evil communications corrupt good manners." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "33", + "version": "kjv" +} diff --git a/scripture/kjv/10/23/25/scripture.md b/scripture/kjv/10/23/25/scripture.md new file mode 100644 index 00000000..c259f1c8 --- /dev/null +++ b/scripture/kjv/10/23/25/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 15:33** + +33 Be not deceived: evil communications corrupt good manners. + +[Thursday 23-October, 2025](https://getbible.life/kjv/1 Corinthians/15/33) diff --git a/scripture/kjv/10/23/25/scripture.tg b/scripture/kjv/10/23/25/scripture.tg new file mode 100644 index 00000000..1e239232 --- /dev/null +++ b/scripture/kjv/10/23/25/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 15:33 +33 Be not deceived: evil communications corrupt good manners. + +Thursday 23-October, 2025 diff --git a/scripture/kjv/10/23/25/scripture.tg.id b/scripture/kjv/10/23/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/23/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/23/25/scripture.today b/scripture/kjv/10/23/25/scripture.today new file mode 100644 index 00000000..0b2c59d4 --- /dev/null +++ b/scripture/kjv/10/23/25/scripture.today @@ -0,0 +1 @@ +46 15:33 diff --git a/scripture/kjv/10/24/23/scripture.html b/scripture/kjv/10/24/23/scripture.html new file mode 100644 index 00000000..95f08497 --- /dev/null +++ b/scripture/kjv/10/24/23/scripture.html @@ -0,0 +1,3 @@ +Luke 23:5
+5 And they were the more fierce, saying, He stirreth up the people, teaching throughout all Jewry, beginning from Galilee to this place.

+Tuesday 24-October, 2023 diff --git a/scripture/kjv/10/24/23/scripture.json b/scripture/kjv/10/24/23/scripture.json new file mode 100644 index 00000000..61ef0747 --- /dev/null +++ b/scripture/kjv/10/24/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "23", + "date": "Tuesday 24-October, 2023", + "getbible": "https://getbible.life/kjv/Luke/23/5", + "name": "Luke 23:5", + "scripture": [ + { + "nr": "5", + "text": "And they were the more fierce, saying, He stirreth up the people, teaching throughout all Jewry, beginning from Galilee to this place." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5", + "version": "kjv" +} diff --git a/scripture/kjv/10/24/23/scripture.md b/scripture/kjv/10/24/23/scripture.md new file mode 100644 index 00000000..fb617c1a --- /dev/null +++ b/scripture/kjv/10/24/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 23:5** + +5 And they were the more fierce, saying, He stirreth up the people, teaching throughout all Jewry, beginning from Galilee to this place. + +[Tuesday 24-October, 2023](https://getbible.life/kjv/Luke/23/5) diff --git a/scripture/kjv/10/24/23/scripture.tg b/scripture/kjv/10/24/23/scripture.tg new file mode 100644 index 00000000..6a033510 --- /dev/null +++ b/scripture/kjv/10/24/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 23:5 +5 And they were the more fierce, saying, He stirreth up the people, teaching throughout all Jewry, beginning from Galilee to this place. + +Tuesday 24-October, 2023 diff --git a/scripture/kjv/10/24/23/scripture.tg.id b/scripture/kjv/10/24/23/scripture.tg.id new file mode 100644 index 00000000..42ba9642 --- /dev/null +++ b/scripture/kjv/10/24/23/scripture.tg.id @@ -0,0 +1 @@ +1116 diff --git a/scripture/kjv/10/24/23/scripture.today b/scripture/kjv/10/24/23/scripture.today new file mode 100644 index 00000000..147d7ff8 --- /dev/null +++ b/scripture/kjv/10/24/23/scripture.today @@ -0,0 +1 @@ +42 23:5 diff --git a/scripture/kjv/10/24/24/scripture.html b/scripture/kjv/10/24/24/scripture.html new file mode 100644 index 00000000..b9a934cd --- /dev/null +++ b/scripture/kjv/10/24/24/scripture.html @@ -0,0 +1,3 @@ +Hebrews 6:10
+10 For God is not unrighteous to forget your work and labour of love, which ye have shewed toward his name, in that ye have ministered to the saints, and do minister.

+Thursday 24-October, 2024 diff --git a/scripture/kjv/10/24/24/scripture.json b/scripture/kjv/10/24/24/scripture.json new file mode 100644 index 00000000..0a341231 --- /dev/null +++ b/scripture/kjv/10/24/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Hebrews", + "chapter": "6", + "date": "Thursday 24-October, 2024", + "getbible": "https://getbible.life/kjv/Hebrews/6/10", + "name": "Hebrews 6:10", + "scripture": [ + { + "nr": "10", + "text": "For God is not unrighteous to forget your work and labour of love, which ye have shewed toward his name, in that ye have ministered to the saints, and do minister." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/10/24/24/scripture.md b/scripture/kjv/10/24/24/scripture.md new file mode 100644 index 00000000..4d765212 --- /dev/null +++ b/scripture/kjv/10/24/24/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 6:10** + +10 For God is not unrighteous to forget your work and labour of love, which ye have shewed toward his name, in that ye have ministered to the saints, and do minister. + +[Thursday 24-October, 2024](https://getbible.life/kjv/Hebrews/6/10) diff --git a/scripture/kjv/10/24/24/scripture.tg b/scripture/kjv/10/24/24/scripture.tg new file mode 100644 index 00000000..73254280 --- /dev/null +++ b/scripture/kjv/10/24/24/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 6:10 +10 For God is not unrighteous to forget your work and labour of love, which ye have shewed toward his name, in that ye have ministered to the saints, and do minister. + +Thursday 24-October, 2024 diff --git a/scripture/kjv/10/24/24/scripture.tg.id b/scripture/kjv/10/24/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/24/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/24/24/scripture.today b/scripture/kjv/10/24/24/scripture.today new file mode 100644 index 00000000..a6a55a3b --- /dev/null +++ b/scripture/kjv/10/24/24/scripture.today @@ -0,0 +1 @@ +58 6:10 diff --git a/scripture/kjv/10/24/25/scripture.html b/scripture/kjv/10/24/25/scripture.html new file mode 100644 index 00000000..513428e5 --- /dev/null +++ b/scripture/kjv/10/24/25/scripture.html @@ -0,0 +1,3 @@ +Luke 17:15-18
+15 And one of them, when he saw that he was healed, turned back, and with a loud voice glorified God, 16 And fell down on his face at his feet, giving him thanks: and he was a Samaritan. 17 And Jesus answering said, Were there not ten cleansed? but where are the nine? 18 There are not found that returned to give glory to God, save this stranger.

+Friday 24-October, 2025 diff --git a/scripture/kjv/10/24/25/scripture.json b/scripture/kjv/10/24/25/scripture.json new file mode 100644 index 00000000..7b53f444 --- /dev/null +++ b/scripture/kjv/10/24/25/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "Luke", + "chapter": "17", + "date": "Friday 24-October, 2025", + "getbible": "https://getbible.life/kjv/Luke/17/15-18", + "name": "Luke 17:15-18", + "scripture": [ + { + "nr": "15", + "text": "And one of them, when he saw that he was healed, turned back, and with a loud voice glorified God," + }, + { + "nr": "16", + "text": "And fell down on his face at his feet, giving him thanks: and he was a Samaritan." + }, + { + "nr": "17", + "text": "And Jesus answering said, Were there not ten cleansed? but where are the nine?" + }, + { + "nr": "18", + "text": "There are not found that returned to give glory to God, save this stranger." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15-18", + "version": "kjv" +} diff --git a/scripture/kjv/10/24/25/scripture.md b/scripture/kjv/10/24/25/scripture.md new file mode 100644 index 00000000..ca404bcd --- /dev/null +++ b/scripture/kjv/10/24/25/scripture.md @@ -0,0 +1,5 @@ +**Luke 17:15-18** + +15 And one of them, when he saw that he was healed, turned back, and with a loud voice glorified God, 16 And fell down on his face at his feet, giving him thanks: and he was a Samaritan. 17 And Jesus answering said, Were there not ten cleansed? but where are the nine? 18 There are not found that returned to give glory to God, save this stranger. + +[Friday 24-October, 2025](https://getbible.life/kjv/Luke/17/15-18) diff --git a/scripture/kjv/10/24/25/scripture.tg b/scripture/kjv/10/24/25/scripture.tg new file mode 100644 index 00000000..bc3f43bd --- /dev/null +++ b/scripture/kjv/10/24/25/scripture.tg @@ -0,0 +1,4 @@ +Luke 17:15-18 +15 And one of them, when he saw that he was healed, turned back, and with a loud voice glorified God, 16 And fell down on his face at his feet, giving him thanks: and he was a Samaritan. 17 And Jesus answering said, Were there not ten cleansed? but where are the nine? 18 There are not found that returned to give glory to God, save this stranger. + +Friday 24-October, 2025 diff --git a/scripture/kjv/10/24/25/scripture.tg.id b/scripture/kjv/10/24/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/24/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/24/25/scripture.today b/scripture/kjv/10/24/25/scripture.today new file mode 100644 index 00000000..3e623ff5 --- /dev/null +++ b/scripture/kjv/10/24/25/scripture.today @@ -0,0 +1 @@ +42 17:15-18 diff --git a/scripture/kjv/10/25/23/scripture.html b/scripture/kjv/10/25/23/scripture.html new file mode 100644 index 00000000..c12ccc80 --- /dev/null +++ b/scripture/kjv/10/25/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 18:21
+21 For I have kept the ways of the Lord, and have not wickedly departed from my God.

+Wednesday 25-October, 2023 diff --git a/scripture/kjv/10/25/23/scripture.json b/scripture/kjv/10/25/23/scripture.json new file mode 100644 index 00000000..6f1c2975 --- /dev/null +++ b/scripture/kjv/10/25/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "18", + "date": "Wednesday 25-October, 2023", + "getbible": "https://getbible.life/kjv/Psalms/18/21", + "name": "Psalms 18:21", + "scripture": [ + { + "nr": "21", + "text": "For I have kept the ways of the Lord, and have not wickedly departed from my God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "21", + "version": "kjv" +} diff --git a/scripture/kjv/10/25/23/scripture.md b/scripture/kjv/10/25/23/scripture.md new file mode 100644 index 00000000..887192dc --- /dev/null +++ b/scripture/kjv/10/25/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 18:21** + +21 For I have kept the ways of the Lord, and have not wickedly departed from my God. + +[Wednesday 25-October, 2023](https://getbible.life/kjv/Psalms/18/21) diff --git a/scripture/kjv/10/25/23/scripture.tg b/scripture/kjv/10/25/23/scripture.tg new file mode 100644 index 00000000..025a68d2 --- /dev/null +++ b/scripture/kjv/10/25/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 18:21 +21 For I have kept the ways of the Lord, and have not wickedly departed from my God. + +Wednesday 25-October, 2023 diff --git a/scripture/kjv/10/25/23/scripture.tg.id b/scripture/kjv/10/25/23/scripture.tg.id new file mode 100644 index 00000000..822fe634 --- /dev/null +++ b/scripture/kjv/10/25/23/scripture.tg.id @@ -0,0 +1 @@ +1117 diff --git a/scripture/kjv/10/25/23/scripture.today b/scripture/kjv/10/25/23/scripture.today new file mode 100644 index 00000000..9a235656 --- /dev/null +++ b/scripture/kjv/10/25/23/scripture.today @@ -0,0 +1 @@ +19 18:21 diff --git a/scripture/kjv/10/25/24/scripture.html b/scripture/kjv/10/25/24/scripture.html new file mode 100644 index 00000000..abfaefd7 --- /dev/null +++ b/scripture/kjv/10/25/24/scripture.html @@ -0,0 +1,3 @@ +2 Peter 3:8
+8 But, beloved, be not ignorant of this one thing, that one day is with the Lord as a thousand years, and a thousand years as one day.

+Friday 25-October, 2024 diff --git a/scripture/kjv/10/25/24/scripture.json b/scripture/kjv/10/25/24/scripture.json new file mode 100644 index 00000000..9637c32a --- /dev/null +++ b/scripture/kjv/10/25/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Peter", + "chapter": "3", + "date": "Friday 25-October, 2024", + "getbible": "https://getbible.life/kjv/2 Peter/3/8", + "name": "2 Peter 3:8", + "scripture": [ + { + "nr": "8", + "text": "But, beloved, be not ignorant of this one thing, that one day is with the Lord as a thousand years, and a thousand years as one day." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8", + "version": "kjv" +} diff --git a/scripture/kjv/10/25/24/scripture.md b/scripture/kjv/10/25/24/scripture.md new file mode 100644 index 00000000..0dcc1d92 --- /dev/null +++ b/scripture/kjv/10/25/24/scripture.md @@ -0,0 +1,5 @@ +**2 Peter 3:8** + +8 But, beloved, be not ignorant of this one thing, that one day is with the Lord as a thousand years, and a thousand years as one day. + +[Friday 25-October, 2024](https://getbible.life/kjv/2 Peter/3/8) diff --git a/scripture/kjv/10/25/24/scripture.tg b/scripture/kjv/10/25/24/scripture.tg new file mode 100644 index 00000000..442094cf --- /dev/null +++ b/scripture/kjv/10/25/24/scripture.tg @@ -0,0 +1,4 @@ +2 Peter 3:8 +8 But, beloved, be not ignorant of this one thing, that one day is with the Lord as a thousand years, and a thousand years as one day. + +Friday 25-October, 2024 diff --git a/scripture/kjv/10/25/24/scripture.tg.id b/scripture/kjv/10/25/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/25/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/25/24/scripture.today b/scripture/kjv/10/25/24/scripture.today new file mode 100644 index 00000000..36e64578 --- /dev/null +++ b/scripture/kjv/10/25/24/scripture.today @@ -0,0 +1 @@ +61 3:8 diff --git a/scripture/kjv/10/25/25/scripture.html b/scripture/kjv/10/25/25/scripture.html new file mode 100644 index 00000000..16411434 --- /dev/null +++ b/scripture/kjv/10/25/25/scripture.html @@ -0,0 +1,3 @@ +Isaiah 56:10-11
+10 His watchmen are blind: they are all ignorant, they are all dumb dogs, they cannot bark; sleeping, lying down, loving to slumber. 11 Yea, they are greedy dogs which can never have enough, and they are shepherds that cannot understand: they all look to their own way, every one for his gain, from his quarter.

+Saturday 25-October, 2025 diff --git a/scripture/kjv/10/25/25/scripture.json b/scripture/kjv/10/25/25/scripture.json new file mode 100644 index 00000000..ffabd0d2 --- /dev/null +++ b/scripture/kjv/10/25/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Isaiah", + "chapter": "56", + "date": "Saturday 25-October, 2025", + "getbible": "https://getbible.life/kjv/Isaiah/56/10-11", + "name": "Isaiah 56:10-11", + "scripture": [ + { + "nr": "10", + "text": "His watchmen are blind: they are all ignorant, they are all dumb dogs, they cannot bark; sleeping, lying down, loving to slumber." + }, + { + "nr": "11", + "text": "Yea, they are greedy dogs which can never have enough, and they are shepherds that cannot understand: they all look to their own way, every one for his gain, from his quarter." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10-11", + "version": "kjv" +} diff --git a/scripture/kjv/10/25/25/scripture.md b/scripture/kjv/10/25/25/scripture.md new file mode 100644 index 00000000..339f72a8 --- /dev/null +++ b/scripture/kjv/10/25/25/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 56:10-11** + +10 His watchmen are blind: they are all ignorant, they are all dumb dogs, they cannot bark; sleeping, lying down, loving to slumber. 11 Yea, they are greedy dogs which can never have enough, and they are shepherds that cannot understand: they all look to their own way, every one for his gain, from his quarter. + +[Saturday 25-October, 2025](https://getbible.life/kjv/Isaiah/56/10-11) diff --git a/scripture/kjv/10/25/25/scripture.tg b/scripture/kjv/10/25/25/scripture.tg new file mode 100644 index 00000000..ef4f0fb0 --- /dev/null +++ b/scripture/kjv/10/25/25/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 56:10-11 +10 His watchmen are blind: they are all ignorant, they are all dumb dogs, they cannot bark; sleeping, lying down, loving to slumber. 11 Yea, they are greedy dogs which can never have enough, and they are shepherds that cannot understand: they all look to their own way, every one for his gain, from his quarter. + +Saturday 25-October, 2025 diff --git a/scripture/kjv/10/25/25/scripture.tg.id b/scripture/kjv/10/25/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/25/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/25/25/scripture.today b/scripture/kjv/10/25/25/scripture.today new file mode 100644 index 00000000..1886b1cd --- /dev/null +++ b/scripture/kjv/10/25/25/scripture.today @@ -0,0 +1 @@ +23 56:10-11 diff --git a/scripture/kjv/10/26/23/scripture.html b/scripture/kjv/10/26/23/scripture.html new file mode 100644 index 00000000..dc649fdb --- /dev/null +++ b/scripture/kjv/10/26/23/scripture.html @@ -0,0 +1,3 @@ +Hebrews 12:22-24
+22 But ye are come unto mount Sion, and unto the city of the living God, the heavenly Jerusalem, and to an innumerable company of angels, 23 To the general assembly and church of the firstborn, which are written in heaven, and to God the Judge of all, and to the spirits of just men made perfect, 24 And to Jesus the mediator of the new covenant, and to the blood of sprinkling, that speaketh better things than that of Abel.

+Thursday 26-October, 2023 diff --git a/scripture/kjv/10/26/23/scripture.json b/scripture/kjv/10/26/23/scripture.json new file mode 100644 index 00000000..611cc19c --- /dev/null +++ b/scripture/kjv/10/26/23/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Hebrews", + "chapter": "12", + "date": "Thursday 26-October, 2023", + "getbible": "https://getbible.life/kjv/Hebrews/12/22-24", + "name": "Hebrews 12:22-24", + "scripture": [ + { + "nr": "22", + "text": "But ye are come unto mount Sion, and unto the city of the living God, the heavenly Jerusalem, and to an innumerable company of angels," + }, + { + "nr": "23", + "text": "To the general assembly and church of the firstborn, which are written in heaven, and to God the Judge of all, and to the spirits of just men made perfect," + }, + { + "nr": "24", + "text": "And to Jesus the mediator of the new covenant, and to the blood of sprinkling, that speaketh better things than that of Abel." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "22-24", + "version": "kjv" +} diff --git a/scripture/kjv/10/26/23/scripture.md b/scripture/kjv/10/26/23/scripture.md new file mode 100644 index 00000000..2c4de7c5 --- /dev/null +++ b/scripture/kjv/10/26/23/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 12:22-24** + +22 But ye are come unto mount Sion, and unto the city of the living God, the heavenly Jerusalem, and to an innumerable company of angels, 23 To the general assembly and church of the firstborn, which are written in heaven, and to God the Judge of all, and to the spirits of just men made perfect, 24 And to Jesus the mediator of the new covenant, and to the blood of sprinkling, that speaketh better things than that of Abel. + +[Thursday 26-October, 2023](https://getbible.life/kjv/Hebrews/12/22-24) diff --git a/scripture/kjv/10/26/23/scripture.tg b/scripture/kjv/10/26/23/scripture.tg new file mode 100644 index 00000000..38dd3537 --- /dev/null +++ b/scripture/kjv/10/26/23/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 12:22-24 +22 But ye are come unto mount Sion, and unto the city of the living God, the heavenly Jerusalem, and to an innumerable company of angels, 23 To the general assembly and church of the firstborn, which are written in heaven, and to God the Judge of all, and to the spirits of just men made perfect, 24 And to Jesus the mediator of the new covenant, and to the blood of sprinkling, that speaketh better things than that of Abel. + +Thursday 26-October, 2023 diff --git a/scripture/kjv/10/26/23/scripture.tg.id b/scripture/kjv/10/26/23/scripture.tg.id new file mode 100644 index 00000000..79e6287b --- /dev/null +++ b/scripture/kjv/10/26/23/scripture.tg.id @@ -0,0 +1 @@ +1118 diff --git a/scripture/kjv/10/26/23/scripture.today b/scripture/kjv/10/26/23/scripture.today new file mode 100644 index 00000000..19af4e14 --- /dev/null +++ b/scripture/kjv/10/26/23/scripture.today @@ -0,0 +1 @@ +58 12:22-24 diff --git a/scripture/kjv/10/26/24/scripture.html b/scripture/kjv/10/26/24/scripture.html new file mode 100644 index 00000000..6ac230fc --- /dev/null +++ b/scripture/kjv/10/26/24/scripture.html @@ -0,0 +1,3 @@ +John 10:16
+16 And other sheep I have, which are not of this fold: them also I must bring, and they shall hear my voice; and there shall be one fold, and one shepherd.

+Saturday 26-October, 2024 diff --git a/scripture/kjv/10/26/24/scripture.json b/scripture/kjv/10/26/24/scripture.json new file mode 100644 index 00000000..f9c50f2d --- /dev/null +++ b/scripture/kjv/10/26/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "10", + "date": "Saturday 26-October, 2024", + "getbible": "https://getbible.life/kjv/John/10/16", + "name": "John 10:16", + "scripture": [ + { + "nr": "16", + "text": "And other sheep I have, which are not of this fold: them also I must bring, and they shall hear my voice; and there shall be one fold, and one shepherd." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16", + "version": "kjv" +} diff --git a/scripture/kjv/10/26/24/scripture.md b/scripture/kjv/10/26/24/scripture.md new file mode 100644 index 00000000..1ee79d84 --- /dev/null +++ b/scripture/kjv/10/26/24/scripture.md @@ -0,0 +1,5 @@ +**John 10:16** + +16 And other sheep I have, which are not of this fold: them also I must bring, and they shall hear my voice; and there shall be one fold, and one shepherd. + +[Saturday 26-October, 2024](https://getbible.life/kjv/John/10/16) diff --git a/scripture/kjv/10/26/24/scripture.tg b/scripture/kjv/10/26/24/scripture.tg new file mode 100644 index 00000000..7e6ba0c1 --- /dev/null +++ b/scripture/kjv/10/26/24/scripture.tg @@ -0,0 +1,4 @@ +John 10:16 +16 And other sheep I have, which are not of this fold: them also I must bring, and they shall hear my voice; and there shall be one fold, and one shepherd. + +Saturday 26-October, 2024 diff --git a/scripture/kjv/10/26/24/scripture.tg.id b/scripture/kjv/10/26/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/26/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/26/24/scripture.today b/scripture/kjv/10/26/24/scripture.today new file mode 100644 index 00000000..88b92586 --- /dev/null +++ b/scripture/kjv/10/26/24/scripture.today @@ -0,0 +1 @@ +43 10:16 diff --git a/scripture/kjv/10/26/25/scripture.html b/scripture/kjv/10/26/25/scripture.html new file mode 100644 index 00000000..5a1c6211 --- /dev/null +++ b/scripture/kjv/10/26/25/scripture.html @@ -0,0 +1,3 @@ +Colossians 3:12-13
+12 Put on therefore, as the elect of God, holy and beloved, bowels of mercies, kindness, humbleness of mind, meekness, longsuffering; 13 Forbearing one another, and forgiving one another, if any man have a quarrel against any: even as Christ forgave you, so also do ye.

+Sunday 26-October, 2025 diff --git a/scripture/kjv/10/26/25/scripture.json b/scripture/kjv/10/26/25/scripture.json new file mode 100644 index 00000000..589c384e --- /dev/null +++ b/scripture/kjv/10/26/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Colossians", + "chapter": "3", + "date": "Sunday 26-October, 2025", + "getbible": "https://getbible.life/kjv/Colossians/3/12-13", + "name": "Colossians 3:12-13", + "scripture": [ + { + "nr": "12", + "text": "Put on therefore, as the elect of God, holy and beloved, bowels of mercies, kindness, humbleness of mind, meekness, longsuffering;" + }, + { + "nr": "13", + "text": "Forbearing one another, and forgiving one another, if any man have a quarrel against any: even as Christ forgave you, so also do ye." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12-13", + "version": "kjv" +} diff --git a/scripture/kjv/10/26/25/scripture.md b/scripture/kjv/10/26/25/scripture.md new file mode 100644 index 00000000..c905cb86 --- /dev/null +++ b/scripture/kjv/10/26/25/scripture.md @@ -0,0 +1,5 @@ +**Colossians 3:12-13** + +12 Put on therefore, as the elect of God, holy and beloved, bowels of mercies, kindness, humbleness of mind, meekness, longsuffering; 13 Forbearing one another, and forgiving one another, if any man have a quarrel against any: even as Christ forgave you, so also do ye. + +[Sunday 26-October, 2025](https://getbible.life/kjv/Colossians/3/12-13) diff --git a/scripture/kjv/10/26/25/scripture.tg b/scripture/kjv/10/26/25/scripture.tg new file mode 100644 index 00000000..318a8027 --- /dev/null +++ b/scripture/kjv/10/26/25/scripture.tg @@ -0,0 +1,4 @@ +Colossians 3:12-13 +12 Put on therefore, as the elect of God, holy and beloved, bowels of mercies, kindness, humbleness of mind, meekness, longsuffering; 13 Forbearing one another, and forgiving one another, if any man have a quarrel against any: even as Christ forgave you, so also do ye. + +Sunday 26-October, 2025 diff --git a/scripture/kjv/10/26/25/scripture.tg.id b/scripture/kjv/10/26/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/26/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/26/25/scripture.today b/scripture/kjv/10/26/25/scripture.today new file mode 100644 index 00000000..be2a4604 --- /dev/null +++ b/scripture/kjv/10/26/25/scripture.today @@ -0,0 +1 @@ +51 3:12-13 diff --git a/scripture/kjv/10/27/23/scripture.html b/scripture/kjv/10/27/23/scripture.html new file mode 100644 index 00000000..8e41f3f6 --- /dev/null +++ b/scripture/kjv/10/27/23/scripture.html @@ -0,0 +1,3 @@ +James 3:13-18
+13 Who is a wise man and endued with knowledge among you? let him shew out of a good conversation his works with meekness of wisdom. 14 But if ye have bitter envying and strife in your hearts, glory not, and lie not against the truth. 15 This wisdom descendeth not from above, but is earthly, sensual, devilish. 16 For where envying and strife is, there is confusion and every evil work. 17 But the wisdom that is from above is first pure, then peaceable, gentle, and easy to be intreated, full of mercy and good fruits, without partiality, and without hypocrisy. 18 And the fruit of righteousness is sown in peace of them that make peace.

+Friday 27-October, 2023 diff --git a/scripture/kjv/10/27/23/scripture.json b/scripture/kjv/10/27/23/scripture.json new file mode 100644 index 00000000..1a7187dc --- /dev/null +++ b/scripture/kjv/10/27/23/scripture.json @@ -0,0 +1,37 @@ +{ + "book": "James", + "chapter": "3", + "date": "Friday 27-October, 2023", + "getbible": "https://getbible.life/kjv/James/3/13-18", + "name": "James 3:13-18", + "scripture": [ + { + "nr": "13", + "text": "Who is a wise man and endued with knowledge among you? let him shew out of a good conversation his works with meekness of wisdom." + }, + { + "nr": "14", + "text": "But if ye have bitter envying and strife in your hearts, glory not, and lie not against the truth." + }, + { + "nr": "15", + "text": "This wisdom descendeth not from above, but is earthly, sensual, devilish." + }, + { + "nr": "16", + "text": "For where envying and strife is, there is confusion and every evil work." + }, + { + "nr": "17", + "text": "But the wisdom that is from above is first pure, then peaceable, gentle, and easy to be intreated, full of mercy and good fruits, without partiality, and without hypocrisy." + }, + { + "nr": "18", + "text": "And the fruit of righteousness is sown in peace of them that make peace. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13-18", + "version": "kjv" +} diff --git a/scripture/kjv/10/27/23/scripture.md b/scripture/kjv/10/27/23/scripture.md new file mode 100644 index 00000000..98715c44 --- /dev/null +++ b/scripture/kjv/10/27/23/scripture.md @@ -0,0 +1,5 @@ +**James 3:13-18** + +13 Who is a wise man and endued with knowledge among you? let him shew out of a good conversation his works with meekness of wisdom. 14 But if ye have bitter envying and strife in your hearts, glory not, and lie not against the truth. 15 This wisdom descendeth not from above, but is earthly, sensual, devilish. 16 For where envying and strife is, there is confusion and every evil work. 17 But the wisdom that is from above is first pure, then peaceable, gentle, and easy to be intreated, full of mercy and good fruits, without partiality, and without hypocrisy. 18 And the fruit of righteousness is sown in peace of them that make peace. + +[Friday 27-October, 2023](https://getbible.life/kjv/James/3/13-18) diff --git a/scripture/kjv/10/27/23/scripture.tg b/scripture/kjv/10/27/23/scripture.tg new file mode 100644 index 00000000..7ee04ec7 --- /dev/null +++ b/scripture/kjv/10/27/23/scripture.tg @@ -0,0 +1,4 @@ +James 3:13-18 +13 Who is a wise man and endued with knowledge among you? let him shew out of a good conversation his works with meekness of wisdom. 14 But if ye have bitter envying and strife in your hearts, glory not, and lie not against the truth. 15 This wisdom descendeth not from above, but is earthly, sensual, devilish. 16 For where envying and strife is, there is confusion and every evil work. 17 But the wisdom that is from above is first pure, then peaceable, gentle, and easy to be intreated, full of mercy and good fruits, without partiality, and without hypocrisy. 18 And the fruit of righteousness is sown in peace of them that make peace. + +Friday 27-October, 2023 diff --git a/scripture/kjv/10/27/23/scripture.tg.id b/scripture/kjv/10/27/23/scripture.tg.id new file mode 100644 index 00000000..48728527 --- /dev/null +++ b/scripture/kjv/10/27/23/scripture.tg.id @@ -0,0 +1 @@ +1119 diff --git a/scripture/kjv/10/27/23/scripture.today b/scripture/kjv/10/27/23/scripture.today new file mode 100644 index 00000000..4a9d1c34 --- /dev/null +++ b/scripture/kjv/10/27/23/scripture.today @@ -0,0 +1 @@ +59 3:13-18 diff --git a/scripture/kjv/10/27/24/scripture.html b/scripture/kjv/10/27/24/scripture.html new file mode 100644 index 00000000..2faa6f2f --- /dev/null +++ b/scripture/kjv/10/27/24/scripture.html @@ -0,0 +1,3 @@ +Jeremiah 30:11
+11 For I am with thee, saith the Lord, to save thee: though I make a full end of all nations whither I have scattered thee, yet will I not make a full end of thee: but I will correct thee in measure, and will not leave thee altogether unpunished.

+Sunday 27-October, 2024 diff --git a/scripture/kjv/10/27/24/scripture.json b/scripture/kjv/10/27/24/scripture.json new file mode 100644 index 00000000..0bebf2ba --- /dev/null +++ b/scripture/kjv/10/27/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Jeremiah", + "chapter": "30", + "date": "Sunday 27-October, 2024", + "getbible": "https://getbible.life/kjv/Jeremiah/30/11", + "name": "Jeremiah 30:11", + "scripture": [ + { + "nr": "11", + "text": "For I am with thee, saith the Lord, to save thee: though I make a full end of all nations whither I have scattered thee, yet will I not make a full end of thee: but I will correct thee in measure, and will not leave thee altogether unpunished." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/10/27/24/scripture.md b/scripture/kjv/10/27/24/scripture.md new file mode 100644 index 00000000..7dfaf00f --- /dev/null +++ b/scripture/kjv/10/27/24/scripture.md @@ -0,0 +1,5 @@ +**Jeremiah 30:11** + +11 For I am with thee, saith the Lord, to save thee: though I make a full end of all nations whither I have scattered thee, yet will I not make a full end of thee: but I will correct thee in measure, and will not leave thee altogether unpunished. + +[Sunday 27-October, 2024](https://getbible.life/kjv/Jeremiah/30/11) diff --git a/scripture/kjv/10/27/24/scripture.tg b/scripture/kjv/10/27/24/scripture.tg new file mode 100644 index 00000000..e36b21a5 --- /dev/null +++ b/scripture/kjv/10/27/24/scripture.tg @@ -0,0 +1,4 @@ +Jeremiah 30:11 +11 For I am with thee, saith the Lord, to save thee: though I make a full end of all nations whither I have scattered thee, yet will I not make a full end of thee: but I will correct thee in measure, and will not leave thee altogether unpunished. + +Sunday 27-October, 2024 diff --git a/scripture/kjv/10/27/24/scripture.tg.id b/scripture/kjv/10/27/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/27/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/27/24/scripture.today b/scripture/kjv/10/27/24/scripture.today new file mode 100644 index 00000000..d7842d29 --- /dev/null +++ b/scripture/kjv/10/27/24/scripture.today @@ -0,0 +1 @@ +24 30:11 diff --git a/scripture/kjv/10/27/25/scripture.html b/scripture/kjv/10/27/25/scripture.html new file mode 100644 index 00000000..86828595 --- /dev/null +++ b/scripture/kjv/10/27/25/scripture.html @@ -0,0 +1,3 @@ +Ecclesiastes 12:14
+14 For God shall bring every work into judgment, with every secret thing, whether it be good, or whether it be evil.

+Monday 27-October, 2025 diff --git a/scripture/kjv/10/27/25/scripture.json b/scripture/kjv/10/27/25/scripture.json new file mode 100644 index 00000000..9004b08e --- /dev/null +++ b/scripture/kjv/10/27/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ecclesiastes", + "chapter": "12", + "date": "Monday 27-October, 2025", + "getbible": "https://getbible.life/kjv/Ecclesiastes/12/14", + "name": "Ecclesiastes 12:14", + "scripture": [ + { + "nr": "14", + "text": "For God shall bring every work into judgment, with every secret thing, whether it be good, or whether it be evil. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/10/27/25/scripture.md b/scripture/kjv/10/27/25/scripture.md new file mode 100644 index 00000000..3e4f778d --- /dev/null +++ b/scripture/kjv/10/27/25/scripture.md @@ -0,0 +1,5 @@ +**Ecclesiastes 12:14** + +14 For God shall bring every work into judgment, with every secret thing, whether it be good, or whether it be evil. + +[Monday 27-October, 2025](https://getbible.life/kjv/Ecclesiastes/12/14) diff --git a/scripture/kjv/10/27/25/scripture.tg b/scripture/kjv/10/27/25/scripture.tg new file mode 100644 index 00000000..43ad958f --- /dev/null +++ b/scripture/kjv/10/27/25/scripture.tg @@ -0,0 +1,4 @@ +Ecclesiastes 12:14 +14 For God shall bring every work into judgment, with every secret thing, whether it be good, or whether it be evil. + +Monday 27-October, 2025 diff --git a/scripture/kjv/10/27/25/scripture.tg.id b/scripture/kjv/10/27/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/27/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/27/25/scripture.today b/scripture/kjv/10/27/25/scripture.today new file mode 100644 index 00000000..4d2bb20b --- /dev/null +++ b/scripture/kjv/10/27/25/scripture.today @@ -0,0 +1 @@ +21 12:14 diff --git a/scripture/kjv/10/28/23/scripture.html b/scripture/kjv/10/28/23/scripture.html new file mode 100644 index 00000000..ae3518e1 --- /dev/null +++ b/scripture/kjv/10/28/23/scripture.html @@ -0,0 +1,3 @@ +Luke 13:30
+30 And, behold, there are last which shall be first, and there are first which shall be last.

+Saturday 28-October, 2023 diff --git a/scripture/kjv/10/28/23/scripture.json b/scripture/kjv/10/28/23/scripture.json new file mode 100644 index 00000000..225e38f3 --- /dev/null +++ b/scripture/kjv/10/28/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "13", + "date": "Saturday 28-October, 2023", + "getbible": "https://getbible.life/kjv/Luke/13/30", + "name": "Luke 13:30", + "scripture": [ + { + "nr": "30", + "text": "And, behold, there are last which shall be first, and there are first which shall be last." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "30", + "version": "kjv" +} diff --git a/scripture/kjv/10/28/23/scripture.md b/scripture/kjv/10/28/23/scripture.md new file mode 100644 index 00000000..f51034b0 --- /dev/null +++ b/scripture/kjv/10/28/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 13:30** + +30 And, behold, there are last which shall be first, and there are first which shall be last. + +[Saturday 28-October, 2023](https://getbible.life/kjv/Luke/13/30) diff --git a/scripture/kjv/10/28/23/scripture.tg b/scripture/kjv/10/28/23/scripture.tg new file mode 100644 index 00000000..b6581039 --- /dev/null +++ b/scripture/kjv/10/28/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 13:30 +30 And, behold, there are last which shall be first, and there are first which shall be last. + +Saturday 28-October, 2023 diff --git a/scripture/kjv/10/28/23/scripture.tg.id b/scripture/kjv/10/28/23/scripture.tg.id new file mode 100644 index 00000000..b1e1a0c0 --- /dev/null +++ b/scripture/kjv/10/28/23/scripture.tg.id @@ -0,0 +1 @@ +1120 diff --git a/scripture/kjv/10/28/23/scripture.today b/scripture/kjv/10/28/23/scripture.today new file mode 100644 index 00000000..b61818a0 --- /dev/null +++ b/scripture/kjv/10/28/23/scripture.today @@ -0,0 +1 @@ +42 13:30 diff --git a/scripture/kjv/10/28/24/scripture.html b/scripture/kjv/10/28/24/scripture.html new file mode 100644 index 00000000..a6b30c31 --- /dev/null +++ b/scripture/kjv/10/28/24/scripture.html @@ -0,0 +1,3 @@ +John 7:46
+46 The officers answered, Never man spake like this man.

+Monday 28-October, 2024 diff --git a/scripture/kjv/10/28/24/scripture.json b/scripture/kjv/10/28/24/scripture.json new file mode 100644 index 00000000..082951e5 --- /dev/null +++ b/scripture/kjv/10/28/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "7", + "date": "Monday 28-October, 2024", + "getbible": "https://getbible.life/kjv/John/7/46", + "name": "John 7:46", + "scripture": [ + { + "nr": "46", + "text": "The officers answered, Never man spake like this man." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "46", + "version": "kjv" +} diff --git a/scripture/kjv/10/28/24/scripture.md b/scripture/kjv/10/28/24/scripture.md new file mode 100644 index 00000000..16b96109 --- /dev/null +++ b/scripture/kjv/10/28/24/scripture.md @@ -0,0 +1,5 @@ +**John 7:46** + +46 The officers answered, Never man spake like this man. + +[Monday 28-October, 2024](https://getbible.life/kjv/John/7/46) diff --git a/scripture/kjv/10/28/24/scripture.tg b/scripture/kjv/10/28/24/scripture.tg new file mode 100644 index 00000000..6e5f5396 --- /dev/null +++ b/scripture/kjv/10/28/24/scripture.tg @@ -0,0 +1,4 @@ +John 7:46 +46 The officers answered, Never man spake like this man. + +Monday 28-October, 2024 diff --git a/scripture/kjv/10/28/24/scripture.tg.id b/scripture/kjv/10/28/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/28/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/28/24/scripture.today b/scripture/kjv/10/28/24/scripture.today new file mode 100644 index 00000000..ff15e054 --- /dev/null +++ b/scripture/kjv/10/28/24/scripture.today @@ -0,0 +1 @@ +43 7:46 diff --git a/scripture/kjv/10/28/25/scripture.html b/scripture/kjv/10/28/25/scripture.html new file mode 100644 index 00000000..1fcfb622 --- /dev/null +++ b/scripture/kjv/10/28/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 33:9
+9 For he spake, and it was done; he commanded, and it stood fast.

+Tuesday 28-October, 2025 diff --git a/scripture/kjv/10/28/25/scripture.json b/scripture/kjv/10/28/25/scripture.json new file mode 100644 index 00000000..47f703b8 --- /dev/null +++ b/scripture/kjv/10/28/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "33", + "date": "Tuesday 28-October, 2025", + "getbible": "https://getbible.life/kjv/Psalms/33/9", + "name": "Psalms 33:9", + "scripture": [ + { + "nr": "9", + "text": "For he spake, and it was done; he commanded, and it stood fast." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9", + "version": "kjv" +} diff --git a/scripture/kjv/10/28/25/scripture.md b/scripture/kjv/10/28/25/scripture.md new file mode 100644 index 00000000..f19c8a6c --- /dev/null +++ b/scripture/kjv/10/28/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 33:9** + +9 For he spake, and it was done; he commanded, and it stood fast. + +[Tuesday 28-October, 2025](https://getbible.life/kjv/Psalms/33/9) diff --git a/scripture/kjv/10/28/25/scripture.tg b/scripture/kjv/10/28/25/scripture.tg new file mode 100644 index 00000000..32287b3a --- /dev/null +++ b/scripture/kjv/10/28/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 33:9 +9 For he spake, and it was done; he commanded, and it stood fast. + +Tuesday 28-October, 2025 diff --git a/scripture/kjv/10/28/25/scripture.tg.id b/scripture/kjv/10/28/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/28/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/28/25/scripture.today b/scripture/kjv/10/28/25/scripture.today new file mode 100644 index 00000000..84872a26 --- /dev/null +++ b/scripture/kjv/10/28/25/scripture.today @@ -0,0 +1 @@ +19 33:9 diff --git a/scripture/kjv/10/29/23/scripture.html b/scripture/kjv/10/29/23/scripture.html new file mode 100644 index 00000000..0c33f1ea --- /dev/null +++ b/scripture/kjv/10/29/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 20:6
+6 Most men will proclaim every one his own goodness: but a faithful man who can find?

+Sunday 29-October, 2023 diff --git a/scripture/kjv/10/29/23/scripture.json b/scripture/kjv/10/29/23/scripture.json new file mode 100644 index 00000000..597fbf14 --- /dev/null +++ b/scripture/kjv/10/29/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "20", + "date": "Sunday 29-October, 2023", + "getbible": "https://getbible.life/kjv/Proverbs/20/6", + "name": "Proverbs 20:6", + "scripture": [ + { + "nr": "6", + "text": "Most men will proclaim every one his own goodness: but a faithful man who can find?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6", + "version": "kjv" +} diff --git a/scripture/kjv/10/29/23/scripture.md b/scripture/kjv/10/29/23/scripture.md new file mode 100644 index 00000000..69d1365c --- /dev/null +++ b/scripture/kjv/10/29/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 20:6** + +6 Most men will proclaim every one his own goodness: but a faithful man who can find? + +[Sunday 29-October, 2023](https://getbible.life/kjv/Proverbs/20/6) diff --git a/scripture/kjv/10/29/23/scripture.tg b/scripture/kjv/10/29/23/scripture.tg new file mode 100644 index 00000000..24f88bbf --- /dev/null +++ b/scripture/kjv/10/29/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 20:6 +6 Most men will proclaim every one his own goodness: but a faithful man who can find? + +Sunday 29-October, 2023 diff --git a/scripture/kjv/10/29/23/scripture.tg.id b/scripture/kjv/10/29/23/scripture.tg.id new file mode 100644 index 00000000..1afd47a2 --- /dev/null +++ b/scripture/kjv/10/29/23/scripture.tg.id @@ -0,0 +1 @@ +1121 diff --git a/scripture/kjv/10/29/23/scripture.today b/scripture/kjv/10/29/23/scripture.today new file mode 100644 index 00000000..9f699b0a --- /dev/null +++ b/scripture/kjv/10/29/23/scripture.today @@ -0,0 +1 @@ +20 20:6 diff --git a/scripture/kjv/10/29/24/scripture.html b/scripture/kjv/10/29/24/scripture.html new file mode 100644 index 00000000..b830997e --- /dev/null +++ b/scripture/kjv/10/29/24/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 9:11
+11 If we have sown unto you spiritual things, is it a great thing if we shall reap your carnal things?

+Tuesday 29-October, 2024 diff --git a/scripture/kjv/10/29/24/scripture.json b/scripture/kjv/10/29/24/scripture.json new file mode 100644 index 00000000..ef225912 --- /dev/null +++ b/scripture/kjv/10/29/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "9", + "date": "Tuesday 29-October, 2024", + "getbible": "https://getbible.life/kjv/1 Corinthians/9/11", + "name": "1 Corinthians 9:11", + "scripture": [ + { + "nr": "11", + "text": "If we have sown unto you spiritual things, is it a great thing if we shall reap your carnal things?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/10/29/24/scripture.md b/scripture/kjv/10/29/24/scripture.md new file mode 100644 index 00000000..6393071c --- /dev/null +++ b/scripture/kjv/10/29/24/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 9:11** + +11 If we have sown unto you spiritual things, is it a great thing if we shall reap your carnal things? + +[Tuesday 29-October, 2024](https://getbible.life/kjv/1 Corinthians/9/11) diff --git a/scripture/kjv/10/29/24/scripture.tg b/scripture/kjv/10/29/24/scripture.tg new file mode 100644 index 00000000..758c6d34 --- /dev/null +++ b/scripture/kjv/10/29/24/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 9:11 +11 If we have sown unto you spiritual things, is it a great thing if we shall reap your carnal things? + +Tuesday 29-October, 2024 diff --git a/scripture/kjv/10/29/24/scripture.tg.id b/scripture/kjv/10/29/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/29/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/29/24/scripture.today b/scripture/kjv/10/29/24/scripture.today new file mode 100644 index 00000000..87833f22 --- /dev/null +++ b/scripture/kjv/10/29/24/scripture.today @@ -0,0 +1 @@ +46 9:11 diff --git a/scripture/kjv/10/29/25/scripture.html b/scripture/kjv/10/29/25/scripture.html new file mode 100644 index 00000000..1cab25aa --- /dev/null +++ b/scripture/kjv/10/29/25/scripture.html @@ -0,0 +1,3 @@ +Proverbs 12:19
+19 The lip of truth shall be established for ever: but a lying tongue is but for a moment.

+Wednesday 29-October, 2025 diff --git a/scripture/kjv/10/29/25/scripture.json b/scripture/kjv/10/29/25/scripture.json new file mode 100644 index 00000000..16d1ca45 --- /dev/null +++ b/scripture/kjv/10/29/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "12", + "date": "Wednesday 29-October, 2025", + "getbible": "https://getbible.life/kjv/Proverbs/12/19", + "name": "Proverbs 12:19", + "scripture": [ + { + "nr": "19", + "text": "The lip of truth shall be established for ever: but a lying tongue is but for a moment." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "19", + "version": "kjv" +} diff --git a/scripture/kjv/10/29/25/scripture.md b/scripture/kjv/10/29/25/scripture.md new file mode 100644 index 00000000..724ffd60 --- /dev/null +++ b/scripture/kjv/10/29/25/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 12:19** + +19 The lip of truth shall be established for ever: but a lying tongue is but for a moment. + +[Wednesday 29-October, 2025](https://getbible.life/kjv/Proverbs/12/19) diff --git a/scripture/kjv/10/29/25/scripture.tg b/scripture/kjv/10/29/25/scripture.tg new file mode 100644 index 00000000..f1903fdd --- /dev/null +++ b/scripture/kjv/10/29/25/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 12:19 +19 The lip of truth shall be established for ever: but a lying tongue is but for a moment. + +Wednesday 29-October, 2025 diff --git a/scripture/kjv/10/29/25/scripture.tg.id b/scripture/kjv/10/29/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/29/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/29/25/scripture.today b/scripture/kjv/10/29/25/scripture.today new file mode 100644 index 00000000..3ce338e1 --- /dev/null +++ b/scripture/kjv/10/29/25/scripture.today @@ -0,0 +1 @@ +20 12:19 diff --git a/scripture/kjv/10/30/23/scripture.html b/scripture/kjv/10/30/23/scripture.html new file mode 100644 index 00000000..2f90b654 --- /dev/null +++ b/scripture/kjv/10/30/23/scripture.html @@ -0,0 +1,3 @@ +Hebrews 6:1-2
+1 Therefore leaving the principles of the doctrine of Christ, let us go on unto perfection; not laying again the foundation of repentance from dead works, and of faith toward God, 2 Of the doctrine of baptisms, and of laying on of hands, and of resurrection of the dead, and of eternal judgment.

+Monday 30-October, 2023 diff --git a/scripture/kjv/10/30/23/scripture.json b/scripture/kjv/10/30/23/scripture.json new file mode 100644 index 00000000..a3b874de --- /dev/null +++ b/scripture/kjv/10/30/23/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Hebrews", + "chapter": "6", + "date": "Monday 30-October, 2023", + "getbible": "https://getbible.life/kjv/Hebrews/6/1-2", + "name": "Hebrews 6:1-2", + "scripture": [ + { + "nr": "1", + "text": "Therefore leaving the principles of the doctrine of Christ, let us go on unto perfection; not laying again the foundation of repentance from dead works, and of faith toward God," + }, + { + "nr": "2", + "text": "Of the doctrine of baptisms, and of laying on of hands, and of resurrection of the dead, and of eternal judgment." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-2", + "version": "kjv" +} diff --git a/scripture/kjv/10/30/23/scripture.md b/scripture/kjv/10/30/23/scripture.md new file mode 100644 index 00000000..6f2b6844 --- /dev/null +++ b/scripture/kjv/10/30/23/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 6:1-2** + +1 Therefore leaving the principles of the doctrine of Christ, let us go on unto perfection; not laying again the foundation of repentance from dead works, and of faith toward God, 2 Of the doctrine of baptisms, and of laying on of hands, and of resurrection of the dead, and of eternal judgment. + +[Monday 30-October, 2023](https://getbible.life/kjv/Hebrews/6/1-2) diff --git a/scripture/kjv/10/30/23/scripture.tg b/scripture/kjv/10/30/23/scripture.tg new file mode 100644 index 00000000..4497b537 --- /dev/null +++ b/scripture/kjv/10/30/23/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 6:1-2 +1 Therefore leaving the principles of the doctrine of Christ, let us go on unto perfection; not laying again the foundation of repentance from dead works, and of faith toward God, 2 Of the doctrine of baptisms, and of laying on of hands, and of resurrection of the dead, and of eternal judgment. + +Monday 30-October, 2023 diff --git a/scripture/kjv/10/30/23/scripture.tg.id b/scripture/kjv/10/30/23/scripture.tg.id new file mode 100644 index 00000000..aa309ccc --- /dev/null +++ b/scripture/kjv/10/30/23/scripture.tg.id @@ -0,0 +1 @@ +1122 diff --git a/scripture/kjv/10/30/23/scripture.today b/scripture/kjv/10/30/23/scripture.today new file mode 100644 index 00000000..20e89923 --- /dev/null +++ b/scripture/kjv/10/30/23/scripture.today @@ -0,0 +1 @@ +58 6:1-2 diff --git a/scripture/kjv/10/30/24/scripture.html b/scripture/kjv/10/30/24/scripture.html new file mode 100644 index 00000000..d9527f7a --- /dev/null +++ b/scripture/kjv/10/30/24/scripture.html @@ -0,0 +1,3 @@ +John 20:25-29
+25 The other disciples therefore said unto him, We have seen the Lord. But he said unto them, Except I shall see in his hands the print of the nails, and put my finger into the print of the nails, and thrust my hand into his side, I will not believe. 26 And after eight days again his disciples were within, and Thomas with them: then came Jesus, the doors being shut, and stood in the midst, and said, Peace be unto you. 27 Then saith he to Thomas, Reach hither thy finger, and behold my hands; and reach hither thy hand, and thrust it into my side: and be not faithless, but believing. 28 And Thomas answered and said unto him, My Lord and my God. 29 Jesus saith unto him, Thomas, because thou hast seen me, thou hast believed: blessed are they that have not seen, and yet have believed.

+Wednesday 30-October, 2024 diff --git a/scripture/kjv/10/30/24/scripture.json b/scripture/kjv/10/30/24/scripture.json new file mode 100644 index 00000000..35352f5d --- /dev/null +++ b/scripture/kjv/10/30/24/scripture.json @@ -0,0 +1,33 @@ +{ + "book": "John", + "chapter": "20", + "date": "Wednesday 30-October, 2024", + "getbible": "https://getbible.life/kjv/John/20/25-29", + "name": "John 20:25-29", + "scripture": [ + { + "nr": "25", + "text": "The other disciples therefore said unto him, We have seen the Lord. But he said unto them, Except I shall see in his hands the print of the nails, and put my finger into the print of the nails, and thrust my hand into his side, I will not believe." + }, + { + "nr": "26", + "text": "And after eight days again his disciples were within, and Thomas with them: then came Jesus, the doors being shut, and stood in the midst, and said, Peace be unto you." + }, + { + "nr": "27", + "text": "Then saith he to Thomas, Reach hither thy finger, and behold my hands; and reach hither thy hand, and thrust it into my side: and be not faithless, but believing." + }, + { + "nr": "28", + "text": "And Thomas answered and said unto him, My Lord and my God." + }, + { + "nr": "29", + "text": "Jesus saith unto him, Thomas, because thou hast seen me, thou hast believed: blessed are they that have not seen, and yet have believed." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "25-29", + "version": "kjv" +} diff --git a/scripture/kjv/10/30/24/scripture.md b/scripture/kjv/10/30/24/scripture.md new file mode 100644 index 00000000..568dc400 --- /dev/null +++ b/scripture/kjv/10/30/24/scripture.md @@ -0,0 +1,5 @@ +**John 20:25-29** + +25 The other disciples therefore said unto him, We have seen the Lord. But he said unto them, Except I shall see in his hands the print of the nails, and put my finger into the print of the nails, and thrust my hand into his side, I will not believe. 26 And after eight days again his disciples were within, and Thomas with them: then came Jesus, the doors being shut, and stood in the midst, and said, Peace be unto you. 27 Then saith he to Thomas, Reach hither thy finger, and behold my hands; and reach hither thy hand, and thrust it into my side: and be not faithless, but believing. 28 And Thomas answered and said unto him, My Lord and my God. 29 Jesus saith unto him, Thomas, because thou hast seen me, thou hast believed: blessed are they that have not seen, and yet have believed. + +[Wednesday 30-October, 2024](https://getbible.life/kjv/John/20/25-29) diff --git a/scripture/kjv/10/30/24/scripture.tg b/scripture/kjv/10/30/24/scripture.tg new file mode 100644 index 00000000..5df26631 --- /dev/null +++ b/scripture/kjv/10/30/24/scripture.tg @@ -0,0 +1,4 @@ +John 20:25-29 +25 The other disciples therefore said unto him, We have seen the Lord. But he said unto them, Except I shall see in his hands the print of the nails, and put my finger into the print of the nails, and thrust my hand into his side, I will not believe. 26 And after eight days again his disciples were within, and Thomas with them: then came Jesus, the doors being shut, and stood in the midst, and said, Peace be unto you. 27 Then saith he to Thomas, Reach hither thy finger, and behold my hands; and reach hither thy hand, and thrust it into my side: and be not faithless, but believing. 28 And Thomas answered and said unto him, My Lord and my God. 29 Jesus saith unto him, Thomas, because thou hast seen me, thou hast believed: blessed are they that have not seen, and yet have believed. + +Wednesday 30-October, 2024 diff --git a/scripture/kjv/10/30/24/scripture.tg.id b/scripture/kjv/10/30/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/30/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/30/24/scripture.today b/scripture/kjv/10/30/24/scripture.today new file mode 100644 index 00000000..4aeac7d0 --- /dev/null +++ b/scripture/kjv/10/30/24/scripture.today @@ -0,0 +1 @@ +43 20:25-29 diff --git a/scripture/kjv/10/30/25/scripture.html b/scripture/kjv/10/30/25/scripture.html new file mode 100644 index 00000000..95a18ba9 --- /dev/null +++ b/scripture/kjv/10/30/25/scripture.html @@ -0,0 +1,3 @@ +Amos 5:18-24
+18 Woe unto you that desire the day of the Lord! to what end is it for you? the day of the Lord is darkness, and not light. 19 As if a man did flee from a lion, and a bear met him; or went into the house, and leaned his hand on the wall, and a serpent bit him. 20 Shall not the day of the Lord be darkness, and not light? even very dark, and no brightness in it? 21 I hate, I despise your feast days, and I will not smell in your solemn assemblies. 22 Though ye offer me burnt offerings and your meat offerings, I will not accept them: neither will I regard the peace offerings of your fat beasts. 23 Take thou away from me the noise of thy songs; for I will not hear the melody of thy viols. 24 But let judgment run down as waters, and righteousness as a mighty stream.

+Thursday 30-October, 2025 diff --git a/scripture/kjv/10/30/25/scripture.json b/scripture/kjv/10/30/25/scripture.json new file mode 100644 index 00000000..74db8c18 --- /dev/null +++ b/scripture/kjv/10/30/25/scripture.json @@ -0,0 +1,41 @@ +{ + "book": "Amos", + "chapter": "5", + "date": "Thursday 30-October, 2025", + "getbible": "https://getbible.life/kjv/Amos/5/18-24", + "name": "Amos 5:18-24", + "scripture": [ + { + "nr": "18", + "text": "Woe unto you that desire the day of the Lord! to what end is it for you? the day of the Lord is darkness, and not light." + }, + { + "nr": "19", + "text": "As if a man did flee from a lion, and a bear met him; or went into the house, and leaned his hand on the wall, and a serpent bit him." + }, + { + "nr": "20", + "text": "Shall not the day of the Lord be darkness, and not light? even very dark, and no brightness in it?" + }, + { + "nr": "21", + "text": "I hate, I despise your feast days, and I will not smell in your solemn assemblies." + }, + { + "nr": "22", + "text": "Though ye offer me burnt offerings and your meat offerings, I will not accept them: neither will I regard the peace offerings of your fat beasts." + }, + { + "nr": "23", + "text": "Take thou away from me the noise of thy songs; for I will not hear the melody of thy viols." + }, + { + "nr": "24", + "text": "But let judgment run down as waters, and righteousness as a mighty stream." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18-24", + "version": "kjv" +} diff --git a/scripture/kjv/10/30/25/scripture.md b/scripture/kjv/10/30/25/scripture.md new file mode 100644 index 00000000..432f957b --- /dev/null +++ b/scripture/kjv/10/30/25/scripture.md @@ -0,0 +1,5 @@ +**Amos 5:18-24** + +18 Woe unto you that desire the day of the Lord! to what end is it for you? the day of the Lord is darkness, and not light. 19 As if a man did flee from a lion, and a bear met him; or went into the house, and leaned his hand on the wall, and a serpent bit him. 20 Shall not the day of the Lord be darkness, and not light? even very dark, and no brightness in it? 21 I hate, I despise your feast days, and I will not smell in your solemn assemblies. 22 Though ye offer me burnt offerings and your meat offerings, I will not accept them: neither will I regard the peace offerings of your fat beasts. 23 Take thou away from me the noise of thy songs; for I will not hear the melody of thy viols. 24 But let judgment run down as waters, and righteousness as a mighty stream. + +[Thursday 30-October, 2025](https://getbible.life/kjv/Amos/5/18-24) diff --git a/scripture/kjv/10/30/25/scripture.tg b/scripture/kjv/10/30/25/scripture.tg new file mode 100644 index 00000000..3118c9cf --- /dev/null +++ b/scripture/kjv/10/30/25/scripture.tg @@ -0,0 +1,4 @@ +Amos 5:18-24 +18 Woe unto you that desire the day of the Lord! to what end is it for you? the day of the Lord is darkness, and not light. 19 As if a man did flee from a lion, and a bear met him; or went into the house, and leaned his hand on the wall, and a serpent bit him. 20 Shall not the day of the Lord be darkness, and not light? even very dark, and no brightness in it? 21 I hate, I despise your feast days, and I will not smell in your solemn assemblies. 22 Though ye offer me burnt offerings and your meat offerings, I will not accept them: neither will I regard the peace offerings of your fat beasts. 23 Take thou away from me the noise of thy songs; for I will not hear the melody of thy viols. 24 But let judgment run down as waters, and righteousness as a mighty stream. + +Thursday 30-October, 2025 diff --git a/scripture/kjv/10/30/25/scripture.tg.id b/scripture/kjv/10/30/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/30/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/30/25/scripture.today b/scripture/kjv/10/30/25/scripture.today new file mode 100644 index 00000000..4ef2e0bd --- /dev/null +++ b/scripture/kjv/10/30/25/scripture.today @@ -0,0 +1 @@ +30 5:18-24 diff --git a/scripture/kjv/10/31/23/scripture.html b/scripture/kjv/10/31/23/scripture.html new file mode 100644 index 00000000..da788160 --- /dev/null +++ b/scripture/kjv/10/31/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 10:18
+18 He that hideth hatred with lying lips, and he that uttereth a slander, is a fool.

+Tuesday 31-October, 2023 diff --git a/scripture/kjv/10/31/23/scripture.json b/scripture/kjv/10/31/23/scripture.json new file mode 100644 index 00000000..8f5bd527 --- /dev/null +++ b/scripture/kjv/10/31/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "10", + "date": "Tuesday 31-October, 2023", + "getbible": "https://getbible.life/kjv/Proverbs/10/18", + "name": "Proverbs 10:18", + "scripture": [ + { + "nr": "18", + "text": "He that hideth hatred with lying lips, and he that uttereth a slander, is a fool." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18", + "version": "kjv" +} diff --git a/scripture/kjv/10/31/23/scripture.md b/scripture/kjv/10/31/23/scripture.md new file mode 100644 index 00000000..870cacd6 --- /dev/null +++ b/scripture/kjv/10/31/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 10:18** + +18 He that hideth hatred with lying lips, and he that uttereth a slander, is a fool. + +[Tuesday 31-October, 2023](https://getbible.life/kjv/Proverbs/10/18) diff --git a/scripture/kjv/10/31/23/scripture.tg b/scripture/kjv/10/31/23/scripture.tg new file mode 100644 index 00000000..d24d9284 --- /dev/null +++ b/scripture/kjv/10/31/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 10:18 +18 He that hideth hatred with lying lips, and he that uttereth a slander, is a fool. + +Tuesday 31-October, 2023 diff --git a/scripture/kjv/10/31/23/scripture.tg.id b/scripture/kjv/10/31/23/scripture.tg.id new file mode 100644 index 00000000..b065a3fa --- /dev/null +++ b/scripture/kjv/10/31/23/scripture.tg.id @@ -0,0 +1 @@ +1123 diff --git a/scripture/kjv/10/31/23/scripture.today b/scripture/kjv/10/31/23/scripture.today new file mode 100644 index 00000000..febaacee --- /dev/null +++ b/scripture/kjv/10/31/23/scripture.today @@ -0,0 +1 @@ +20 10:18 diff --git a/scripture/kjv/10/31/24/scripture.html b/scripture/kjv/10/31/24/scripture.html new file mode 100644 index 00000000..abb51511 --- /dev/null +++ b/scripture/kjv/10/31/24/scripture.html @@ -0,0 +1,3 @@ +Matthew 21:31-32
+31 Whether of them twain did the will of his father? They say unto him, The first. Jesus saith unto them, Verily I say unto you, That the publicans and the harlots go into the kingdom of God before you. 32 For John came unto you in the way of righteousness, and ye believed him not: but the publicans and the harlots believed him: and ye, when ye had seen it, repented not afterward, that ye might believe him.

+Thursday 31-October, 2024 diff --git a/scripture/kjv/10/31/24/scripture.json b/scripture/kjv/10/31/24/scripture.json new file mode 100644 index 00000000..5ddc7b6c --- /dev/null +++ b/scripture/kjv/10/31/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Matthew", + "chapter": "21", + "date": "Thursday 31-October, 2024", + "getbible": "https://getbible.life/kjv/Matthew/21/31-32", + "name": "Matthew 21:31-32", + "scripture": [ + { + "nr": "31", + "text": "Whether of them twain did the will of his father? They say unto him, The first. Jesus saith unto them, Verily I say unto you, That the publicans and the harlots go into the kingdom of God before you." + }, + { + "nr": "32", + "text": "For John came unto you in the way of righteousness, and ye believed him not: but the publicans and the harlots believed him: and ye, when ye had seen it, repented not afterward, that ye might believe him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "31-32", + "version": "kjv" +} diff --git a/scripture/kjv/10/31/24/scripture.md b/scripture/kjv/10/31/24/scripture.md new file mode 100644 index 00000000..6853f544 --- /dev/null +++ b/scripture/kjv/10/31/24/scripture.md @@ -0,0 +1,5 @@ +**Matthew 21:31-32** + +31 Whether of them twain did the will of his father? They say unto him, The first. Jesus saith unto them, Verily I say unto you, That the publicans and the harlots go into the kingdom of God before you. 32 For John came unto you in the way of righteousness, and ye believed him not: but the publicans and the harlots believed him: and ye, when ye had seen it, repented not afterward, that ye might believe him. + +[Thursday 31-October, 2024](https://getbible.life/kjv/Matthew/21/31-32) diff --git a/scripture/kjv/10/31/24/scripture.tg b/scripture/kjv/10/31/24/scripture.tg new file mode 100644 index 00000000..81d02ecf --- /dev/null +++ b/scripture/kjv/10/31/24/scripture.tg @@ -0,0 +1,4 @@ +Matthew 21:31-32 +31 Whether of them twain did the will of his father? They say unto him, The first. Jesus saith unto them, Verily I say unto you, That the publicans and the harlots go into the kingdom of God before you. 32 For John came unto you in the way of righteousness, and ye believed him not: but the publicans and the harlots believed him: and ye, when ye had seen it, repented not afterward, that ye might believe him. + +Thursday 31-October, 2024 diff --git a/scripture/kjv/10/31/24/scripture.tg.id b/scripture/kjv/10/31/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/31/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/31/24/scripture.today b/scripture/kjv/10/31/24/scripture.today new file mode 100644 index 00000000..acd42e2a --- /dev/null +++ b/scripture/kjv/10/31/24/scripture.today @@ -0,0 +1 @@ +40 21:31-32 diff --git a/scripture/kjv/10/31/25/scripture.html b/scripture/kjv/10/31/25/scripture.html new file mode 100644 index 00000000..90655969 --- /dev/null +++ b/scripture/kjv/10/31/25/scripture.html @@ -0,0 +1,3 @@ +Mark 10:39
+39 And they said unto him, We can. And Jesus said unto them, Ye shall indeed drink of the cup that I drink of; and with the baptism that I am baptized withal shall ye be baptized:

+Friday 31-October, 2025 diff --git a/scripture/kjv/10/31/25/scripture.json b/scripture/kjv/10/31/25/scripture.json new file mode 100644 index 00000000..866138f5 --- /dev/null +++ b/scripture/kjv/10/31/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Mark", + "chapter": "10", + "date": "Friday 31-October, 2025", + "getbible": "https://getbible.life/kjv/Mark/10/39", + "name": "Mark 10:39", + "scripture": [ + { + "nr": "39", + "text": "And they said unto him, We can. And Jesus said unto them, Ye shall indeed drink of the cup that I drink of; and with the baptism that I am baptized withal shall ye be baptized:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "39", + "version": "kjv" +} diff --git a/scripture/kjv/10/31/25/scripture.md b/scripture/kjv/10/31/25/scripture.md new file mode 100644 index 00000000..5a090555 --- /dev/null +++ b/scripture/kjv/10/31/25/scripture.md @@ -0,0 +1,5 @@ +**Mark 10:39** + +39 And they said unto him, We can. And Jesus said unto them, Ye shall indeed drink of the cup that I drink of; and with the baptism that I am baptized withal shall ye be baptized: + +[Friday 31-October, 2025](https://getbible.life/kjv/Mark/10/39) diff --git a/scripture/kjv/10/31/25/scripture.tg b/scripture/kjv/10/31/25/scripture.tg new file mode 100644 index 00000000..015af993 --- /dev/null +++ b/scripture/kjv/10/31/25/scripture.tg @@ -0,0 +1,4 @@ +Mark 10:39 +39 And they said unto him, We can. And Jesus said unto them, Ye shall indeed drink of the cup that I drink of; and with the baptism that I am baptized withal shall ye be baptized: + +Friday 31-October, 2025 diff --git a/scripture/kjv/10/31/25/scripture.tg.id b/scripture/kjv/10/31/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/10/31/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/10/31/25/scripture.today b/scripture/kjv/10/31/25/scripture.today new file mode 100644 index 00000000..8fab5107 --- /dev/null +++ b/scripture/kjv/10/31/25/scripture.today @@ -0,0 +1 @@ +41 10:39 diff --git a/scripture/kjv/11/01/23/scripture.html b/scripture/kjv/11/01/23/scripture.html new file mode 100644 index 00000000..b8a52378 --- /dev/null +++ b/scripture/kjv/11/01/23/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 12:24
+24 For there shall be no more any vain vision nor flattering divination within the house of Israel.

+Wednesday 01-November, 2023 diff --git a/scripture/kjv/11/01/23/scripture.json b/scripture/kjv/11/01/23/scripture.json new file mode 100644 index 00000000..2c5001b9 --- /dev/null +++ b/scripture/kjv/11/01/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ezekiel", + "chapter": "12", + "date": "Wednesday 01-November, 2023", + "getbible": "https://getbible.life/kjv/Ezekiel/12/24", + "name": "Ezekiel 12:24", + "scripture": [ + { + "nr": "24", + "text": "For there shall be no more any vain vision nor flattering divination within the house of Israel." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "24", + "version": "kjv" +} diff --git a/scripture/kjv/11/01/23/scripture.md b/scripture/kjv/11/01/23/scripture.md new file mode 100644 index 00000000..0a948b5b --- /dev/null +++ b/scripture/kjv/11/01/23/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 12:24** + +24 For there shall be no more any vain vision nor flattering divination within the house of Israel. + +[Wednesday 01-November, 2023](https://getbible.life/kjv/Ezekiel/12/24) diff --git a/scripture/kjv/11/01/23/scripture.tg b/scripture/kjv/11/01/23/scripture.tg new file mode 100644 index 00000000..262800e5 --- /dev/null +++ b/scripture/kjv/11/01/23/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 12:24 +24 For there shall be no more any vain vision nor flattering divination within the house of Israel. + +Wednesday 01-November, 2023 diff --git a/scripture/kjv/11/01/23/scripture.tg.id b/scripture/kjv/11/01/23/scripture.tg.id new file mode 100644 index 00000000..4707d3c6 --- /dev/null +++ b/scripture/kjv/11/01/23/scripture.tg.id @@ -0,0 +1 @@ +1124 diff --git a/scripture/kjv/11/01/23/scripture.today b/scripture/kjv/11/01/23/scripture.today new file mode 100644 index 00000000..071ff3a2 --- /dev/null +++ b/scripture/kjv/11/01/23/scripture.today @@ -0,0 +1 @@ +26 12:24 diff --git a/scripture/kjv/11/01/24/scripture.html b/scripture/kjv/11/01/24/scripture.html new file mode 100644 index 00000000..dc38411e --- /dev/null +++ b/scripture/kjv/11/01/24/scripture.html @@ -0,0 +1,3 @@ +1 John 2:4-6
+4 He that saith, I know him, and keepeth not his commandments, is a liar, and the truth is not in him. 5 But whoso keepeth his word, in him verily is the love of God perfected: hereby know we that we are in him. 6 He that saith he abideth in him ought himself also so to walk, even as he walked.

+Friday 01-November, 2024 diff --git a/scripture/kjv/11/01/24/scripture.json b/scripture/kjv/11/01/24/scripture.json new file mode 100644 index 00000000..ebce4edd --- /dev/null +++ b/scripture/kjv/11/01/24/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "1 John", + "chapter": "2", + "date": "Friday 01-November, 2024", + "getbible": "https://getbible.life/kjv/1 John/2/4-6", + "name": "1 John 2:4-6", + "scripture": [ + { + "nr": "4", + "text": "He that saith, I know him, and keepeth not his commandments, is a liar, and the truth is not in him." + }, + { + "nr": "5", + "text": "But whoso keepeth his word, in him verily is the love of God perfected: hereby know we that we are in him." + }, + { + "nr": "6", + "text": "He that saith he abideth in him ought himself also so to walk, even as he walked." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4-6", + "version": "kjv" +} diff --git a/scripture/kjv/11/01/24/scripture.md b/scripture/kjv/11/01/24/scripture.md new file mode 100644 index 00000000..9ed071c0 --- /dev/null +++ b/scripture/kjv/11/01/24/scripture.md @@ -0,0 +1,5 @@ +**1 John 2:4-6** + +4 He that saith, I know him, and keepeth not his commandments, is a liar, and the truth is not in him. 5 But whoso keepeth his word, in him verily is the love of God perfected: hereby know we that we are in him. 6 He that saith he abideth in him ought himself also so to walk, even as he walked. + +[Friday 01-November, 2024](https://getbible.life/kjv/1 John/2/4-6) diff --git a/scripture/kjv/11/01/24/scripture.tg b/scripture/kjv/11/01/24/scripture.tg new file mode 100644 index 00000000..92e0befb --- /dev/null +++ b/scripture/kjv/11/01/24/scripture.tg @@ -0,0 +1,4 @@ +1 John 2:4-6 +4 He that saith, I know him, and keepeth not his commandments, is a liar, and the truth is not in him. 5 But whoso keepeth his word, in him verily is the love of God perfected: hereby know we that we are in him. 6 He that saith he abideth in him ought himself also so to walk, even as he walked. + +Friday 01-November, 2024 diff --git a/scripture/kjv/11/01/24/scripture.tg.id b/scripture/kjv/11/01/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/01/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/01/24/scripture.today b/scripture/kjv/11/01/24/scripture.today new file mode 100644 index 00000000..8a4f8d1b --- /dev/null +++ b/scripture/kjv/11/01/24/scripture.today @@ -0,0 +1 @@ +62 2:4-6 diff --git a/scripture/kjv/11/01/25/scripture.html b/scripture/kjv/11/01/25/scripture.html new file mode 100644 index 00000000..3b67fa87 --- /dev/null +++ b/scripture/kjv/11/01/25/scripture.html @@ -0,0 +1,3 @@ +John 13:17
+17 If ye know these things, happy are ye if ye do them.

+Saturday 01-November, 2025 diff --git a/scripture/kjv/11/01/25/scripture.json b/scripture/kjv/11/01/25/scripture.json new file mode 100644 index 00000000..e2eb13ae --- /dev/null +++ b/scripture/kjv/11/01/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "13", + "date": "Saturday 01-November, 2025", + "getbible": "https://getbible.life/kjv/John/13/17", + "name": "John 13:17", + "scripture": [ + { + "nr": "17", + "text": "If ye know these things, happy are ye if ye do them." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17", + "version": "kjv" +} diff --git a/scripture/kjv/11/01/25/scripture.md b/scripture/kjv/11/01/25/scripture.md new file mode 100644 index 00000000..66882002 --- /dev/null +++ b/scripture/kjv/11/01/25/scripture.md @@ -0,0 +1,5 @@ +**John 13:17** + +17 If ye know these things, happy are ye if ye do them. + +[Saturday 01-November, 2025](https://getbible.life/kjv/John/13/17) diff --git a/scripture/kjv/11/01/25/scripture.tg b/scripture/kjv/11/01/25/scripture.tg new file mode 100644 index 00000000..a8352119 --- /dev/null +++ b/scripture/kjv/11/01/25/scripture.tg @@ -0,0 +1,4 @@ +John 13:17 +17 If ye know these things, happy are ye if ye do them. + +Saturday 01-November, 2025 diff --git a/scripture/kjv/11/01/25/scripture.tg.id b/scripture/kjv/11/01/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/01/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/01/25/scripture.today b/scripture/kjv/11/01/25/scripture.today new file mode 100644 index 00000000..347a4c7e --- /dev/null +++ b/scripture/kjv/11/01/25/scripture.today @@ -0,0 +1 @@ +43 13:17 diff --git a/scripture/kjv/11/02/23/scripture.html b/scripture/kjv/11/02/23/scripture.html new file mode 100644 index 00000000..3ef26503 --- /dev/null +++ b/scripture/kjv/11/02/23/scripture.html @@ -0,0 +1,3 @@ +Joshua 21:44-45
+44 And the Lord gave them rest round about, according to all that he sware unto their fathers: and there stood not a man of all their enemies before them; the Lord delivered all their enemies into their hand. 45 There failed not ought of any good thing which the Lord had spoken unto the house of Israel; all came to pass.

+Thursday 02-November, 2023 diff --git a/scripture/kjv/11/02/23/scripture.json b/scripture/kjv/11/02/23/scripture.json new file mode 100644 index 00000000..a0bf9a68 --- /dev/null +++ b/scripture/kjv/11/02/23/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Joshua", + "chapter": "21", + "date": "Thursday 02-November, 2023", + "getbible": "https://getbible.life/kjv/Joshua/21/44-45", + "name": "Joshua 21:44-45", + "scripture": [ + { + "nr": "44", + "text": "And the Lord gave them rest round about, according to all that he sware unto their fathers: and there stood not a man of all their enemies before them; the Lord delivered all their enemies into their hand." + }, + { + "nr": "45", + "text": "There failed not ought of any good thing which the Lord had spoken unto the house of Israel; all came to pass. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "44-45", + "version": "kjv" +} diff --git a/scripture/kjv/11/02/23/scripture.md b/scripture/kjv/11/02/23/scripture.md new file mode 100644 index 00000000..9d5e750b --- /dev/null +++ b/scripture/kjv/11/02/23/scripture.md @@ -0,0 +1,5 @@ +**Joshua 21:44-45** + +44 And the Lord gave them rest round about, according to all that he sware unto their fathers: and there stood not a man of all their enemies before them; the Lord delivered all their enemies into their hand. 45 There failed not ought of any good thing which the Lord had spoken unto the house of Israel; all came to pass. + +[Thursday 02-November, 2023](https://getbible.life/kjv/Joshua/21/44-45) diff --git a/scripture/kjv/11/02/23/scripture.tg b/scripture/kjv/11/02/23/scripture.tg new file mode 100644 index 00000000..2bc4c8d9 --- /dev/null +++ b/scripture/kjv/11/02/23/scripture.tg @@ -0,0 +1,4 @@ +Joshua 21:44-45 +44 And the Lord gave them rest round about, according to all that he sware unto their fathers: and there stood not a man of all their enemies before them; the Lord delivered all their enemies into their hand. 45 There failed not ought of any good thing which the Lord had spoken unto the house of Israel; all came to pass. + +Thursday 02-November, 2023 diff --git a/scripture/kjv/11/02/23/scripture.tg.id b/scripture/kjv/11/02/23/scripture.tg.id new file mode 100644 index 00000000..70614653 --- /dev/null +++ b/scripture/kjv/11/02/23/scripture.tg.id @@ -0,0 +1 @@ +1125 diff --git a/scripture/kjv/11/02/23/scripture.today b/scripture/kjv/11/02/23/scripture.today new file mode 100644 index 00000000..2aae54b6 --- /dev/null +++ b/scripture/kjv/11/02/23/scripture.today @@ -0,0 +1 @@ +6 21:44-45 diff --git a/scripture/kjv/11/02/24/scripture.html b/scripture/kjv/11/02/24/scripture.html new file mode 100644 index 00000000..82361521 --- /dev/null +++ b/scripture/kjv/11/02/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 25:26
+26 A righteous man falling down before the wicked is as a troubled fountain, and a corrupt spring.

+Saturday 02-November, 2024 diff --git a/scripture/kjv/11/02/24/scripture.json b/scripture/kjv/11/02/24/scripture.json new file mode 100644 index 00000000..7aaca972 --- /dev/null +++ b/scripture/kjv/11/02/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "25", + "date": "Saturday 02-November, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/25/26", + "name": "Proverbs 25:26", + "scripture": [ + { + "nr": "26", + "text": "A righteous man falling down before the wicked is as a troubled fountain, and a corrupt spring." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "26", + "version": "kjv" +} diff --git a/scripture/kjv/11/02/24/scripture.md b/scripture/kjv/11/02/24/scripture.md new file mode 100644 index 00000000..f0eb9b56 --- /dev/null +++ b/scripture/kjv/11/02/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 25:26** + +26 A righteous man falling down before the wicked is as a troubled fountain, and a corrupt spring. + +[Saturday 02-November, 2024](https://getbible.life/kjv/Proverbs/25/26) diff --git a/scripture/kjv/11/02/24/scripture.tg b/scripture/kjv/11/02/24/scripture.tg new file mode 100644 index 00000000..01e3e60c --- /dev/null +++ b/scripture/kjv/11/02/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 25:26 +26 A righteous man falling down before the wicked is as a troubled fountain, and a corrupt spring. + +Saturday 02-November, 2024 diff --git a/scripture/kjv/11/02/24/scripture.tg.id b/scripture/kjv/11/02/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/02/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/02/24/scripture.today b/scripture/kjv/11/02/24/scripture.today new file mode 100644 index 00000000..a6516e71 --- /dev/null +++ b/scripture/kjv/11/02/24/scripture.today @@ -0,0 +1 @@ +20 25:26 diff --git a/scripture/kjv/11/02/25/scripture.html b/scripture/kjv/11/02/25/scripture.html new file mode 100644 index 00000000..6dd4e8f6 --- /dev/null +++ b/scripture/kjv/11/02/25/scripture.html @@ -0,0 +1,3 @@ +1 Chronicles 4:10
+10 And Jabez called on the God of Israel, saying, Oh that thou wouldest bless me indeed, and enlarge my coast, and that thine hand might be with me, and that thou wouldest keep me from evil, that it may not grieve me! And God granted him that which he requested.

+Sunday 02-November, 2025 diff --git a/scripture/kjv/11/02/25/scripture.json b/scripture/kjv/11/02/25/scripture.json new file mode 100644 index 00000000..d539edf4 --- /dev/null +++ b/scripture/kjv/11/02/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Chronicles", + "chapter": "4", + "date": "Sunday 02-November, 2025", + "getbible": "https://getbible.life/kjv/1 Chronicles/4/10", + "name": "1 Chronicles 4:10", + "scripture": [ + { + "nr": "10", + "text": "And Jabez called on the God of Israel, saying, Oh that thou wouldest bless me indeed, and enlarge my coast, and that thine hand might be with me, and that thou wouldest keep me from evil, that it may not grieve me! And God granted him that which he requested." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/11/02/25/scripture.md b/scripture/kjv/11/02/25/scripture.md new file mode 100644 index 00000000..b6c493c4 --- /dev/null +++ b/scripture/kjv/11/02/25/scripture.md @@ -0,0 +1,5 @@ +**1 Chronicles 4:10** + +10 And Jabez called on the God of Israel, saying, Oh that thou wouldest bless me indeed, and enlarge my coast, and that thine hand might be with me, and that thou wouldest keep me from evil, that it may not grieve me! And God granted him that which he requested. + +[Sunday 02-November, 2025](https://getbible.life/kjv/1 Chronicles/4/10) diff --git a/scripture/kjv/11/02/25/scripture.tg b/scripture/kjv/11/02/25/scripture.tg new file mode 100644 index 00000000..895d8950 --- /dev/null +++ b/scripture/kjv/11/02/25/scripture.tg @@ -0,0 +1,4 @@ +1 Chronicles 4:10 +10 And Jabez called on the God of Israel, saying, Oh that thou wouldest bless me indeed, and enlarge my coast, and that thine hand might be with me, and that thou wouldest keep me from evil, that it may not grieve me! And God granted him that which he requested. + +Sunday 02-November, 2025 diff --git a/scripture/kjv/11/02/25/scripture.tg.id b/scripture/kjv/11/02/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/02/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/02/25/scripture.today b/scripture/kjv/11/02/25/scripture.today new file mode 100644 index 00000000..741fb916 --- /dev/null +++ b/scripture/kjv/11/02/25/scripture.today @@ -0,0 +1 @@ +13 4:10 diff --git a/scripture/kjv/11/03/23/scripture.html b/scripture/kjv/11/03/23/scripture.html new file mode 100644 index 00000000..26c591de --- /dev/null +++ b/scripture/kjv/11/03/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 43:3-4
+3 O send out thy light and thy truth: let them lead me; let them bring me unto thy holy hill, and to thy tabernacles. 4 Then will I go unto the altar of God, unto God my exceeding joy: yea, upon the harp will I praise thee, O God my God.

+Friday 03-November, 2023 diff --git a/scripture/kjv/11/03/23/scripture.json b/scripture/kjv/11/03/23/scripture.json new file mode 100644 index 00000000..59539f75 --- /dev/null +++ b/scripture/kjv/11/03/23/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Psalms", + "chapter": "43", + "date": "Friday 03-November, 2023", + "getbible": "https://getbible.life/kjv/Psalms/43/3-4", + "name": "Psalms 43:3-4", + "scripture": [ + { + "nr": "3", + "text": "O send out thy light and thy truth: let them lead me; let them bring me unto thy holy hill, and to thy tabernacles." + }, + { + "nr": "4", + "text": "Then will I go unto the altar of God, unto God my exceeding joy: yea, upon the harp will I praise thee, O God my God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3-4", + "version": "kjv" +} diff --git a/scripture/kjv/11/03/23/scripture.md b/scripture/kjv/11/03/23/scripture.md new file mode 100644 index 00000000..1499fbbe --- /dev/null +++ b/scripture/kjv/11/03/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 43:3-4** + +3 O send out thy light and thy truth: let them lead me; let them bring me unto thy holy hill, and to thy tabernacles. 4 Then will I go unto the altar of God, unto God my exceeding joy: yea, upon the harp will I praise thee, O God my God. + +[Friday 03-November, 2023](https://getbible.life/kjv/Psalms/43/3-4) diff --git a/scripture/kjv/11/03/23/scripture.tg b/scripture/kjv/11/03/23/scripture.tg new file mode 100644 index 00000000..a7ea19a3 --- /dev/null +++ b/scripture/kjv/11/03/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 43:3-4 +3 O send out thy light and thy truth: let them lead me; let them bring me unto thy holy hill, and to thy tabernacles. 4 Then will I go unto the altar of God, unto God my exceeding joy: yea, upon the harp will I praise thee, O God my God. + +Friday 03-November, 2023 diff --git a/scripture/kjv/11/03/23/scripture.tg.id b/scripture/kjv/11/03/23/scripture.tg.id new file mode 100644 index 00000000..64975abe --- /dev/null +++ b/scripture/kjv/11/03/23/scripture.tg.id @@ -0,0 +1 @@ +1126 diff --git a/scripture/kjv/11/03/23/scripture.today b/scripture/kjv/11/03/23/scripture.today new file mode 100644 index 00000000..4eceb94f --- /dev/null +++ b/scripture/kjv/11/03/23/scripture.today @@ -0,0 +1 @@ +19 43:3-4 diff --git a/scripture/kjv/11/03/24/scripture.html b/scripture/kjv/11/03/24/scripture.html new file mode 100644 index 00000000..93bbc405 --- /dev/null +++ b/scripture/kjv/11/03/24/scripture.html @@ -0,0 +1,3 @@ +Jude 1:3
+3 Beloved, when I gave all diligence to write unto you of the common salvation, it was needful for me to write unto you, and exhort you that ye should earnestly contend for the faith which was once delivered unto the saints.

+Sunday 03-November, 2024 diff --git a/scripture/kjv/11/03/24/scripture.json b/scripture/kjv/11/03/24/scripture.json new file mode 100644 index 00000000..e7885af8 --- /dev/null +++ b/scripture/kjv/11/03/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Jude", + "chapter": "1", + "date": "Sunday 03-November, 2024", + "getbible": "https://getbible.life/kjv/Jude/1/3", + "name": "Jude 1:3", + "scripture": [ + { + "nr": "3", + "text": "Beloved, when I gave all diligence to write unto you of the common salvation, it was needful for me to write unto you, and exhort you that ye should earnestly contend for the faith which was once delivered unto the saints." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3", + "version": "kjv" +} diff --git a/scripture/kjv/11/03/24/scripture.md b/scripture/kjv/11/03/24/scripture.md new file mode 100644 index 00000000..89cd1766 --- /dev/null +++ b/scripture/kjv/11/03/24/scripture.md @@ -0,0 +1,5 @@ +**Jude 1:3** + +3 Beloved, when I gave all diligence to write unto you of the common salvation, it was needful for me to write unto you, and exhort you that ye should earnestly contend for the faith which was once delivered unto the saints. + +[Sunday 03-November, 2024](https://getbible.life/kjv/Jude/1/3) diff --git a/scripture/kjv/11/03/24/scripture.tg b/scripture/kjv/11/03/24/scripture.tg new file mode 100644 index 00000000..e0c96597 --- /dev/null +++ b/scripture/kjv/11/03/24/scripture.tg @@ -0,0 +1,4 @@ +Jude 1:3 +3 Beloved, when I gave all diligence to write unto you of the common salvation, it was needful for me to write unto you, and exhort you that ye should earnestly contend for the faith which was once delivered unto the saints. + +Sunday 03-November, 2024 diff --git a/scripture/kjv/11/03/24/scripture.tg.id b/scripture/kjv/11/03/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/03/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/03/24/scripture.today b/scripture/kjv/11/03/24/scripture.today new file mode 100644 index 00000000..e3a99a59 --- /dev/null +++ b/scripture/kjv/11/03/24/scripture.today @@ -0,0 +1 @@ +65 1:3 diff --git a/scripture/kjv/11/03/25/scripture.html b/scripture/kjv/11/03/25/scripture.html new file mode 100644 index 00000000..3bb7b7cd --- /dev/null +++ b/scripture/kjv/11/03/25/scripture.html @@ -0,0 +1,3 @@ +James 2:14-17
+14 What doth it profit, my brethren, though a man say he hath faith, and have not works? can faith save him? 15 If a brother or sister be naked, and destitute of daily food, 16 And one of you say unto them, Depart in peace, be ye warmed and filled; notwithstanding ye give them not those things which are needful to the body; what doth it profit? 17 Even so faith, if it hath not works, is dead, being alone.

+Monday 03-November, 2025 diff --git a/scripture/kjv/11/03/25/scripture.json b/scripture/kjv/11/03/25/scripture.json new file mode 100644 index 00000000..f16e9b1a --- /dev/null +++ b/scripture/kjv/11/03/25/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "James", + "chapter": "2", + "date": "Monday 03-November, 2025", + "getbible": "https://getbible.life/kjv/James/2/14-17", + "name": "James 2:14-17", + "scripture": [ + { + "nr": "14", + "text": "What doth it profit, my brethren, though a man say he hath faith, and have not works? can faith save him?" + }, + { + "nr": "15", + "text": "If a brother or sister be naked, and destitute of daily food," + }, + { + "nr": "16", + "text": "And one of you say unto them, Depart in peace, be ye warmed and filled; notwithstanding ye give them not those things which are needful to the body; what doth it profit?" + }, + { + "nr": "17", + "text": "Even so faith, if it hath not works, is dead, being alone." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14-17", + "version": "kjv" +} diff --git a/scripture/kjv/11/03/25/scripture.md b/scripture/kjv/11/03/25/scripture.md new file mode 100644 index 00000000..eb257b25 --- /dev/null +++ b/scripture/kjv/11/03/25/scripture.md @@ -0,0 +1,5 @@ +**James 2:14-17** + +14 What doth it profit, my brethren, though a man say he hath faith, and have not works? can faith save him? 15 If a brother or sister be naked, and destitute of daily food, 16 And one of you say unto them, Depart in peace, be ye warmed and filled; notwithstanding ye give them not those things which are needful to the body; what doth it profit? 17 Even so faith, if it hath not works, is dead, being alone. + +[Monday 03-November, 2025](https://getbible.life/kjv/James/2/14-17) diff --git a/scripture/kjv/11/03/25/scripture.tg b/scripture/kjv/11/03/25/scripture.tg new file mode 100644 index 00000000..11490a6e --- /dev/null +++ b/scripture/kjv/11/03/25/scripture.tg @@ -0,0 +1,4 @@ +James 2:14-17 +14 What doth it profit, my brethren, though a man say he hath faith, and have not works? can faith save him? 15 If a brother or sister be naked, and destitute of daily food, 16 And one of you say unto them, Depart in peace, be ye warmed and filled; notwithstanding ye give them not those things which are needful to the body; what doth it profit? 17 Even so faith, if it hath not works, is dead, being alone. + +Monday 03-November, 2025 diff --git a/scripture/kjv/11/03/25/scripture.tg.id b/scripture/kjv/11/03/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/03/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/03/25/scripture.today b/scripture/kjv/11/03/25/scripture.today new file mode 100644 index 00000000..747a9e19 --- /dev/null +++ b/scripture/kjv/11/03/25/scripture.today @@ -0,0 +1 @@ +59 2:14-17 diff --git a/scripture/kjv/11/04/23/scripture.html b/scripture/kjv/11/04/23/scripture.html new file mode 100644 index 00000000..ac650ee5 --- /dev/null +++ b/scripture/kjv/11/04/23/scripture.html @@ -0,0 +1,3 @@ +Ephesians 4:11-13
+11 And he gave some, apostles; and some, prophets; and some, evangelists; and some, pastors and teachers; 12 For the perfecting of the saints, for the work of the ministry, for the edifying of the body of Christ: 13 Till we all come in the unity of the faith, and of the knowledge of the Son of God, unto a perfect man, unto the measure of the stature of the fulness of Christ:

+Saturday 04-November, 2023 diff --git a/scripture/kjv/11/04/23/scripture.json b/scripture/kjv/11/04/23/scripture.json new file mode 100644 index 00000000..3e5e441c --- /dev/null +++ b/scripture/kjv/11/04/23/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Ephesians", + "chapter": "4", + "date": "Saturday 04-November, 2023", + "getbible": "https://getbible.life/kjv/Ephesians/4/11-13", + "name": "Ephesians 4:11-13", + "scripture": [ + { + "nr": "11", + "text": "And he gave some, apostles; and some, prophets; and some, evangelists; and some, pastors and teachers;" + }, + { + "nr": "12", + "text": "For the perfecting of the saints, for the work of the ministry, for the edifying of the body of Christ:" + }, + { + "nr": "13", + "text": "Till we all come in the unity of the faith, and of the knowledge of the Son of God, unto a perfect man, unto the measure of the stature of the fulness of Christ:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11-13", + "version": "kjv" +} diff --git a/scripture/kjv/11/04/23/scripture.md b/scripture/kjv/11/04/23/scripture.md new file mode 100644 index 00000000..22dd5f3c --- /dev/null +++ b/scripture/kjv/11/04/23/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 4:11-13** + +11 And he gave some, apostles; and some, prophets; and some, evangelists; and some, pastors and teachers; 12 For the perfecting of the saints, for the work of the ministry, for the edifying of the body of Christ: 13 Till we all come in the unity of the faith, and of the knowledge of the Son of God, unto a perfect man, unto the measure of the stature of the fulness of Christ: + +[Saturday 04-November, 2023](https://getbible.life/kjv/Ephesians/4/11-13) diff --git a/scripture/kjv/11/04/23/scripture.tg b/scripture/kjv/11/04/23/scripture.tg new file mode 100644 index 00000000..ae7db7b5 --- /dev/null +++ b/scripture/kjv/11/04/23/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 4:11-13 +11 And he gave some, apostles; and some, prophets; and some, evangelists; and some, pastors and teachers; 12 For the perfecting of the saints, for the work of the ministry, for the edifying of the body of Christ: 13 Till we all come in the unity of the faith, and of the knowledge of the Son of God, unto a perfect man, unto the measure of the stature of the fulness of Christ: + +Saturday 04-November, 2023 diff --git a/scripture/kjv/11/04/23/scripture.tg.id b/scripture/kjv/11/04/23/scripture.tg.id new file mode 100644 index 00000000..eb8e8318 --- /dev/null +++ b/scripture/kjv/11/04/23/scripture.tg.id @@ -0,0 +1 @@ +1127 diff --git a/scripture/kjv/11/04/23/scripture.today b/scripture/kjv/11/04/23/scripture.today new file mode 100644 index 00000000..f71e5091 --- /dev/null +++ b/scripture/kjv/11/04/23/scripture.today @@ -0,0 +1 @@ +49 4:11-13 diff --git a/scripture/kjv/11/04/24/scripture.html b/scripture/kjv/11/04/24/scripture.html new file mode 100644 index 00000000..2ca278db --- /dev/null +++ b/scripture/kjv/11/04/24/scripture.html @@ -0,0 +1,3 @@ +Isaiah 30:22-23
+22 Ye shall defile also the covering of thy graven images of silver, and the ornament of thy molten images of gold: thou shalt cast them away as a menstruous cloth; thou shalt say unto it, Get thee hence. 23 Then shall he give the rain of thy seed, that thou shalt sow the ground withal; and bread of the increase of the earth, and it shall be fat and plenteous: in that day shall thy cattle feed in large pastures.

+Monday 04-November, 2024 diff --git a/scripture/kjv/11/04/24/scripture.json b/scripture/kjv/11/04/24/scripture.json new file mode 100644 index 00000000..68ea0a83 --- /dev/null +++ b/scripture/kjv/11/04/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Isaiah", + "chapter": "30", + "date": "Monday 04-November, 2024", + "getbible": "https://getbible.life/kjv/Isaiah/30/22-23", + "name": "Isaiah 30:22-23", + "scripture": [ + { + "nr": "22", + "text": "Ye shall defile also the covering of thy graven images of silver, and the ornament of thy molten images of gold: thou shalt cast them away as a menstruous cloth; thou shalt say unto it, Get thee hence." + }, + { + "nr": "23", + "text": "Then shall he give the rain of thy seed, that thou shalt sow the ground withal; and bread of the increase of the earth, and it shall be fat and plenteous: in that day shall thy cattle feed in large pastures." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "22-23", + "version": "kjv" +} diff --git a/scripture/kjv/11/04/24/scripture.md b/scripture/kjv/11/04/24/scripture.md new file mode 100644 index 00000000..8e81b3c4 --- /dev/null +++ b/scripture/kjv/11/04/24/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 30:22-23** + +22 Ye shall defile also the covering of thy graven images of silver, and the ornament of thy molten images of gold: thou shalt cast them away as a menstruous cloth; thou shalt say unto it, Get thee hence. 23 Then shall he give the rain of thy seed, that thou shalt sow the ground withal; and bread of the increase of the earth, and it shall be fat and plenteous: in that day shall thy cattle feed in large pastures. + +[Monday 04-November, 2024](https://getbible.life/kjv/Isaiah/30/22-23) diff --git a/scripture/kjv/11/04/24/scripture.tg b/scripture/kjv/11/04/24/scripture.tg new file mode 100644 index 00000000..a45665ec --- /dev/null +++ b/scripture/kjv/11/04/24/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 30:22-23 +22 Ye shall defile also the covering of thy graven images of silver, and the ornament of thy molten images of gold: thou shalt cast them away as a menstruous cloth; thou shalt say unto it, Get thee hence. 23 Then shall he give the rain of thy seed, that thou shalt sow the ground withal; and bread of the increase of the earth, and it shall be fat and plenteous: in that day shall thy cattle feed in large pastures. + +Monday 04-November, 2024 diff --git a/scripture/kjv/11/04/24/scripture.tg.id b/scripture/kjv/11/04/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/04/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/04/24/scripture.today b/scripture/kjv/11/04/24/scripture.today new file mode 100644 index 00000000..d60df279 --- /dev/null +++ b/scripture/kjv/11/04/24/scripture.today @@ -0,0 +1 @@ +23 30:22-23 diff --git a/scripture/kjv/11/04/25/scripture.html b/scripture/kjv/11/04/25/scripture.html new file mode 100644 index 00000000..9d3595fe --- /dev/null +++ b/scripture/kjv/11/04/25/scripture.html @@ -0,0 +1,3 @@ +Isaiah 3:16-24
+16 Moreover the Lord saith, Because the daughters of Zion are haughty, and walk with stretched forth necks and wanton eyes, walking and mincing as they go, and making a tinkling with their feet: 17 Therefore the Lord will smite with a scab the crown of the head of the daughters of Zion, and the Lord will discover their secret parts. 18 In that day the Lord will take away the bravery of their tinkling ornaments about their feet, and their cauls, and their round tires like the moon, 19 The chains, and the bracelets, and the mufflers, 20 The bonnets, and the ornaments of the legs, and the headbands, and the tablets, and the earrings, 21 The rings, and nose jewels, 22 The changeable suits of apparel, and the mantles, and the wimples, and the crisping pins, 23 The glasses, and the fine linen, and the hoods, and the vails. 24 And it shall come to pass, that instead of sweet smell there shall be stink; and instead of a girdle a rent; and instead of well set hair baldness; and instead of a stomacher a girding of sackcloth; and burning instead of beauty.

+Tuesday 04-November, 2025 diff --git a/scripture/kjv/11/04/25/scripture.json b/scripture/kjv/11/04/25/scripture.json new file mode 100644 index 00000000..dec702fa --- /dev/null +++ b/scripture/kjv/11/04/25/scripture.json @@ -0,0 +1,49 @@ +{ + "book": "Isaiah", + "chapter": "3", + "date": "Tuesday 04-November, 2025", + "getbible": "https://getbible.life/kjv/Isaiah/3/16-24", + "name": "Isaiah 3:16-24", + "scripture": [ + { + "nr": "16", + "text": "Moreover the Lord saith, Because the daughters of Zion are haughty, and walk with stretched forth necks and wanton eyes, walking and mincing as they go, and making a tinkling with their feet:" + }, + { + "nr": "17", + "text": "Therefore the Lord will smite with a scab the crown of the head of the daughters of Zion, and the Lord will discover their secret parts." + }, + { + "nr": "18", + "text": "In that day the Lord will take away the bravery of their tinkling ornaments about their feet, and their cauls, and their round tires like the moon," + }, + { + "nr": "19", + "text": "The chains, and the bracelets, and the mufflers," + }, + { + "nr": "20", + "text": "The bonnets, and the ornaments of the legs, and the headbands, and the tablets, and the earrings," + }, + { + "nr": "21", + "text": "The rings, and nose jewels," + }, + { + "nr": "22", + "text": "The changeable suits of apparel, and the mantles, and the wimples, and the crisping pins," + }, + { + "nr": "23", + "text": "The glasses, and the fine linen, and the hoods, and the vails." + }, + { + "nr": "24", + "text": "And it shall come to pass, that instead of sweet smell there shall be stink; and instead of a girdle a rent; and instead of well set hair baldness; and instead of a stomacher a girding of sackcloth; and burning instead of beauty." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16-24", + "version": "kjv" +} diff --git a/scripture/kjv/11/04/25/scripture.md b/scripture/kjv/11/04/25/scripture.md new file mode 100644 index 00000000..c89876fe --- /dev/null +++ b/scripture/kjv/11/04/25/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 3:16-24** + +16 Moreover the Lord saith, Because the daughters of Zion are haughty, and walk with stretched forth necks and wanton eyes, walking and mincing as they go, and making a tinkling with their feet: 17 Therefore the Lord will smite with a scab the crown of the head of the daughters of Zion, and the Lord will discover their secret parts. 18 In that day the Lord will take away the bravery of their tinkling ornaments about their feet, and their cauls, and their round tires like the moon, 19 The chains, and the bracelets, and the mufflers, 20 The bonnets, and the ornaments of the legs, and the headbands, and the tablets, and the earrings, 21 The rings, and nose jewels, 22 The changeable suits of apparel, and the mantles, and the wimples, and the crisping pins, 23 The glasses, and the fine linen, and the hoods, and the vails. 24 And it shall come to pass, that instead of sweet smell there shall be stink; and instead of a girdle a rent; and instead of well set hair baldness; and instead of a stomacher a girding of sackcloth; and burning instead of beauty. + +[Tuesday 04-November, 2025](https://getbible.life/kjv/Isaiah/3/16-24) diff --git a/scripture/kjv/11/04/25/scripture.tg b/scripture/kjv/11/04/25/scripture.tg new file mode 100644 index 00000000..170dab93 --- /dev/null +++ b/scripture/kjv/11/04/25/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 3:16-24 +16 Moreover the Lord saith, Because the daughters of Zion are haughty, and walk with stretched forth necks and wanton eyes, walking and mincing as they go, and making a tinkling with their feet: 17 Therefore the Lord will smite with a scab the crown of the head of the daughters of Zion, and the Lord will discover their secret parts. 18 In that day the Lord will take away the bravery of their tinkling ornaments about their feet, and their cauls, and their round tires like the moon, 19 The chains, and the bracelets, and the mufflers, 20 The bonnets, and the ornaments of the legs, and the headbands, and the tablets, and the earrings, 21 The rings, and nose jewels, 22 The changeable suits of apparel, and the mantles, and the wimples, and the crisping pins, 23 The glasses, and the fine linen, and the hoods, and the vails. 24 And it shall come to pass, that instead of sweet smell there shall be stink; and instead of a girdle a rent; and instead of well set hair baldness; and instead of a stomacher a girding of sackcloth; and burning instead of beauty. + +Tuesday 04-November, 2025 diff --git a/scripture/kjv/11/04/25/scripture.tg.id b/scripture/kjv/11/04/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/04/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/04/25/scripture.today b/scripture/kjv/11/04/25/scripture.today new file mode 100644 index 00000000..529818c9 --- /dev/null +++ b/scripture/kjv/11/04/25/scripture.today @@ -0,0 +1 @@ +23 3:16-24 diff --git a/scripture/kjv/11/05/23/scripture.html b/scripture/kjv/11/05/23/scripture.html new file mode 100644 index 00000000..9c560421 --- /dev/null +++ b/scripture/kjv/11/05/23/scripture.html @@ -0,0 +1,3 @@ +Mark 16:17-18
+17 And these signs shall follow them that believe; In my name shall they cast out devils; they shall speak with new tongues; 18 They shall take up serpents; and if they drink any deadly thing, it shall not hurt them; they shall lay hands on the sick, and they shall recover.

+Sunday 05-November, 2023 diff --git a/scripture/kjv/11/05/23/scripture.json b/scripture/kjv/11/05/23/scripture.json new file mode 100644 index 00000000..5dc5291c --- /dev/null +++ b/scripture/kjv/11/05/23/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Mark", + "chapter": "16", + "date": "Sunday 05-November, 2023", + "getbible": "https://getbible.life/kjv/Mark/16/17-18", + "name": "Mark 16:17-18", + "scripture": [ + { + "nr": "17", + "text": "And these signs shall follow them that believe; In my name shall they cast out devils; they shall speak with new tongues;" + }, + { + "nr": "18", + "text": "They shall take up serpents; and if they drink any deadly thing, it shall not hurt them; they shall lay hands on the sick, and they shall recover." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17-18", + "version": "kjv" +} diff --git a/scripture/kjv/11/05/23/scripture.md b/scripture/kjv/11/05/23/scripture.md new file mode 100644 index 00000000..6335e872 --- /dev/null +++ b/scripture/kjv/11/05/23/scripture.md @@ -0,0 +1,5 @@ +**Mark 16:17-18** + +17 And these signs shall follow them that believe; In my name shall they cast out devils; they shall speak with new tongues; 18 They shall take up serpents; and if they drink any deadly thing, it shall not hurt them; they shall lay hands on the sick, and they shall recover. + +[Sunday 05-November, 2023](https://getbible.life/kjv/Mark/16/17-18) diff --git a/scripture/kjv/11/05/23/scripture.tg b/scripture/kjv/11/05/23/scripture.tg new file mode 100644 index 00000000..4ae9328e --- /dev/null +++ b/scripture/kjv/11/05/23/scripture.tg @@ -0,0 +1,4 @@ +Mark 16:17-18 +17 And these signs shall follow them that believe; In my name shall they cast out devils; they shall speak with new tongues; 18 They shall take up serpents; and if they drink any deadly thing, it shall not hurt them; they shall lay hands on the sick, and they shall recover. + +Sunday 05-November, 2023 diff --git a/scripture/kjv/11/05/23/scripture.tg.id b/scripture/kjv/11/05/23/scripture.tg.id new file mode 100644 index 00000000..3ff08f72 --- /dev/null +++ b/scripture/kjv/11/05/23/scripture.tg.id @@ -0,0 +1 @@ +1128 diff --git a/scripture/kjv/11/05/23/scripture.today b/scripture/kjv/11/05/23/scripture.today new file mode 100644 index 00000000..7ffa747a --- /dev/null +++ b/scripture/kjv/11/05/23/scripture.today @@ -0,0 +1 @@ +41 16:17-18 diff --git a/scripture/kjv/11/05/24/scripture.html b/scripture/kjv/11/05/24/scripture.html new file mode 100644 index 00000000..042aede4 --- /dev/null +++ b/scripture/kjv/11/05/24/scripture.html @@ -0,0 +1,3 @@ +Matthew 15:12-14
+12 Then came his disciples, and said unto him, Knowest thou that the Pharisees were offended, after they heard this saying? 13 But he answered and said, Every plant, which my heavenly Father hath not planted, shall be rooted up. 14 Let them alone: they be blind leaders of the blind. And if the blind lead the blind, both shall fall into the ditch.

+Tuesday 05-November, 2024 diff --git a/scripture/kjv/11/05/24/scripture.json b/scripture/kjv/11/05/24/scripture.json new file mode 100644 index 00000000..64557db7 --- /dev/null +++ b/scripture/kjv/11/05/24/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Matthew", + "chapter": "15", + "date": "Tuesday 05-November, 2024", + "getbible": "https://getbible.life/kjv/Matthew/15/12-14", + "name": "Matthew 15:12-14", + "scripture": [ + { + "nr": "12", + "text": "Then came his disciples, and said unto him, Knowest thou that the Pharisees were offended, after they heard this saying?" + }, + { + "nr": "13", + "text": "But he answered and said, Every plant, which my heavenly Father hath not planted, shall be rooted up." + }, + { + "nr": "14", + "text": "Let them alone: they be blind leaders of the blind. And if the blind lead the blind, both shall fall into the ditch." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12-14", + "version": "kjv" +} diff --git a/scripture/kjv/11/05/24/scripture.md b/scripture/kjv/11/05/24/scripture.md new file mode 100644 index 00000000..40384001 --- /dev/null +++ b/scripture/kjv/11/05/24/scripture.md @@ -0,0 +1,5 @@ +**Matthew 15:12-14** + +12 Then came his disciples, and said unto him, Knowest thou that the Pharisees were offended, after they heard this saying? 13 But he answered and said, Every plant, which my heavenly Father hath not planted, shall be rooted up. 14 Let them alone: they be blind leaders of the blind. And if the blind lead the blind, both shall fall into the ditch. + +[Tuesday 05-November, 2024](https://getbible.life/kjv/Matthew/15/12-14) diff --git a/scripture/kjv/11/05/24/scripture.tg b/scripture/kjv/11/05/24/scripture.tg new file mode 100644 index 00000000..e98eccd8 --- /dev/null +++ b/scripture/kjv/11/05/24/scripture.tg @@ -0,0 +1,4 @@ +Matthew 15:12-14 +12 Then came his disciples, and said unto him, Knowest thou that the Pharisees were offended, after they heard this saying? 13 But he answered and said, Every plant, which my heavenly Father hath not planted, shall be rooted up. 14 Let them alone: they be blind leaders of the blind. And if the blind lead the blind, both shall fall into the ditch. + +Tuesday 05-November, 2024 diff --git a/scripture/kjv/11/05/24/scripture.tg.id b/scripture/kjv/11/05/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/05/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/05/24/scripture.today b/scripture/kjv/11/05/24/scripture.today new file mode 100644 index 00000000..beda0d2f --- /dev/null +++ b/scripture/kjv/11/05/24/scripture.today @@ -0,0 +1 @@ +40 15:12-14 diff --git a/scripture/kjv/11/05/25/scripture.html b/scripture/kjv/11/05/25/scripture.html new file mode 100644 index 00000000..a49047c9 --- /dev/null +++ b/scripture/kjv/11/05/25/scripture.html @@ -0,0 +1,3 @@ +Judges 15:8
+8 And he smote them hip and thigh with a great slaughter: and he went down and dwelt in the top of the rock Etam.

+Wednesday 05-November, 2025 diff --git a/scripture/kjv/11/05/25/scripture.json b/scripture/kjv/11/05/25/scripture.json new file mode 100644 index 00000000..de0b93bd --- /dev/null +++ b/scripture/kjv/11/05/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Judges", + "chapter": "15", + "date": "Wednesday 05-November, 2025", + "getbible": "https://getbible.life/kjv/Judges/15/8", + "name": "Judges 15:8", + "scripture": [ + { + "nr": "8", + "text": "And he smote them hip and thigh with a great slaughter: and he went down and dwelt in the top of the rock Etam." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8", + "version": "kjv" +} diff --git a/scripture/kjv/11/05/25/scripture.md b/scripture/kjv/11/05/25/scripture.md new file mode 100644 index 00000000..bd2160d7 --- /dev/null +++ b/scripture/kjv/11/05/25/scripture.md @@ -0,0 +1,5 @@ +**Judges 15:8** + +8 And he smote them hip and thigh with a great slaughter: and he went down and dwelt in the top of the rock Etam. + +[Wednesday 05-November, 2025](https://getbible.life/kjv/Judges/15/8) diff --git a/scripture/kjv/11/05/25/scripture.tg b/scripture/kjv/11/05/25/scripture.tg new file mode 100644 index 00000000..d79dc7d4 --- /dev/null +++ b/scripture/kjv/11/05/25/scripture.tg @@ -0,0 +1,4 @@ +Judges 15:8 +8 And he smote them hip and thigh with a great slaughter: and he went down and dwelt in the top of the rock Etam. + +Wednesday 05-November, 2025 diff --git a/scripture/kjv/11/05/25/scripture.tg.id b/scripture/kjv/11/05/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/05/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/05/25/scripture.today b/scripture/kjv/11/05/25/scripture.today new file mode 100644 index 00000000..344b615b --- /dev/null +++ b/scripture/kjv/11/05/25/scripture.today @@ -0,0 +1 @@ +7 15:8 diff --git a/scripture/kjv/11/06/23/scripture.html b/scripture/kjv/11/06/23/scripture.html new file mode 100644 index 00000000..3dca50fd --- /dev/null +++ b/scripture/kjv/11/06/23/scripture.html @@ -0,0 +1,3 @@ +Haggai 2:8
+8 The silver is mine, and the gold is mine, saith the Lord of hosts.

+Monday 06-November, 2023 diff --git a/scripture/kjv/11/06/23/scripture.json b/scripture/kjv/11/06/23/scripture.json new file mode 100644 index 00000000..c2abea1c --- /dev/null +++ b/scripture/kjv/11/06/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Haggai", + "chapter": "2", + "date": "Monday 06-November, 2023", + "getbible": "https://getbible.life/kjv/Haggai/2/8", + "name": "Haggai 2:8", + "scripture": [ + { + "nr": "8", + "text": "The silver is mine, and the gold is mine, saith the Lord of hosts." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8", + "version": "kjv" +} diff --git a/scripture/kjv/11/06/23/scripture.md b/scripture/kjv/11/06/23/scripture.md new file mode 100644 index 00000000..c5cea2ae --- /dev/null +++ b/scripture/kjv/11/06/23/scripture.md @@ -0,0 +1,5 @@ +**Haggai 2:8** + +8 The silver is mine, and the gold is mine, saith the Lord of hosts. + +[Monday 06-November, 2023](https://getbible.life/kjv/Haggai/2/8) diff --git a/scripture/kjv/11/06/23/scripture.tg b/scripture/kjv/11/06/23/scripture.tg new file mode 100644 index 00000000..f186ff5b --- /dev/null +++ b/scripture/kjv/11/06/23/scripture.tg @@ -0,0 +1,4 @@ +Haggai 2:8 +8 The silver is mine, and the gold is mine, saith the Lord of hosts. + +Monday 06-November, 2023 diff --git a/scripture/kjv/11/06/23/scripture.tg.id b/scripture/kjv/11/06/23/scripture.tg.id new file mode 100644 index 00000000..6f2c5fa6 --- /dev/null +++ b/scripture/kjv/11/06/23/scripture.tg.id @@ -0,0 +1 @@ +1129 diff --git a/scripture/kjv/11/06/23/scripture.today b/scripture/kjv/11/06/23/scripture.today new file mode 100644 index 00000000..a7a3bab8 --- /dev/null +++ b/scripture/kjv/11/06/23/scripture.today @@ -0,0 +1 @@ +37 2:8 diff --git a/scripture/kjv/11/06/24/scripture.html b/scripture/kjv/11/06/24/scripture.html new file mode 100644 index 00000000..370c7e7c --- /dev/null +++ b/scripture/kjv/11/06/24/scripture.html @@ -0,0 +1,3 @@ +Luke 21:17-19
+17 And ye shall be hated of all men for my name’s sake. 18 But there shall not an hair of your head perish. 19 In your patience possess ye your souls.

+Wednesday 06-November, 2024 diff --git a/scripture/kjv/11/06/24/scripture.json b/scripture/kjv/11/06/24/scripture.json new file mode 100644 index 00000000..b8192279 --- /dev/null +++ b/scripture/kjv/11/06/24/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Luke", + "chapter": "21", + "date": "Wednesday 06-November, 2024", + "getbible": "https://getbible.life/kjv/Luke/21/17-19", + "name": "Luke 21:17-19", + "scripture": [ + { + "nr": "17", + "text": "And ye shall be hated of all men for my name’s sake." + }, + { + "nr": "18", + "text": "But there shall not an hair of your head perish." + }, + { + "nr": "19", + "text": "In your patience possess ye your souls." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17-19", + "version": "kjv" +} diff --git a/scripture/kjv/11/06/24/scripture.md b/scripture/kjv/11/06/24/scripture.md new file mode 100644 index 00000000..8c444c9a --- /dev/null +++ b/scripture/kjv/11/06/24/scripture.md @@ -0,0 +1,5 @@ +**Luke 21:17-19** + +17 And ye shall be hated of all men for my name’s sake. 18 But there shall not an hair of your head perish. 19 In your patience possess ye your souls. + +[Wednesday 06-November, 2024](https://getbible.life/kjv/Luke/21/17-19) diff --git a/scripture/kjv/11/06/24/scripture.tg b/scripture/kjv/11/06/24/scripture.tg new file mode 100644 index 00000000..ac3343e6 --- /dev/null +++ b/scripture/kjv/11/06/24/scripture.tg @@ -0,0 +1,4 @@ +Luke 21:17-19 +17 And ye shall be hated of all men for my name’s sake. 18 But there shall not an hair of your head perish. 19 In your patience possess ye your souls. + +Wednesday 06-November, 2024 diff --git a/scripture/kjv/11/06/24/scripture.tg.id b/scripture/kjv/11/06/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/06/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/06/24/scripture.today b/scripture/kjv/11/06/24/scripture.today new file mode 100644 index 00000000..eda2503e --- /dev/null +++ b/scripture/kjv/11/06/24/scripture.today @@ -0,0 +1 @@ +42 21:17-19 diff --git a/scripture/kjv/11/06/25/scripture.html b/scripture/kjv/11/06/25/scripture.html new file mode 100644 index 00000000..2d149810 --- /dev/null +++ b/scripture/kjv/11/06/25/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 10:24
+24 Let no man seek his own, but every man another’s wealth.

+Thursday 06-November, 2025 diff --git a/scripture/kjv/11/06/25/scripture.json b/scripture/kjv/11/06/25/scripture.json new file mode 100644 index 00000000..8b491528 --- /dev/null +++ b/scripture/kjv/11/06/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "10", + "date": "Thursday 06-November, 2025", + "getbible": "https://getbible.life/kjv/1 Corinthians/10/24", + "name": "1 Corinthians 10:24", + "scripture": [ + { + "nr": "24", + "text": "Let no man seek his own, but every man another’s wealth. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "24", + "version": "kjv" +} diff --git a/scripture/kjv/11/06/25/scripture.md b/scripture/kjv/11/06/25/scripture.md new file mode 100644 index 00000000..b2fbf48f --- /dev/null +++ b/scripture/kjv/11/06/25/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 10:24** + +24 Let no man seek his own, but every man another’s wealth. + +[Thursday 06-November, 2025](https://getbible.life/kjv/1 Corinthians/10/24) diff --git a/scripture/kjv/11/06/25/scripture.tg b/scripture/kjv/11/06/25/scripture.tg new file mode 100644 index 00000000..fd30607c --- /dev/null +++ b/scripture/kjv/11/06/25/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 10:24 +24 Let no man seek his own, but every man another’s wealth. + +Thursday 06-November, 2025 diff --git a/scripture/kjv/11/06/25/scripture.tg.id b/scripture/kjv/11/06/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/06/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/06/25/scripture.today b/scripture/kjv/11/06/25/scripture.today new file mode 100644 index 00000000..00425fcd --- /dev/null +++ b/scripture/kjv/11/06/25/scripture.today @@ -0,0 +1 @@ +46 10:24 diff --git a/scripture/kjv/11/07/23/scripture.html b/scripture/kjv/11/07/23/scripture.html new file mode 100644 index 00000000..89e782a5 --- /dev/null +++ b/scripture/kjv/11/07/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 34:18
+18 The Lord is nigh unto them that are of a broken heart; and saveth such as be of a contrite spirit.

+Tuesday 07-November, 2023 diff --git a/scripture/kjv/11/07/23/scripture.json b/scripture/kjv/11/07/23/scripture.json new file mode 100644 index 00000000..b048c9c9 --- /dev/null +++ b/scripture/kjv/11/07/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "34", + "date": "Tuesday 07-November, 2023", + "getbible": "https://getbible.life/kjv/Psalms/34/18", + "name": "Psalms 34:18", + "scripture": [ + { + "nr": "18", + "text": "The Lord is nigh unto them that are of a broken heart; and saveth such as be of a contrite spirit." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18", + "version": "kjv" +} diff --git a/scripture/kjv/11/07/23/scripture.md b/scripture/kjv/11/07/23/scripture.md new file mode 100644 index 00000000..8e7ea235 --- /dev/null +++ b/scripture/kjv/11/07/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 34:18** + +18 The Lord is nigh unto them that are of a broken heart; and saveth such as be of a contrite spirit. + +[Tuesday 07-November, 2023](https://getbible.life/kjv/Psalms/34/18) diff --git a/scripture/kjv/11/07/23/scripture.tg b/scripture/kjv/11/07/23/scripture.tg new file mode 100644 index 00000000..184c419c --- /dev/null +++ b/scripture/kjv/11/07/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 34:18 +18 The Lord is nigh unto them that are of a broken heart; and saveth such as be of a contrite spirit. + +Tuesday 07-November, 2023 diff --git a/scripture/kjv/11/07/23/scripture.tg.id b/scripture/kjv/11/07/23/scripture.tg.id new file mode 100644 index 00000000..5e8d8532 --- /dev/null +++ b/scripture/kjv/11/07/23/scripture.tg.id @@ -0,0 +1 @@ +1130 diff --git a/scripture/kjv/11/07/23/scripture.today b/scripture/kjv/11/07/23/scripture.today new file mode 100644 index 00000000..d6a82018 --- /dev/null +++ b/scripture/kjv/11/07/23/scripture.today @@ -0,0 +1 @@ +19 34:18 diff --git a/scripture/kjv/11/07/24/scripture.html b/scripture/kjv/11/07/24/scripture.html new file mode 100644 index 00000000..da2a3e48 --- /dev/null +++ b/scripture/kjv/11/07/24/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 12:11
+11 But all these worketh that one and the selfsame Spirit, dividing to every man severally as he will.

+Thursday 07-November, 2024 diff --git a/scripture/kjv/11/07/24/scripture.json b/scripture/kjv/11/07/24/scripture.json new file mode 100644 index 00000000..1491780e --- /dev/null +++ b/scripture/kjv/11/07/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "12", + "date": "Thursday 07-November, 2024", + "getbible": "https://getbible.life/kjv/1 Corinthians/12/11", + "name": "1 Corinthians 12:11", + "scripture": [ + { + "nr": "11", + "text": "But all these worketh that one and the selfsame Spirit, dividing to every man severally as he will." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/11/07/24/scripture.md b/scripture/kjv/11/07/24/scripture.md new file mode 100644 index 00000000..2ea94f41 --- /dev/null +++ b/scripture/kjv/11/07/24/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 12:11** + +11 But all these worketh that one and the selfsame Spirit, dividing to every man severally as he will. + +[Thursday 07-November, 2024](https://getbible.life/kjv/1 Corinthians/12/11) diff --git a/scripture/kjv/11/07/24/scripture.tg b/scripture/kjv/11/07/24/scripture.tg new file mode 100644 index 00000000..7eddfbb7 --- /dev/null +++ b/scripture/kjv/11/07/24/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 12:11 +11 But all these worketh that one and the selfsame Spirit, dividing to every man severally as he will. + +Thursday 07-November, 2024 diff --git a/scripture/kjv/11/07/24/scripture.tg.id b/scripture/kjv/11/07/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/07/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/07/24/scripture.today b/scripture/kjv/11/07/24/scripture.today new file mode 100644 index 00000000..d89ef63e --- /dev/null +++ b/scripture/kjv/11/07/24/scripture.today @@ -0,0 +1 @@ +46 12:11 diff --git a/scripture/kjv/11/07/25/scripture.html b/scripture/kjv/11/07/25/scripture.html new file mode 100644 index 00000000..2635f488 --- /dev/null +++ b/scripture/kjv/11/07/25/scripture.html @@ -0,0 +1,3 @@ +Acts 4:14
+14 And beholding the man which was healed standing with them, they could say nothing against it.

+Friday 07-November, 2025 diff --git a/scripture/kjv/11/07/25/scripture.json b/scripture/kjv/11/07/25/scripture.json new file mode 100644 index 00000000..40b09724 --- /dev/null +++ b/scripture/kjv/11/07/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Acts", + "chapter": "4", + "date": "Friday 07-November, 2025", + "getbible": "https://getbible.life/kjv/Acts/4/14", + "name": "Acts 4:14", + "scripture": [ + { + "nr": "14", + "text": "And beholding the man which was healed standing with them, they could say nothing against it." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/11/07/25/scripture.md b/scripture/kjv/11/07/25/scripture.md new file mode 100644 index 00000000..f3d8c9fb --- /dev/null +++ b/scripture/kjv/11/07/25/scripture.md @@ -0,0 +1,5 @@ +**Acts 4:14** + +14 And beholding the man which was healed standing with them, they could say nothing against it. + +[Friday 07-November, 2025](https://getbible.life/kjv/Acts/4/14) diff --git a/scripture/kjv/11/07/25/scripture.tg b/scripture/kjv/11/07/25/scripture.tg new file mode 100644 index 00000000..7ed0e5fa --- /dev/null +++ b/scripture/kjv/11/07/25/scripture.tg @@ -0,0 +1,4 @@ +Acts 4:14 +14 And beholding the man which was healed standing with them, they could say nothing against it. + +Friday 07-November, 2025 diff --git a/scripture/kjv/11/07/25/scripture.tg.id b/scripture/kjv/11/07/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/07/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/07/25/scripture.today b/scripture/kjv/11/07/25/scripture.today new file mode 100644 index 00000000..ac9433a8 --- /dev/null +++ b/scripture/kjv/11/07/25/scripture.today @@ -0,0 +1 @@ +44 4:14 diff --git a/scripture/kjv/11/08/23/scripture.html b/scripture/kjv/11/08/23/scripture.html new file mode 100644 index 00000000..e62262a7 --- /dev/null +++ b/scripture/kjv/11/08/23/scripture.html @@ -0,0 +1,3 @@ +2 Timothy 2:19
+19 Nevertheless the foundation of God standeth sure, having this seal, The Lord knoweth them that are his. And, Let every one that nameth the name of Christ depart from iniquity.

+Wednesday 08-November, 2023 diff --git a/scripture/kjv/11/08/23/scripture.json b/scripture/kjv/11/08/23/scripture.json new file mode 100644 index 00000000..07b1ca91 --- /dev/null +++ b/scripture/kjv/11/08/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Timothy", + "chapter": "2", + "date": "Wednesday 08-November, 2023", + "getbible": "https://getbible.life/kjv/2 Timothy/2/19", + "name": "2 Timothy 2:19", + "scripture": [ + { + "nr": "19", + "text": "Nevertheless the foundation of God standeth sure, having this seal, The Lord knoweth them that are his. And, Let every one that nameth the name of Christ depart from iniquity." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "19", + "version": "kjv" +} diff --git a/scripture/kjv/11/08/23/scripture.md b/scripture/kjv/11/08/23/scripture.md new file mode 100644 index 00000000..33f2995c --- /dev/null +++ b/scripture/kjv/11/08/23/scripture.md @@ -0,0 +1,5 @@ +**2 Timothy 2:19** + +19 Nevertheless the foundation of God standeth sure, having this seal, The Lord knoweth them that are his. And, Let every one that nameth the name of Christ depart from iniquity. + +[Wednesday 08-November, 2023](https://getbible.life/kjv/2 Timothy/2/19) diff --git a/scripture/kjv/11/08/23/scripture.tg b/scripture/kjv/11/08/23/scripture.tg new file mode 100644 index 00000000..81b9920c --- /dev/null +++ b/scripture/kjv/11/08/23/scripture.tg @@ -0,0 +1,4 @@ +2 Timothy 2:19 +19 Nevertheless the foundation of God standeth sure, having this seal, The Lord knoweth them that are his. And, Let every one that nameth the name of Christ depart from iniquity. + +Wednesday 08-November, 2023 diff --git a/scripture/kjv/11/08/23/scripture.tg.id b/scripture/kjv/11/08/23/scripture.tg.id new file mode 100644 index 00000000..7fdcfb8c --- /dev/null +++ b/scripture/kjv/11/08/23/scripture.tg.id @@ -0,0 +1 @@ +1131 diff --git a/scripture/kjv/11/08/23/scripture.today b/scripture/kjv/11/08/23/scripture.today new file mode 100644 index 00000000..0051f5fa --- /dev/null +++ b/scripture/kjv/11/08/23/scripture.today @@ -0,0 +1 @@ +55 2:19 diff --git a/scripture/kjv/11/08/24/scripture.html b/scripture/kjv/11/08/24/scripture.html new file mode 100644 index 00000000..7b6c200f --- /dev/null +++ b/scripture/kjv/11/08/24/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 10:23
+23 All things are lawful for me, but all things are not expedient: all things are lawful for me, but all things edify not.

+Friday 08-November, 2024 diff --git a/scripture/kjv/11/08/24/scripture.json b/scripture/kjv/11/08/24/scripture.json new file mode 100644 index 00000000..8b302237 --- /dev/null +++ b/scripture/kjv/11/08/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "10", + "date": "Friday 08-November, 2024", + "getbible": "https://getbible.life/kjv/1 Corinthians/10/23", + "name": "1 Corinthians 10:23", + "scripture": [ + { + "nr": "23", + "text": "All things are lawful for me, but all things are not expedient: all things are lawful for me, but all things edify not." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "23", + "version": "kjv" +} diff --git a/scripture/kjv/11/08/24/scripture.md b/scripture/kjv/11/08/24/scripture.md new file mode 100644 index 00000000..a1bb22ee --- /dev/null +++ b/scripture/kjv/11/08/24/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 10:23** + +23 All things are lawful for me, but all things are not expedient: all things are lawful for me, but all things edify not. + +[Friday 08-November, 2024](https://getbible.life/kjv/1 Corinthians/10/23) diff --git a/scripture/kjv/11/08/24/scripture.tg b/scripture/kjv/11/08/24/scripture.tg new file mode 100644 index 00000000..d7178250 --- /dev/null +++ b/scripture/kjv/11/08/24/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 10:23 +23 All things are lawful for me, but all things are not expedient: all things are lawful for me, but all things edify not. + +Friday 08-November, 2024 diff --git a/scripture/kjv/11/08/24/scripture.tg.id b/scripture/kjv/11/08/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/08/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/08/24/scripture.today b/scripture/kjv/11/08/24/scripture.today new file mode 100644 index 00000000..579a467d --- /dev/null +++ b/scripture/kjv/11/08/24/scripture.today @@ -0,0 +1 @@ +46 10:23 diff --git a/scripture/kjv/11/08/25/scripture.html b/scripture/kjv/11/08/25/scripture.html new file mode 100644 index 00000000..28152df1 --- /dev/null +++ b/scripture/kjv/11/08/25/scripture.html @@ -0,0 +1,3 @@ +Proverbs 15:8
+8 The sacrifice of the wicked is an abomination to the Lord: but the prayer of the upright is his delight.

+Saturday 08-November, 2025 diff --git a/scripture/kjv/11/08/25/scripture.json b/scripture/kjv/11/08/25/scripture.json new file mode 100644 index 00000000..e3df6940 --- /dev/null +++ b/scripture/kjv/11/08/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "15", + "date": "Saturday 08-November, 2025", + "getbible": "https://getbible.life/kjv/Proverbs/15/8", + "name": "Proverbs 15:8", + "scripture": [ + { + "nr": "8", + "text": "The sacrifice of the wicked is an abomination to the Lord: but the prayer of the upright is his delight." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8", + "version": "kjv" +} diff --git a/scripture/kjv/11/08/25/scripture.md b/scripture/kjv/11/08/25/scripture.md new file mode 100644 index 00000000..a5690ab6 --- /dev/null +++ b/scripture/kjv/11/08/25/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 15:8** + +8 The sacrifice of the wicked is an abomination to the Lord: but the prayer of the upright is his delight. + +[Saturday 08-November, 2025](https://getbible.life/kjv/Proverbs/15/8) diff --git a/scripture/kjv/11/08/25/scripture.tg b/scripture/kjv/11/08/25/scripture.tg new file mode 100644 index 00000000..29560dd8 --- /dev/null +++ b/scripture/kjv/11/08/25/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 15:8 +8 The sacrifice of the wicked is an abomination to the Lord: but the prayer of the upright is his delight. + +Saturday 08-November, 2025 diff --git a/scripture/kjv/11/08/25/scripture.tg.id b/scripture/kjv/11/08/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/08/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/08/25/scripture.today b/scripture/kjv/11/08/25/scripture.today new file mode 100644 index 00000000..5568a7e8 --- /dev/null +++ b/scripture/kjv/11/08/25/scripture.today @@ -0,0 +1 @@ +20 15:8 diff --git a/scripture/kjv/11/09/23/scripture.html b/scripture/kjv/11/09/23/scripture.html new file mode 100644 index 00000000..2f4ac0b5 --- /dev/null +++ b/scripture/kjv/11/09/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 24:10
+10 If thou faint in the day of adversity, thy strength is small.

+Thursday 09-November, 2023 diff --git a/scripture/kjv/11/09/23/scripture.json b/scripture/kjv/11/09/23/scripture.json new file mode 100644 index 00000000..b7031968 --- /dev/null +++ b/scripture/kjv/11/09/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "24", + "date": "Thursday 09-November, 2023", + "getbible": "https://getbible.life/kjv/Proverbs/24/10", + "name": "Proverbs 24:10", + "scripture": [ + { + "nr": "10", + "text": "If thou faint in the day of adversity, thy strength is small." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/11/09/23/scripture.md b/scripture/kjv/11/09/23/scripture.md new file mode 100644 index 00000000..147a698d --- /dev/null +++ b/scripture/kjv/11/09/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 24:10** + +10 If thou faint in the day of adversity, thy strength is small. + +[Thursday 09-November, 2023](https://getbible.life/kjv/Proverbs/24/10) diff --git a/scripture/kjv/11/09/23/scripture.tg b/scripture/kjv/11/09/23/scripture.tg new file mode 100644 index 00000000..4f87317c --- /dev/null +++ b/scripture/kjv/11/09/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 24:10 +10 If thou faint in the day of adversity, thy strength is small. + +Thursday 09-November, 2023 diff --git a/scripture/kjv/11/09/23/scripture.tg.id b/scripture/kjv/11/09/23/scripture.tg.id new file mode 100644 index 00000000..4880c9fb --- /dev/null +++ b/scripture/kjv/11/09/23/scripture.tg.id @@ -0,0 +1 @@ +1132 diff --git a/scripture/kjv/11/09/23/scripture.today b/scripture/kjv/11/09/23/scripture.today new file mode 100644 index 00000000..dddf2c73 --- /dev/null +++ b/scripture/kjv/11/09/23/scripture.today @@ -0,0 +1 @@ +20 24:10 diff --git a/scripture/kjv/11/09/24/scripture.html b/scripture/kjv/11/09/24/scripture.html new file mode 100644 index 00000000..ec232ff0 --- /dev/null +++ b/scripture/kjv/11/09/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 78:22-32
+22 Because they believed not in God, and trusted not in his salvation: 23 Though he had commanded the clouds from above, and opened the doors of heaven, 24 And had rained down manna upon them to eat, and had given them of the corn of heaven. 25 Man did eat angels’ food: he sent them meat to the full. 26 He caused an east wind to blow in the heaven: and by his power he brought in the south wind. 27 He rained flesh also upon them as dust, and feathered fowls like as the sand of the sea: 28 And he let it fall in the midst of their camp, round about their habitations. 29 So they did eat, and were well filled: for he gave them their own desire; 30 They were not estranged from their lust. But while their meat was yet in their mouths, 31 The wrath of God came upon them, and slew the fattest of them, and smote down the chosen men of Israel. 32 For all this they sinned still, and believed not for his wondrous works.

+Saturday 09-November, 2024 diff --git a/scripture/kjv/11/09/24/scripture.json b/scripture/kjv/11/09/24/scripture.json new file mode 100644 index 00000000..686af06b --- /dev/null +++ b/scripture/kjv/11/09/24/scripture.json @@ -0,0 +1,57 @@ +{ + "book": "Psalms", + "chapter": "78", + "date": "Saturday 09-November, 2024", + "getbible": "https://getbible.life/kjv/Psalms/78/22-32", + "name": "Psalms 78:22-32", + "scripture": [ + { + "nr": "22", + "text": "Because they believed not in God, and trusted not in his salvation:" + }, + { + "nr": "23", + "text": "Though he had commanded the clouds from above, and opened the doors of heaven," + }, + { + "nr": "24", + "text": "And had rained down manna upon them to eat, and had given them of the corn of heaven." + }, + { + "nr": "25", + "text": "Man did eat angels’ food: he sent them meat to the full." + }, + { + "nr": "26", + "text": "He caused an east wind to blow in the heaven: and by his power he brought in the south wind." + }, + { + "nr": "27", + "text": "He rained flesh also upon them as dust, and feathered fowls like as the sand of the sea:" + }, + { + "nr": "28", + "text": "And he let it fall in the midst of their camp, round about their habitations." + }, + { + "nr": "29", + "text": "So they did eat, and were well filled: for he gave them their own desire;" + }, + { + "nr": "30", + "text": "They were not estranged from their lust. But while their meat was yet in their mouths," + }, + { + "nr": "31", + "text": "The wrath of God came upon them, and slew the fattest of them, and smote down the chosen men of Israel." + }, + { + "nr": "32", + "text": "For all this they sinned still, and believed not for his wondrous works." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "22-32", + "version": "kjv" +} diff --git a/scripture/kjv/11/09/24/scripture.md b/scripture/kjv/11/09/24/scripture.md new file mode 100644 index 00000000..4ca6d553 --- /dev/null +++ b/scripture/kjv/11/09/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 78:22-32** + +22 Because they believed not in God, and trusted not in his salvation: 23 Though he had commanded the clouds from above, and opened the doors of heaven, 24 And had rained down manna upon them to eat, and had given them of the corn of heaven. 25 Man did eat angels’ food: he sent them meat to the full. 26 He caused an east wind to blow in the heaven: and by his power he brought in the south wind. 27 He rained flesh also upon them as dust, and feathered fowls like as the sand of the sea: 28 And he let it fall in the midst of their camp, round about their habitations. 29 So they did eat, and were well filled: for he gave them their own desire; 30 They were not estranged from their lust. But while their meat was yet in their mouths, 31 The wrath of God came upon them, and slew the fattest of them, and smote down the chosen men of Israel. 32 For all this they sinned still, and believed not for his wondrous works. + +[Saturday 09-November, 2024](https://getbible.life/kjv/Psalms/78/22-32) diff --git a/scripture/kjv/11/09/24/scripture.tg b/scripture/kjv/11/09/24/scripture.tg new file mode 100644 index 00000000..8161611f --- /dev/null +++ b/scripture/kjv/11/09/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 78:22-32 +22 Because they believed not in God, and trusted not in his salvation: 23 Though he had commanded the clouds from above, and opened the doors of heaven, 24 And had rained down manna upon them to eat, and had given them of the corn of heaven. 25 Man did eat angels’ food: he sent them meat to the full. 26 He caused an east wind to blow in the heaven: and by his power he brought in the south wind. 27 He rained flesh also upon them as dust, and feathered fowls like as the sand of the sea: 28 And he let it fall in the midst of their camp, round about their habitations. 29 So they did eat, and were well filled: for he gave them their own desire; 30 They were not estranged from their lust. But while their meat was yet in their mouths, 31 The wrath of God came upon them, and slew the fattest of them, and smote down the chosen men of Israel. 32 For all this they sinned still, and believed not for his wondrous works. + +Saturday 09-November, 2024 diff --git a/scripture/kjv/11/09/24/scripture.tg.id b/scripture/kjv/11/09/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/09/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/09/24/scripture.today b/scripture/kjv/11/09/24/scripture.today new file mode 100644 index 00000000..75f36d4b --- /dev/null +++ b/scripture/kjv/11/09/24/scripture.today @@ -0,0 +1 @@ +19 78:22-32 diff --git a/scripture/kjv/11/09/25/scripture.html b/scripture/kjv/11/09/25/scripture.html new file mode 100644 index 00000000..e36b8837 --- /dev/null +++ b/scripture/kjv/11/09/25/scripture.html @@ -0,0 +1,3 @@ +Jeremiah 32:27
+27 Behold, I am the Lord, the God of all flesh: is there any thing too hard for me?

+Sunday 09-November, 2025 diff --git a/scripture/kjv/11/09/25/scripture.json b/scripture/kjv/11/09/25/scripture.json new file mode 100644 index 00000000..777a89c8 --- /dev/null +++ b/scripture/kjv/11/09/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Jeremiah", + "chapter": "32", + "date": "Sunday 09-November, 2025", + "getbible": "https://getbible.life/kjv/Jeremiah/32/27", + "name": "Jeremiah 32:27", + "scripture": [ + { + "nr": "27", + "text": "Behold, I am the Lord, the God of all flesh: is there any thing too hard for me?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "27", + "version": "kjv" +} diff --git a/scripture/kjv/11/09/25/scripture.md b/scripture/kjv/11/09/25/scripture.md new file mode 100644 index 00000000..702142dd --- /dev/null +++ b/scripture/kjv/11/09/25/scripture.md @@ -0,0 +1,5 @@ +**Jeremiah 32:27** + +27 Behold, I am the Lord, the God of all flesh: is there any thing too hard for me? + +[Sunday 09-November, 2025](https://getbible.life/kjv/Jeremiah/32/27) diff --git a/scripture/kjv/11/09/25/scripture.tg b/scripture/kjv/11/09/25/scripture.tg new file mode 100644 index 00000000..4a0084f7 --- /dev/null +++ b/scripture/kjv/11/09/25/scripture.tg @@ -0,0 +1,4 @@ +Jeremiah 32:27 +27 Behold, I am the Lord, the God of all flesh: is there any thing too hard for me? + +Sunday 09-November, 2025 diff --git a/scripture/kjv/11/09/25/scripture.tg.id b/scripture/kjv/11/09/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/09/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/09/25/scripture.today b/scripture/kjv/11/09/25/scripture.today new file mode 100644 index 00000000..24348edf --- /dev/null +++ b/scripture/kjv/11/09/25/scripture.today @@ -0,0 +1 @@ +24 32:27 diff --git a/scripture/kjv/11/10/23/scripture.html b/scripture/kjv/11/10/23/scripture.html new file mode 100644 index 00000000..6a8d6502 --- /dev/null +++ b/scripture/kjv/11/10/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 68:18
+18 Thou hast ascended on high, thou hast led captivity captive: thou hast received gifts for men; yea, for the rebellious also, that the Lord God might dwell among them.

+Friday 10-November, 2023 diff --git a/scripture/kjv/11/10/23/scripture.json b/scripture/kjv/11/10/23/scripture.json new file mode 100644 index 00000000..c11e46a4 --- /dev/null +++ b/scripture/kjv/11/10/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "68", + "date": "Friday 10-November, 2023", + "getbible": "https://getbible.life/kjv/Psalms/68/18", + "name": "Psalms 68:18", + "scripture": [ + { + "nr": "18", + "text": "Thou hast ascended on high, thou hast led captivity captive: thou hast received gifts for men; yea, for the rebellious also, that the Lord God might dwell among them." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18", + "version": "kjv" +} diff --git a/scripture/kjv/11/10/23/scripture.md b/scripture/kjv/11/10/23/scripture.md new file mode 100644 index 00000000..7de65c84 --- /dev/null +++ b/scripture/kjv/11/10/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 68:18** + +18 Thou hast ascended on high, thou hast led captivity captive: thou hast received gifts for men; yea, for the rebellious also, that the Lord God might dwell among them. + +[Friday 10-November, 2023](https://getbible.life/kjv/Psalms/68/18) diff --git a/scripture/kjv/11/10/23/scripture.tg b/scripture/kjv/11/10/23/scripture.tg new file mode 100644 index 00000000..d4058c3f --- /dev/null +++ b/scripture/kjv/11/10/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 68:18 +18 Thou hast ascended on high, thou hast led captivity captive: thou hast received gifts for men; yea, for the rebellious also, that the Lord God might dwell among them. + +Friday 10-November, 2023 diff --git a/scripture/kjv/11/10/23/scripture.tg.id b/scripture/kjv/11/10/23/scripture.tg.id new file mode 100644 index 00000000..66bc4e1e --- /dev/null +++ b/scripture/kjv/11/10/23/scripture.tg.id @@ -0,0 +1 @@ +1133 diff --git a/scripture/kjv/11/10/23/scripture.today b/scripture/kjv/11/10/23/scripture.today new file mode 100644 index 00000000..02e90ce2 --- /dev/null +++ b/scripture/kjv/11/10/23/scripture.today @@ -0,0 +1 @@ +19 68:18 diff --git a/scripture/kjv/11/10/24/scripture.html b/scripture/kjv/11/10/24/scripture.html new file mode 100644 index 00000000..a654dc9d --- /dev/null +++ b/scripture/kjv/11/10/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 3:1-2
+1 My son, forget not my law; but let thine heart keep my commandments: 2 For length of days, and long life, and peace, shall they add to thee.

+Sunday 10-November, 2024 diff --git a/scripture/kjv/11/10/24/scripture.json b/scripture/kjv/11/10/24/scripture.json new file mode 100644 index 00000000..d687cb7d --- /dev/null +++ b/scripture/kjv/11/10/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Proverbs", + "chapter": "3", + "date": "Sunday 10-November, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/3/1-2", + "name": "Proverbs 3:1-2", + "scripture": [ + { + "nr": "1", + "text": "My son, forget not my law; but let thine heart keep my commandments:" + }, + { + "nr": "2", + "text": "For length of days, and long life, and peace, shall they add to thee." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-2", + "version": "kjv" +} diff --git a/scripture/kjv/11/10/24/scripture.md b/scripture/kjv/11/10/24/scripture.md new file mode 100644 index 00000000..f5bf4a83 --- /dev/null +++ b/scripture/kjv/11/10/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 3:1-2** + +1 My son, forget not my law; but let thine heart keep my commandments: 2 For length of days, and long life, and peace, shall they add to thee. + +[Sunday 10-November, 2024](https://getbible.life/kjv/Proverbs/3/1-2) diff --git a/scripture/kjv/11/10/24/scripture.tg b/scripture/kjv/11/10/24/scripture.tg new file mode 100644 index 00000000..acb8f12f --- /dev/null +++ b/scripture/kjv/11/10/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 3:1-2 +1 My son, forget not my law; but let thine heart keep my commandments: 2 For length of days, and long life, and peace, shall they add to thee. + +Sunday 10-November, 2024 diff --git a/scripture/kjv/11/10/24/scripture.tg.id b/scripture/kjv/11/10/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/10/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/10/24/scripture.today b/scripture/kjv/11/10/24/scripture.today new file mode 100644 index 00000000..c79b2782 --- /dev/null +++ b/scripture/kjv/11/10/24/scripture.today @@ -0,0 +1 @@ +20 3:1-2 diff --git a/scripture/kjv/11/10/25/scripture.html b/scripture/kjv/11/10/25/scripture.html new file mode 100644 index 00000000..c51a9125 --- /dev/null +++ b/scripture/kjv/11/10/25/scripture.html @@ -0,0 +1,3 @@ +Jeremiah 10:23
+23 O Lord, I know that the way of man is not in himself: it is not in man that walketh to direct his steps.

+Monday 10-November, 2025 diff --git a/scripture/kjv/11/10/25/scripture.json b/scripture/kjv/11/10/25/scripture.json new file mode 100644 index 00000000..3cca0bf6 --- /dev/null +++ b/scripture/kjv/11/10/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Jeremiah", + "chapter": "10", + "date": "Monday 10-November, 2025", + "getbible": "https://getbible.life/kjv/Jeremiah/10/23", + "name": "Jeremiah 10:23", + "scripture": [ + { + "nr": "23", + "text": "O Lord, I know that the way of man is not in himself: it is not in man that walketh to direct his steps." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "23", + "version": "kjv" +} diff --git a/scripture/kjv/11/10/25/scripture.md b/scripture/kjv/11/10/25/scripture.md new file mode 100644 index 00000000..b2baecc8 --- /dev/null +++ b/scripture/kjv/11/10/25/scripture.md @@ -0,0 +1,5 @@ +**Jeremiah 10:23** + +23 O Lord, I know that the way of man is not in himself: it is not in man that walketh to direct his steps. + +[Monday 10-November, 2025](https://getbible.life/kjv/Jeremiah/10/23) diff --git a/scripture/kjv/11/10/25/scripture.tg b/scripture/kjv/11/10/25/scripture.tg new file mode 100644 index 00000000..01a98612 --- /dev/null +++ b/scripture/kjv/11/10/25/scripture.tg @@ -0,0 +1,4 @@ +Jeremiah 10:23 +23 O Lord, I know that the way of man is not in himself: it is not in man that walketh to direct his steps. + +Monday 10-November, 2025 diff --git a/scripture/kjv/11/10/25/scripture.tg.id b/scripture/kjv/11/10/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/10/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/10/25/scripture.today b/scripture/kjv/11/10/25/scripture.today new file mode 100644 index 00000000..3220c867 --- /dev/null +++ b/scripture/kjv/11/10/25/scripture.today @@ -0,0 +1 @@ +24 10:23 diff --git a/scripture/kjv/11/11/23/scripture.html b/scripture/kjv/11/11/23/scripture.html new file mode 100644 index 00000000..63bd5541 --- /dev/null +++ b/scripture/kjv/11/11/23/scripture.html @@ -0,0 +1,3 @@ +Isaiah 3:11
+11 Woe unto the wicked! it shall be ill with him: for the reward of his hands shall be given him.

+Saturday 11-November, 2023 diff --git a/scripture/kjv/11/11/23/scripture.json b/scripture/kjv/11/11/23/scripture.json new file mode 100644 index 00000000..53d770e6 --- /dev/null +++ b/scripture/kjv/11/11/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "3", + "date": "Saturday 11-November, 2023", + "getbible": "https://getbible.life/kjv/Isaiah/3/11", + "name": "Isaiah 3:11", + "scripture": [ + { + "nr": "11", + "text": "Woe unto the wicked! it shall be ill with him: for the reward of his hands shall be given him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/11/11/23/scripture.md b/scripture/kjv/11/11/23/scripture.md new file mode 100644 index 00000000..23bfa099 --- /dev/null +++ b/scripture/kjv/11/11/23/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 3:11** + +11 Woe unto the wicked! it shall be ill with him: for the reward of his hands shall be given him. + +[Saturday 11-November, 2023](https://getbible.life/kjv/Isaiah/3/11) diff --git a/scripture/kjv/11/11/23/scripture.tg b/scripture/kjv/11/11/23/scripture.tg new file mode 100644 index 00000000..03d74925 --- /dev/null +++ b/scripture/kjv/11/11/23/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 3:11 +11 Woe unto the wicked! it shall be ill with him: for the reward of his hands shall be given him. + +Saturday 11-November, 2023 diff --git a/scripture/kjv/11/11/23/scripture.tg.id b/scripture/kjv/11/11/23/scripture.tg.id new file mode 100644 index 00000000..a788b7b3 --- /dev/null +++ b/scripture/kjv/11/11/23/scripture.tg.id @@ -0,0 +1 @@ +1134 diff --git a/scripture/kjv/11/11/23/scripture.today b/scripture/kjv/11/11/23/scripture.today new file mode 100644 index 00000000..5ce380b9 --- /dev/null +++ b/scripture/kjv/11/11/23/scripture.today @@ -0,0 +1 @@ +23 3:11 diff --git a/scripture/kjv/11/11/24/scripture.html b/scripture/kjv/11/11/24/scripture.html new file mode 100644 index 00000000..89ee434b --- /dev/null +++ b/scripture/kjv/11/11/24/scripture.html @@ -0,0 +1,3 @@ +1 John 2:9-11
+9 He that saith he is in the light, and hateth his brother, is in darkness even until now. 10 He that loveth his brother abideth in the light, and there is none occasion of stumbling in him. 11 But he that hateth his brother is in darkness, and walketh in darkness, and knoweth not whither he goeth, because that darkness hath blinded his eyes.

+Monday 11-November, 2024 diff --git a/scripture/kjv/11/11/24/scripture.json b/scripture/kjv/11/11/24/scripture.json new file mode 100644 index 00000000..b1d3cbf5 --- /dev/null +++ b/scripture/kjv/11/11/24/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "1 John", + "chapter": "2", + "date": "Monday 11-November, 2024", + "getbible": "https://getbible.life/kjv/1 John/2/9-11", + "name": "1 John 2:9-11", + "scripture": [ + { + "nr": "9", + "text": "He that saith he is in the light, and hateth his brother, is in darkness even until now." + }, + { + "nr": "10", + "text": "He that loveth his brother abideth in the light, and there is none occasion of stumbling in him." + }, + { + "nr": "11", + "text": "But he that hateth his brother is in darkness, and walketh in darkness, and knoweth not whither he goeth, because that darkness hath blinded his eyes." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9-11", + "version": "kjv" +} diff --git a/scripture/kjv/11/11/24/scripture.md b/scripture/kjv/11/11/24/scripture.md new file mode 100644 index 00000000..23c5bd98 --- /dev/null +++ b/scripture/kjv/11/11/24/scripture.md @@ -0,0 +1,5 @@ +**1 John 2:9-11** + +9 He that saith he is in the light, and hateth his brother, is in darkness even until now. 10 He that loveth his brother abideth in the light, and there is none occasion of stumbling in him. 11 But he that hateth his brother is in darkness, and walketh in darkness, and knoweth not whither he goeth, because that darkness hath blinded his eyes. + +[Monday 11-November, 2024](https://getbible.life/kjv/1 John/2/9-11) diff --git a/scripture/kjv/11/11/24/scripture.tg b/scripture/kjv/11/11/24/scripture.tg new file mode 100644 index 00000000..e4fc1d8e --- /dev/null +++ b/scripture/kjv/11/11/24/scripture.tg @@ -0,0 +1,4 @@ +1 John 2:9-11 +9 He that saith he is in the light, and hateth his brother, is in darkness even until now. 10 He that loveth his brother abideth in the light, and there is none occasion of stumbling in him. 11 But he that hateth his brother is in darkness, and walketh in darkness, and knoweth not whither he goeth, because that darkness hath blinded his eyes. + +Monday 11-November, 2024 diff --git a/scripture/kjv/11/11/24/scripture.tg.id b/scripture/kjv/11/11/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/11/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/11/24/scripture.today b/scripture/kjv/11/11/24/scripture.today new file mode 100644 index 00000000..490241c8 --- /dev/null +++ b/scripture/kjv/11/11/24/scripture.today @@ -0,0 +1 @@ +62 2:9-11 diff --git a/scripture/kjv/11/11/25/scripture.html b/scripture/kjv/11/11/25/scripture.html new file mode 100644 index 00000000..e05fe12f --- /dev/null +++ b/scripture/kjv/11/11/25/scripture.html @@ -0,0 +1,3 @@ +Genesis 22:18
+18 And in thy seed shall all the nations of the earth be blessed; because thou hast obeyed my voice.

+Tuesday 11-November, 2025 diff --git a/scripture/kjv/11/11/25/scripture.json b/scripture/kjv/11/11/25/scripture.json new file mode 100644 index 00000000..9fe55d47 --- /dev/null +++ b/scripture/kjv/11/11/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Genesis", + "chapter": "22", + "date": "Tuesday 11-November, 2025", + "getbible": "https://getbible.life/kjv/Genesis/22/18", + "name": "Genesis 22:18", + "scripture": [ + { + "nr": "18", + "text": "And in thy seed shall all the nations of the earth be blessed; because thou hast obeyed my voice." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18", + "version": "kjv" +} diff --git a/scripture/kjv/11/11/25/scripture.md b/scripture/kjv/11/11/25/scripture.md new file mode 100644 index 00000000..9da68157 --- /dev/null +++ b/scripture/kjv/11/11/25/scripture.md @@ -0,0 +1,5 @@ +**Genesis 22:18** + +18 And in thy seed shall all the nations of the earth be blessed; because thou hast obeyed my voice. + +[Tuesday 11-November, 2025](https://getbible.life/kjv/Genesis/22/18) diff --git a/scripture/kjv/11/11/25/scripture.tg b/scripture/kjv/11/11/25/scripture.tg new file mode 100644 index 00000000..b0f6dc14 --- /dev/null +++ b/scripture/kjv/11/11/25/scripture.tg @@ -0,0 +1,4 @@ +Genesis 22:18 +18 And in thy seed shall all the nations of the earth be blessed; because thou hast obeyed my voice. + +Tuesday 11-November, 2025 diff --git a/scripture/kjv/11/11/25/scripture.tg.id b/scripture/kjv/11/11/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/11/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/11/25/scripture.today b/scripture/kjv/11/11/25/scripture.today new file mode 100644 index 00000000..35fca5a4 --- /dev/null +++ b/scripture/kjv/11/11/25/scripture.today @@ -0,0 +1 @@ +1 22:18 diff --git a/scripture/kjv/11/12/23/scripture.html b/scripture/kjv/11/12/23/scripture.html new file mode 100644 index 00000000..43308afe --- /dev/null +++ b/scripture/kjv/11/12/23/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 15:10
+10 But by the grace of God I am what I am: and his grace which was bestowed upon me was not in vain; but I laboured more abundantly than they all: yet not I, but the grace of God which was with me.

+Sunday 12-November, 2023 diff --git a/scripture/kjv/11/12/23/scripture.json b/scripture/kjv/11/12/23/scripture.json new file mode 100644 index 00000000..7b6b9531 --- /dev/null +++ b/scripture/kjv/11/12/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "15", + "date": "Sunday 12-November, 2023", + "getbible": "https://getbible.life/kjv/1 Corinthians/15/10", + "name": "1 Corinthians 15:10", + "scripture": [ + { + "nr": "10", + "text": "But by the grace of God I am what I am: and his grace which was bestowed upon me was not in vain; but I laboured more abundantly than they all: yet not I, but the grace of God which was with me." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/11/12/23/scripture.md b/scripture/kjv/11/12/23/scripture.md new file mode 100644 index 00000000..58178992 --- /dev/null +++ b/scripture/kjv/11/12/23/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 15:10** + +10 But by the grace of God I am what I am: and his grace which was bestowed upon me was not in vain; but I laboured more abundantly than they all: yet not I, but the grace of God which was with me. + +[Sunday 12-November, 2023](https://getbible.life/kjv/1 Corinthians/15/10) diff --git a/scripture/kjv/11/12/23/scripture.tg b/scripture/kjv/11/12/23/scripture.tg new file mode 100644 index 00000000..51e541dd --- /dev/null +++ b/scripture/kjv/11/12/23/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 15:10 +10 But by the grace of God I am what I am: and his grace which was bestowed upon me was not in vain; but I laboured more abundantly than they all: yet not I, but the grace of God which was with me. + +Sunday 12-November, 2023 diff --git a/scripture/kjv/11/12/23/scripture.tg.id b/scripture/kjv/11/12/23/scripture.tg.id new file mode 100644 index 00000000..e601c44f --- /dev/null +++ b/scripture/kjv/11/12/23/scripture.tg.id @@ -0,0 +1 @@ +1135 diff --git a/scripture/kjv/11/12/23/scripture.today b/scripture/kjv/11/12/23/scripture.today new file mode 100644 index 00000000..6e0e6568 --- /dev/null +++ b/scripture/kjv/11/12/23/scripture.today @@ -0,0 +1 @@ +46 15:10 diff --git a/scripture/kjv/11/12/24/scripture.html b/scripture/kjv/11/12/24/scripture.html new file mode 100644 index 00000000..58e4ca24 --- /dev/null +++ b/scripture/kjv/11/12/24/scripture.html @@ -0,0 +1,3 @@ +Matthew 6:24
+24 No man can serve two masters: for either he will hate the one, and love the other; or else he will hold to the one, and despise the other. Ye cannot serve God and mammon.

+Tuesday 12-November, 2024 diff --git a/scripture/kjv/11/12/24/scripture.json b/scripture/kjv/11/12/24/scripture.json new file mode 100644 index 00000000..5656bbb4 --- /dev/null +++ b/scripture/kjv/11/12/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Matthew", + "chapter": "6", + "date": "Tuesday 12-November, 2024", + "getbible": "https://getbible.life/kjv/Matthew/6/24", + "name": "Matthew 6:24", + "scripture": [ + { + "nr": "24", + "text": "No man can serve two masters: for either he will hate the one, and love the other; or else he will hold to the one, and despise the other. Ye cannot serve God and mammon." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "24", + "version": "kjv" +} diff --git a/scripture/kjv/11/12/24/scripture.md b/scripture/kjv/11/12/24/scripture.md new file mode 100644 index 00000000..9e633a8f --- /dev/null +++ b/scripture/kjv/11/12/24/scripture.md @@ -0,0 +1,5 @@ +**Matthew 6:24** + +24 No man can serve two masters: for either he will hate the one, and love the other; or else he will hold to the one, and despise the other. Ye cannot serve God and mammon. + +[Tuesday 12-November, 2024](https://getbible.life/kjv/Matthew/6/24) diff --git a/scripture/kjv/11/12/24/scripture.tg b/scripture/kjv/11/12/24/scripture.tg new file mode 100644 index 00000000..b6c5d23d --- /dev/null +++ b/scripture/kjv/11/12/24/scripture.tg @@ -0,0 +1,4 @@ +Matthew 6:24 +24 No man can serve two masters: for either he will hate the one, and love the other; or else he will hold to the one, and despise the other. Ye cannot serve God and mammon. + +Tuesday 12-November, 2024 diff --git a/scripture/kjv/11/12/24/scripture.tg.id b/scripture/kjv/11/12/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/12/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/12/24/scripture.today b/scripture/kjv/11/12/24/scripture.today new file mode 100644 index 00000000..1b904b5d --- /dev/null +++ b/scripture/kjv/11/12/24/scripture.today @@ -0,0 +1 @@ +40 6:24 diff --git a/scripture/kjv/11/12/25/scripture.html b/scripture/kjv/11/12/25/scripture.html new file mode 100644 index 00000000..32eabe5e --- /dev/null +++ b/scripture/kjv/11/12/25/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 13:5
+5 Examine yourselves, whether ye be in the faith; prove your own selves. Know ye not your own selves, how that Jesus Christ is in you, except ye be reprobates?

+Wednesday 12-November, 2025 diff --git a/scripture/kjv/11/12/25/scripture.json b/scripture/kjv/11/12/25/scripture.json new file mode 100644 index 00000000..fbfd8ff5 --- /dev/null +++ b/scripture/kjv/11/12/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "13", + "date": "Wednesday 12-November, 2025", + "getbible": "https://getbible.life/kjv/2 Corinthians/13/5", + "name": "2 Corinthians 13:5", + "scripture": [ + { + "nr": "5", + "text": "Examine yourselves, whether ye be in the faith; prove your own selves. Know ye not your own selves, how that Jesus Christ is in you, except ye be reprobates?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5", + "version": "kjv" +} diff --git a/scripture/kjv/11/12/25/scripture.md b/scripture/kjv/11/12/25/scripture.md new file mode 100644 index 00000000..3833f3ee --- /dev/null +++ b/scripture/kjv/11/12/25/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 13:5** + +5 Examine yourselves, whether ye be in the faith; prove your own selves. Know ye not your own selves, how that Jesus Christ is in you, except ye be reprobates? + +[Wednesday 12-November, 2025](https://getbible.life/kjv/2 Corinthians/13/5) diff --git a/scripture/kjv/11/12/25/scripture.tg b/scripture/kjv/11/12/25/scripture.tg new file mode 100644 index 00000000..5d818e28 --- /dev/null +++ b/scripture/kjv/11/12/25/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 13:5 +5 Examine yourselves, whether ye be in the faith; prove your own selves. Know ye not your own selves, how that Jesus Christ is in you, except ye be reprobates? + +Wednesday 12-November, 2025 diff --git a/scripture/kjv/11/12/25/scripture.tg.id b/scripture/kjv/11/12/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/12/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/12/25/scripture.today b/scripture/kjv/11/12/25/scripture.today new file mode 100644 index 00000000..e90fe8b2 --- /dev/null +++ b/scripture/kjv/11/12/25/scripture.today @@ -0,0 +1 @@ +47 13:5 diff --git a/scripture/kjv/11/13/23/scripture.html b/scripture/kjv/11/13/23/scripture.html new file mode 100644 index 00000000..67f659d3 --- /dev/null +++ b/scripture/kjv/11/13/23/scripture.html @@ -0,0 +1,3 @@ +Luke 23:12
+12 And the same day Pilate and Herod were made friends together: for before they were at enmity between themselves.

+Monday 13-November, 2023 diff --git a/scripture/kjv/11/13/23/scripture.json b/scripture/kjv/11/13/23/scripture.json new file mode 100644 index 00000000..9a171d9d --- /dev/null +++ b/scripture/kjv/11/13/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "23", + "date": "Monday 13-November, 2023", + "getbible": "https://getbible.life/kjv/Luke/23/12", + "name": "Luke 23:12", + "scripture": [ + { + "nr": "12", + "text": "And the same day Pilate and Herod were made friends together: for before they were at enmity between themselves." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/11/13/23/scripture.md b/scripture/kjv/11/13/23/scripture.md new file mode 100644 index 00000000..3facabcf --- /dev/null +++ b/scripture/kjv/11/13/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 23:12** + +12 And the same day Pilate and Herod were made friends together: for before they were at enmity between themselves. + +[Monday 13-November, 2023](https://getbible.life/kjv/Luke/23/12) diff --git a/scripture/kjv/11/13/23/scripture.tg b/scripture/kjv/11/13/23/scripture.tg new file mode 100644 index 00000000..8f1c77c3 --- /dev/null +++ b/scripture/kjv/11/13/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 23:12 +12 And the same day Pilate and Herod were made friends together: for before they were at enmity between themselves. + +Monday 13-November, 2023 diff --git a/scripture/kjv/11/13/23/scripture.tg.id b/scripture/kjv/11/13/23/scripture.tg.id new file mode 100644 index 00000000..61280f5b --- /dev/null +++ b/scripture/kjv/11/13/23/scripture.tg.id @@ -0,0 +1 @@ +1136 diff --git a/scripture/kjv/11/13/23/scripture.today b/scripture/kjv/11/13/23/scripture.today new file mode 100644 index 00000000..75f0f230 --- /dev/null +++ b/scripture/kjv/11/13/23/scripture.today @@ -0,0 +1 @@ +42 23:12 diff --git a/scripture/kjv/11/13/24/scripture.html b/scripture/kjv/11/13/24/scripture.html new file mode 100644 index 00000000..72ccc86d --- /dev/null +++ b/scripture/kjv/11/13/24/scripture.html @@ -0,0 +1,3 @@ +Matthew 13:41-43
+41 The Son of man shall send forth his angels, and they shall gather out of his kingdom all things that offend, and them which do iniquity; 42 And shall cast them into a furnace of fire: there shall be wailing and gnashing of teeth. 43 Then shall the righteous shine forth as the sun in the kingdom of their Father. Who hath ears to hear, let him hear.

+Wednesday 13-November, 2024 diff --git a/scripture/kjv/11/13/24/scripture.json b/scripture/kjv/11/13/24/scripture.json new file mode 100644 index 00000000..304d6657 --- /dev/null +++ b/scripture/kjv/11/13/24/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Matthew", + "chapter": "13", + "date": "Wednesday 13-November, 2024", + "getbible": "https://getbible.life/kjv/Matthew/13/41-43", + "name": "Matthew 13:41-43", + "scripture": [ + { + "nr": "41", + "text": "The Son of man shall send forth his angels, and they shall gather out of his kingdom all things that offend, and them which do iniquity;" + }, + { + "nr": "42", + "text": "And shall cast them into a furnace of fire: there shall be wailing and gnashing of teeth." + }, + { + "nr": "43", + "text": "Then shall the righteous shine forth as the sun in the kingdom of their Father. Who hath ears to hear, let him hear." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "41-43", + "version": "kjv" +} diff --git a/scripture/kjv/11/13/24/scripture.md b/scripture/kjv/11/13/24/scripture.md new file mode 100644 index 00000000..17a38557 --- /dev/null +++ b/scripture/kjv/11/13/24/scripture.md @@ -0,0 +1,5 @@ +**Matthew 13:41-43** + +41 The Son of man shall send forth his angels, and they shall gather out of his kingdom all things that offend, and them which do iniquity; 42 And shall cast them into a furnace of fire: there shall be wailing and gnashing of teeth. 43 Then shall the righteous shine forth as the sun in the kingdom of their Father. Who hath ears to hear, let him hear. + +[Wednesday 13-November, 2024](https://getbible.life/kjv/Matthew/13/41-43) diff --git a/scripture/kjv/11/13/24/scripture.tg b/scripture/kjv/11/13/24/scripture.tg new file mode 100644 index 00000000..7a42887d --- /dev/null +++ b/scripture/kjv/11/13/24/scripture.tg @@ -0,0 +1,4 @@ +Matthew 13:41-43 +41 The Son of man shall send forth his angels, and they shall gather out of his kingdom all things that offend, and them which do iniquity; 42 And shall cast them into a furnace of fire: there shall be wailing and gnashing of teeth. 43 Then shall the righteous shine forth as the sun in the kingdom of their Father. Who hath ears to hear, let him hear. + +Wednesday 13-November, 2024 diff --git a/scripture/kjv/11/13/24/scripture.tg.id b/scripture/kjv/11/13/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/13/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/13/24/scripture.today b/scripture/kjv/11/13/24/scripture.today new file mode 100644 index 00000000..df570c62 --- /dev/null +++ b/scripture/kjv/11/13/24/scripture.today @@ -0,0 +1 @@ +40 13:41-43 diff --git a/scripture/kjv/11/13/25/scripture.html b/scripture/kjv/11/13/25/scripture.html new file mode 100644 index 00000000..68f86d27 --- /dev/null +++ b/scripture/kjv/11/13/25/scripture.html @@ -0,0 +1,3 @@ +1 Peter 2:25
+25 For ye were as sheep going astray; but are now returned unto the Shepherd and Bishop of your souls.

+Thursday 13-November, 2025 diff --git a/scripture/kjv/11/13/25/scripture.json b/scripture/kjv/11/13/25/scripture.json new file mode 100644 index 00000000..332a05dc --- /dev/null +++ b/scripture/kjv/11/13/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Peter", + "chapter": "2", + "date": "Thursday 13-November, 2025", + "getbible": "https://getbible.life/kjv/1 Peter/2/25", + "name": "1 Peter 2:25", + "scripture": [ + { + "nr": "25", + "text": "For ye were as sheep going astray; but are now returned unto the Shepherd and Bishop of your souls. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "25", + "version": "kjv" +} diff --git a/scripture/kjv/11/13/25/scripture.md b/scripture/kjv/11/13/25/scripture.md new file mode 100644 index 00000000..95d584b5 --- /dev/null +++ b/scripture/kjv/11/13/25/scripture.md @@ -0,0 +1,5 @@ +**1 Peter 2:25** + +25 For ye were as sheep going astray; but are now returned unto the Shepherd and Bishop of your souls. + +[Thursday 13-November, 2025](https://getbible.life/kjv/1 Peter/2/25) diff --git a/scripture/kjv/11/13/25/scripture.tg b/scripture/kjv/11/13/25/scripture.tg new file mode 100644 index 00000000..b33690cc --- /dev/null +++ b/scripture/kjv/11/13/25/scripture.tg @@ -0,0 +1,4 @@ +1 Peter 2:25 +25 For ye were as sheep going astray; but are now returned unto the Shepherd and Bishop of your souls. + +Thursday 13-November, 2025 diff --git a/scripture/kjv/11/13/25/scripture.tg.id b/scripture/kjv/11/13/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/13/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/13/25/scripture.today b/scripture/kjv/11/13/25/scripture.today new file mode 100644 index 00000000..d83be564 --- /dev/null +++ b/scripture/kjv/11/13/25/scripture.today @@ -0,0 +1 @@ +60 2:25 diff --git a/scripture/kjv/11/14/23/scripture.html b/scripture/kjv/11/14/23/scripture.html new file mode 100644 index 00000000..5e2b70e4 --- /dev/null +++ b/scripture/kjv/11/14/23/scripture.html @@ -0,0 +1,3 @@ +Romans 6:1-2
+1 What shall we say then? Shall we continue in sin, that grace may abound? 2 God forbid. How shall we, that are dead to sin, live any longer therein?

+Tuesday 14-November, 2023 diff --git a/scripture/kjv/11/14/23/scripture.json b/scripture/kjv/11/14/23/scripture.json new file mode 100644 index 00000000..10d600ed --- /dev/null +++ b/scripture/kjv/11/14/23/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Romans", + "chapter": "6", + "date": "Tuesday 14-November, 2023", + "getbible": "https://getbible.life/kjv/Romans/6/1-2", + "name": "Romans 6:1-2", + "scripture": [ + { + "nr": "1", + "text": "What shall we say then? Shall we continue in sin, that grace may abound?" + }, + { + "nr": "2", + "text": "God forbid. How shall we, that are dead to sin, live any longer therein?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-2", + "version": "kjv" +} diff --git a/scripture/kjv/11/14/23/scripture.md b/scripture/kjv/11/14/23/scripture.md new file mode 100644 index 00000000..2a3dc6ff --- /dev/null +++ b/scripture/kjv/11/14/23/scripture.md @@ -0,0 +1,5 @@ +**Romans 6:1-2** + +1 What shall we say then? Shall we continue in sin, that grace may abound? 2 God forbid. How shall we, that are dead to sin, live any longer therein? + +[Tuesday 14-November, 2023](https://getbible.life/kjv/Romans/6/1-2) diff --git a/scripture/kjv/11/14/23/scripture.tg b/scripture/kjv/11/14/23/scripture.tg new file mode 100644 index 00000000..956d00af --- /dev/null +++ b/scripture/kjv/11/14/23/scripture.tg @@ -0,0 +1,4 @@ +Romans 6:1-2 +1 What shall we say then? Shall we continue in sin, that grace may abound? 2 God forbid. How shall we, that are dead to sin, live any longer therein? + +Tuesday 14-November, 2023 diff --git a/scripture/kjv/11/14/23/scripture.tg.id b/scripture/kjv/11/14/23/scripture.tg.id new file mode 100644 index 00000000..3393c6dd --- /dev/null +++ b/scripture/kjv/11/14/23/scripture.tg.id @@ -0,0 +1 @@ +1137 diff --git a/scripture/kjv/11/14/23/scripture.today b/scripture/kjv/11/14/23/scripture.today new file mode 100644 index 00000000..ce415fb6 --- /dev/null +++ b/scripture/kjv/11/14/23/scripture.today @@ -0,0 +1 @@ +45 6:1-2 diff --git a/scripture/kjv/11/14/24/scripture.html b/scripture/kjv/11/14/24/scripture.html new file mode 100644 index 00000000..7b809990 --- /dev/null +++ b/scripture/kjv/11/14/24/scripture.html @@ -0,0 +1,3 @@ +Nehemiah 4:17
+17 They which builded on the wall, and they that bare burdens, with those that laded, every one with one of his hands wrought in the work, and with the other hand held a weapon.

+Thursday 14-November, 2024 diff --git a/scripture/kjv/11/14/24/scripture.json b/scripture/kjv/11/14/24/scripture.json new file mode 100644 index 00000000..ab9e422c --- /dev/null +++ b/scripture/kjv/11/14/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Nehemiah", + "chapter": "4", + "date": "Thursday 14-November, 2024", + "getbible": "https://getbible.life/kjv/Nehemiah/4/17", + "name": "Nehemiah 4:17", + "scripture": [ + { + "nr": "17", + "text": "They which builded on the wall, and they that bare burdens, with those that laded, every one with one of his hands wrought in the work, and with the other hand held a weapon." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17", + "version": "kjv" +} diff --git a/scripture/kjv/11/14/24/scripture.md b/scripture/kjv/11/14/24/scripture.md new file mode 100644 index 00000000..c9e8d35f --- /dev/null +++ b/scripture/kjv/11/14/24/scripture.md @@ -0,0 +1,5 @@ +**Nehemiah 4:17** + +17 They which builded on the wall, and they that bare burdens, with those that laded, every one with one of his hands wrought in the work, and with the other hand held a weapon. + +[Thursday 14-November, 2024](https://getbible.life/kjv/Nehemiah/4/17) diff --git a/scripture/kjv/11/14/24/scripture.tg b/scripture/kjv/11/14/24/scripture.tg new file mode 100644 index 00000000..82d2a349 --- /dev/null +++ b/scripture/kjv/11/14/24/scripture.tg @@ -0,0 +1,4 @@ +Nehemiah 4:17 +17 They which builded on the wall, and they that bare burdens, with those that laded, every one with one of his hands wrought in the work, and with the other hand held a weapon. + +Thursday 14-November, 2024 diff --git a/scripture/kjv/11/14/24/scripture.tg.id b/scripture/kjv/11/14/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/14/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/14/24/scripture.today b/scripture/kjv/11/14/24/scripture.today new file mode 100644 index 00000000..fa8e9c30 --- /dev/null +++ b/scripture/kjv/11/14/24/scripture.today @@ -0,0 +1 @@ +16 4:17 diff --git a/scripture/kjv/11/14/25/scripture.html b/scripture/kjv/11/14/25/scripture.html new file mode 100644 index 00000000..47baac89 --- /dev/null +++ b/scripture/kjv/11/14/25/scripture.html @@ -0,0 +1,3 @@ +Proverbs 24:16
+16 For a just man falleth seven times, and riseth up again: but the wicked shall fall into mischief.

+Friday 14-November, 2025 diff --git a/scripture/kjv/11/14/25/scripture.json b/scripture/kjv/11/14/25/scripture.json new file mode 100644 index 00000000..a9aac7c1 --- /dev/null +++ b/scripture/kjv/11/14/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "24", + "date": "Friday 14-November, 2025", + "getbible": "https://getbible.life/kjv/Proverbs/24/16", + "name": "Proverbs 24:16", + "scripture": [ + { + "nr": "16", + "text": "For a just man falleth seven times, and riseth up again: but the wicked shall fall into mischief." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16", + "version": "kjv" +} diff --git a/scripture/kjv/11/14/25/scripture.md b/scripture/kjv/11/14/25/scripture.md new file mode 100644 index 00000000..b5d76333 --- /dev/null +++ b/scripture/kjv/11/14/25/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 24:16** + +16 For a just man falleth seven times, and riseth up again: but the wicked shall fall into mischief. + +[Friday 14-November, 2025](https://getbible.life/kjv/Proverbs/24/16) diff --git a/scripture/kjv/11/14/25/scripture.tg b/scripture/kjv/11/14/25/scripture.tg new file mode 100644 index 00000000..8dec7801 --- /dev/null +++ b/scripture/kjv/11/14/25/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 24:16 +16 For a just man falleth seven times, and riseth up again: but the wicked shall fall into mischief. + +Friday 14-November, 2025 diff --git a/scripture/kjv/11/14/25/scripture.tg.id b/scripture/kjv/11/14/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/14/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/14/25/scripture.today b/scripture/kjv/11/14/25/scripture.today new file mode 100644 index 00000000..4a137368 --- /dev/null +++ b/scripture/kjv/11/14/25/scripture.today @@ -0,0 +1 @@ +20 24:16 diff --git a/scripture/kjv/11/15/23/scripture.html b/scripture/kjv/11/15/23/scripture.html new file mode 100644 index 00000000..34b11a35 --- /dev/null +++ b/scripture/kjv/11/15/23/scripture.html @@ -0,0 +1,3 @@ +Luke 2:27
+27 And he came by the Spirit into the temple: and when the parents brought in the child Jesus, to do for him after the custom of the law,

+Wednesday 15-November, 2023 diff --git a/scripture/kjv/11/15/23/scripture.json b/scripture/kjv/11/15/23/scripture.json new file mode 100644 index 00000000..45c01a1a --- /dev/null +++ b/scripture/kjv/11/15/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "2", + "date": "Wednesday 15-November, 2023", + "getbible": "https://getbible.life/kjv/Luke/2/27", + "name": "Luke 2:27", + "scripture": [ + { + "nr": "27", + "text": "And he came by the Spirit into the temple: and when the parents brought in the child Jesus, to do for him after the custom of the law," + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "27", + "version": "kjv" +} diff --git a/scripture/kjv/11/15/23/scripture.md b/scripture/kjv/11/15/23/scripture.md new file mode 100644 index 00000000..13229560 --- /dev/null +++ b/scripture/kjv/11/15/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 2:27** + +27 And he came by the Spirit into the temple: and when the parents brought in the child Jesus, to do for him after the custom of the law, + +[Wednesday 15-November, 2023](https://getbible.life/kjv/Luke/2/27) diff --git a/scripture/kjv/11/15/23/scripture.tg b/scripture/kjv/11/15/23/scripture.tg new file mode 100644 index 00000000..9345a4b3 --- /dev/null +++ b/scripture/kjv/11/15/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 2:27 +27 And he came by the Spirit into the temple: and when the parents brought in the child Jesus, to do for him after the custom of the law, + +Wednesday 15-November, 2023 diff --git a/scripture/kjv/11/15/23/scripture.tg.id b/scripture/kjv/11/15/23/scripture.tg.id new file mode 100644 index 00000000..91d0f8a3 --- /dev/null +++ b/scripture/kjv/11/15/23/scripture.tg.id @@ -0,0 +1 @@ +1138 diff --git a/scripture/kjv/11/15/23/scripture.today b/scripture/kjv/11/15/23/scripture.today new file mode 100644 index 00000000..859004b2 --- /dev/null +++ b/scripture/kjv/11/15/23/scripture.today @@ -0,0 +1 @@ +42 2:27 diff --git a/scripture/kjv/11/15/24/scripture.html b/scripture/kjv/11/15/24/scripture.html new file mode 100644 index 00000000..a54242eb --- /dev/null +++ b/scripture/kjv/11/15/24/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 6:7
+7 Now therefore there is utterly a fault among you, because ye go to law one with another. Why do ye not rather take wrong? why do ye not rather suffer yourselves to be defrauded?

+Friday 15-November, 2024 diff --git a/scripture/kjv/11/15/24/scripture.json b/scripture/kjv/11/15/24/scripture.json new file mode 100644 index 00000000..3993ae3b --- /dev/null +++ b/scripture/kjv/11/15/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "6", + "date": "Friday 15-November, 2024", + "getbible": "https://getbible.life/kjv/1 Corinthians/6/7", + "name": "1 Corinthians 6:7", + "scripture": [ + { + "nr": "7", + "text": "Now therefore there is utterly a fault among you, because ye go to law one with another. Why do ye not rather take wrong? why do ye not rather suffer yourselves to be defrauded?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7", + "version": "kjv" +} diff --git a/scripture/kjv/11/15/24/scripture.md b/scripture/kjv/11/15/24/scripture.md new file mode 100644 index 00000000..3f5e11b9 --- /dev/null +++ b/scripture/kjv/11/15/24/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 6:7** + +7 Now therefore there is utterly a fault among you, because ye go to law one with another. Why do ye not rather take wrong? why do ye not rather suffer yourselves to be defrauded? + +[Friday 15-November, 2024](https://getbible.life/kjv/1 Corinthians/6/7) diff --git a/scripture/kjv/11/15/24/scripture.tg b/scripture/kjv/11/15/24/scripture.tg new file mode 100644 index 00000000..8d0740e6 --- /dev/null +++ b/scripture/kjv/11/15/24/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 6:7 +7 Now therefore there is utterly a fault among you, because ye go to law one with another. Why do ye not rather take wrong? why do ye not rather suffer yourselves to be defrauded? + +Friday 15-November, 2024 diff --git a/scripture/kjv/11/15/24/scripture.tg.id b/scripture/kjv/11/15/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/15/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/15/24/scripture.today b/scripture/kjv/11/15/24/scripture.today new file mode 100644 index 00000000..05c16e8e --- /dev/null +++ b/scripture/kjv/11/15/24/scripture.today @@ -0,0 +1 @@ +46 6:7 diff --git a/scripture/kjv/11/15/25/scripture.html b/scripture/kjv/11/15/25/scripture.html new file mode 100644 index 00000000..f72a3ca8 --- /dev/null +++ b/scripture/kjv/11/15/25/scripture.html @@ -0,0 +1,3 @@ +Romans 11:20-22
+20 Well; because of unbelief they were broken off, and thou standest by faith. Be not highminded, but fear: 21 For if God spared not the natural branches, take heed lest he also spare not thee. 22 Behold therefore the goodness and severity of God: on them which fell, severity; but toward thee, goodness, if thou continue in his goodness: otherwise thou also shalt be cut off.

+Saturday 15-November, 2025 diff --git a/scripture/kjv/11/15/25/scripture.json b/scripture/kjv/11/15/25/scripture.json new file mode 100644 index 00000000..868266e1 --- /dev/null +++ b/scripture/kjv/11/15/25/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Romans", + "chapter": "11", + "date": "Saturday 15-November, 2025", + "getbible": "https://getbible.life/kjv/Romans/11/20-22", + "name": "Romans 11:20-22", + "scripture": [ + { + "nr": "20", + "text": "Well; because of unbelief they were broken off, and thou standest by faith. Be not highminded, but fear:" + }, + { + "nr": "21", + "text": "For if God spared not the natural branches, take heed lest he also spare not thee." + }, + { + "nr": "22", + "text": "Behold therefore the goodness and severity of God: on them which fell, severity; but toward thee, goodness, if thou continue in his goodness: otherwise thou also shalt be cut off." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20-22", + "version": "kjv" +} diff --git a/scripture/kjv/11/15/25/scripture.md b/scripture/kjv/11/15/25/scripture.md new file mode 100644 index 00000000..537a768c --- /dev/null +++ b/scripture/kjv/11/15/25/scripture.md @@ -0,0 +1,5 @@ +**Romans 11:20-22** + +20 Well; because of unbelief they were broken off, and thou standest by faith. Be not highminded, but fear: 21 For if God spared not the natural branches, take heed lest he also spare not thee. 22 Behold therefore the goodness and severity of God: on them which fell, severity; but toward thee, goodness, if thou continue in his goodness: otherwise thou also shalt be cut off. + +[Saturday 15-November, 2025](https://getbible.life/kjv/Romans/11/20-22) diff --git a/scripture/kjv/11/15/25/scripture.tg b/scripture/kjv/11/15/25/scripture.tg new file mode 100644 index 00000000..10edc032 --- /dev/null +++ b/scripture/kjv/11/15/25/scripture.tg @@ -0,0 +1,4 @@ +Romans 11:20-22 +20 Well; because of unbelief they were broken off, and thou standest by faith. Be not highminded, but fear: 21 For if God spared not the natural branches, take heed lest he also spare not thee. 22 Behold therefore the goodness and severity of God: on them which fell, severity; but toward thee, goodness, if thou continue in his goodness: otherwise thou also shalt be cut off. + +Saturday 15-November, 2025 diff --git a/scripture/kjv/11/15/25/scripture.tg.id b/scripture/kjv/11/15/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/15/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/15/25/scripture.today b/scripture/kjv/11/15/25/scripture.today new file mode 100644 index 00000000..80401f66 --- /dev/null +++ b/scripture/kjv/11/15/25/scripture.today @@ -0,0 +1 @@ +45 11:20-22 diff --git a/scripture/kjv/11/16/23/scripture.html b/scripture/kjv/11/16/23/scripture.html new file mode 100644 index 00000000..6a34daa1 --- /dev/null +++ b/scripture/kjv/11/16/23/scripture.html @@ -0,0 +1,3 @@ +Daniel 4:26
+26 And whereas they commanded to leave the stump of the tree roots; thy kingdom shall be sure unto thee, after that thou shalt have known that the heavens do rule.

+Thursday 16-November, 2023 diff --git a/scripture/kjv/11/16/23/scripture.json b/scripture/kjv/11/16/23/scripture.json new file mode 100644 index 00000000..7a8ced79 --- /dev/null +++ b/scripture/kjv/11/16/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Daniel", + "chapter": "4", + "date": "Thursday 16-November, 2023", + "getbible": "https://getbible.life/kjv/Daniel/4/26", + "name": "Daniel 4:26", + "scripture": [ + { + "nr": "26", + "text": "And whereas they commanded to leave the stump of the tree roots; thy kingdom shall be sure unto thee, after that thou shalt have known that the heavens do rule." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "26", + "version": "kjv" +} diff --git a/scripture/kjv/11/16/23/scripture.md b/scripture/kjv/11/16/23/scripture.md new file mode 100644 index 00000000..7f2bf466 --- /dev/null +++ b/scripture/kjv/11/16/23/scripture.md @@ -0,0 +1,5 @@ +**Daniel 4:26** + +26 And whereas they commanded to leave the stump of the tree roots; thy kingdom shall be sure unto thee, after that thou shalt have known that the heavens do rule. + +[Thursday 16-November, 2023](https://getbible.life/kjv/Daniel/4/26) diff --git a/scripture/kjv/11/16/23/scripture.tg b/scripture/kjv/11/16/23/scripture.tg new file mode 100644 index 00000000..2ae9021d --- /dev/null +++ b/scripture/kjv/11/16/23/scripture.tg @@ -0,0 +1,4 @@ +Daniel 4:26 +26 And whereas they commanded to leave the stump of the tree roots; thy kingdom shall be sure unto thee, after that thou shalt have known that the heavens do rule. + +Thursday 16-November, 2023 diff --git a/scripture/kjv/11/16/23/scripture.tg.id b/scripture/kjv/11/16/23/scripture.tg.id new file mode 100644 index 00000000..43cff8aa --- /dev/null +++ b/scripture/kjv/11/16/23/scripture.tg.id @@ -0,0 +1 @@ +1139 diff --git a/scripture/kjv/11/16/23/scripture.today b/scripture/kjv/11/16/23/scripture.today new file mode 100644 index 00000000..e61c101b --- /dev/null +++ b/scripture/kjv/11/16/23/scripture.today @@ -0,0 +1 @@ +27 4:26 diff --git a/scripture/kjv/11/16/24/scripture.html b/scripture/kjv/11/16/24/scripture.html new file mode 100644 index 00000000..1028b09e --- /dev/null +++ b/scripture/kjv/11/16/24/scripture.html @@ -0,0 +1,3 @@ +John 15:18-19
+18 If the world hate you, ye know that it hated me before it hated you. 19 If ye were of the world, the world would love his own: but because ye are not of the world, but I have chosen you out of the world, therefore the world hateth you.

+Saturday 16-November, 2024 diff --git a/scripture/kjv/11/16/24/scripture.json b/scripture/kjv/11/16/24/scripture.json new file mode 100644 index 00000000..8fda015d --- /dev/null +++ b/scripture/kjv/11/16/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "John", + "chapter": "15", + "date": "Saturday 16-November, 2024", + "getbible": "https://getbible.life/kjv/John/15/18-19", + "name": "John 15:18-19", + "scripture": [ + { + "nr": "18", + "text": "If the world hate you, ye know that it hated me before it hated you." + }, + { + "nr": "19", + "text": "If ye were of the world, the world would love his own: but because ye are not of the world, but I have chosen you out of the world, therefore the world hateth you." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18-19", + "version": "kjv" +} diff --git a/scripture/kjv/11/16/24/scripture.md b/scripture/kjv/11/16/24/scripture.md new file mode 100644 index 00000000..d977bfac --- /dev/null +++ b/scripture/kjv/11/16/24/scripture.md @@ -0,0 +1,5 @@ +**John 15:18-19** + +18 If the world hate you, ye know that it hated me before it hated you. 19 If ye were of the world, the world would love his own: but because ye are not of the world, but I have chosen you out of the world, therefore the world hateth you. + +[Saturday 16-November, 2024](https://getbible.life/kjv/John/15/18-19) diff --git a/scripture/kjv/11/16/24/scripture.tg b/scripture/kjv/11/16/24/scripture.tg new file mode 100644 index 00000000..e2e6b9cb --- /dev/null +++ b/scripture/kjv/11/16/24/scripture.tg @@ -0,0 +1,4 @@ +John 15:18-19 +18 If the world hate you, ye know that it hated me before it hated you. 19 If ye were of the world, the world would love his own: but because ye are not of the world, but I have chosen you out of the world, therefore the world hateth you. + +Saturday 16-November, 2024 diff --git a/scripture/kjv/11/16/24/scripture.tg.id b/scripture/kjv/11/16/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/16/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/16/24/scripture.today b/scripture/kjv/11/16/24/scripture.today new file mode 100644 index 00000000..06f52833 --- /dev/null +++ b/scripture/kjv/11/16/24/scripture.today @@ -0,0 +1 @@ +43 15:18-19 diff --git a/scripture/kjv/11/16/25/scripture.html b/scripture/kjv/11/16/25/scripture.html new file mode 100644 index 00000000..4d3efa2d --- /dev/null +++ b/scripture/kjv/11/16/25/scripture.html @@ -0,0 +1,3 @@ +Proverbs 15:4
+4 A wholesome tongue is a tree of life: but perverseness therein is a breach in the spirit.

+Sunday 16-November, 2025 diff --git a/scripture/kjv/11/16/25/scripture.json b/scripture/kjv/11/16/25/scripture.json new file mode 100644 index 00000000..b75b89f3 --- /dev/null +++ b/scripture/kjv/11/16/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "15", + "date": "Sunday 16-November, 2025", + "getbible": "https://getbible.life/kjv/Proverbs/15/4", + "name": "Proverbs 15:4", + "scripture": [ + { + "nr": "4", + "text": "A wholesome tongue is a tree of life: but perverseness therein is a breach in the spirit." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4", + "version": "kjv" +} diff --git a/scripture/kjv/11/16/25/scripture.md b/scripture/kjv/11/16/25/scripture.md new file mode 100644 index 00000000..a3c32d50 --- /dev/null +++ b/scripture/kjv/11/16/25/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 15:4** + +4 A wholesome tongue is a tree of life: but perverseness therein is a breach in the spirit. + +[Sunday 16-November, 2025](https://getbible.life/kjv/Proverbs/15/4) diff --git a/scripture/kjv/11/16/25/scripture.tg b/scripture/kjv/11/16/25/scripture.tg new file mode 100644 index 00000000..26691fc0 --- /dev/null +++ b/scripture/kjv/11/16/25/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 15:4 +4 A wholesome tongue is a tree of life: but perverseness therein is a breach in the spirit. + +Sunday 16-November, 2025 diff --git a/scripture/kjv/11/16/25/scripture.tg.id b/scripture/kjv/11/16/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/16/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/16/25/scripture.today b/scripture/kjv/11/16/25/scripture.today new file mode 100644 index 00000000..38c49212 --- /dev/null +++ b/scripture/kjv/11/16/25/scripture.today @@ -0,0 +1 @@ +20 15:4 diff --git a/scripture/kjv/11/17/23/scripture.html b/scripture/kjv/11/17/23/scripture.html new file mode 100644 index 00000000..e3e5b695 --- /dev/null +++ b/scripture/kjv/11/17/23/scripture.html @@ -0,0 +1,3 @@ +Romans 13:14
+14 But put ye on the Lord Jesus Christ, and make not provision for the flesh, to fulfil the lusts thereof.

+Friday 17-November, 2023 diff --git a/scripture/kjv/11/17/23/scripture.json b/scripture/kjv/11/17/23/scripture.json new file mode 100644 index 00000000..45f10251 --- /dev/null +++ b/scripture/kjv/11/17/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Romans", + "chapter": "13", + "date": "Friday 17-November, 2023", + "getbible": "https://getbible.life/kjv/Romans/13/14", + "name": "Romans 13:14", + "scripture": [ + { + "nr": "14", + "text": "But put ye on the Lord Jesus Christ, and make not provision for the flesh, to fulfil the lusts thereof. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/11/17/23/scripture.md b/scripture/kjv/11/17/23/scripture.md new file mode 100644 index 00000000..27eaf2ec --- /dev/null +++ b/scripture/kjv/11/17/23/scripture.md @@ -0,0 +1,5 @@ +**Romans 13:14** + +14 But put ye on the Lord Jesus Christ, and make not provision for the flesh, to fulfil the lusts thereof. + +[Friday 17-November, 2023](https://getbible.life/kjv/Romans/13/14) diff --git a/scripture/kjv/11/17/23/scripture.tg b/scripture/kjv/11/17/23/scripture.tg new file mode 100644 index 00000000..00862175 --- /dev/null +++ b/scripture/kjv/11/17/23/scripture.tg @@ -0,0 +1,4 @@ +Romans 13:14 +14 But put ye on the Lord Jesus Christ, and make not provision for the flesh, to fulfil the lusts thereof. + +Friday 17-November, 2023 diff --git a/scripture/kjv/11/17/23/scripture.tg.id b/scripture/kjv/11/17/23/scripture.tg.id new file mode 100644 index 00000000..f36e3676 --- /dev/null +++ b/scripture/kjv/11/17/23/scripture.tg.id @@ -0,0 +1 @@ +1140 diff --git a/scripture/kjv/11/17/23/scripture.today b/scripture/kjv/11/17/23/scripture.today new file mode 100644 index 00000000..536cb98b --- /dev/null +++ b/scripture/kjv/11/17/23/scripture.today @@ -0,0 +1 @@ +45 13:14 diff --git a/scripture/kjv/11/17/24/scripture.html b/scripture/kjv/11/17/24/scripture.html new file mode 100644 index 00000000..dffb9660 --- /dev/null +++ b/scripture/kjv/11/17/24/scripture.html @@ -0,0 +1,3 @@ +Nehemiah 6:9
+9 For they all made us afraid, saying, Their hands shall be weakened from the work, that it be not done. Now therefore, O God, strengthen my hands.

+Sunday 17-November, 2024 diff --git a/scripture/kjv/11/17/24/scripture.json b/scripture/kjv/11/17/24/scripture.json new file mode 100644 index 00000000..43c1eb48 --- /dev/null +++ b/scripture/kjv/11/17/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Nehemiah", + "chapter": "6", + "date": "Sunday 17-November, 2024", + "getbible": "https://getbible.life/kjv/Nehemiah/6/9", + "name": "Nehemiah 6:9", + "scripture": [ + { + "nr": "9", + "text": "For they all made us afraid, saying, Their hands shall be weakened from the work, that it be not done. Now therefore, O God, strengthen my hands." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9", + "version": "kjv" +} diff --git a/scripture/kjv/11/17/24/scripture.md b/scripture/kjv/11/17/24/scripture.md new file mode 100644 index 00000000..b148602c --- /dev/null +++ b/scripture/kjv/11/17/24/scripture.md @@ -0,0 +1,5 @@ +**Nehemiah 6:9** + +9 For they all made us afraid, saying, Their hands shall be weakened from the work, that it be not done. Now therefore, O God, strengthen my hands. + +[Sunday 17-November, 2024](https://getbible.life/kjv/Nehemiah/6/9) diff --git a/scripture/kjv/11/17/24/scripture.tg b/scripture/kjv/11/17/24/scripture.tg new file mode 100644 index 00000000..b6944e7c --- /dev/null +++ b/scripture/kjv/11/17/24/scripture.tg @@ -0,0 +1,4 @@ +Nehemiah 6:9 +9 For they all made us afraid, saying, Their hands shall be weakened from the work, that it be not done. Now therefore, O God, strengthen my hands. + +Sunday 17-November, 2024 diff --git a/scripture/kjv/11/17/24/scripture.tg.id b/scripture/kjv/11/17/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/17/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/17/24/scripture.today b/scripture/kjv/11/17/24/scripture.today new file mode 100644 index 00000000..52ae638b --- /dev/null +++ b/scripture/kjv/11/17/24/scripture.today @@ -0,0 +1 @@ +16 6:9 diff --git a/scripture/kjv/11/17/25/scripture.html b/scripture/kjv/11/17/25/scripture.html new file mode 100644 index 00000000..1b2d3714 --- /dev/null +++ b/scripture/kjv/11/17/25/scripture.html @@ -0,0 +1,3 @@ +Revelation 21:4
+4 And God shall wipe away all tears from their eyes; and there shall be no more death, neither sorrow, nor crying, neither shall there be any more pain: for the former things are passed away.

+Monday 17-November, 2025 diff --git a/scripture/kjv/11/17/25/scripture.json b/scripture/kjv/11/17/25/scripture.json new file mode 100644 index 00000000..1e410ffa --- /dev/null +++ b/scripture/kjv/11/17/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Revelation", + "chapter": "21", + "date": "Monday 17-November, 2025", + "getbible": "https://getbible.life/kjv/Revelation/21/4", + "name": "Revelation 21:4", + "scripture": [ + { + "nr": "4", + "text": "And God shall wipe away all tears from their eyes; and there shall be no more death, neither sorrow, nor crying, neither shall there be any more pain: for the former things are passed away." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4", + "version": "kjv" +} diff --git a/scripture/kjv/11/17/25/scripture.md b/scripture/kjv/11/17/25/scripture.md new file mode 100644 index 00000000..a44c0194 --- /dev/null +++ b/scripture/kjv/11/17/25/scripture.md @@ -0,0 +1,5 @@ +**Revelation 21:4** + +4 And God shall wipe away all tears from their eyes; and there shall be no more death, neither sorrow, nor crying, neither shall there be any more pain: for the former things are passed away. + +[Monday 17-November, 2025](https://getbible.life/kjv/Revelation/21/4) diff --git a/scripture/kjv/11/17/25/scripture.tg b/scripture/kjv/11/17/25/scripture.tg new file mode 100644 index 00000000..c7eb42c7 --- /dev/null +++ b/scripture/kjv/11/17/25/scripture.tg @@ -0,0 +1,4 @@ +Revelation 21:4 +4 And God shall wipe away all tears from their eyes; and there shall be no more death, neither sorrow, nor crying, neither shall there be any more pain: for the former things are passed away. + +Monday 17-November, 2025 diff --git a/scripture/kjv/11/17/25/scripture.tg.id b/scripture/kjv/11/17/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/17/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/17/25/scripture.today b/scripture/kjv/11/17/25/scripture.today new file mode 100644 index 00000000..4efb307e --- /dev/null +++ b/scripture/kjv/11/17/25/scripture.today @@ -0,0 +1 @@ +66 21:4 diff --git a/scripture/kjv/11/18/23/scripture.html b/scripture/kjv/11/18/23/scripture.html new file mode 100644 index 00000000..7de6dbb8 --- /dev/null +++ b/scripture/kjv/11/18/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 18:14
+14 The spirit of a man will sustain his infirmity; but a wounded spirit who can bear?

+Saturday 18-November, 2023 diff --git a/scripture/kjv/11/18/23/scripture.json b/scripture/kjv/11/18/23/scripture.json new file mode 100644 index 00000000..05ecc7e9 --- /dev/null +++ b/scripture/kjv/11/18/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "18", + "date": "Saturday 18-November, 2023", + "getbible": "https://getbible.life/kjv/Proverbs/18/14", + "name": "Proverbs 18:14", + "scripture": [ + { + "nr": "14", + "text": "The spirit of a man will sustain his infirmity; but a wounded spirit who can bear?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/11/18/23/scripture.md b/scripture/kjv/11/18/23/scripture.md new file mode 100644 index 00000000..4b4db916 --- /dev/null +++ b/scripture/kjv/11/18/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 18:14** + +14 The spirit of a man will sustain his infirmity; but a wounded spirit who can bear? + +[Saturday 18-November, 2023](https://getbible.life/kjv/Proverbs/18/14) diff --git a/scripture/kjv/11/18/23/scripture.tg b/scripture/kjv/11/18/23/scripture.tg new file mode 100644 index 00000000..2b3ea58c --- /dev/null +++ b/scripture/kjv/11/18/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 18:14 +14 The spirit of a man will sustain his infirmity; but a wounded spirit who can bear? + +Saturday 18-November, 2023 diff --git a/scripture/kjv/11/18/23/scripture.tg.id b/scripture/kjv/11/18/23/scripture.tg.id new file mode 100644 index 00000000..e60c25e1 --- /dev/null +++ b/scripture/kjv/11/18/23/scripture.tg.id @@ -0,0 +1 @@ +1141 diff --git a/scripture/kjv/11/18/23/scripture.today b/scripture/kjv/11/18/23/scripture.today new file mode 100644 index 00000000..b8fcb094 --- /dev/null +++ b/scripture/kjv/11/18/23/scripture.today @@ -0,0 +1 @@ +20 18:14 diff --git a/scripture/kjv/11/18/24/scripture.html b/scripture/kjv/11/18/24/scripture.html new file mode 100644 index 00000000..1ed1b4e4 --- /dev/null +++ b/scripture/kjv/11/18/24/scripture.html @@ -0,0 +1,3 @@ +Romans 1:5
+5 By whom we have received grace and apostleship, for obedience to the faith among all nations, for his name:

+Monday 18-November, 2024 diff --git a/scripture/kjv/11/18/24/scripture.json b/scripture/kjv/11/18/24/scripture.json new file mode 100644 index 00000000..97c606e1 --- /dev/null +++ b/scripture/kjv/11/18/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Romans", + "chapter": "1", + "date": "Monday 18-November, 2024", + "getbible": "https://getbible.life/kjv/Romans/1/5", + "name": "Romans 1:5", + "scripture": [ + { + "nr": "5", + "text": "By whom we have received grace and apostleship, for obedience to the faith among all nations, for his name:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5", + "version": "kjv" +} diff --git a/scripture/kjv/11/18/24/scripture.md b/scripture/kjv/11/18/24/scripture.md new file mode 100644 index 00000000..935d123d --- /dev/null +++ b/scripture/kjv/11/18/24/scripture.md @@ -0,0 +1,5 @@ +**Romans 1:5** + +5 By whom we have received grace and apostleship, for obedience to the faith among all nations, for his name: + +[Monday 18-November, 2024](https://getbible.life/kjv/Romans/1/5) diff --git a/scripture/kjv/11/18/24/scripture.tg b/scripture/kjv/11/18/24/scripture.tg new file mode 100644 index 00000000..44d3c3e8 --- /dev/null +++ b/scripture/kjv/11/18/24/scripture.tg @@ -0,0 +1,4 @@ +Romans 1:5 +5 By whom we have received grace and apostleship, for obedience to the faith among all nations, for his name: + +Monday 18-November, 2024 diff --git a/scripture/kjv/11/18/24/scripture.tg.id b/scripture/kjv/11/18/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/18/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/18/24/scripture.today b/scripture/kjv/11/18/24/scripture.today new file mode 100644 index 00000000..f1fc4770 --- /dev/null +++ b/scripture/kjv/11/18/24/scripture.today @@ -0,0 +1 @@ +45 1:5 diff --git a/scripture/kjv/11/18/25/scripture.html b/scripture/kjv/11/18/25/scripture.html new file mode 100644 index 00000000..17ecdd20 --- /dev/null +++ b/scripture/kjv/11/18/25/scripture.html @@ -0,0 +1,3 @@ +Acts 3:16
+16 And his name through faith in his name hath made this man strong, whom ye see and know: yea, the faith which is by him hath given him this perfect soundness in the presence of you all.

+Tuesday 18-November, 2025 diff --git a/scripture/kjv/11/18/25/scripture.json b/scripture/kjv/11/18/25/scripture.json new file mode 100644 index 00000000..96ed767e --- /dev/null +++ b/scripture/kjv/11/18/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Acts", + "chapter": "3", + "date": "Tuesday 18-November, 2025", + "getbible": "https://getbible.life/kjv/Acts/3/16", + "name": "Acts 3:16", + "scripture": [ + { + "nr": "16", + "text": "And his name through faith in his name hath made this man strong, whom ye see and know: yea, the faith which is by him hath given him this perfect soundness in the presence of you all." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16", + "version": "kjv" +} diff --git a/scripture/kjv/11/18/25/scripture.md b/scripture/kjv/11/18/25/scripture.md new file mode 100644 index 00000000..4e62a780 --- /dev/null +++ b/scripture/kjv/11/18/25/scripture.md @@ -0,0 +1,5 @@ +**Acts 3:16** + +16 And his name through faith in his name hath made this man strong, whom ye see and know: yea, the faith which is by him hath given him this perfect soundness in the presence of you all. + +[Tuesday 18-November, 2025](https://getbible.life/kjv/Acts/3/16) diff --git a/scripture/kjv/11/18/25/scripture.tg b/scripture/kjv/11/18/25/scripture.tg new file mode 100644 index 00000000..c737d165 --- /dev/null +++ b/scripture/kjv/11/18/25/scripture.tg @@ -0,0 +1,4 @@ +Acts 3:16 +16 And his name through faith in his name hath made this man strong, whom ye see and know: yea, the faith which is by him hath given him this perfect soundness in the presence of you all. + +Tuesday 18-November, 2025 diff --git a/scripture/kjv/11/18/25/scripture.tg.id b/scripture/kjv/11/18/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/18/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/18/25/scripture.today b/scripture/kjv/11/18/25/scripture.today new file mode 100644 index 00000000..5c23f335 --- /dev/null +++ b/scripture/kjv/11/18/25/scripture.today @@ -0,0 +1 @@ +44 3:16 diff --git a/scripture/kjv/11/19/23/scripture.html b/scripture/kjv/11/19/23/scripture.html new file mode 100644 index 00000000..ae001336 --- /dev/null +++ b/scripture/kjv/11/19/23/scripture.html @@ -0,0 +1,3 @@ +James 4:1
+1 From whence come wars and fightings among you? come they not hence, even of your lusts that war in your members?

+Sunday 19-November, 2023 diff --git a/scripture/kjv/11/19/23/scripture.json b/scripture/kjv/11/19/23/scripture.json new file mode 100644 index 00000000..d962da09 --- /dev/null +++ b/scripture/kjv/11/19/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "James", + "chapter": "4", + "date": "Sunday 19-November, 2023", + "getbible": "https://getbible.life/kjv/James/4/1", + "name": "James 4:1", + "scripture": [ + { + "nr": "1", + "text": "From whence come wars and fightings among you? come they not hence, even of your lusts that war in your members?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1", + "version": "kjv" +} diff --git a/scripture/kjv/11/19/23/scripture.md b/scripture/kjv/11/19/23/scripture.md new file mode 100644 index 00000000..9081707a --- /dev/null +++ b/scripture/kjv/11/19/23/scripture.md @@ -0,0 +1,5 @@ +**James 4:1** + +1 From whence come wars and fightings among you? come they not hence, even of your lusts that war in your members? + +[Sunday 19-November, 2023](https://getbible.life/kjv/James/4/1) diff --git a/scripture/kjv/11/19/23/scripture.tg b/scripture/kjv/11/19/23/scripture.tg new file mode 100644 index 00000000..a9aea87b --- /dev/null +++ b/scripture/kjv/11/19/23/scripture.tg @@ -0,0 +1,4 @@ +James 4:1 +1 From whence come wars and fightings among you? come they not hence, even of your lusts that war in your members? + +Sunday 19-November, 2023 diff --git a/scripture/kjv/11/19/23/scripture.tg.id b/scripture/kjv/11/19/23/scripture.tg.id new file mode 100644 index 00000000..b4fd007c --- /dev/null +++ b/scripture/kjv/11/19/23/scripture.tg.id @@ -0,0 +1 @@ +1142 diff --git a/scripture/kjv/11/19/23/scripture.today b/scripture/kjv/11/19/23/scripture.today new file mode 100644 index 00000000..f7d8de3c --- /dev/null +++ b/scripture/kjv/11/19/23/scripture.today @@ -0,0 +1 @@ +59 4:1 diff --git a/scripture/kjv/11/19/24/scripture.html b/scripture/kjv/11/19/24/scripture.html new file mode 100644 index 00000000..87659e5c --- /dev/null +++ b/scripture/kjv/11/19/24/scripture.html @@ -0,0 +1,3 @@ +1 John 1:3
+3 That which we have seen and heard declare we unto you, that ye also may have fellowship with us: and truly our fellowship is with the Father, and with his Son Jesus Christ.

+Tuesday 19-November, 2024 diff --git a/scripture/kjv/11/19/24/scripture.json b/scripture/kjv/11/19/24/scripture.json new file mode 100644 index 00000000..682399be --- /dev/null +++ b/scripture/kjv/11/19/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 John", + "chapter": "1", + "date": "Tuesday 19-November, 2024", + "getbible": "https://getbible.life/kjv/1 John/1/3", + "name": "1 John 1:3", + "scripture": [ + { + "nr": "3", + "text": "That which we have seen and heard declare we unto you, that ye also may have fellowship with us: and truly our fellowship is with the Father, and with his Son Jesus Christ." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3", + "version": "kjv" +} diff --git a/scripture/kjv/11/19/24/scripture.md b/scripture/kjv/11/19/24/scripture.md new file mode 100644 index 00000000..d2923b3c --- /dev/null +++ b/scripture/kjv/11/19/24/scripture.md @@ -0,0 +1,5 @@ +**1 John 1:3** + +3 That which we have seen and heard declare we unto you, that ye also may have fellowship with us: and truly our fellowship is with the Father, and with his Son Jesus Christ. + +[Tuesday 19-November, 2024](https://getbible.life/kjv/1 John/1/3) diff --git a/scripture/kjv/11/19/24/scripture.tg b/scripture/kjv/11/19/24/scripture.tg new file mode 100644 index 00000000..7c311a1a --- /dev/null +++ b/scripture/kjv/11/19/24/scripture.tg @@ -0,0 +1,4 @@ +1 John 1:3 +3 That which we have seen and heard declare we unto you, that ye also may have fellowship with us: and truly our fellowship is with the Father, and with his Son Jesus Christ. + +Tuesday 19-November, 2024 diff --git a/scripture/kjv/11/19/24/scripture.tg.id b/scripture/kjv/11/19/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/19/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/19/24/scripture.today b/scripture/kjv/11/19/24/scripture.today new file mode 100644 index 00000000..0eedcc08 --- /dev/null +++ b/scripture/kjv/11/19/24/scripture.today @@ -0,0 +1 @@ +62 1:3 diff --git a/scripture/kjv/11/19/25/scripture.html b/scripture/kjv/11/19/25/scripture.html new file mode 100644 index 00000000..77734918 --- /dev/null +++ b/scripture/kjv/11/19/25/scripture.html @@ -0,0 +1,3 @@ +Haggai 1:14
+14 And the Lord stirred up the spirit of Zerubbabel the son of Shealtiel, governor of Judah, and the spirit of Joshua the son of Josedech, the high priest, and the spirit of all the remnant of the people; and they came and did work in the house of the Lord of hosts, their God,

+Wednesday 19-November, 2025 diff --git a/scripture/kjv/11/19/25/scripture.json b/scripture/kjv/11/19/25/scripture.json new file mode 100644 index 00000000..0f6f975b --- /dev/null +++ b/scripture/kjv/11/19/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Haggai", + "chapter": "1", + "date": "Wednesday 19-November, 2025", + "getbible": "https://getbible.life/kjv/Haggai/1/14", + "name": "Haggai 1:14", + "scripture": [ + { + "nr": "14", + "text": "And the Lord stirred up the spirit of Zerubbabel the son of Shealtiel, governor of Judah, and the spirit of Joshua the son of Josedech, the high priest, and the spirit of all the remnant of the people; and they came and did work in the house of the Lord of hosts, their God," + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/11/19/25/scripture.md b/scripture/kjv/11/19/25/scripture.md new file mode 100644 index 00000000..8e5b595e --- /dev/null +++ b/scripture/kjv/11/19/25/scripture.md @@ -0,0 +1,5 @@ +**Haggai 1:14** + +14 And the Lord stirred up the spirit of Zerubbabel the son of Shealtiel, governor of Judah, and the spirit of Joshua the son of Josedech, the high priest, and the spirit of all the remnant of the people; and they came and did work in the house of the Lord of hosts, their God, + +[Wednesday 19-November, 2025](https://getbible.life/kjv/Haggai/1/14) diff --git a/scripture/kjv/11/19/25/scripture.tg b/scripture/kjv/11/19/25/scripture.tg new file mode 100644 index 00000000..74c6e9fc --- /dev/null +++ b/scripture/kjv/11/19/25/scripture.tg @@ -0,0 +1,4 @@ +Haggai 1:14 +14 And the Lord stirred up the spirit of Zerubbabel the son of Shealtiel, governor of Judah, and the spirit of Joshua the son of Josedech, the high priest, and the spirit of all the remnant of the people; and they came and did work in the house of the Lord of hosts, their God, + +Wednesday 19-November, 2025 diff --git a/scripture/kjv/11/19/25/scripture.tg.id b/scripture/kjv/11/19/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/19/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/19/25/scripture.today b/scripture/kjv/11/19/25/scripture.today new file mode 100644 index 00000000..1dc936b1 --- /dev/null +++ b/scripture/kjv/11/19/25/scripture.today @@ -0,0 +1 @@ +37 1:14 diff --git a/scripture/kjv/11/20/23/scripture.html b/scripture/kjv/11/20/23/scripture.html new file mode 100644 index 00000000..6a584c5b --- /dev/null +++ b/scripture/kjv/11/20/23/scripture.html @@ -0,0 +1,3 @@ +Revelation 17:13-14
+13 These have one mind, and shall give their power and strength unto the beast. 14 These shall make war with the Lamb, and the Lamb shall overcome them: for he is Lord of lords, and King of kings: and they that are with him are called, and chosen, and faithful.

+Monday 20-November, 2023 diff --git a/scripture/kjv/11/20/23/scripture.json b/scripture/kjv/11/20/23/scripture.json new file mode 100644 index 00000000..d255fefe --- /dev/null +++ b/scripture/kjv/11/20/23/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Revelation", + "chapter": "17", + "date": "Monday 20-November, 2023", + "getbible": "https://getbible.life/kjv/Revelation/17/13-14", + "name": "Revelation 17:13-14", + "scripture": [ + { + "nr": "13", + "text": "These have one mind, and shall give their power and strength unto the beast." + }, + { + "nr": "14", + "text": "These shall make war with the Lamb, and the Lamb shall overcome them: for he is Lord of lords, and King of kings: and they that are with him are called, and chosen, and faithful." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13-14", + "version": "kjv" +} diff --git a/scripture/kjv/11/20/23/scripture.md b/scripture/kjv/11/20/23/scripture.md new file mode 100644 index 00000000..3ca1a434 --- /dev/null +++ b/scripture/kjv/11/20/23/scripture.md @@ -0,0 +1,5 @@ +**Revelation 17:13-14** + +13 These have one mind, and shall give their power and strength unto the beast. 14 These shall make war with the Lamb, and the Lamb shall overcome them: for he is Lord of lords, and King of kings: and they that are with him are called, and chosen, and faithful. + +[Monday 20-November, 2023](https://getbible.life/kjv/Revelation/17/13-14) diff --git a/scripture/kjv/11/20/23/scripture.tg b/scripture/kjv/11/20/23/scripture.tg new file mode 100644 index 00000000..372db4c8 --- /dev/null +++ b/scripture/kjv/11/20/23/scripture.tg @@ -0,0 +1,4 @@ +Revelation 17:13-14 +13 These have one mind, and shall give their power and strength unto the beast. 14 These shall make war with the Lamb, and the Lamb shall overcome them: for he is Lord of lords, and King of kings: and they that are with him are called, and chosen, and faithful. + +Monday 20-November, 2023 diff --git a/scripture/kjv/11/20/23/scripture.tg.id b/scripture/kjv/11/20/23/scripture.tg.id new file mode 100644 index 00000000..e29bf83e --- /dev/null +++ b/scripture/kjv/11/20/23/scripture.tg.id @@ -0,0 +1 @@ +1143 diff --git a/scripture/kjv/11/20/23/scripture.today b/scripture/kjv/11/20/23/scripture.today new file mode 100644 index 00000000..721056eb --- /dev/null +++ b/scripture/kjv/11/20/23/scripture.today @@ -0,0 +1 @@ +66 17:13-14 diff --git a/scripture/kjv/11/20/24/scripture.html b/scripture/kjv/11/20/24/scripture.html new file mode 100644 index 00000000..2c67be84 --- /dev/null +++ b/scripture/kjv/11/20/24/scripture.html @@ -0,0 +1,3 @@ +Revelation 21:8
+8 But the fearful, and unbelieving, and the abominable, and murderers, and whoremongers, and sorcerers, and idolaters, and all liars, shall have their part in the lake which burneth with fire and brimstone: which is the second death.

+Wednesday 20-November, 2024 diff --git a/scripture/kjv/11/20/24/scripture.json b/scripture/kjv/11/20/24/scripture.json new file mode 100644 index 00000000..8b10eb30 --- /dev/null +++ b/scripture/kjv/11/20/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Revelation", + "chapter": "21", + "date": "Wednesday 20-November, 2024", + "getbible": "https://getbible.life/kjv/Revelation/21/8", + "name": "Revelation 21:8", + "scripture": [ + { + "nr": "8", + "text": "But the fearful, and unbelieving, and the abominable, and murderers, and whoremongers, and sorcerers, and idolaters, and all liars, shall have their part in the lake which burneth with fire and brimstone: which is the second death." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8", + "version": "kjv" +} diff --git a/scripture/kjv/11/20/24/scripture.md b/scripture/kjv/11/20/24/scripture.md new file mode 100644 index 00000000..260dc4b3 --- /dev/null +++ b/scripture/kjv/11/20/24/scripture.md @@ -0,0 +1,5 @@ +**Revelation 21:8** + +8 But the fearful, and unbelieving, and the abominable, and murderers, and whoremongers, and sorcerers, and idolaters, and all liars, shall have their part in the lake which burneth with fire and brimstone: which is the second death. + +[Wednesday 20-November, 2024](https://getbible.life/kjv/Revelation/21/8) diff --git a/scripture/kjv/11/20/24/scripture.tg b/scripture/kjv/11/20/24/scripture.tg new file mode 100644 index 00000000..d0914729 --- /dev/null +++ b/scripture/kjv/11/20/24/scripture.tg @@ -0,0 +1,4 @@ +Revelation 21:8 +8 But the fearful, and unbelieving, and the abominable, and murderers, and whoremongers, and sorcerers, and idolaters, and all liars, shall have their part in the lake which burneth with fire and brimstone: which is the second death. + +Wednesday 20-November, 2024 diff --git a/scripture/kjv/11/20/24/scripture.tg.id b/scripture/kjv/11/20/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/20/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/20/24/scripture.today b/scripture/kjv/11/20/24/scripture.today new file mode 100644 index 00000000..f97b5be5 --- /dev/null +++ b/scripture/kjv/11/20/24/scripture.today @@ -0,0 +1 @@ +66 21:8 diff --git a/scripture/kjv/11/20/25/scripture.html b/scripture/kjv/11/20/25/scripture.html new file mode 100644 index 00000000..1204b30f --- /dev/null +++ b/scripture/kjv/11/20/25/scripture.html @@ -0,0 +1,3 @@ +Ecclesiastes 12:13
+13 Let us hear the conclusion of the whole matter: Fear God, and keep his commandments: for this is the whole duty of man.

+Thursday 20-November, 2025 diff --git a/scripture/kjv/11/20/25/scripture.json b/scripture/kjv/11/20/25/scripture.json new file mode 100644 index 00000000..522fdee8 --- /dev/null +++ b/scripture/kjv/11/20/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ecclesiastes", + "chapter": "12", + "date": "Thursday 20-November, 2025", + "getbible": "https://getbible.life/kjv/Ecclesiastes/12/13", + "name": "Ecclesiastes 12:13", + "scripture": [ + { + "nr": "13", + "text": "Let us hear the conclusion of the whole matter: Fear God, and keep his commandments: for this is the whole duty of man." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13", + "version": "kjv" +} diff --git a/scripture/kjv/11/20/25/scripture.md b/scripture/kjv/11/20/25/scripture.md new file mode 100644 index 00000000..4fa90c13 --- /dev/null +++ b/scripture/kjv/11/20/25/scripture.md @@ -0,0 +1,5 @@ +**Ecclesiastes 12:13** + +13 Let us hear the conclusion of the whole matter: Fear God, and keep his commandments: for this is the whole duty of man. + +[Thursday 20-November, 2025](https://getbible.life/kjv/Ecclesiastes/12/13) diff --git a/scripture/kjv/11/20/25/scripture.tg b/scripture/kjv/11/20/25/scripture.tg new file mode 100644 index 00000000..b3bb1fde --- /dev/null +++ b/scripture/kjv/11/20/25/scripture.tg @@ -0,0 +1,4 @@ +Ecclesiastes 12:13 +13 Let us hear the conclusion of the whole matter: Fear God, and keep his commandments: for this is the whole duty of man. + +Thursday 20-November, 2025 diff --git a/scripture/kjv/11/20/25/scripture.tg.id b/scripture/kjv/11/20/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/20/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/20/25/scripture.today b/scripture/kjv/11/20/25/scripture.today new file mode 100644 index 00000000..b28c490b --- /dev/null +++ b/scripture/kjv/11/20/25/scripture.today @@ -0,0 +1 @@ +21 12:13 diff --git a/scripture/kjv/11/21/23/scripture.html b/scripture/kjv/11/21/23/scripture.html new file mode 100644 index 00000000..c7454c36 --- /dev/null +++ b/scripture/kjv/11/21/23/scripture.html @@ -0,0 +1,3 @@ +Colossians 1:21-23
+21 And you, that were sometime alienated and enemies in your mind by wicked works, yet now hath he reconciled 22 In the body of his flesh through death, to present you holy and unblameable and unreproveable in his sight: 23 If ye continue in the faith grounded and settled, and be not moved away from the hope of the gospel, which ye have heard, and which was preached to every creature which is under heaven; whereof I Paul am made a minister;

+Tuesday 21-November, 2023 diff --git a/scripture/kjv/11/21/23/scripture.json b/scripture/kjv/11/21/23/scripture.json new file mode 100644 index 00000000..a88ddc36 --- /dev/null +++ b/scripture/kjv/11/21/23/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Colossians", + "chapter": "1", + "date": "Tuesday 21-November, 2023", + "getbible": "https://getbible.life/kjv/Colossians/1/21-23", + "name": "Colossians 1:21-23", + "scripture": [ + { + "nr": "21", + "text": "And you, that were sometime alienated and enemies in your mind by wicked works, yet now hath he reconciled" + }, + { + "nr": "22", + "text": "In the body of his flesh through death, to present you holy and unblameable and unreproveable in his sight:" + }, + { + "nr": "23", + "text": "If ye continue in the faith grounded and settled, and be not moved away from the hope of the gospel, which ye have heard, and which was preached to every creature which is under heaven; whereof I Paul am made a minister;" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "21-23", + "version": "kjv" +} diff --git a/scripture/kjv/11/21/23/scripture.md b/scripture/kjv/11/21/23/scripture.md new file mode 100644 index 00000000..1c63e35d --- /dev/null +++ b/scripture/kjv/11/21/23/scripture.md @@ -0,0 +1,5 @@ +**Colossians 1:21-23** + +21 And you, that were sometime alienated and enemies in your mind by wicked works, yet now hath he reconciled 22 In the body of his flesh through death, to present you holy and unblameable and unreproveable in his sight: 23 If ye continue in the faith grounded and settled, and be not moved away from the hope of the gospel, which ye have heard, and which was preached to every creature which is under heaven; whereof I Paul am made a minister; + +[Tuesday 21-November, 2023](https://getbible.life/kjv/Colossians/1/21-23) diff --git a/scripture/kjv/11/21/23/scripture.tg b/scripture/kjv/11/21/23/scripture.tg new file mode 100644 index 00000000..a87c088b --- /dev/null +++ b/scripture/kjv/11/21/23/scripture.tg @@ -0,0 +1,4 @@ +Colossians 1:21-23 +21 And you, that were sometime alienated and enemies in your mind by wicked works, yet now hath he reconciled 22 In the body of his flesh through death, to present you holy and unblameable and unreproveable in his sight: 23 If ye continue in the faith grounded and settled, and be not moved away from the hope of the gospel, which ye have heard, and which was preached to every creature which is under heaven; whereof I Paul am made a minister; + +Tuesday 21-November, 2023 diff --git a/scripture/kjv/11/21/23/scripture.tg.id b/scripture/kjv/11/21/23/scripture.tg.id new file mode 100644 index 00000000..fdab865f --- /dev/null +++ b/scripture/kjv/11/21/23/scripture.tg.id @@ -0,0 +1 @@ +1144 diff --git a/scripture/kjv/11/21/23/scripture.today b/scripture/kjv/11/21/23/scripture.today new file mode 100644 index 00000000..5cdb9961 --- /dev/null +++ b/scripture/kjv/11/21/23/scripture.today @@ -0,0 +1 @@ +51 1:21-23 diff --git a/scripture/kjv/11/21/24/scripture.html b/scripture/kjv/11/21/24/scripture.html new file mode 100644 index 00000000..3e3b2717 --- /dev/null +++ b/scripture/kjv/11/21/24/scripture.html @@ -0,0 +1,3 @@ +Hosea 9:15
+15 All their wickedness is in Gilgal: for there I hated them: for the wickedness of their doings I will drive them out of mine house, I will love them no more: all their princes are revolters.

+Thursday 21-November, 2024 diff --git a/scripture/kjv/11/21/24/scripture.json b/scripture/kjv/11/21/24/scripture.json new file mode 100644 index 00000000..89373379 --- /dev/null +++ b/scripture/kjv/11/21/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Hosea", + "chapter": "9", + "date": "Thursday 21-November, 2024", + "getbible": "https://getbible.life/kjv/Hosea/9/15", + "name": "Hosea 9:15", + "scripture": [ + { + "nr": "15", + "text": "All their wickedness is in Gilgal: for there I hated them: for the wickedness of their doings I will drive them out of mine house, I will love them no more: all their princes are revolters." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15", + "version": "kjv" +} diff --git a/scripture/kjv/11/21/24/scripture.md b/scripture/kjv/11/21/24/scripture.md new file mode 100644 index 00000000..d75bc28d --- /dev/null +++ b/scripture/kjv/11/21/24/scripture.md @@ -0,0 +1,5 @@ +**Hosea 9:15** + +15 All their wickedness is in Gilgal: for there I hated them: for the wickedness of their doings I will drive them out of mine house, I will love them no more: all their princes are revolters. + +[Thursday 21-November, 2024](https://getbible.life/kjv/Hosea/9/15) diff --git a/scripture/kjv/11/21/24/scripture.tg b/scripture/kjv/11/21/24/scripture.tg new file mode 100644 index 00000000..d7fb1992 --- /dev/null +++ b/scripture/kjv/11/21/24/scripture.tg @@ -0,0 +1,4 @@ +Hosea 9:15 +15 All their wickedness is in Gilgal: for there I hated them: for the wickedness of their doings I will drive them out of mine house, I will love them no more: all their princes are revolters. + +Thursday 21-November, 2024 diff --git a/scripture/kjv/11/21/24/scripture.tg.id b/scripture/kjv/11/21/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/21/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/21/24/scripture.today b/scripture/kjv/11/21/24/scripture.today new file mode 100644 index 00000000..4067780b --- /dev/null +++ b/scripture/kjv/11/21/24/scripture.today @@ -0,0 +1 @@ +28 9:15 diff --git a/scripture/kjv/11/21/25/scripture.html b/scripture/kjv/11/21/25/scripture.html new file mode 100644 index 00000000..2b66455f --- /dev/null +++ b/scripture/kjv/11/21/25/scripture.html @@ -0,0 +1,3 @@ +Proverbs 27:7
+7 The full soul loatheth an honeycomb; but to the hungry soul every bitter thing is sweet.

+Friday 21-November, 2025 diff --git a/scripture/kjv/11/21/25/scripture.json b/scripture/kjv/11/21/25/scripture.json new file mode 100644 index 00000000..cfba3431 --- /dev/null +++ b/scripture/kjv/11/21/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "27", + "date": "Friday 21-November, 2025", + "getbible": "https://getbible.life/kjv/Proverbs/27/7", + "name": "Proverbs 27:7", + "scripture": [ + { + "nr": "7", + "text": "The full soul loatheth an honeycomb; but to the hungry soul every bitter thing is sweet." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7", + "version": "kjv" +} diff --git a/scripture/kjv/11/21/25/scripture.md b/scripture/kjv/11/21/25/scripture.md new file mode 100644 index 00000000..09ba991c --- /dev/null +++ b/scripture/kjv/11/21/25/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 27:7** + +7 The full soul loatheth an honeycomb; but to the hungry soul every bitter thing is sweet. + +[Friday 21-November, 2025](https://getbible.life/kjv/Proverbs/27/7) diff --git a/scripture/kjv/11/21/25/scripture.tg b/scripture/kjv/11/21/25/scripture.tg new file mode 100644 index 00000000..375524cf --- /dev/null +++ b/scripture/kjv/11/21/25/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 27:7 +7 The full soul loatheth an honeycomb; but to the hungry soul every bitter thing is sweet. + +Friday 21-November, 2025 diff --git a/scripture/kjv/11/21/25/scripture.tg.id b/scripture/kjv/11/21/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/21/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/21/25/scripture.today b/scripture/kjv/11/21/25/scripture.today new file mode 100644 index 00000000..2e59451c --- /dev/null +++ b/scripture/kjv/11/21/25/scripture.today @@ -0,0 +1 @@ +20 27:7 diff --git a/scripture/kjv/11/22/23/scripture.html b/scripture/kjv/11/22/23/scripture.html new file mode 100644 index 00000000..e3664114 --- /dev/null +++ b/scripture/kjv/11/22/23/scripture.html @@ -0,0 +1,3 @@ +Isaiah 56:8
+8 The Lord God which gathereth the outcasts of Israel saith, Yet will I gather others to him, beside those that are gathered unto him.

+Wednesday 22-November, 2023 diff --git a/scripture/kjv/11/22/23/scripture.json b/scripture/kjv/11/22/23/scripture.json new file mode 100644 index 00000000..104d7660 --- /dev/null +++ b/scripture/kjv/11/22/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "56", + "date": "Wednesday 22-November, 2023", + "getbible": "https://getbible.life/kjv/Isaiah/56/8", + "name": "Isaiah 56:8", + "scripture": [ + { + "nr": "8", + "text": "The Lord God which gathereth the outcasts of Israel saith, Yet will I gather others to him, beside those that are gathered unto him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8", + "version": "kjv" +} diff --git a/scripture/kjv/11/22/23/scripture.md b/scripture/kjv/11/22/23/scripture.md new file mode 100644 index 00000000..3a5268d3 --- /dev/null +++ b/scripture/kjv/11/22/23/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 56:8** + +8 The Lord God which gathereth the outcasts of Israel saith, Yet will I gather others to him, beside those that are gathered unto him. + +[Wednesday 22-November, 2023](https://getbible.life/kjv/Isaiah/56/8) diff --git a/scripture/kjv/11/22/23/scripture.tg b/scripture/kjv/11/22/23/scripture.tg new file mode 100644 index 00000000..5c27662a --- /dev/null +++ b/scripture/kjv/11/22/23/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 56:8 +8 The Lord God which gathereth the outcasts of Israel saith, Yet will I gather others to him, beside those that are gathered unto him. + +Wednesday 22-November, 2023 diff --git a/scripture/kjv/11/22/23/scripture.tg.id b/scripture/kjv/11/22/23/scripture.tg.id new file mode 100644 index 00000000..23ca55f5 --- /dev/null +++ b/scripture/kjv/11/22/23/scripture.tg.id @@ -0,0 +1 @@ +1145 diff --git a/scripture/kjv/11/22/23/scripture.today b/scripture/kjv/11/22/23/scripture.today new file mode 100644 index 00000000..7dc42d9e --- /dev/null +++ b/scripture/kjv/11/22/23/scripture.today @@ -0,0 +1 @@ +23 56:8 diff --git a/scripture/kjv/11/22/24/scripture.html b/scripture/kjv/11/22/24/scripture.html new file mode 100644 index 00000000..7a276fdf --- /dev/null +++ b/scripture/kjv/11/22/24/scripture.html @@ -0,0 +1,3 @@ +Colossians 3:12-13
+12 Put on therefore, as the elect of God, holy and beloved, bowels of mercies, kindness, humbleness of mind, meekness, longsuffering; 13 Forbearing one another, and forgiving one another, if any man have a quarrel against any: even as Christ forgave you, so also do ye.

+Friday 22-November, 2024 diff --git a/scripture/kjv/11/22/24/scripture.json b/scripture/kjv/11/22/24/scripture.json new file mode 100644 index 00000000..57039bc2 --- /dev/null +++ b/scripture/kjv/11/22/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Colossians", + "chapter": "3", + "date": "Friday 22-November, 2024", + "getbible": "https://getbible.life/kjv/Colossians/3/12-13", + "name": "Colossians 3:12-13", + "scripture": [ + { + "nr": "12", + "text": "Put on therefore, as the elect of God, holy and beloved, bowels of mercies, kindness, humbleness of mind, meekness, longsuffering;" + }, + { + "nr": "13", + "text": "Forbearing one another, and forgiving one another, if any man have a quarrel against any: even as Christ forgave you, so also do ye." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12-13", + "version": "kjv" +} diff --git a/scripture/kjv/11/22/24/scripture.md b/scripture/kjv/11/22/24/scripture.md new file mode 100644 index 00000000..7afe9253 --- /dev/null +++ b/scripture/kjv/11/22/24/scripture.md @@ -0,0 +1,5 @@ +**Colossians 3:12-13** + +12 Put on therefore, as the elect of God, holy and beloved, bowels of mercies, kindness, humbleness of mind, meekness, longsuffering; 13 Forbearing one another, and forgiving one another, if any man have a quarrel against any: even as Christ forgave you, so also do ye. + +[Friday 22-November, 2024](https://getbible.life/kjv/Colossians/3/12-13) diff --git a/scripture/kjv/11/22/24/scripture.tg b/scripture/kjv/11/22/24/scripture.tg new file mode 100644 index 00000000..c34a2fe1 --- /dev/null +++ b/scripture/kjv/11/22/24/scripture.tg @@ -0,0 +1,4 @@ +Colossians 3:12-13 +12 Put on therefore, as the elect of God, holy and beloved, bowels of mercies, kindness, humbleness of mind, meekness, longsuffering; 13 Forbearing one another, and forgiving one another, if any man have a quarrel against any: even as Christ forgave you, so also do ye. + +Friday 22-November, 2024 diff --git a/scripture/kjv/11/22/24/scripture.tg.id b/scripture/kjv/11/22/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/22/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/22/24/scripture.today b/scripture/kjv/11/22/24/scripture.today new file mode 100644 index 00000000..be2a4604 --- /dev/null +++ b/scripture/kjv/11/22/24/scripture.today @@ -0,0 +1 @@ +51 3:12-13 diff --git a/scripture/kjv/11/22/25/scripture.html b/scripture/kjv/11/22/25/scripture.html new file mode 100644 index 00000000..28c0e285 --- /dev/null +++ b/scripture/kjv/11/22/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 49:3
+3 My mouth shall speak of wisdom; and the meditation of my heart shall be of understanding.

+Saturday 22-November, 2025 diff --git a/scripture/kjv/11/22/25/scripture.json b/scripture/kjv/11/22/25/scripture.json new file mode 100644 index 00000000..52e4f1e2 --- /dev/null +++ b/scripture/kjv/11/22/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "49", + "date": "Saturday 22-November, 2025", + "getbible": "https://getbible.life/kjv/Psalms/49/3", + "name": "Psalms 49:3", + "scripture": [ + { + "nr": "3", + "text": "My mouth shall speak of wisdom; and the meditation of my heart shall be of understanding." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3", + "version": "kjv" +} diff --git a/scripture/kjv/11/22/25/scripture.md b/scripture/kjv/11/22/25/scripture.md new file mode 100644 index 00000000..7ee303b2 --- /dev/null +++ b/scripture/kjv/11/22/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 49:3** + +3 My mouth shall speak of wisdom; and the meditation of my heart shall be of understanding. + +[Saturday 22-November, 2025](https://getbible.life/kjv/Psalms/49/3) diff --git a/scripture/kjv/11/22/25/scripture.tg b/scripture/kjv/11/22/25/scripture.tg new file mode 100644 index 00000000..997774a8 --- /dev/null +++ b/scripture/kjv/11/22/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 49:3 +3 My mouth shall speak of wisdom; and the meditation of my heart shall be of understanding. + +Saturday 22-November, 2025 diff --git a/scripture/kjv/11/22/25/scripture.tg.id b/scripture/kjv/11/22/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/22/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/22/25/scripture.today b/scripture/kjv/11/22/25/scripture.today new file mode 100644 index 00000000..d0d19c5f --- /dev/null +++ b/scripture/kjv/11/22/25/scripture.today @@ -0,0 +1 @@ +19 49:3 diff --git a/scripture/kjv/11/23/23/scripture.html b/scripture/kjv/11/23/23/scripture.html new file mode 100644 index 00000000..d617eddf --- /dev/null +++ b/scripture/kjv/11/23/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 21:1
+1 The king’s heart is in the hand of the Lord, as the rivers of water: he turneth it whithersoever he will.

+Thursday 23-November, 2023 diff --git a/scripture/kjv/11/23/23/scripture.json b/scripture/kjv/11/23/23/scripture.json new file mode 100644 index 00000000..9370fa19 --- /dev/null +++ b/scripture/kjv/11/23/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "21", + "date": "Thursday 23-November, 2023", + "getbible": "https://getbible.life/kjv/Proverbs/21/1", + "name": "Proverbs 21:1", + "scripture": [ + { + "nr": "1", + "text": "The king’s heart is in the hand of the Lord, as the rivers of water: he turneth it whithersoever he will." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1", + "version": "kjv" +} diff --git a/scripture/kjv/11/23/23/scripture.md b/scripture/kjv/11/23/23/scripture.md new file mode 100644 index 00000000..8786a692 --- /dev/null +++ b/scripture/kjv/11/23/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 21:1** + +1 The king’s heart is in the hand of the Lord, as the rivers of water: he turneth it whithersoever he will. + +[Thursday 23-November, 2023](https://getbible.life/kjv/Proverbs/21/1) diff --git a/scripture/kjv/11/23/23/scripture.tg b/scripture/kjv/11/23/23/scripture.tg new file mode 100644 index 00000000..a75d048f --- /dev/null +++ b/scripture/kjv/11/23/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 21:1 +1 The king’s heart is in the hand of the Lord, as the rivers of water: he turneth it whithersoever he will. + +Thursday 23-November, 2023 diff --git a/scripture/kjv/11/23/23/scripture.tg.id b/scripture/kjv/11/23/23/scripture.tg.id new file mode 100644 index 00000000..de439d05 --- /dev/null +++ b/scripture/kjv/11/23/23/scripture.tg.id @@ -0,0 +1 @@ +1146 diff --git a/scripture/kjv/11/23/23/scripture.today b/scripture/kjv/11/23/23/scripture.today new file mode 100644 index 00000000..c42ec3c8 --- /dev/null +++ b/scripture/kjv/11/23/23/scripture.today @@ -0,0 +1 @@ +20 21:1 diff --git a/scripture/kjv/11/23/24/scripture.html b/scripture/kjv/11/23/24/scripture.html new file mode 100644 index 00000000..d1943738 --- /dev/null +++ b/scripture/kjv/11/23/24/scripture.html @@ -0,0 +1,3 @@ +2 Kings 17:9
+9 And the children of Israel did secretly those things that were not right against the Lord their God, and they built them high places in all their cities, from the tower of the watchmen to the fenced city.

+Saturday 23-November, 2024 diff --git a/scripture/kjv/11/23/24/scripture.json b/scripture/kjv/11/23/24/scripture.json new file mode 100644 index 00000000..498a77c5 --- /dev/null +++ b/scripture/kjv/11/23/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Kings", + "chapter": "17", + "date": "Saturday 23-November, 2024", + "getbible": "https://getbible.life/kjv/2 Kings/17/9", + "name": "2 Kings 17:9", + "scripture": [ + { + "nr": "9", + "text": "And the children of Israel did secretly those things that were not right against the Lord their God, and they built them high places in all their cities, from the tower of the watchmen to the fenced city." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9", + "version": "kjv" +} diff --git a/scripture/kjv/11/23/24/scripture.md b/scripture/kjv/11/23/24/scripture.md new file mode 100644 index 00000000..9f97d277 --- /dev/null +++ b/scripture/kjv/11/23/24/scripture.md @@ -0,0 +1,5 @@ +**2 Kings 17:9** + +9 And the children of Israel did secretly those things that were not right against the Lord their God, and they built them high places in all their cities, from the tower of the watchmen to the fenced city. + +[Saturday 23-November, 2024](https://getbible.life/kjv/2 Kings/17/9) diff --git a/scripture/kjv/11/23/24/scripture.tg b/scripture/kjv/11/23/24/scripture.tg new file mode 100644 index 00000000..c8282294 --- /dev/null +++ b/scripture/kjv/11/23/24/scripture.tg @@ -0,0 +1,4 @@ +2 Kings 17:9 +9 And the children of Israel did secretly those things that were not right against the Lord their God, and they built them high places in all their cities, from the tower of the watchmen to the fenced city. + +Saturday 23-November, 2024 diff --git a/scripture/kjv/11/23/24/scripture.tg.id b/scripture/kjv/11/23/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/23/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/23/24/scripture.today b/scripture/kjv/11/23/24/scripture.today new file mode 100644 index 00000000..7ca35263 --- /dev/null +++ b/scripture/kjv/11/23/24/scripture.today @@ -0,0 +1 @@ +12 17:9 diff --git a/scripture/kjv/11/23/25/scripture.html b/scripture/kjv/11/23/25/scripture.html new file mode 100644 index 00000000..2479d850 --- /dev/null +++ b/scripture/kjv/11/23/25/scripture.html @@ -0,0 +1,3 @@ +Jonah 2:9
+9 But I will sacrifice unto thee with the voice of thanksgiving; I will pay that that I have vowed. Salvation is of the Lord.

+Sunday 23-November, 2025 diff --git a/scripture/kjv/11/23/25/scripture.json b/scripture/kjv/11/23/25/scripture.json new file mode 100644 index 00000000..405888c8 --- /dev/null +++ b/scripture/kjv/11/23/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Jonah", + "chapter": "2", + "date": "Sunday 23-November, 2025", + "getbible": "https://getbible.life/kjv/Jonah/2/9", + "name": "Jonah 2:9", + "scripture": [ + { + "nr": "9", + "text": "But I will sacrifice unto thee with the voice of thanksgiving; I will pay that that I have vowed. Salvation is of the Lord." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9", + "version": "kjv" +} diff --git a/scripture/kjv/11/23/25/scripture.md b/scripture/kjv/11/23/25/scripture.md new file mode 100644 index 00000000..43a29a9f --- /dev/null +++ b/scripture/kjv/11/23/25/scripture.md @@ -0,0 +1,5 @@ +**Jonah 2:9** + +9 But I will sacrifice unto thee with the voice of thanksgiving; I will pay that that I have vowed. Salvation is of the Lord. + +[Sunday 23-November, 2025](https://getbible.life/kjv/Jonah/2/9) diff --git a/scripture/kjv/11/23/25/scripture.tg b/scripture/kjv/11/23/25/scripture.tg new file mode 100644 index 00000000..9eaac186 --- /dev/null +++ b/scripture/kjv/11/23/25/scripture.tg @@ -0,0 +1,4 @@ +Jonah 2:9 +9 But I will sacrifice unto thee with the voice of thanksgiving; I will pay that that I have vowed. Salvation is of the Lord. + +Sunday 23-November, 2025 diff --git a/scripture/kjv/11/23/25/scripture.tg.id b/scripture/kjv/11/23/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/23/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/23/25/scripture.today b/scripture/kjv/11/23/25/scripture.today new file mode 100644 index 00000000..8bf590a4 --- /dev/null +++ b/scripture/kjv/11/23/25/scripture.today @@ -0,0 +1 @@ +32 2:9 diff --git a/scripture/kjv/11/24/23/scripture.html b/scripture/kjv/11/24/23/scripture.html new file mode 100644 index 00000000..6a78837c --- /dev/null +++ b/scripture/kjv/11/24/23/scripture.html @@ -0,0 +1,3 @@ +John 7:6
+6 Then Jesus said unto them, My time is not yet come: but your time is alway ready.

+Friday 24-November, 2023 diff --git a/scripture/kjv/11/24/23/scripture.json b/scripture/kjv/11/24/23/scripture.json new file mode 100644 index 00000000..4d32dff1 --- /dev/null +++ b/scripture/kjv/11/24/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "7", + "date": "Friday 24-November, 2023", + "getbible": "https://getbible.life/kjv/John/7/6", + "name": "John 7:6", + "scripture": [ + { + "nr": "6", + "text": "Then Jesus said unto them, My time is not yet come: but your time is alway ready." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6", + "version": "kjv" +} diff --git a/scripture/kjv/11/24/23/scripture.md b/scripture/kjv/11/24/23/scripture.md new file mode 100644 index 00000000..c0458843 --- /dev/null +++ b/scripture/kjv/11/24/23/scripture.md @@ -0,0 +1,5 @@ +**John 7:6** + +6 Then Jesus said unto them, My time is not yet come: but your time is alway ready. + +[Friday 24-November, 2023](https://getbible.life/kjv/John/7/6) diff --git a/scripture/kjv/11/24/23/scripture.tg b/scripture/kjv/11/24/23/scripture.tg new file mode 100644 index 00000000..40f7d148 --- /dev/null +++ b/scripture/kjv/11/24/23/scripture.tg @@ -0,0 +1,4 @@ +John 7:6 +6 Then Jesus said unto them, My time is not yet come: but your time is alway ready. + +Friday 24-November, 2023 diff --git a/scripture/kjv/11/24/23/scripture.tg.id b/scripture/kjv/11/24/23/scripture.tg.id new file mode 100644 index 00000000..8966a606 --- /dev/null +++ b/scripture/kjv/11/24/23/scripture.tg.id @@ -0,0 +1 @@ +1147 diff --git a/scripture/kjv/11/24/23/scripture.today b/scripture/kjv/11/24/23/scripture.today new file mode 100644 index 00000000..66e3bb8c --- /dev/null +++ b/scripture/kjv/11/24/23/scripture.today @@ -0,0 +1 @@ +43 7:6 diff --git a/scripture/kjv/11/24/24/scripture.html b/scripture/kjv/11/24/24/scripture.html new file mode 100644 index 00000000..4a13f0b4 --- /dev/null +++ b/scripture/kjv/11/24/24/scripture.html @@ -0,0 +1,3 @@ +Daniel 4:30-31
+30 The king spake, and said, Is not this great Babylon, that I have built for the house of the kingdom by the might of my power, and for the honour of my majesty? 31 While the word was in the king’s mouth, there fell a voice from heaven, saying, O king Nebuchadnezzar, to thee it is spoken; The kingdom is departed from thee.

+Sunday 24-November, 2024 diff --git a/scripture/kjv/11/24/24/scripture.json b/scripture/kjv/11/24/24/scripture.json new file mode 100644 index 00000000..e068883a --- /dev/null +++ b/scripture/kjv/11/24/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Daniel", + "chapter": "4", + "date": "Sunday 24-November, 2024", + "getbible": "https://getbible.life/kjv/Daniel/4/30-31", + "name": "Daniel 4:30-31", + "scripture": [ + { + "nr": "30", + "text": "The king spake, and said, Is not this great Babylon, that I have built for the house of the kingdom by the might of my power, and for the honour of my majesty?" + }, + { + "nr": "31", + "text": "While the word was in the king’s mouth, there fell a voice from heaven, saying, O king Nebuchadnezzar, to thee it is spoken; The kingdom is departed from thee." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "30-31", + "version": "kjv" +} diff --git a/scripture/kjv/11/24/24/scripture.md b/scripture/kjv/11/24/24/scripture.md new file mode 100644 index 00000000..c3215d01 --- /dev/null +++ b/scripture/kjv/11/24/24/scripture.md @@ -0,0 +1,5 @@ +**Daniel 4:30-31** + +30 The king spake, and said, Is not this great Babylon, that I have built for the house of the kingdom by the might of my power, and for the honour of my majesty? 31 While the word was in the king’s mouth, there fell a voice from heaven, saying, O king Nebuchadnezzar, to thee it is spoken; The kingdom is departed from thee. + +[Sunday 24-November, 2024](https://getbible.life/kjv/Daniel/4/30-31) diff --git a/scripture/kjv/11/24/24/scripture.tg b/scripture/kjv/11/24/24/scripture.tg new file mode 100644 index 00000000..6975f933 --- /dev/null +++ b/scripture/kjv/11/24/24/scripture.tg @@ -0,0 +1,4 @@ +Daniel 4:30-31 +30 The king spake, and said, Is not this great Babylon, that I have built for the house of the kingdom by the might of my power, and for the honour of my majesty? 31 While the word was in the king’s mouth, there fell a voice from heaven, saying, O king Nebuchadnezzar, to thee it is spoken; The kingdom is departed from thee. + +Sunday 24-November, 2024 diff --git a/scripture/kjv/11/24/24/scripture.tg.id b/scripture/kjv/11/24/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/24/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/24/24/scripture.today b/scripture/kjv/11/24/24/scripture.today new file mode 100644 index 00000000..2803a26b --- /dev/null +++ b/scripture/kjv/11/24/24/scripture.today @@ -0,0 +1 @@ +27 4:30-31 diff --git a/scripture/kjv/11/24/25/scripture.html b/scripture/kjv/11/24/25/scripture.html new file mode 100644 index 00000000..0245acf8 --- /dev/null +++ b/scripture/kjv/11/24/25/scripture.html @@ -0,0 +1,3 @@ +Deuteronomy 32:39
+39 See now that I, even I, am he, and there is no god with me: I kill, and I make alive; I wound, and I heal: neither is there any that can deliver out of my hand.

+Monday 24-November, 2025 diff --git a/scripture/kjv/11/24/25/scripture.json b/scripture/kjv/11/24/25/scripture.json new file mode 100644 index 00000000..e2c25d69 --- /dev/null +++ b/scripture/kjv/11/24/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Deuteronomy", + "chapter": "32", + "date": "Monday 24-November, 2025", + "getbible": "https://getbible.life/kjv/Deuteronomy/32/39", + "name": "Deuteronomy 32:39", + "scripture": [ + { + "nr": "39", + "text": "See now that I, even I, am he, and there is no god with me: I kill, and I make alive; I wound, and I heal: neither is there any that can deliver out of my hand." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "39", + "version": "kjv" +} diff --git a/scripture/kjv/11/24/25/scripture.md b/scripture/kjv/11/24/25/scripture.md new file mode 100644 index 00000000..34db9d9b --- /dev/null +++ b/scripture/kjv/11/24/25/scripture.md @@ -0,0 +1,5 @@ +**Deuteronomy 32:39** + +39 See now that I, even I, am he, and there is no god with me: I kill, and I make alive; I wound, and I heal: neither is there any that can deliver out of my hand. + +[Monday 24-November, 2025](https://getbible.life/kjv/Deuteronomy/32/39) diff --git a/scripture/kjv/11/24/25/scripture.tg b/scripture/kjv/11/24/25/scripture.tg new file mode 100644 index 00000000..6f58a768 --- /dev/null +++ b/scripture/kjv/11/24/25/scripture.tg @@ -0,0 +1,4 @@ +Deuteronomy 32:39 +39 See now that I, even I, am he, and there is no god with me: I kill, and I make alive; I wound, and I heal: neither is there any that can deliver out of my hand. + +Monday 24-November, 2025 diff --git a/scripture/kjv/11/24/25/scripture.tg.id b/scripture/kjv/11/24/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/24/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/24/25/scripture.today b/scripture/kjv/11/24/25/scripture.today new file mode 100644 index 00000000..467106f3 --- /dev/null +++ b/scripture/kjv/11/24/25/scripture.today @@ -0,0 +1 @@ +5 32:39 diff --git a/scripture/kjv/11/25/23/scripture.html b/scripture/kjv/11/25/23/scripture.html new file mode 100644 index 00000000..0c91fd5c --- /dev/null +++ b/scripture/kjv/11/25/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 3:28
+28 Say not unto thy neighbour, Go, and come again, and to morrow I will give; when thou hast it by thee.

+Saturday 25-November, 2023 diff --git a/scripture/kjv/11/25/23/scripture.json b/scripture/kjv/11/25/23/scripture.json new file mode 100644 index 00000000..e3d725a3 --- /dev/null +++ b/scripture/kjv/11/25/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "3", + "date": "Saturday 25-November, 2023", + "getbible": "https://getbible.life/kjv/Proverbs/3/28", + "name": "Proverbs 3:28", + "scripture": [ + { + "nr": "28", + "text": "Say not unto thy neighbour, Go, and come again, and to morrow I will give; when thou hast it by thee." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "28", + "version": "kjv" +} diff --git a/scripture/kjv/11/25/23/scripture.md b/scripture/kjv/11/25/23/scripture.md new file mode 100644 index 00000000..5096013a --- /dev/null +++ b/scripture/kjv/11/25/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 3:28** + +28 Say not unto thy neighbour, Go, and come again, and to morrow I will give; when thou hast it by thee. + +[Saturday 25-November, 2023](https://getbible.life/kjv/Proverbs/3/28) diff --git a/scripture/kjv/11/25/23/scripture.tg b/scripture/kjv/11/25/23/scripture.tg new file mode 100644 index 00000000..71b82865 --- /dev/null +++ b/scripture/kjv/11/25/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 3:28 +28 Say not unto thy neighbour, Go, and come again, and to morrow I will give; when thou hast it by thee. + +Saturday 25-November, 2023 diff --git a/scripture/kjv/11/25/23/scripture.tg.id b/scripture/kjv/11/25/23/scripture.tg.id new file mode 100644 index 00000000..2a95aacb --- /dev/null +++ b/scripture/kjv/11/25/23/scripture.tg.id @@ -0,0 +1 @@ +1148 diff --git a/scripture/kjv/11/25/23/scripture.today b/scripture/kjv/11/25/23/scripture.today new file mode 100644 index 00000000..0d5600ef --- /dev/null +++ b/scripture/kjv/11/25/23/scripture.today @@ -0,0 +1 @@ +20 3:28 diff --git a/scripture/kjv/11/25/24/scripture.html b/scripture/kjv/11/25/24/scripture.html new file mode 100644 index 00000000..8761eb33 --- /dev/null +++ b/scripture/kjv/11/25/24/scripture.html @@ -0,0 +1,3 @@ +1 Timothy 1:5-6
+5 Now the end of the commandment is charity out of a pure heart, and of a good conscience, and of faith unfeigned: 6 From which some having swerved have turned aside unto vain jangling;

+Monday 25-November, 2024 diff --git a/scripture/kjv/11/25/24/scripture.json b/scripture/kjv/11/25/24/scripture.json new file mode 100644 index 00000000..928f2077 --- /dev/null +++ b/scripture/kjv/11/25/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "1 Timothy", + "chapter": "1", + "date": "Monday 25-November, 2024", + "getbible": "https://getbible.life/kjv/1 Timothy/1/5-6", + "name": "1 Timothy 1:5-6", + "scripture": [ + { + "nr": "5", + "text": "Now the end of the commandment is charity out of a pure heart, and of a good conscience, and of faith unfeigned:" + }, + { + "nr": "6", + "text": "From which some having swerved have turned aside unto vain jangling;" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5-6", + "version": "kjv" +} diff --git a/scripture/kjv/11/25/24/scripture.md b/scripture/kjv/11/25/24/scripture.md new file mode 100644 index 00000000..ac7f5f42 --- /dev/null +++ b/scripture/kjv/11/25/24/scripture.md @@ -0,0 +1,5 @@ +**1 Timothy 1:5-6** + +5 Now the end of the commandment is charity out of a pure heart, and of a good conscience, and of faith unfeigned: 6 From which some having swerved have turned aside unto vain jangling; + +[Monday 25-November, 2024](https://getbible.life/kjv/1 Timothy/1/5-6) diff --git a/scripture/kjv/11/25/24/scripture.tg b/scripture/kjv/11/25/24/scripture.tg new file mode 100644 index 00000000..203d6e93 --- /dev/null +++ b/scripture/kjv/11/25/24/scripture.tg @@ -0,0 +1,4 @@ +1 Timothy 1:5-6 +5 Now the end of the commandment is charity out of a pure heart, and of a good conscience, and of faith unfeigned: 6 From which some having swerved have turned aside unto vain jangling; + +Monday 25-November, 2024 diff --git a/scripture/kjv/11/25/24/scripture.tg.id b/scripture/kjv/11/25/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/25/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/25/24/scripture.today b/scripture/kjv/11/25/24/scripture.today new file mode 100644 index 00000000..147c6ac1 --- /dev/null +++ b/scripture/kjv/11/25/24/scripture.today @@ -0,0 +1 @@ +54 1:5-6 diff --git a/scripture/kjv/11/25/25/scripture.html b/scripture/kjv/11/25/25/scripture.html new file mode 100644 index 00000000..c58a1fef --- /dev/null +++ b/scripture/kjv/11/25/25/scripture.html @@ -0,0 +1,3 @@ +Isaiah 58:1
+1 Cry aloud, spare not, lift up thy voice like a trumpet, and shew my people their transgression, and the house of Jacob their sins.

+Tuesday 25-November, 2025 diff --git a/scripture/kjv/11/25/25/scripture.json b/scripture/kjv/11/25/25/scripture.json new file mode 100644 index 00000000..00134b4b --- /dev/null +++ b/scripture/kjv/11/25/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "58", + "date": "Tuesday 25-November, 2025", + "getbible": "https://getbible.life/kjv/Isaiah/58/1", + "name": "Isaiah 58:1", + "scripture": [ + { + "nr": "1", + "text": "Cry aloud, spare not, lift up thy voice like a trumpet, and shew my people their transgression, and the house of Jacob their sins." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1", + "version": "kjv" +} diff --git a/scripture/kjv/11/25/25/scripture.md b/scripture/kjv/11/25/25/scripture.md new file mode 100644 index 00000000..bc42d322 --- /dev/null +++ b/scripture/kjv/11/25/25/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 58:1** + +1 Cry aloud, spare not, lift up thy voice like a trumpet, and shew my people their transgression, and the house of Jacob their sins. + +[Tuesday 25-November, 2025](https://getbible.life/kjv/Isaiah/58/1) diff --git a/scripture/kjv/11/25/25/scripture.tg b/scripture/kjv/11/25/25/scripture.tg new file mode 100644 index 00000000..9317716a --- /dev/null +++ b/scripture/kjv/11/25/25/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 58:1 +1 Cry aloud, spare not, lift up thy voice like a trumpet, and shew my people their transgression, and the house of Jacob their sins. + +Tuesday 25-November, 2025 diff --git a/scripture/kjv/11/25/25/scripture.tg.id b/scripture/kjv/11/25/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/25/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/25/25/scripture.today b/scripture/kjv/11/25/25/scripture.today new file mode 100644 index 00000000..9783e4cb --- /dev/null +++ b/scripture/kjv/11/25/25/scripture.today @@ -0,0 +1 @@ +23 58:1 diff --git a/scripture/kjv/11/26/23/scripture.html b/scripture/kjv/11/26/23/scripture.html new file mode 100644 index 00000000..0827982e --- /dev/null +++ b/scripture/kjv/11/26/23/scripture.html @@ -0,0 +1,3 @@ +Jude 1:20-21
+20 But ye, beloved, building up yourselves on your most holy faith, praying in the Holy Ghost, 21 Keep yourselves in the love of God, looking for the mercy of our Lord Jesus Christ unto eternal life.

+Sunday 26-November, 2023 diff --git a/scripture/kjv/11/26/23/scripture.json b/scripture/kjv/11/26/23/scripture.json new file mode 100644 index 00000000..5214e5d2 --- /dev/null +++ b/scripture/kjv/11/26/23/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Jude", + "chapter": "1", + "date": "Sunday 26-November, 2023", + "getbible": "https://getbible.life/kjv/Jude/1/20-21", + "name": "Jude 1:20-21", + "scripture": [ + { + "nr": "20", + "text": "But ye, beloved, building up yourselves on your most holy faith, praying in the Holy Ghost," + }, + { + "nr": "21", + "text": "Keep yourselves in the love of God, looking for the mercy of our Lord Jesus Christ unto eternal life." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20-21", + "version": "kjv" +} diff --git a/scripture/kjv/11/26/23/scripture.md b/scripture/kjv/11/26/23/scripture.md new file mode 100644 index 00000000..9d4b2852 --- /dev/null +++ b/scripture/kjv/11/26/23/scripture.md @@ -0,0 +1,5 @@ +**Jude 1:20-21** + +20 But ye, beloved, building up yourselves on your most holy faith, praying in the Holy Ghost, 21 Keep yourselves in the love of God, looking for the mercy of our Lord Jesus Christ unto eternal life. + +[Sunday 26-November, 2023](https://getbible.life/kjv/Jude/1/20-21) diff --git a/scripture/kjv/11/26/23/scripture.tg b/scripture/kjv/11/26/23/scripture.tg new file mode 100644 index 00000000..117b6964 --- /dev/null +++ b/scripture/kjv/11/26/23/scripture.tg @@ -0,0 +1,4 @@ +Jude 1:20-21 +20 But ye, beloved, building up yourselves on your most holy faith, praying in the Holy Ghost, 21 Keep yourselves in the love of God, looking for the mercy of our Lord Jesus Christ unto eternal life. + +Sunday 26-November, 2023 diff --git a/scripture/kjv/11/26/23/scripture.tg.id b/scripture/kjv/11/26/23/scripture.tg.id new file mode 100644 index 00000000..d84bb295 --- /dev/null +++ b/scripture/kjv/11/26/23/scripture.tg.id @@ -0,0 +1 @@ +1149 diff --git a/scripture/kjv/11/26/23/scripture.today b/scripture/kjv/11/26/23/scripture.today new file mode 100644 index 00000000..f228103d --- /dev/null +++ b/scripture/kjv/11/26/23/scripture.today @@ -0,0 +1 @@ +65 1:20-21 diff --git a/scripture/kjv/11/26/24/scripture.html b/scripture/kjv/11/26/24/scripture.html new file mode 100644 index 00000000..dc7fda4a --- /dev/null +++ b/scripture/kjv/11/26/24/scripture.html @@ -0,0 +1,3 @@ +Ezra 8:22-23
+22 For I was ashamed to require of the king a band of soldiers and horsemen to help us against the enemy in the way: because we had spoken unto the king, saying, The hand of our God is upon all them for good that seek him; but his power and his wrath is against all them that forsake him. 23 So we fasted and besought our God for this: and he was intreated of us.

+Tuesday 26-November, 2024 diff --git a/scripture/kjv/11/26/24/scripture.json b/scripture/kjv/11/26/24/scripture.json new file mode 100644 index 00000000..0aaa29ab --- /dev/null +++ b/scripture/kjv/11/26/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Ezra", + "chapter": "8", + "date": "Tuesday 26-November, 2024", + "getbible": "https://getbible.life/kjv/Ezra/8/22-23", + "name": "Ezra 8:22-23", + "scripture": [ + { + "nr": "22", + "text": "For I was ashamed to require of the king a band of soldiers and horsemen to help us against the enemy in the way: because we had spoken unto the king, saying, The hand of our God is upon all them for good that seek him; but his power and his wrath is against all them that forsake him." + }, + { + "nr": "23", + "text": "So we fasted and besought our God for this: and he was intreated of us." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "22-23", + "version": "kjv" +} diff --git a/scripture/kjv/11/26/24/scripture.md b/scripture/kjv/11/26/24/scripture.md new file mode 100644 index 00000000..beb36a57 --- /dev/null +++ b/scripture/kjv/11/26/24/scripture.md @@ -0,0 +1,5 @@ +**Ezra 8:22-23** + +22 For I was ashamed to require of the king a band of soldiers and horsemen to help us against the enemy in the way: because we had spoken unto the king, saying, The hand of our God is upon all them for good that seek him; but his power and his wrath is against all them that forsake him. 23 So we fasted and besought our God for this: and he was intreated of us. + +[Tuesday 26-November, 2024](https://getbible.life/kjv/Ezra/8/22-23) diff --git a/scripture/kjv/11/26/24/scripture.tg b/scripture/kjv/11/26/24/scripture.tg new file mode 100644 index 00000000..32ee7182 --- /dev/null +++ b/scripture/kjv/11/26/24/scripture.tg @@ -0,0 +1,4 @@ +Ezra 8:22-23 +22 For I was ashamed to require of the king a band of soldiers and horsemen to help us against the enemy in the way: because we had spoken unto the king, saying, The hand of our God is upon all them for good that seek him; but his power and his wrath is against all them that forsake him. 23 So we fasted and besought our God for this: and he was intreated of us. + +Tuesday 26-November, 2024 diff --git a/scripture/kjv/11/26/24/scripture.tg.id b/scripture/kjv/11/26/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/26/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/26/24/scripture.today b/scripture/kjv/11/26/24/scripture.today new file mode 100644 index 00000000..6a026530 --- /dev/null +++ b/scripture/kjv/11/26/24/scripture.today @@ -0,0 +1 @@ +15 8:22-23 diff --git a/scripture/kjv/11/26/25/scripture.html b/scripture/kjv/11/26/25/scripture.html new file mode 100644 index 00000000..46fba0fc --- /dev/null +++ b/scripture/kjv/11/26/25/scripture.html @@ -0,0 +1,3 @@ +Galatians 5:25
+25 If we live in the Spirit, let us also walk in the Spirit.

+Wednesday 26-November, 2025 diff --git a/scripture/kjv/11/26/25/scripture.json b/scripture/kjv/11/26/25/scripture.json new file mode 100644 index 00000000..32e99403 --- /dev/null +++ b/scripture/kjv/11/26/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Galatians", + "chapter": "5", + "date": "Wednesday 26-November, 2025", + "getbible": "https://getbible.life/kjv/Galatians/5/25", + "name": "Galatians 5:25", + "scripture": [ + { + "nr": "25", + "text": "If we live in the Spirit, let us also walk in the Spirit." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "25", + "version": "kjv" +} diff --git a/scripture/kjv/11/26/25/scripture.md b/scripture/kjv/11/26/25/scripture.md new file mode 100644 index 00000000..d4e27d05 --- /dev/null +++ b/scripture/kjv/11/26/25/scripture.md @@ -0,0 +1,5 @@ +**Galatians 5:25** + +25 If we live in the Spirit, let us also walk in the Spirit. + +[Wednesday 26-November, 2025](https://getbible.life/kjv/Galatians/5/25) diff --git a/scripture/kjv/11/26/25/scripture.tg b/scripture/kjv/11/26/25/scripture.tg new file mode 100644 index 00000000..2ec09c3a --- /dev/null +++ b/scripture/kjv/11/26/25/scripture.tg @@ -0,0 +1,4 @@ +Galatians 5:25 +25 If we live in the Spirit, let us also walk in the Spirit. + +Wednesday 26-November, 2025 diff --git a/scripture/kjv/11/26/25/scripture.tg.id b/scripture/kjv/11/26/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/26/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/26/25/scripture.today b/scripture/kjv/11/26/25/scripture.today new file mode 100644 index 00000000..cc981b48 --- /dev/null +++ b/scripture/kjv/11/26/25/scripture.today @@ -0,0 +1 @@ +48 5:25 diff --git a/scripture/kjv/11/27/23/scripture.html b/scripture/kjv/11/27/23/scripture.html new file mode 100644 index 00000000..2a5ff25c --- /dev/null +++ b/scripture/kjv/11/27/23/scripture.html @@ -0,0 +1,3 @@ +John 3:34
+34 For he whom God hath sent speaketh the words of God: for God giveth not the Spirit by measure unto him.

+Monday 27-November, 2023 diff --git a/scripture/kjv/11/27/23/scripture.json b/scripture/kjv/11/27/23/scripture.json new file mode 100644 index 00000000..9f667c28 --- /dev/null +++ b/scripture/kjv/11/27/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "3", + "date": "Monday 27-November, 2023", + "getbible": "https://getbible.life/kjv/John/3/34", + "name": "John 3:34", + "scripture": [ + { + "nr": "34", + "text": "For he whom God hath sent speaketh the words of God: for God giveth not the Spirit by measure unto him. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "34", + "version": "kjv" +} diff --git a/scripture/kjv/11/27/23/scripture.md b/scripture/kjv/11/27/23/scripture.md new file mode 100644 index 00000000..40928736 --- /dev/null +++ b/scripture/kjv/11/27/23/scripture.md @@ -0,0 +1,5 @@ +**John 3:34** + +34 For he whom God hath sent speaketh the words of God: for God giveth not the Spirit by measure unto him. + +[Monday 27-November, 2023](https://getbible.life/kjv/John/3/34) diff --git a/scripture/kjv/11/27/23/scripture.tg b/scripture/kjv/11/27/23/scripture.tg new file mode 100644 index 00000000..47a618c3 --- /dev/null +++ b/scripture/kjv/11/27/23/scripture.tg @@ -0,0 +1,4 @@ +John 3:34 +34 For he whom God hath sent speaketh the words of God: for God giveth not the Spirit by measure unto him. + +Monday 27-November, 2023 diff --git a/scripture/kjv/11/27/23/scripture.tg.id b/scripture/kjv/11/27/23/scripture.tg.id new file mode 100644 index 00000000..765f5bf7 --- /dev/null +++ b/scripture/kjv/11/27/23/scripture.tg.id @@ -0,0 +1 @@ +1150 diff --git a/scripture/kjv/11/27/23/scripture.today b/scripture/kjv/11/27/23/scripture.today new file mode 100644 index 00000000..68565514 --- /dev/null +++ b/scripture/kjv/11/27/23/scripture.today @@ -0,0 +1 @@ +43 3:34 diff --git a/scripture/kjv/11/27/24/scripture.html b/scripture/kjv/11/27/24/scripture.html new file mode 100644 index 00000000..b32bfbbf --- /dev/null +++ b/scripture/kjv/11/27/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 44:3
+3 For they got not the land in possession by their own sword, neither did their own arm save them: but thy right hand, and thine arm, and the light of thy countenance, because thou hadst a favour unto them.

+Wednesday 27-November, 2024 diff --git a/scripture/kjv/11/27/24/scripture.json b/scripture/kjv/11/27/24/scripture.json new file mode 100644 index 00000000..e870e9e1 --- /dev/null +++ b/scripture/kjv/11/27/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "44", + "date": "Wednesday 27-November, 2024", + "getbible": "https://getbible.life/kjv/Psalms/44/3", + "name": "Psalms 44:3", + "scripture": [ + { + "nr": "3", + "text": "For they got not the land in possession by their own sword, neither did their own arm save them: but thy right hand, and thine arm, and the light of thy countenance, because thou hadst a favour unto them." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3", + "version": "kjv" +} diff --git a/scripture/kjv/11/27/24/scripture.md b/scripture/kjv/11/27/24/scripture.md new file mode 100644 index 00000000..e5944fe0 --- /dev/null +++ b/scripture/kjv/11/27/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 44:3** + +3 For they got not the land in possession by their own sword, neither did their own arm save them: but thy right hand, and thine arm, and the light of thy countenance, because thou hadst a favour unto them. + +[Wednesday 27-November, 2024](https://getbible.life/kjv/Psalms/44/3) diff --git a/scripture/kjv/11/27/24/scripture.tg b/scripture/kjv/11/27/24/scripture.tg new file mode 100644 index 00000000..01888c3a --- /dev/null +++ b/scripture/kjv/11/27/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 44:3 +3 For they got not the land in possession by their own sword, neither did their own arm save them: but thy right hand, and thine arm, and the light of thy countenance, because thou hadst a favour unto them. + +Wednesday 27-November, 2024 diff --git a/scripture/kjv/11/27/24/scripture.tg.id b/scripture/kjv/11/27/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/27/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/27/24/scripture.today b/scripture/kjv/11/27/24/scripture.today new file mode 100644 index 00000000..3231a881 --- /dev/null +++ b/scripture/kjv/11/27/24/scripture.today @@ -0,0 +1 @@ +19 44:3 diff --git a/scripture/kjv/11/27/25/scripture.html b/scripture/kjv/11/27/25/scripture.html new file mode 100644 index 00000000..9af3d205 --- /dev/null +++ b/scripture/kjv/11/27/25/scripture.html @@ -0,0 +1,3 @@ +Galatians 6:14
+14 But God forbid that I should glory, save in the cross of our Lord Jesus Christ, by whom the world is crucified unto me, and I unto the world.

+Thursday 27-November, 2025 diff --git a/scripture/kjv/11/27/25/scripture.json b/scripture/kjv/11/27/25/scripture.json new file mode 100644 index 00000000..2014144f --- /dev/null +++ b/scripture/kjv/11/27/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Galatians", + "chapter": "6", + "date": "Thursday 27-November, 2025", + "getbible": "https://getbible.life/kjv/Galatians/6/14", + "name": "Galatians 6:14", + "scripture": [ + { + "nr": "14", + "text": "But God forbid that I should glory, save in the cross of our Lord Jesus Christ, by whom the world is crucified unto me, and I unto the world." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/11/27/25/scripture.md b/scripture/kjv/11/27/25/scripture.md new file mode 100644 index 00000000..1c37c5ee --- /dev/null +++ b/scripture/kjv/11/27/25/scripture.md @@ -0,0 +1,5 @@ +**Galatians 6:14** + +14 But God forbid that I should glory, save in the cross of our Lord Jesus Christ, by whom the world is crucified unto me, and I unto the world. + +[Thursday 27-November, 2025](https://getbible.life/kjv/Galatians/6/14) diff --git a/scripture/kjv/11/27/25/scripture.tg b/scripture/kjv/11/27/25/scripture.tg new file mode 100644 index 00000000..769185e4 --- /dev/null +++ b/scripture/kjv/11/27/25/scripture.tg @@ -0,0 +1,4 @@ +Galatians 6:14 +14 But God forbid that I should glory, save in the cross of our Lord Jesus Christ, by whom the world is crucified unto me, and I unto the world. + +Thursday 27-November, 2025 diff --git a/scripture/kjv/11/27/25/scripture.tg.id b/scripture/kjv/11/27/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/27/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/27/25/scripture.today b/scripture/kjv/11/27/25/scripture.today new file mode 100644 index 00000000..6c1e3fe0 --- /dev/null +++ b/scripture/kjv/11/27/25/scripture.today @@ -0,0 +1 @@ +48 6:14 diff --git a/scripture/kjv/11/28/23/scripture.html b/scripture/kjv/11/28/23/scripture.html new file mode 100644 index 00000000..dff38d88 --- /dev/null +++ b/scripture/kjv/11/28/23/scripture.html @@ -0,0 +1,3 @@ +Ephesians 2:10
+10 For we are his workmanship, created in Christ Jesus unto good works, which God hath before ordained that we should walk in them.

+Tuesday 28-November, 2023 diff --git a/scripture/kjv/11/28/23/scripture.json b/scripture/kjv/11/28/23/scripture.json new file mode 100644 index 00000000..9afaa402 --- /dev/null +++ b/scripture/kjv/11/28/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ephesians", + "chapter": "2", + "date": "Tuesday 28-November, 2023", + "getbible": "https://getbible.life/kjv/Ephesians/2/10", + "name": "Ephesians 2:10", + "scripture": [ + { + "nr": "10", + "text": "For we are his workmanship, created in Christ Jesus unto good works, which God hath before ordained that we should walk in them." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/11/28/23/scripture.md b/scripture/kjv/11/28/23/scripture.md new file mode 100644 index 00000000..b9b38bd2 --- /dev/null +++ b/scripture/kjv/11/28/23/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 2:10** + +10 For we are his workmanship, created in Christ Jesus unto good works, which God hath before ordained that we should walk in them. + +[Tuesday 28-November, 2023](https://getbible.life/kjv/Ephesians/2/10) diff --git a/scripture/kjv/11/28/23/scripture.tg b/scripture/kjv/11/28/23/scripture.tg new file mode 100644 index 00000000..20ddc62d --- /dev/null +++ b/scripture/kjv/11/28/23/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 2:10 +10 For we are his workmanship, created in Christ Jesus unto good works, which God hath before ordained that we should walk in them. + +Tuesday 28-November, 2023 diff --git a/scripture/kjv/11/28/23/scripture.tg.id b/scripture/kjv/11/28/23/scripture.tg.id new file mode 100644 index 00000000..691cbe1f --- /dev/null +++ b/scripture/kjv/11/28/23/scripture.tg.id @@ -0,0 +1 @@ +1151 diff --git a/scripture/kjv/11/28/23/scripture.today b/scripture/kjv/11/28/23/scripture.today new file mode 100644 index 00000000..2e1eccf7 --- /dev/null +++ b/scripture/kjv/11/28/23/scripture.today @@ -0,0 +1 @@ +49 2:10 diff --git a/scripture/kjv/11/28/24/scripture.html b/scripture/kjv/11/28/24/scripture.html new file mode 100644 index 00000000..4a85636e --- /dev/null +++ b/scripture/kjv/11/28/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 25:14
+14 Whoso boasteth himself of a false gift is like clouds and wind without rain.

+Thursday 28-November, 2024 diff --git a/scripture/kjv/11/28/24/scripture.json b/scripture/kjv/11/28/24/scripture.json new file mode 100644 index 00000000..c2518b0f --- /dev/null +++ b/scripture/kjv/11/28/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "25", + "date": "Thursday 28-November, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/25/14", + "name": "Proverbs 25:14", + "scripture": [ + { + "nr": "14", + "text": "Whoso boasteth himself of a false gift is like clouds and wind without rain." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/11/28/24/scripture.md b/scripture/kjv/11/28/24/scripture.md new file mode 100644 index 00000000..4731dc21 --- /dev/null +++ b/scripture/kjv/11/28/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 25:14** + +14 Whoso boasteth himself of a false gift is like clouds and wind without rain. + +[Thursday 28-November, 2024](https://getbible.life/kjv/Proverbs/25/14) diff --git a/scripture/kjv/11/28/24/scripture.tg b/scripture/kjv/11/28/24/scripture.tg new file mode 100644 index 00000000..26977af8 --- /dev/null +++ b/scripture/kjv/11/28/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 25:14 +14 Whoso boasteth himself of a false gift is like clouds and wind without rain. + +Thursday 28-November, 2024 diff --git a/scripture/kjv/11/28/24/scripture.tg.id b/scripture/kjv/11/28/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/28/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/28/24/scripture.today b/scripture/kjv/11/28/24/scripture.today new file mode 100644 index 00000000..ca4670f0 --- /dev/null +++ b/scripture/kjv/11/28/24/scripture.today @@ -0,0 +1 @@ +20 25:14 diff --git a/scripture/kjv/11/28/25/scripture.html b/scripture/kjv/11/28/25/scripture.html new file mode 100644 index 00000000..8db13edd --- /dev/null +++ b/scripture/kjv/11/28/25/scripture.html @@ -0,0 +1,3 @@ +Isaiah 60:14
+14 The sons also of them that afflicted thee shall come bending unto thee; and all they that despised thee shall bow themselves down at the soles of thy feet; and they shall call thee, The city of the Lord, The Zion of the Holy One of Israel.

+Friday 28-November, 2025 diff --git a/scripture/kjv/11/28/25/scripture.json b/scripture/kjv/11/28/25/scripture.json new file mode 100644 index 00000000..bba3b4fe --- /dev/null +++ b/scripture/kjv/11/28/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "60", + "date": "Friday 28-November, 2025", + "getbible": "https://getbible.life/kjv/Isaiah/60/14", + "name": "Isaiah 60:14", + "scripture": [ + { + "nr": "14", + "text": "The sons also of them that afflicted thee shall come bending unto thee; and all they that despised thee shall bow themselves down at the soles of thy feet; and they shall call thee, The city of the Lord, The Zion of the Holy One of Israel." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/11/28/25/scripture.md b/scripture/kjv/11/28/25/scripture.md new file mode 100644 index 00000000..7c8acbd6 --- /dev/null +++ b/scripture/kjv/11/28/25/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 60:14** + +14 The sons also of them that afflicted thee shall come bending unto thee; and all they that despised thee shall bow themselves down at the soles of thy feet; and they shall call thee, The city of the Lord, The Zion of the Holy One of Israel. + +[Friday 28-November, 2025](https://getbible.life/kjv/Isaiah/60/14) diff --git a/scripture/kjv/11/28/25/scripture.tg b/scripture/kjv/11/28/25/scripture.tg new file mode 100644 index 00000000..d969065f --- /dev/null +++ b/scripture/kjv/11/28/25/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 60:14 +14 The sons also of them that afflicted thee shall come bending unto thee; and all they that despised thee shall bow themselves down at the soles of thy feet; and they shall call thee, The city of the Lord, The Zion of the Holy One of Israel. + +Friday 28-November, 2025 diff --git a/scripture/kjv/11/28/25/scripture.tg.id b/scripture/kjv/11/28/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/28/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/28/25/scripture.today b/scripture/kjv/11/28/25/scripture.today new file mode 100644 index 00000000..84829c54 --- /dev/null +++ b/scripture/kjv/11/28/25/scripture.today @@ -0,0 +1 @@ +23 60:14 diff --git a/scripture/kjv/11/29/23/scripture.html b/scripture/kjv/11/29/23/scripture.html new file mode 100644 index 00000000..73ecf235 --- /dev/null +++ b/scripture/kjv/11/29/23/scripture.html @@ -0,0 +1,3 @@ +Revelation 22:5
+5 And there shall be no night there; and they need no candle, neither light of the sun; for the Lord God giveth them light: and they shall reign for ever and ever.

+Wednesday 29-November, 2023 diff --git a/scripture/kjv/11/29/23/scripture.json b/scripture/kjv/11/29/23/scripture.json new file mode 100644 index 00000000..d5057f8b --- /dev/null +++ b/scripture/kjv/11/29/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Revelation", + "chapter": "22", + "date": "Wednesday 29-November, 2023", + "getbible": "https://getbible.life/kjv/Revelation/22/5", + "name": "Revelation 22:5", + "scripture": [ + { + "nr": "5", + "text": "And there shall be no night there; and they need no candle, neither light of the sun; for the Lord God giveth them light: and they shall reign for ever and ever." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5", + "version": "kjv" +} diff --git a/scripture/kjv/11/29/23/scripture.md b/scripture/kjv/11/29/23/scripture.md new file mode 100644 index 00000000..25457bf6 --- /dev/null +++ b/scripture/kjv/11/29/23/scripture.md @@ -0,0 +1,5 @@ +**Revelation 22:5** + +5 And there shall be no night there; and they need no candle, neither light of the sun; for the Lord God giveth them light: and they shall reign for ever and ever. + +[Wednesday 29-November, 2023](https://getbible.life/kjv/Revelation/22/5) diff --git a/scripture/kjv/11/29/23/scripture.tg b/scripture/kjv/11/29/23/scripture.tg new file mode 100644 index 00000000..c92e6036 --- /dev/null +++ b/scripture/kjv/11/29/23/scripture.tg @@ -0,0 +1,4 @@ +Revelation 22:5 +5 And there shall be no night there; and they need no candle, neither light of the sun; for the Lord God giveth them light: and they shall reign for ever and ever. + +Wednesday 29-November, 2023 diff --git a/scripture/kjv/11/29/23/scripture.tg.id b/scripture/kjv/11/29/23/scripture.tg.id new file mode 100644 index 00000000..d98057a1 --- /dev/null +++ b/scripture/kjv/11/29/23/scripture.tg.id @@ -0,0 +1 @@ +1152 diff --git a/scripture/kjv/11/29/23/scripture.today b/scripture/kjv/11/29/23/scripture.today new file mode 100644 index 00000000..0a4f8eea --- /dev/null +++ b/scripture/kjv/11/29/23/scripture.today @@ -0,0 +1 @@ +66 22:5 diff --git a/scripture/kjv/11/29/24/scripture.html b/scripture/kjv/11/29/24/scripture.html new file mode 100644 index 00000000..9c12478c --- /dev/null +++ b/scripture/kjv/11/29/24/scripture.html @@ -0,0 +1,3 @@ +Hosea 6:4
+4 O Ephraim, what shall I do unto thee? O Judah, what shall I do unto thee? for your goodness is as a morning cloud, and as the early dew it goeth away.

+Friday 29-November, 2024 diff --git a/scripture/kjv/11/29/24/scripture.json b/scripture/kjv/11/29/24/scripture.json new file mode 100644 index 00000000..4bbf89ab --- /dev/null +++ b/scripture/kjv/11/29/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Hosea", + "chapter": "6", + "date": "Friday 29-November, 2024", + "getbible": "https://getbible.life/kjv/Hosea/6/4", + "name": "Hosea 6:4", + "scripture": [ + { + "nr": "4", + "text": "O Ephraim, what shall I do unto thee? O Judah, what shall I do unto thee? for your goodness is as a morning cloud, and as the early dew it goeth away." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4", + "version": "kjv" +} diff --git a/scripture/kjv/11/29/24/scripture.md b/scripture/kjv/11/29/24/scripture.md new file mode 100644 index 00000000..ea61fd77 --- /dev/null +++ b/scripture/kjv/11/29/24/scripture.md @@ -0,0 +1,5 @@ +**Hosea 6:4** + +4 O Ephraim, what shall I do unto thee? O Judah, what shall I do unto thee? for your goodness is as a morning cloud, and as the early dew it goeth away. + +[Friday 29-November, 2024](https://getbible.life/kjv/Hosea/6/4) diff --git a/scripture/kjv/11/29/24/scripture.tg b/scripture/kjv/11/29/24/scripture.tg new file mode 100644 index 00000000..33cd9bb6 --- /dev/null +++ b/scripture/kjv/11/29/24/scripture.tg @@ -0,0 +1,4 @@ +Hosea 6:4 +4 O Ephraim, what shall I do unto thee? O Judah, what shall I do unto thee? for your goodness is as a morning cloud, and as the early dew it goeth away. + +Friday 29-November, 2024 diff --git a/scripture/kjv/11/29/24/scripture.tg.id b/scripture/kjv/11/29/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/29/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/29/24/scripture.today b/scripture/kjv/11/29/24/scripture.today new file mode 100644 index 00000000..6844022d --- /dev/null +++ b/scripture/kjv/11/29/24/scripture.today @@ -0,0 +1 @@ +28 6:4 diff --git a/scripture/kjv/11/29/25/scripture.html b/scripture/kjv/11/29/25/scripture.html new file mode 100644 index 00000000..bdf7455e --- /dev/null +++ b/scripture/kjv/11/29/25/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 16:13
+13 Watch ye, stand fast in the faith, quit you like men, be strong.

+Saturday 29-November, 2025 diff --git a/scripture/kjv/11/29/25/scripture.json b/scripture/kjv/11/29/25/scripture.json new file mode 100644 index 00000000..d0fa029f --- /dev/null +++ b/scripture/kjv/11/29/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "16", + "date": "Saturday 29-November, 2025", + "getbible": "https://getbible.life/kjv/1 Corinthians/16/13", + "name": "1 Corinthians 16:13", + "scripture": [ + { + "nr": "13", + "text": "Watch ye, stand fast in the faith, quit you like men, be strong." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13", + "version": "kjv" +} diff --git a/scripture/kjv/11/29/25/scripture.md b/scripture/kjv/11/29/25/scripture.md new file mode 100644 index 00000000..b363e5b6 --- /dev/null +++ b/scripture/kjv/11/29/25/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 16:13** + +13 Watch ye, stand fast in the faith, quit you like men, be strong. + +[Saturday 29-November, 2025](https://getbible.life/kjv/1 Corinthians/16/13) diff --git a/scripture/kjv/11/29/25/scripture.tg b/scripture/kjv/11/29/25/scripture.tg new file mode 100644 index 00000000..4ebe0a8d --- /dev/null +++ b/scripture/kjv/11/29/25/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 16:13 +13 Watch ye, stand fast in the faith, quit you like men, be strong. + +Saturday 29-November, 2025 diff --git a/scripture/kjv/11/29/25/scripture.tg.id b/scripture/kjv/11/29/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/29/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/29/25/scripture.today b/scripture/kjv/11/29/25/scripture.today new file mode 100644 index 00000000..254b7710 --- /dev/null +++ b/scripture/kjv/11/29/25/scripture.today @@ -0,0 +1 @@ +46 16:13 diff --git a/scripture/kjv/11/30/23/scripture.html b/scripture/kjv/11/30/23/scripture.html new file mode 100644 index 00000000..9968e626 --- /dev/null +++ b/scripture/kjv/11/30/23/scripture.html @@ -0,0 +1,3 @@ +2 Kings 25:30
+30 And his allowance was a continual allowance given him of the king, a daily rate for every day, all the days of his life.

+Thursday 30-November, 2023 diff --git a/scripture/kjv/11/30/23/scripture.json b/scripture/kjv/11/30/23/scripture.json new file mode 100644 index 00000000..e391b3b8 --- /dev/null +++ b/scripture/kjv/11/30/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Kings", + "chapter": "25", + "date": "Thursday 30-November, 2023", + "getbible": "https://getbible.life/kjv/2 Kings/25/30", + "name": "2 Kings 25:30", + "scripture": [ + { + "nr": "30", + "text": "And his allowance was a continual allowance given him of the king, a daily rate for every day, all the days of his life. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "30", + "version": "kjv" +} diff --git a/scripture/kjv/11/30/23/scripture.md b/scripture/kjv/11/30/23/scripture.md new file mode 100644 index 00000000..41210b90 --- /dev/null +++ b/scripture/kjv/11/30/23/scripture.md @@ -0,0 +1,5 @@ +**2 Kings 25:30** + +30 And his allowance was a continual allowance given him of the king, a daily rate for every day, all the days of his life. + +[Thursday 30-November, 2023](https://getbible.life/kjv/2 Kings/25/30) diff --git a/scripture/kjv/11/30/23/scripture.tg b/scripture/kjv/11/30/23/scripture.tg new file mode 100644 index 00000000..4c48d2de --- /dev/null +++ b/scripture/kjv/11/30/23/scripture.tg @@ -0,0 +1,4 @@ +2 Kings 25:30 +30 And his allowance was a continual allowance given him of the king, a daily rate for every day, all the days of his life. + +Thursday 30-November, 2023 diff --git a/scripture/kjv/11/30/23/scripture.tg.id b/scripture/kjv/11/30/23/scripture.tg.id new file mode 100644 index 00000000..7784c898 --- /dev/null +++ b/scripture/kjv/11/30/23/scripture.tg.id @@ -0,0 +1 @@ +1153 diff --git a/scripture/kjv/11/30/23/scripture.today b/scripture/kjv/11/30/23/scripture.today new file mode 100644 index 00000000..eac57606 --- /dev/null +++ b/scripture/kjv/11/30/23/scripture.today @@ -0,0 +1 @@ +12 25:30 diff --git a/scripture/kjv/11/30/24/scripture.html b/scripture/kjv/11/30/24/scripture.html new file mode 100644 index 00000000..b9086ef4 --- /dev/null +++ b/scripture/kjv/11/30/24/scripture.html @@ -0,0 +1,3 @@ +Isaiah 55:12-13
+12 For ye shall go out with joy, and be led forth with peace: the mountains and the hills shall break forth before you into singing, and all the trees of the field shall clap their hands. 13 Instead of the thorn shall come up the fir tree, and instead of the brier shall come up the myrtle tree: and it shall be to the Lord for a name, for an everlasting sign that shall not be cut off.

+Saturday 30-November, 2024 diff --git a/scripture/kjv/11/30/24/scripture.json b/scripture/kjv/11/30/24/scripture.json new file mode 100644 index 00000000..d13c763c --- /dev/null +++ b/scripture/kjv/11/30/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Isaiah", + "chapter": "55", + "date": "Saturday 30-November, 2024", + "getbible": "https://getbible.life/kjv/Isaiah/55/12-13", + "name": "Isaiah 55:12-13", + "scripture": [ + { + "nr": "12", + "text": "For ye shall go out with joy, and be led forth with peace: the mountains and the hills shall break forth before you into singing, and all the trees of the field shall clap their hands." + }, + { + "nr": "13", + "text": "Instead of the thorn shall come up the fir tree, and instead of the brier shall come up the myrtle tree: and it shall be to the Lord for a name, for an everlasting sign that shall not be cut off. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12-13", + "version": "kjv" +} diff --git a/scripture/kjv/11/30/24/scripture.md b/scripture/kjv/11/30/24/scripture.md new file mode 100644 index 00000000..c6fce138 --- /dev/null +++ b/scripture/kjv/11/30/24/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 55:12-13** + +12 For ye shall go out with joy, and be led forth with peace: the mountains and the hills shall break forth before you into singing, and all the trees of the field shall clap their hands. 13 Instead of the thorn shall come up the fir tree, and instead of the brier shall come up the myrtle tree: and it shall be to the Lord for a name, for an everlasting sign that shall not be cut off. + +[Saturday 30-November, 2024](https://getbible.life/kjv/Isaiah/55/12-13) diff --git a/scripture/kjv/11/30/24/scripture.tg b/scripture/kjv/11/30/24/scripture.tg new file mode 100644 index 00000000..5e642978 --- /dev/null +++ b/scripture/kjv/11/30/24/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 55:12-13 +12 For ye shall go out with joy, and be led forth with peace: the mountains and the hills shall break forth before you into singing, and all the trees of the field shall clap their hands. 13 Instead of the thorn shall come up the fir tree, and instead of the brier shall come up the myrtle tree: and it shall be to the Lord for a name, for an everlasting sign that shall not be cut off. + +Saturday 30-November, 2024 diff --git a/scripture/kjv/11/30/24/scripture.tg.id b/scripture/kjv/11/30/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/30/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/30/24/scripture.today b/scripture/kjv/11/30/24/scripture.today new file mode 100644 index 00000000..53b40d19 --- /dev/null +++ b/scripture/kjv/11/30/24/scripture.today @@ -0,0 +1 @@ +23 55:12-13 diff --git a/scripture/kjv/11/30/25/scripture.html b/scripture/kjv/11/30/25/scripture.html new file mode 100644 index 00000000..5dcdd36b --- /dev/null +++ b/scripture/kjv/11/30/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 78:13
+13 He divided the sea, and caused them to pass through; and he made the waters to stand as an heap.

+Sunday 30-November, 2025 diff --git a/scripture/kjv/11/30/25/scripture.json b/scripture/kjv/11/30/25/scripture.json new file mode 100644 index 00000000..138d027c --- /dev/null +++ b/scripture/kjv/11/30/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "78", + "date": "Sunday 30-November, 2025", + "getbible": "https://getbible.life/kjv/Psalms/78/13", + "name": "Psalms 78:13", + "scripture": [ + { + "nr": "13", + "text": "He divided the sea, and caused them to pass through; and he made the waters to stand as an heap." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13", + "version": "kjv" +} diff --git a/scripture/kjv/11/30/25/scripture.md b/scripture/kjv/11/30/25/scripture.md new file mode 100644 index 00000000..75b3434b --- /dev/null +++ b/scripture/kjv/11/30/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 78:13** + +13 He divided the sea, and caused them to pass through; and he made the waters to stand as an heap. + +[Sunday 30-November, 2025](https://getbible.life/kjv/Psalms/78/13) diff --git a/scripture/kjv/11/30/25/scripture.tg b/scripture/kjv/11/30/25/scripture.tg new file mode 100644 index 00000000..d3255369 --- /dev/null +++ b/scripture/kjv/11/30/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 78:13 +13 He divided the sea, and caused them to pass through; and he made the waters to stand as an heap. + +Sunday 30-November, 2025 diff --git a/scripture/kjv/11/30/25/scripture.tg.id b/scripture/kjv/11/30/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/11/30/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/11/30/25/scripture.today b/scripture/kjv/11/30/25/scripture.today new file mode 100644 index 00000000..37378a80 --- /dev/null +++ b/scripture/kjv/11/30/25/scripture.today @@ -0,0 +1 @@ +19 78:13 diff --git a/scripture/kjv/12/01/23/scripture.html b/scripture/kjv/12/01/23/scripture.html new file mode 100644 index 00000000..ca51d64c --- /dev/null +++ b/scripture/kjv/12/01/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 25:5
+5 Lead me in thy truth, and teach me: for thou art the God of my salvation; on thee do I wait all the day.

+Friday 01-December, 2023 diff --git a/scripture/kjv/12/01/23/scripture.json b/scripture/kjv/12/01/23/scripture.json new file mode 100644 index 00000000..ff4232f5 --- /dev/null +++ b/scripture/kjv/12/01/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "25", + "date": "Friday 01-December, 2023", + "getbible": "https://getbible.life/kjv/Psalms/25/5", + "name": "Psalms 25:5", + "scripture": [ + { + "nr": "5", + "text": "Lead me in thy truth, and teach me: for thou art the God of my salvation; on thee do I wait all the day." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5", + "version": "kjv" +} diff --git a/scripture/kjv/12/01/23/scripture.md b/scripture/kjv/12/01/23/scripture.md new file mode 100644 index 00000000..95256363 --- /dev/null +++ b/scripture/kjv/12/01/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 25:5** + +5 Lead me in thy truth, and teach me: for thou art the God of my salvation; on thee do I wait all the day. + +[Friday 01-December, 2023](https://getbible.life/kjv/Psalms/25/5) diff --git a/scripture/kjv/12/01/23/scripture.tg b/scripture/kjv/12/01/23/scripture.tg new file mode 100644 index 00000000..44f73908 --- /dev/null +++ b/scripture/kjv/12/01/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 25:5 +5 Lead me in thy truth, and teach me: for thou art the God of my salvation; on thee do I wait all the day. + +Friday 01-December, 2023 diff --git a/scripture/kjv/12/01/23/scripture.tg.id b/scripture/kjv/12/01/23/scripture.tg.id new file mode 100644 index 00000000..ff7ff4d0 --- /dev/null +++ b/scripture/kjv/12/01/23/scripture.tg.id @@ -0,0 +1 @@ +1154 diff --git a/scripture/kjv/12/01/23/scripture.today b/scripture/kjv/12/01/23/scripture.today new file mode 100644 index 00000000..fcd0800f --- /dev/null +++ b/scripture/kjv/12/01/23/scripture.today @@ -0,0 +1 @@ +19 25:5 diff --git a/scripture/kjv/12/01/24/scripture.html b/scripture/kjv/12/01/24/scripture.html new file mode 100644 index 00000000..15dc70ea --- /dev/null +++ b/scripture/kjv/12/01/24/scripture.html @@ -0,0 +1,3 @@ +Isaiah 62:12
+12 And they shall call them, The holy people, The redeemed of the Lord: and thou shalt be called, Sought out, A city not forsaken.

+Sunday 01-December, 2024 diff --git a/scripture/kjv/12/01/24/scripture.json b/scripture/kjv/12/01/24/scripture.json new file mode 100644 index 00000000..6f22563f --- /dev/null +++ b/scripture/kjv/12/01/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "62", + "date": "Sunday 01-December, 2024", + "getbible": "https://getbible.life/kjv/Isaiah/62/12", + "name": "Isaiah 62:12", + "scripture": [ + { + "nr": "12", + "text": "And they shall call them, The holy people, The redeemed of the Lord: and thou shalt be called, Sought out, A city not forsaken. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/12/01/24/scripture.md b/scripture/kjv/12/01/24/scripture.md new file mode 100644 index 00000000..4197dce4 --- /dev/null +++ b/scripture/kjv/12/01/24/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 62:12** + +12 And they shall call them, The holy people, The redeemed of the Lord: and thou shalt be called, Sought out, A city not forsaken. + +[Sunday 01-December, 2024](https://getbible.life/kjv/Isaiah/62/12) diff --git a/scripture/kjv/12/01/24/scripture.tg b/scripture/kjv/12/01/24/scripture.tg new file mode 100644 index 00000000..64c44e36 --- /dev/null +++ b/scripture/kjv/12/01/24/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 62:12 +12 And they shall call them, The holy people, The redeemed of the Lord: and thou shalt be called, Sought out, A city not forsaken. + +Sunday 01-December, 2024 diff --git a/scripture/kjv/12/01/24/scripture.tg.id b/scripture/kjv/12/01/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/01/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/01/24/scripture.today b/scripture/kjv/12/01/24/scripture.today new file mode 100644 index 00000000..4836b8e1 --- /dev/null +++ b/scripture/kjv/12/01/24/scripture.today @@ -0,0 +1 @@ +23 62:12 diff --git a/scripture/kjv/12/01/25/scripture.html b/scripture/kjv/12/01/25/scripture.html new file mode 100644 index 00000000..49358edc --- /dev/null +++ b/scripture/kjv/12/01/25/scripture.html @@ -0,0 +1,3 @@ +Matthew 25:20
+20 And so he that had received five talents came and brought other five talents, saying, Lord, thou deliveredst unto me five talents: behold, I have gained beside them five talents more.

+Monday 01-December, 2025 diff --git a/scripture/kjv/12/01/25/scripture.json b/scripture/kjv/12/01/25/scripture.json new file mode 100644 index 00000000..bb7f681d --- /dev/null +++ b/scripture/kjv/12/01/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Matthew", + "chapter": "25", + "date": "Monday 01-December, 2025", + "getbible": "https://getbible.life/kjv/Matthew/25/20", + "name": "Matthew 25:20", + "scripture": [ + { + "nr": "20", + "text": "And so he that had received five talents came and brought other five talents, saying, Lord, thou deliveredst unto me five talents: behold, I have gained beside them five talents more." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20", + "version": "kjv" +} diff --git a/scripture/kjv/12/01/25/scripture.md b/scripture/kjv/12/01/25/scripture.md new file mode 100644 index 00000000..d5804133 --- /dev/null +++ b/scripture/kjv/12/01/25/scripture.md @@ -0,0 +1,5 @@ +**Matthew 25:20** + +20 And so he that had received five talents came and brought other five talents, saying, Lord, thou deliveredst unto me five talents: behold, I have gained beside them five talents more. + +[Monday 01-December, 2025](https://getbible.life/kjv/Matthew/25/20) diff --git a/scripture/kjv/12/01/25/scripture.tg b/scripture/kjv/12/01/25/scripture.tg new file mode 100644 index 00000000..ea4ba3e7 --- /dev/null +++ b/scripture/kjv/12/01/25/scripture.tg @@ -0,0 +1,4 @@ +Matthew 25:20 +20 And so he that had received five talents came and brought other five talents, saying, Lord, thou deliveredst unto me five talents: behold, I have gained beside them five talents more. + +Monday 01-December, 2025 diff --git a/scripture/kjv/12/01/25/scripture.tg.id b/scripture/kjv/12/01/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/01/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/01/25/scripture.today b/scripture/kjv/12/01/25/scripture.today new file mode 100644 index 00000000..85943ade --- /dev/null +++ b/scripture/kjv/12/01/25/scripture.today @@ -0,0 +1 @@ +40 25:20 diff --git a/scripture/kjv/12/02/23/scripture.html b/scripture/kjv/12/02/23/scripture.html new file mode 100644 index 00000000..57abdf1c --- /dev/null +++ b/scripture/kjv/12/02/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 50:14
+14 Offer unto God thanksgiving; and pay thy vows unto the most High:

+Saturday 02-December, 2023 diff --git a/scripture/kjv/12/02/23/scripture.json b/scripture/kjv/12/02/23/scripture.json new file mode 100644 index 00000000..893d5d5b --- /dev/null +++ b/scripture/kjv/12/02/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "50", + "date": "Saturday 02-December, 2023", + "getbible": "https://getbible.life/kjv/Psalms/50/14", + "name": "Psalms 50:14", + "scripture": [ + { + "nr": "14", + "text": "Offer unto God thanksgiving; and pay thy vows unto the most High:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/12/02/23/scripture.md b/scripture/kjv/12/02/23/scripture.md new file mode 100644 index 00000000..556d68ff --- /dev/null +++ b/scripture/kjv/12/02/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 50:14** + +14 Offer unto God thanksgiving; and pay thy vows unto the most High: + +[Saturday 02-December, 2023](https://getbible.life/kjv/Psalms/50/14) diff --git a/scripture/kjv/12/02/23/scripture.tg b/scripture/kjv/12/02/23/scripture.tg new file mode 100644 index 00000000..acd6c691 --- /dev/null +++ b/scripture/kjv/12/02/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 50:14 +14 Offer unto God thanksgiving; and pay thy vows unto the most High: + +Saturday 02-December, 2023 diff --git a/scripture/kjv/12/02/23/scripture.tg.id b/scripture/kjv/12/02/23/scripture.tg.id new file mode 100644 index 00000000..17edc7ae --- /dev/null +++ b/scripture/kjv/12/02/23/scripture.tg.id @@ -0,0 +1 @@ +1155 diff --git a/scripture/kjv/12/02/23/scripture.today b/scripture/kjv/12/02/23/scripture.today new file mode 100644 index 00000000..4f30f14d --- /dev/null +++ b/scripture/kjv/12/02/23/scripture.today @@ -0,0 +1 @@ +19 50:14 diff --git a/scripture/kjv/12/02/24/scripture.html b/scripture/kjv/12/02/24/scripture.html new file mode 100644 index 00000000..b00e9710 --- /dev/null +++ b/scripture/kjv/12/02/24/scripture.html @@ -0,0 +1,3 @@ +John 3:11
+11 Verily, verily, I say unto thee, We speak that we do know, and testify that we have seen; and ye receive not our witness.

+Monday 02-December, 2024 diff --git a/scripture/kjv/12/02/24/scripture.json b/scripture/kjv/12/02/24/scripture.json new file mode 100644 index 00000000..dba0f7f4 --- /dev/null +++ b/scripture/kjv/12/02/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "3", + "date": "Monday 02-December, 2024", + "getbible": "https://getbible.life/kjv/John/3/11", + "name": "John 3:11", + "scripture": [ + { + "nr": "11", + "text": "Verily, verily, I say unto thee, We speak that we do know, and testify that we have seen; and ye receive not our witness." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/12/02/24/scripture.md b/scripture/kjv/12/02/24/scripture.md new file mode 100644 index 00000000..5b665dd5 --- /dev/null +++ b/scripture/kjv/12/02/24/scripture.md @@ -0,0 +1,5 @@ +**John 3:11** + +11 Verily, verily, I say unto thee, We speak that we do know, and testify that we have seen; and ye receive not our witness. + +[Monday 02-December, 2024](https://getbible.life/kjv/John/3/11) diff --git a/scripture/kjv/12/02/24/scripture.tg b/scripture/kjv/12/02/24/scripture.tg new file mode 100644 index 00000000..775feaa8 --- /dev/null +++ b/scripture/kjv/12/02/24/scripture.tg @@ -0,0 +1,4 @@ +John 3:11 +11 Verily, verily, I say unto thee, We speak that we do know, and testify that we have seen; and ye receive not our witness. + +Monday 02-December, 2024 diff --git a/scripture/kjv/12/02/24/scripture.tg.id b/scripture/kjv/12/02/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/02/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/02/24/scripture.today b/scripture/kjv/12/02/24/scripture.today new file mode 100644 index 00000000..f26d9488 --- /dev/null +++ b/scripture/kjv/12/02/24/scripture.today @@ -0,0 +1 @@ +43 3:11 diff --git a/scripture/kjv/12/02/25/scripture.html b/scripture/kjv/12/02/25/scripture.html new file mode 100644 index 00000000..c0056232 --- /dev/null +++ b/scripture/kjv/12/02/25/scripture.html @@ -0,0 +1,3 @@ +Hosea 14:9
+9 Who is wise, and he shall understand these things? prudent, and he shall know them? for the ways of the Lord are right, and the just shall walk in them: but the transgressors shall fall therein.

+Tuesday 02-December, 2025 diff --git a/scripture/kjv/12/02/25/scripture.json b/scripture/kjv/12/02/25/scripture.json new file mode 100644 index 00000000..5989cc71 --- /dev/null +++ b/scripture/kjv/12/02/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Hosea", + "chapter": "14", + "date": "Tuesday 02-December, 2025", + "getbible": "https://getbible.life/kjv/Hosea/14/9", + "name": "Hosea 14:9", + "scripture": [ + { + "nr": "9", + "text": "Who is wise, and he shall understand these things? prudent, and he shall know them? for the ways of the Lord are right, and the just shall walk in them: but the transgressors shall fall therein. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9", + "version": "kjv" +} diff --git a/scripture/kjv/12/02/25/scripture.md b/scripture/kjv/12/02/25/scripture.md new file mode 100644 index 00000000..5f4b5bc6 --- /dev/null +++ b/scripture/kjv/12/02/25/scripture.md @@ -0,0 +1,5 @@ +**Hosea 14:9** + +9 Who is wise, and he shall understand these things? prudent, and he shall know them? for the ways of the Lord are right, and the just shall walk in them: but the transgressors shall fall therein. + +[Tuesday 02-December, 2025](https://getbible.life/kjv/Hosea/14/9) diff --git a/scripture/kjv/12/02/25/scripture.tg b/scripture/kjv/12/02/25/scripture.tg new file mode 100644 index 00000000..ee5036d1 --- /dev/null +++ b/scripture/kjv/12/02/25/scripture.tg @@ -0,0 +1,4 @@ +Hosea 14:9 +9 Who is wise, and he shall understand these things? prudent, and he shall know them? for the ways of the Lord are right, and the just shall walk in them: but the transgressors shall fall therein. + +Tuesday 02-December, 2025 diff --git a/scripture/kjv/12/02/25/scripture.tg.id b/scripture/kjv/12/02/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/02/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/02/25/scripture.today b/scripture/kjv/12/02/25/scripture.today new file mode 100644 index 00000000..6b766b80 --- /dev/null +++ b/scripture/kjv/12/02/25/scripture.today @@ -0,0 +1 @@ +28 14:9 diff --git a/scripture/kjv/12/03/23/scripture.html b/scripture/kjv/12/03/23/scripture.html new file mode 100644 index 00000000..a9de53d8 --- /dev/null +++ b/scripture/kjv/12/03/23/scripture.html @@ -0,0 +1,3 @@ +Luke 21:13
+13 And it shall turn to you for a testimony.

+Sunday 03-December, 2023 diff --git a/scripture/kjv/12/03/23/scripture.json b/scripture/kjv/12/03/23/scripture.json new file mode 100644 index 00000000..8a5f51c0 --- /dev/null +++ b/scripture/kjv/12/03/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "21", + "date": "Sunday 03-December, 2023", + "getbible": "https://getbible.life/kjv/Luke/21/13", + "name": "Luke 21:13", + "scripture": [ + { + "nr": "13", + "text": "And it shall turn to you for a testimony." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13", + "version": "kjv" +} diff --git a/scripture/kjv/12/03/23/scripture.md b/scripture/kjv/12/03/23/scripture.md new file mode 100644 index 00000000..08d8f231 --- /dev/null +++ b/scripture/kjv/12/03/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 21:13** + +13 And it shall turn to you for a testimony. + +[Sunday 03-December, 2023](https://getbible.life/kjv/Luke/21/13) diff --git a/scripture/kjv/12/03/23/scripture.tg b/scripture/kjv/12/03/23/scripture.tg new file mode 100644 index 00000000..b7e63076 --- /dev/null +++ b/scripture/kjv/12/03/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 21:13 +13 And it shall turn to you for a testimony. + +Sunday 03-December, 2023 diff --git a/scripture/kjv/12/03/23/scripture.tg.id b/scripture/kjv/12/03/23/scripture.tg.id new file mode 100644 index 00000000..5fcff9ff --- /dev/null +++ b/scripture/kjv/12/03/23/scripture.tg.id @@ -0,0 +1 @@ +1156 diff --git a/scripture/kjv/12/03/23/scripture.today b/scripture/kjv/12/03/23/scripture.today new file mode 100644 index 00000000..239738e9 --- /dev/null +++ b/scripture/kjv/12/03/23/scripture.today @@ -0,0 +1 @@ +42 21:13 diff --git a/scripture/kjv/12/03/24/scripture.html b/scripture/kjv/12/03/24/scripture.html new file mode 100644 index 00000000..75e50cf5 --- /dev/null +++ b/scripture/kjv/12/03/24/scripture.html @@ -0,0 +1,3 @@ +1 Thessalonians 5:23-24
+23 And the very God of peace sanctify you wholly; and I pray God your whole spirit and soul and body be preserved blameless unto the coming of our Lord Jesus Christ. 24 Faithful is he that calleth you, who also will do it.

+Tuesday 03-December, 2024 diff --git a/scripture/kjv/12/03/24/scripture.json b/scripture/kjv/12/03/24/scripture.json new file mode 100644 index 00000000..2e7b01d6 --- /dev/null +++ b/scripture/kjv/12/03/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "1 Thessalonians", + "chapter": "5", + "date": "Tuesday 03-December, 2024", + "getbible": "https://getbible.life/kjv/1 Thessalonians/5/23-24", + "name": "1 Thessalonians 5:23-24", + "scripture": [ + { + "nr": "23", + "text": "And the very God of peace sanctify you wholly; and I pray God your whole spirit and soul and body be preserved blameless unto the coming of our Lord Jesus Christ." + }, + { + "nr": "24", + "text": "Faithful is he that calleth you, who also will do it." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "23-24", + "version": "kjv" +} diff --git a/scripture/kjv/12/03/24/scripture.md b/scripture/kjv/12/03/24/scripture.md new file mode 100644 index 00000000..0e59e94d --- /dev/null +++ b/scripture/kjv/12/03/24/scripture.md @@ -0,0 +1,5 @@ +**1 Thessalonians 5:23-24** + +23 And the very God of peace sanctify you wholly; and I pray God your whole spirit and soul and body be preserved blameless unto the coming of our Lord Jesus Christ. 24 Faithful is he that calleth you, who also will do it. + +[Tuesday 03-December, 2024](https://getbible.life/kjv/1 Thessalonians/5/23-24) diff --git a/scripture/kjv/12/03/24/scripture.tg b/scripture/kjv/12/03/24/scripture.tg new file mode 100644 index 00000000..8af35881 --- /dev/null +++ b/scripture/kjv/12/03/24/scripture.tg @@ -0,0 +1,4 @@ +1 Thessalonians 5:23-24 +23 And the very God of peace sanctify you wholly; and I pray God your whole spirit and soul and body be preserved blameless unto the coming of our Lord Jesus Christ. 24 Faithful is he that calleth you, who also will do it. + +Tuesday 03-December, 2024 diff --git a/scripture/kjv/12/03/24/scripture.tg.id b/scripture/kjv/12/03/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/03/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/03/24/scripture.today b/scripture/kjv/12/03/24/scripture.today new file mode 100644 index 00000000..6d86034d --- /dev/null +++ b/scripture/kjv/12/03/24/scripture.today @@ -0,0 +1 @@ +52 5:23-24 diff --git a/scripture/kjv/12/03/25/scripture.html b/scripture/kjv/12/03/25/scripture.html new file mode 100644 index 00000000..8a0b98e4 --- /dev/null +++ b/scripture/kjv/12/03/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 109:30-31
+30 I will greatly praise the Lord with my mouth; yea, I will praise him among the multitude. 31 For he shall stand at the right hand of the poor, to save him from those that condemn his soul.

+Wednesday 03-December, 2025 diff --git a/scripture/kjv/12/03/25/scripture.json b/scripture/kjv/12/03/25/scripture.json new file mode 100644 index 00000000..ae9891ea --- /dev/null +++ b/scripture/kjv/12/03/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Psalms", + "chapter": "109", + "date": "Wednesday 03-December, 2025", + "getbible": "https://getbible.life/kjv/Psalms/109/30-31", + "name": "Psalms 109:30-31", + "scripture": [ + { + "nr": "30", + "text": "I will greatly praise the Lord with my mouth; yea, I will praise him among the multitude." + }, + { + "nr": "31", + "text": "For he shall stand at the right hand of the poor, to save him from those that condemn his soul. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "30-31", + "version": "kjv" +} diff --git a/scripture/kjv/12/03/25/scripture.md b/scripture/kjv/12/03/25/scripture.md new file mode 100644 index 00000000..ae15a382 --- /dev/null +++ b/scripture/kjv/12/03/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 109:30-31** + +30 I will greatly praise the Lord with my mouth; yea, I will praise him among the multitude. 31 For he shall stand at the right hand of the poor, to save him from those that condemn his soul. + +[Wednesday 03-December, 2025](https://getbible.life/kjv/Psalms/109/30-31) diff --git a/scripture/kjv/12/03/25/scripture.tg b/scripture/kjv/12/03/25/scripture.tg new file mode 100644 index 00000000..5bf3c141 --- /dev/null +++ b/scripture/kjv/12/03/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 109:30-31 +30 I will greatly praise the Lord with my mouth; yea, I will praise him among the multitude. 31 For he shall stand at the right hand of the poor, to save him from those that condemn his soul. + +Wednesday 03-December, 2025 diff --git a/scripture/kjv/12/03/25/scripture.tg.id b/scripture/kjv/12/03/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/03/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/03/25/scripture.today b/scripture/kjv/12/03/25/scripture.today new file mode 100644 index 00000000..890ae29f --- /dev/null +++ b/scripture/kjv/12/03/25/scripture.today @@ -0,0 +1 @@ +19 109:30-31 diff --git a/scripture/kjv/12/04/23/scripture.html b/scripture/kjv/12/04/23/scripture.html new file mode 100644 index 00000000..bfd76277 --- /dev/null +++ b/scripture/kjv/12/04/23/scripture.html @@ -0,0 +1,3 @@ +1 John 5:18
+18 We know that whosoever is born of God sinneth not; but he that is begotten of God keepeth himself, and that wicked one toucheth him not.

+Monday 04-December, 2023 diff --git a/scripture/kjv/12/04/23/scripture.json b/scripture/kjv/12/04/23/scripture.json new file mode 100644 index 00000000..dd76636b --- /dev/null +++ b/scripture/kjv/12/04/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 John", + "chapter": "5", + "date": "Monday 04-December, 2023", + "getbible": "https://getbible.life/kjv/1 John/5/18", + "name": "1 John 5:18", + "scripture": [ + { + "nr": "18", + "text": "We know that whosoever is born of God sinneth not; but he that is begotten of God keepeth himself, and that wicked one toucheth him not." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18", + "version": "kjv" +} diff --git a/scripture/kjv/12/04/23/scripture.md b/scripture/kjv/12/04/23/scripture.md new file mode 100644 index 00000000..2174ee39 --- /dev/null +++ b/scripture/kjv/12/04/23/scripture.md @@ -0,0 +1,5 @@ +**1 John 5:18** + +18 We know that whosoever is born of God sinneth not; but he that is begotten of God keepeth himself, and that wicked one toucheth him not. + +[Monday 04-December, 2023](https://getbible.life/kjv/1 John/5/18) diff --git a/scripture/kjv/12/04/23/scripture.tg b/scripture/kjv/12/04/23/scripture.tg new file mode 100644 index 00000000..99505c0e --- /dev/null +++ b/scripture/kjv/12/04/23/scripture.tg @@ -0,0 +1,4 @@ +1 John 5:18 +18 We know that whosoever is born of God sinneth not; but he that is begotten of God keepeth himself, and that wicked one toucheth him not. + +Monday 04-December, 2023 diff --git a/scripture/kjv/12/04/23/scripture.tg.id b/scripture/kjv/12/04/23/scripture.tg.id new file mode 100644 index 00000000..31ba99e9 --- /dev/null +++ b/scripture/kjv/12/04/23/scripture.tg.id @@ -0,0 +1 @@ +1157 diff --git a/scripture/kjv/12/04/23/scripture.today b/scripture/kjv/12/04/23/scripture.today new file mode 100644 index 00000000..9b550926 --- /dev/null +++ b/scripture/kjv/12/04/23/scripture.today @@ -0,0 +1 @@ +62 5:18 diff --git a/scripture/kjv/12/04/24/scripture.html b/scripture/kjv/12/04/24/scripture.html new file mode 100644 index 00000000..f1deb0e3 --- /dev/null +++ b/scripture/kjv/12/04/24/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 34:2
+2 Son of man, prophesy against the shepherds of Israel, prophesy, and say unto them, Thus saith the Lord God unto the shepherds; Woe be to the shepherds of Israel that do feed themselves! should not the shepherds feed the flocks?

+Wednesday 04-December, 2024 diff --git a/scripture/kjv/12/04/24/scripture.json b/scripture/kjv/12/04/24/scripture.json new file mode 100644 index 00000000..b0858fd1 --- /dev/null +++ b/scripture/kjv/12/04/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ezekiel", + "chapter": "34", + "date": "Wednesday 04-December, 2024", + "getbible": "https://getbible.life/kjv/Ezekiel/34/2", + "name": "Ezekiel 34:2", + "scripture": [ + { + "nr": "2", + "text": "Son of man, prophesy against the shepherds of Israel, prophesy, and say unto them, Thus saith the Lord God unto the shepherds; Woe be to the shepherds of Israel that do feed themselves! should not the shepherds feed the flocks?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "2", + "version": "kjv" +} diff --git a/scripture/kjv/12/04/24/scripture.md b/scripture/kjv/12/04/24/scripture.md new file mode 100644 index 00000000..1533924a --- /dev/null +++ b/scripture/kjv/12/04/24/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 34:2** + +2 Son of man, prophesy against the shepherds of Israel, prophesy, and say unto them, Thus saith the Lord God unto the shepherds; Woe be to the shepherds of Israel that do feed themselves! should not the shepherds feed the flocks? + +[Wednesday 04-December, 2024](https://getbible.life/kjv/Ezekiel/34/2) diff --git a/scripture/kjv/12/04/24/scripture.tg b/scripture/kjv/12/04/24/scripture.tg new file mode 100644 index 00000000..772bfdc6 --- /dev/null +++ b/scripture/kjv/12/04/24/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 34:2 +2 Son of man, prophesy against the shepherds of Israel, prophesy, and say unto them, Thus saith the Lord God unto the shepherds; Woe be to the shepherds of Israel that do feed themselves! should not the shepherds feed the flocks? + +Wednesday 04-December, 2024 diff --git a/scripture/kjv/12/04/24/scripture.tg.id b/scripture/kjv/12/04/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/04/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/04/24/scripture.today b/scripture/kjv/12/04/24/scripture.today new file mode 100644 index 00000000..203f8010 --- /dev/null +++ b/scripture/kjv/12/04/24/scripture.today @@ -0,0 +1 @@ +26 34:2 diff --git a/scripture/kjv/12/04/25/scripture.html b/scripture/kjv/12/04/25/scripture.html new file mode 100644 index 00000000..650fdda0 --- /dev/null +++ b/scripture/kjv/12/04/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 109:4
+4 For my love they are my adversaries: but I give myself unto prayer.

+Thursday 04-December, 2025 diff --git a/scripture/kjv/12/04/25/scripture.json b/scripture/kjv/12/04/25/scripture.json new file mode 100644 index 00000000..1d2e092c --- /dev/null +++ b/scripture/kjv/12/04/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "109", + "date": "Thursday 04-December, 2025", + "getbible": "https://getbible.life/kjv/Psalms/109/4", + "name": "Psalms 109:4", + "scripture": [ + { + "nr": "4", + "text": "For my love they are my adversaries: but I give myself unto prayer." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4", + "version": "kjv" +} diff --git a/scripture/kjv/12/04/25/scripture.md b/scripture/kjv/12/04/25/scripture.md new file mode 100644 index 00000000..21a18976 --- /dev/null +++ b/scripture/kjv/12/04/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 109:4** + +4 For my love they are my adversaries: but I give myself unto prayer. + +[Thursday 04-December, 2025](https://getbible.life/kjv/Psalms/109/4) diff --git a/scripture/kjv/12/04/25/scripture.tg b/scripture/kjv/12/04/25/scripture.tg new file mode 100644 index 00000000..19cd3676 --- /dev/null +++ b/scripture/kjv/12/04/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 109:4 +4 For my love they are my adversaries: but I give myself unto prayer. + +Thursday 04-December, 2025 diff --git a/scripture/kjv/12/04/25/scripture.tg.id b/scripture/kjv/12/04/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/04/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/04/25/scripture.today b/scripture/kjv/12/04/25/scripture.today new file mode 100644 index 00000000..deaffcec --- /dev/null +++ b/scripture/kjv/12/04/25/scripture.today @@ -0,0 +1 @@ +19 109:4 diff --git a/scripture/kjv/12/05/23/scripture.html b/scripture/kjv/12/05/23/scripture.html new file mode 100644 index 00000000..651300e1 --- /dev/null +++ b/scripture/kjv/12/05/23/scripture.html @@ -0,0 +1,3 @@ +Ruth 3:10
+10 And he said, Blessed be thou of the Lord, my daughter: for thou hast shewed more kindness in the latter end than at the beginning, inasmuch as thou followedst not young men, whether poor or rich.

+Tuesday 05-December, 2023 diff --git a/scripture/kjv/12/05/23/scripture.json b/scripture/kjv/12/05/23/scripture.json new file mode 100644 index 00000000..59d7924c --- /dev/null +++ b/scripture/kjv/12/05/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ruth", + "chapter": "3", + "date": "Tuesday 05-December, 2023", + "getbible": "https://getbible.life/kjv/Ruth/3/10", + "name": "Ruth 3:10", + "scripture": [ + { + "nr": "10", + "text": "And he said, Blessed be thou of the Lord, my daughter: for thou hast shewed more kindness in the latter end than at the beginning, inasmuch as thou followedst not young men, whether poor or rich." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/12/05/23/scripture.md b/scripture/kjv/12/05/23/scripture.md new file mode 100644 index 00000000..1bd446bd --- /dev/null +++ b/scripture/kjv/12/05/23/scripture.md @@ -0,0 +1,5 @@ +**Ruth 3:10** + +10 And he said, Blessed be thou of the Lord, my daughter: for thou hast shewed more kindness in the latter end than at the beginning, inasmuch as thou followedst not young men, whether poor or rich. + +[Tuesday 05-December, 2023](https://getbible.life/kjv/Ruth/3/10) diff --git a/scripture/kjv/12/05/23/scripture.tg b/scripture/kjv/12/05/23/scripture.tg new file mode 100644 index 00000000..42cc3df4 --- /dev/null +++ b/scripture/kjv/12/05/23/scripture.tg @@ -0,0 +1,4 @@ +Ruth 3:10 +10 And he said, Blessed be thou of the Lord, my daughter: for thou hast shewed more kindness in the latter end than at the beginning, inasmuch as thou followedst not young men, whether poor or rich. + +Tuesday 05-December, 2023 diff --git a/scripture/kjv/12/05/23/scripture.tg.id b/scripture/kjv/12/05/23/scripture.tg.id new file mode 100644 index 00000000..ba3343d5 --- /dev/null +++ b/scripture/kjv/12/05/23/scripture.tg.id @@ -0,0 +1 @@ +1158 diff --git a/scripture/kjv/12/05/23/scripture.today b/scripture/kjv/12/05/23/scripture.today new file mode 100644 index 00000000..c4faff1a --- /dev/null +++ b/scripture/kjv/12/05/23/scripture.today @@ -0,0 +1 @@ +8 3:10 diff --git a/scripture/kjv/12/05/24/scripture.html b/scripture/kjv/12/05/24/scripture.html new file mode 100644 index 00000000..1b72e22a --- /dev/null +++ b/scripture/kjv/12/05/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 121:3-4
+3 He will not suffer thy foot to be moved: he that keepeth thee will not slumber. 4 Behold, he that keepeth Israel shall neither slumber nor sleep.

+Thursday 05-December, 2024 diff --git a/scripture/kjv/12/05/24/scripture.json b/scripture/kjv/12/05/24/scripture.json new file mode 100644 index 00000000..7a123a90 --- /dev/null +++ b/scripture/kjv/12/05/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Psalms", + "chapter": "121", + "date": "Thursday 05-December, 2024", + "getbible": "https://getbible.life/kjv/Psalms/121/3-4", + "name": "Psalms 121:3-4", + "scripture": [ + { + "nr": "3", + "text": "He will not suffer thy foot to be moved: he that keepeth thee will not slumber." + }, + { + "nr": "4", + "text": "Behold, he that keepeth Israel shall neither slumber nor sleep." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3-4", + "version": "kjv" +} diff --git a/scripture/kjv/12/05/24/scripture.md b/scripture/kjv/12/05/24/scripture.md new file mode 100644 index 00000000..2aa5fb6c --- /dev/null +++ b/scripture/kjv/12/05/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 121:3-4** + +3 He will not suffer thy foot to be moved: he that keepeth thee will not slumber. 4 Behold, he that keepeth Israel shall neither slumber nor sleep. + +[Thursday 05-December, 2024](https://getbible.life/kjv/Psalms/121/3-4) diff --git a/scripture/kjv/12/05/24/scripture.tg b/scripture/kjv/12/05/24/scripture.tg new file mode 100644 index 00000000..f5adb801 --- /dev/null +++ b/scripture/kjv/12/05/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 121:3-4 +3 He will not suffer thy foot to be moved: he that keepeth thee will not slumber. 4 Behold, he that keepeth Israel shall neither slumber nor sleep. + +Thursday 05-December, 2024 diff --git a/scripture/kjv/12/05/24/scripture.tg.id b/scripture/kjv/12/05/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/05/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/05/24/scripture.today b/scripture/kjv/12/05/24/scripture.today new file mode 100644 index 00000000..d4d7ebee --- /dev/null +++ b/scripture/kjv/12/05/24/scripture.today @@ -0,0 +1 @@ +19 121:3-4 diff --git a/scripture/kjv/12/05/25/scripture.html b/scripture/kjv/12/05/25/scripture.html new file mode 100644 index 00000000..3817255b --- /dev/null +++ b/scripture/kjv/12/05/25/scripture.html @@ -0,0 +1,3 @@ +Revelation 3:20
+20 Behold, I stand at the door, and knock: if any man hear my voice, and open the door, I will come in to him, and will sup with him, and he with me.

+Friday 05-December, 2025 diff --git a/scripture/kjv/12/05/25/scripture.json b/scripture/kjv/12/05/25/scripture.json new file mode 100644 index 00000000..478fed3a --- /dev/null +++ b/scripture/kjv/12/05/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Revelation", + "chapter": "3", + "date": "Friday 05-December, 2025", + "getbible": "https://getbible.life/kjv/Revelation/3/20", + "name": "Revelation 3:20", + "scripture": [ + { + "nr": "20", + "text": "Behold, I stand at the door, and knock: if any man hear my voice, and open the door, I will come in to him, and will sup with him, and he with me." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20", + "version": "kjv" +} diff --git a/scripture/kjv/12/05/25/scripture.md b/scripture/kjv/12/05/25/scripture.md new file mode 100644 index 00000000..e44eea03 --- /dev/null +++ b/scripture/kjv/12/05/25/scripture.md @@ -0,0 +1,5 @@ +**Revelation 3:20** + +20 Behold, I stand at the door, and knock: if any man hear my voice, and open the door, I will come in to him, and will sup with him, and he with me. + +[Friday 05-December, 2025](https://getbible.life/kjv/Revelation/3/20) diff --git a/scripture/kjv/12/05/25/scripture.tg b/scripture/kjv/12/05/25/scripture.tg new file mode 100644 index 00000000..48271885 --- /dev/null +++ b/scripture/kjv/12/05/25/scripture.tg @@ -0,0 +1,4 @@ +Revelation 3:20 +20 Behold, I stand at the door, and knock: if any man hear my voice, and open the door, I will come in to him, and will sup with him, and he with me. + +Friday 05-December, 2025 diff --git a/scripture/kjv/12/05/25/scripture.tg.id b/scripture/kjv/12/05/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/05/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/05/25/scripture.today b/scripture/kjv/12/05/25/scripture.today new file mode 100644 index 00000000..35625cd6 --- /dev/null +++ b/scripture/kjv/12/05/25/scripture.today @@ -0,0 +1 @@ +66 3:20 diff --git a/scripture/kjv/12/06/23/scripture.html b/scripture/kjv/12/06/23/scripture.html new file mode 100644 index 00000000..c24bd215 --- /dev/null +++ b/scripture/kjv/12/06/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 107:10-14
+10 Such as sit in darkness and in the shadow of death, being bound in affliction and iron; 11 Because they rebelled against the words of God, and contemned the counsel of the most High: 12 Therefore he brought down their heart with labour; they fell down, and there was none to help. 13 Then they cried unto the Lord in their trouble, and he saved them out of their distresses. 14 He brought them out of darkness and the shadow of death, and brake their bands in sunder.

+Wednesday 06-December, 2023 diff --git a/scripture/kjv/12/06/23/scripture.json b/scripture/kjv/12/06/23/scripture.json new file mode 100644 index 00000000..7c2a419d --- /dev/null +++ b/scripture/kjv/12/06/23/scripture.json @@ -0,0 +1,33 @@ +{ + "book": "Psalms", + "chapter": "107", + "date": "Wednesday 06-December, 2023", + "getbible": "https://getbible.life/kjv/Psalms/107/10-14", + "name": "Psalms 107:10-14", + "scripture": [ + { + "nr": "10", + "text": "Such as sit in darkness and in the shadow of death, being bound in affliction and iron;" + }, + { + "nr": "11", + "text": "Because they rebelled against the words of God, and contemned the counsel of the most High:" + }, + { + "nr": "12", + "text": "Therefore he brought down their heart with labour; they fell down, and there was none to help." + }, + { + "nr": "13", + "text": "Then they cried unto the Lord in their trouble, and he saved them out of their distresses." + }, + { + "nr": "14", + "text": "He brought them out of darkness and the shadow of death, and brake their bands in sunder." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10-14", + "version": "kjv" +} diff --git a/scripture/kjv/12/06/23/scripture.md b/scripture/kjv/12/06/23/scripture.md new file mode 100644 index 00000000..cc2aedae --- /dev/null +++ b/scripture/kjv/12/06/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 107:10-14** + +10 Such as sit in darkness and in the shadow of death, being bound in affliction and iron; 11 Because they rebelled against the words of God, and contemned the counsel of the most High: 12 Therefore he brought down their heart with labour; they fell down, and there was none to help. 13 Then they cried unto the Lord in their trouble, and he saved them out of their distresses. 14 He brought them out of darkness and the shadow of death, and brake their bands in sunder. + +[Wednesday 06-December, 2023](https://getbible.life/kjv/Psalms/107/10-14) diff --git a/scripture/kjv/12/06/23/scripture.tg b/scripture/kjv/12/06/23/scripture.tg new file mode 100644 index 00000000..f4e9a96b --- /dev/null +++ b/scripture/kjv/12/06/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 107:10-14 +10 Such as sit in darkness and in the shadow of death, being bound in affliction and iron; 11 Because they rebelled against the words of God, and contemned the counsel of the most High: 12 Therefore he brought down their heart with labour; they fell down, and there was none to help. 13 Then they cried unto the Lord in their trouble, and he saved them out of their distresses. 14 He brought them out of darkness and the shadow of death, and brake their bands in sunder. + +Wednesday 06-December, 2023 diff --git a/scripture/kjv/12/06/23/scripture.tg.id b/scripture/kjv/12/06/23/scripture.tg.id new file mode 100644 index 00000000..1b66bc15 --- /dev/null +++ b/scripture/kjv/12/06/23/scripture.tg.id @@ -0,0 +1 @@ +1159 diff --git a/scripture/kjv/12/06/23/scripture.today b/scripture/kjv/12/06/23/scripture.today new file mode 100644 index 00000000..6139cbbd --- /dev/null +++ b/scripture/kjv/12/06/23/scripture.today @@ -0,0 +1 @@ +19 107:10-14 diff --git a/scripture/kjv/12/06/24/scripture.html b/scripture/kjv/12/06/24/scripture.html new file mode 100644 index 00000000..f6df9ea4 --- /dev/null +++ b/scripture/kjv/12/06/24/scripture.html @@ -0,0 +1,3 @@ +Psalms 149:5-6
+5 Let the saints be joyful in glory: let them sing aloud upon their beds. 6 Let the high praises of God be in their mouth, and a twoedged sword in their hand;

+Friday 06-December, 2024 diff --git a/scripture/kjv/12/06/24/scripture.json b/scripture/kjv/12/06/24/scripture.json new file mode 100644 index 00000000..494235fb --- /dev/null +++ b/scripture/kjv/12/06/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Psalms", + "chapter": "149", + "date": "Friday 06-December, 2024", + "getbible": "https://getbible.life/kjv/Psalms/149/5-6", + "name": "Psalms 149:5-6", + "scripture": [ + { + "nr": "5", + "text": "Let the saints be joyful in glory: let them sing aloud upon their beds." + }, + { + "nr": "6", + "text": "Let the high praises of God be in their mouth, and a twoedged sword in their hand;" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5-6", + "version": "kjv" +} diff --git a/scripture/kjv/12/06/24/scripture.md b/scripture/kjv/12/06/24/scripture.md new file mode 100644 index 00000000..a0398f24 --- /dev/null +++ b/scripture/kjv/12/06/24/scripture.md @@ -0,0 +1,5 @@ +**Psalms 149:5-6** + +5 Let the saints be joyful in glory: let them sing aloud upon their beds. 6 Let the high praises of God be in their mouth, and a twoedged sword in their hand; + +[Friday 06-December, 2024](https://getbible.life/kjv/Psalms/149/5-6) diff --git a/scripture/kjv/12/06/24/scripture.tg b/scripture/kjv/12/06/24/scripture.tg new file mode 100644 index 00000000..ded3919d --- /dev/null +++ b/scripture/kjv/12/06/24/scripture.tg @@ -0,0 +1,4 @@ +Psalms 149:5-6 +5 Let the saints be joyful in glory: let them sing aloud upon their beds. 6 Let the high praises of God be in their mouth, and a twoedged sword in their hand; + +Friday 06-December, 2024 diff --git a/scripture/kjv/12/06/24/scripture.tg.id b/scripture/kjv/12/06/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/06/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/06/24/scripture.today b/scripture/kjv/12/06/24/scripture.today new file mode 100644 index 00000000..7a7f3bb7 --- /dev/null +++ b/scripture/kjv/12/06/24/scripture.today @@ -0,0 +1 @@ +19 149:5-6 diff --git a/scripture/kjv/12/06/25/scripture.html b/scripture/kjv/12/06/25/scripture.html new file mode 100644 index 00000000..4730035d --- /dev/null +++ b/scripture/kjv/12/06/25/scripture.html @@ -0,0 +1,3 @@ +Hebrews 13:5-6
+5 Let your conversation be without covetousness; and be content with such things as ye have: for he hath said, I will never leave thee, nor forsake thee. 6 So that we may boldly say, The Lord is my helper, and I will not fear what man shall do unto me.

+Saturday 06-December, 2025 diff --git a/scripture/kjv/12/06/25/scripture.json b/scripture/kjv/12/06/25/scripture.json new file mode 100644 index 00000000..eb8b5804 --- /dev/null +++ b/scripture/kjv/12/06/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Hebrews", + "chapter": "13", + "date": "Saturday 06-December, 2025", + "getbible": "https://getbible.life/kjv/Hebrews/13/5-6", + "name": "Hebrews 13:5-6", + "scripture": [ + { + "nr": "5", + "text": "Let your conversation be without covetousness; and be content with such things as ye have: for he hath said, I will never leave thee, nor forsake thee." + }, + { + "nr": "6", + "text": "So that we may boldly say, The Lord is my helper, and I will not fear what man shall do unto me." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5-6", + "version": "kjv" +} diff --git a/scripture/kjv/12/06/25/scripture.md b/scripture/kjv/12/06/25/scripture.md new file mode 100644 index 00000000..47efff95 --- /dev/null +++ b/scripture/kjv/12/06/25/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 13:5-6** + +5 Let your conversation be without covetousness; and be content with such things as ye have: for he hath said, I will never leave thee, nor forsake thee. 6 So that we may boldly say, The Lord is my helper, and I will not fear what man shall do unto me. + +[Saturday 06-December, 2025](https://getbible.life/kjv/Hebrews/13/5-6) diff --git a/scripture/kjv/12/06/25/scripture.tg b/scripture/kjv/12/06/25/scripture.tg new file mode 100644 index 00000000..75a9a4aa --- /dev/null +++ b/scripture/kjv/12/06/25/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 13:5-6 +5 Let your conversation be without covetousness; and be content with such things as ye have: for he hath said, I will never leave thee, nor forsake thee. 6 So that we may boldly say, The Lord is my helper, and I will not fear what man shall do unto me. + +Saturday 06-December, 2025 diff --git a/scripture/kjv/12/06/25/scripture.tg.id b/scripture/kjv/12/06/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/06/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/06/25/scripture.today b/scripture/kjv/12/06/25/scripture.today new file mode 100644 index 00000000..d7f261d9 --- /dev/null +++ b/scripture/kjv/12/06/25/scripture.today @@ -0,0 +1 @@ +58 13:5-6 diff --git a/scripture/kjv/12/07/23/scripture.html b/scripture/kjv/12/07/23/scripture.html new file mode 100644 index 00000000..9609e138 --- /dev/null +++ b/scripture/kjv/12/07/23/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 3:26-27
+26 And I will make thy tongue cleave to the roof of thy mouth, that thou shalt be dumb, and shalt not be to them a reprover: for they are a rebellious house. 27 But when I speak with thee, I will open thy mouth, and thou shalt say unto them, Thus saith the Lord God; He that heareth, let him hear; and he that forbeareth, let him forbear: for they are a rebellious house.

+Thursday 07-December, 2023 diff --git a/scripture/kjv/12/07/23/scripture.json b/scripture/kjv/12/07/23/scripture.json new file mode 100644 index 00000000..37636115 --- /dev/null +++ b/scripture/kjv/12/07/23/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Ezekiel", + "chapter": "3", + "date": "Thursday 07-December, 2023", + "getbible": "https://getbible.life/kjv/Ezekiel/3/26-27", + "name": "Ezekiel 3:26-27", + "scripture": [ + { + "nr": "26", + "text": "And I will make thy tongue cleave to the roof of thy mouth, that thou shalt be dumb, and shalt not be to them a reprover: for they are a rebellious house." + }, + { + "nr": "27", + "text": "But when I speak with thee, I will open thy mouth, and thou shalt say unto them, Thus saith the Lord God; He that heareth, let him hear; and he that forbeareth, let him forbear: for they are a rebellious house. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "26-27", + "version": "kjv" +} diff --git a/scripture/kjv/12/07/23/scripture.md b/scripture/kjv/12/07/23/scripture.md new file mode 100644 index 00000000..14f9e38f --- /dev/null +++ b/scripture/kjv/12/07/23/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 3:26-27** + +26 And I will make thy tongue cleave to the roof of thy mouth, that thou shalt be dumb, and shalt not be to them a reprover: for they are a rebellious house. 27 But when I speak with thee, I will open thy mouth, and thou shalt say unto them, Thus saith the Lord God; He that heareth, let him hear; and he that forbeareth, let him forbear: for they are a rebellious house. + +[Thursday 07-December, 2023](https://getbible.life/kjv/Ezekiel/3/26-27) diff --git a/scripture/kjv/12/07/23/scripture.tg b/scripture/kjv/12/07/23/scripture.tg new file mode 100644 index 00000000..b92aba22 --- /dev/null +++ b/scripture/kjv/12/07/23/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 3:26-27 +26 And I will make thy tongue cleave to the roof of thy mouth, that thou shalt be dumb, and shalt not be to them a reprover: for they are a rebellious house. 27 But when I speak with thee, I will open thy mouth, and thou shalt say unto them, Thus saith the Lord God; He that heareth, let him hear; and he that forbeareth, let him forbear: for they are a rebellious house. + +Thursday 07-December, 2023 diff --git a/scripture/kjv/12/07/23/scripture.tg.id b/scripture/kjv/12/07/23/scripture.tg.id new file mode 100644 index 00000000..d94081a6 --- /dev/null +++ b/scripture/kjv/12/07/23/scripture.tg.id @@ -0,0 +1 @@ +1160 diff --git a/scripture/kjv/12/07/23/scripture.today b/scripture/kjv/12/07/23/scripture.today new file mode 100644 index 00000000..00953552 --- /dev/null +++ b/scripture/kjv/12/07/23/scripture.today @@ -0,0 +1 @@ +26 3:26-27 diff --git a/scripture/kjv/12/07/24/scripture.html b/scripture/kjv/12/07/24/scripture.html new file mode 100644 index 00000000..e60ae452 --- /dev/null +++ b/scripture/kjv/12/07/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 31:20
+20 She stretcheth out her hand to the poor; yea, she reacheth forth her hands to the needy.

+Saturday 07-December, 2024 diff --git a/scripture/kjv/12/07/24/scripture.json b/scripture/kjv/12/07/24/scripture.json new file mode 100644 index 00000000..7b832f05 --- /dev/null +++ b/scripture/kjv/12/07/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "31", + "date": "Saturday 07-December, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/31/20", + "name": "Proverbs 31:20", + "scripture": [ + { + "nr": "20", + "text": "She stretcheth out her hand to the poor; yea, she reacheth forth her hands to the needy." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20", + "version": "kjv" +} diff --git a/scripture/kjv/12/07/24/scripture.md b/scripture/kjv/12/07/24/scripture.md new file mode 100644 index 00000000..3ea306a2 --- /dev/null +++ b/scripture/kjv/12/07/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 31:20** + +20 She stretcheth out her hand to the poor; yea, she reacheth forth her hands to the needy. + +[Saturday 07-December, 2024](https://getbible.life/kjv/Proverbs/31/20) diff --git a/scripture/kjv/12/07/24/scripture.tg b/scripture/kjv/12/07/24/scripture.tg new file mode 100644 index 00000000..c2f2b81a --- /dev/null +++ b/scripture/kjv/12/07/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 31:20 +20 She stretcheth out her hand to the poor; yea, she reacheth forth her hands to the needy. + +Saturday 07-December, 2024 diff --git a/scripture/kjv/12/07/24/scripture.tg.id b/scripture/kjv/12/07/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/07/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/07/24/scripture.today b/scripture/kjv/12/07/24/scripture.today new file mode 100644 index 00000000..813d00cb --- /dev/null +++ b/scripture/kjv/12/07/24/scripture.today @@ -0,0 +1 @@ +20 31:20 diff --git a/scripture/kjv/12/07/25/scripture.html b/scripture/kjv/12/07/25/scripture.html new file mode 100644 index 00000000..2ff2cadc --- /dev/null +++ b/scripture/kjv/12/07/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 125:1
+1 They that trust in the Lord shall be as mount Zion, which cannot be removed, but abideth for ever.

+Sunday 07-December, 2025 diff --git a/scripture/kjv/12/07/25/scripture.json b/scripture/kjv/12/07/25/scripture.json new file mode 100644 index 00000000..08f54c99 --- /dev/null +++ b/scripture/kjv/12/07/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "125", + "date": "Sunday 07-December, 2025", + "getbible": "https://getbible.life/kjv/Psalms/125/1", + "name": "Psalms 125:1", + "scripture": [ + { + "nr": "1", + "text": "They that trust in the Lord shall be as mount Zion, which cannot be removed, but abideth for ever." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1", + "version": "kjv" +} diff --git a/scripture/kjv/12/07/25/scripture.md b/scripture/kjv/12/07/25/scripture.md new file mode 100644 index 00000000..37145643 --- /dev/null +++ b/scripture/kjv/12/07/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 125:1** + +1 They that trust in the Lord shall be as mount Zion, which cannot be removed, but abideth for ever. + +[Sunday 07-December, 2025](https://getbible.life/kjv/Psalms/125/1) diff --git a/scripture/kjv/12/07/25/scripture.tg b/scripture/kjv/12/07/25/scripture.tg new file mode 100644 index 00000000..8b0edd07 --- /dev/null +++ b/scripture/kjv/12/07/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 125:1 +1 They that trust in the Lord shall be as mount Zion, which cannot be removed, but abideth for ever. + +Sunday 07-December, 2025 diff --git a/scripture/kjv/12/07/25/scripture.tg.id b/scripture/kjv/12/07/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/07/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/07/25/scripture.today b/scripture/kjv/12/07/25/scripture.today new file mode 100644 index 00000000..d251bef1 --- /dev/null +++ b/scripture/kjv/12/07/25/scripture.today @@ -0,0 +1 @@ +19 125:1 diff --git a/scripture/kjv/12/08/23/scripture.html b/scripture/kjv/12/08/23/scripture.html new file mode 100644 index 00000000..736055e8 --- /dev/null +++ b/scripture/kjv/12/08/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 17:10
+10 A reproof entereth more into a wise man than an hundred stripes into a fool.

+Friday 08-December, 2023 diff --git a/scripture/kjv/12/08/23/scripture.json b/scripture/kjv/12/08/23/scripture.json new file mode 100644 index 00000000..a434f7e8 --- /dev/null +++ b/scripture/kjv/12/08/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "17", + "date": "Friday 08-December, 2023", + "getbible": "https://getbible.life/kjv/Proverbs/17/10", + "name": "Proverbs 17:10", + "scripture": [ + { + "nr": "10", + "text": "A reproof entereth more into a wise man than an hundred stripes into a fool." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/12/08/23/scripture.md b/scripture/kjv/12/08/23/scripture.md new file mode 100644 index 00000000..8f3229e9 --- /dev/null +++ b/scripture/kjv/12/08/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 17:10** + +10 A reproof entereth more into a wise man than an hundred stripes into a fool. + +[Friday 08-December, 2023](https://getbible.life/kjv/Proverbs/17/10) diff --git a/scripture/kjv/12/08/23/scripture.tg b/scripture/kjv/12/08/23/scripture.tg new file mode 100644 index 00000000..5687dd14 --- /dev/null +++ b/scripture/kjv/12/08/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 17:10 +10 A reproof entereth more into a wise man than an hundred stripes into a fool. + +Friday 08-December, 2023 diff --git a/scripture/kjv/12/08/23/scripture.tg.id b/scripture/kjv/12/08/23/scripture.tg.id new file mode 100644 index 00000000..afe5b3bb --- /dev/null +++ b/scripture/kjv/12/08/23/scripture.tg.id @@ -0,0 +1 @@ +1161 diff --git a/scripture/kjv/12/08/23/scripture.today b/scripture/kjv/12/08/23/scripture.today new file mode 100644 index 00000000..2a8e9ce8 --- /dev/null +++ b/scripture/kjv/12/08/23/scripture.today @@ -0,0 +1 @@ +20 17:10 diff --git a/scripture/kjv/12/08/24/scripture.html b/scripture/kjv/12/08/24/scripture.html new file mode 100644 index 00000000..3cc839fd --- /dev/null +++ b/scripture/kjv/12/08/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 19:17
+17 He that hath pity upon the poor lendeth unto the Lord; and that which he hath given will he pay him again.

+Sunday 08-December, 2024 diff --git a/scripture/kjv/12/08/24/scripture.json b/scripture/kjv/12/08/24/scripture.json new file mode 100644 index 00000000..fdbf53f6 --- /dev/null +++ b/scripture/kjv/12/08/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "19", + "date": "Sunday 08-December, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/19/17", + "name": "Proverbs 19:17", + "scripture": [ + { + "nr": "17", + "text": "He that hath pity upon the poor lendeth unto the Lord; and that which he hath given will he pay him again." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17", + "version": "kjv" +} diff --git a/scripture/kjv/12/08/24/scripture.md b/scripture/kjv/12/08/24/scripture.md new file mode 100644 index 00000000..23bdc9ee --- /dev/null +++ b/scripture/kjv/12/08/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 19:17** + +17 He that hath pity upon the poor lendeth unto the Lord; and that which he hath given will he pay him again. + +[Sunday 08-December, 2024](https://getbible.life/kjv/Proverbs/19/17) diff --git a/scripture/kjv/12/08/24/scripture.tg b/scripture/kjv/12/08/24/scripture.tg new file mode 100644 index 00000000..3c95937e --- /dev/null +++ b/scripture/kjv/12/08/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 19:17 +17 He that hath pity upon the poor lendeth unto the Lord; and that which he hath given will he pay him again. + +Sunday 08-December, 2024 diff --git a/scripture/kjv/12/08/24/scripture.tg.id b/scripture/kjv/12/08/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/08/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/08/24/scripture.today b/scripture/kjv/12/08/24/scripture.today new file mode 100644 index 00000000..f1e9d246 --- /dev/null +++ b/scripture/kjv/12/08/24/scripture.today @@ -0,0 +1 @@ +20 19:17 diff --git a/scripture/kjv/12/08/25/scripture.html b/scripture/kjv/12/08/25/scripture.html new file mode 100644 index 00000000..af33417e --- /dev/null +++ b/scripture/kjv/12/08/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 4:8
+8 I will both lay me down in peace, and sleep: for thou, Lord, only makest me dwell in safety.

+Monday 08-December, 2025 diff --git a/scripture/kjv/12/08/25/scripture.json b/scripture/kjv/12/08/25/scripture.json new file mode 100644 index 00000000..81af4d38 --- /dev/null +++ b/scripture/kjv/12/08/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "4", + "date": "Monday 08-December, 2025", + "getbible": "https://getbible.life/kjv/Psalms/4/8", + "name": "Psalms 4:8", + "scripture": [ + { + "nr": "8", + "text": "I will both lay me down in peace, and sleep: for thou, Lord, only makest me dwell in safety. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8", + "version": "kjv" +} diff --git a/scripture/kjv/12/08/25/scripture.md b/scripture/kjv/12/08/25/scripture.md new file mode 100644 index 00000000..6e9a2172 --- /dev/null +++ b/scripture/kjv/12/08/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 4:8** + +8 I will both lay me down in peace, and sleep: for thou, Lord, only makest me dwell in safety. + +[Monday 08-December, 2025](https://getbible.life/kjv/Psalms/4/8) diff --git a/scripture/kjv/12/08/25/scripture.tg b/scripture/kjv/12/08/25/scripture.tg new file mode 100644 index 00000000..33d544cd --- /dev/null +++ b/scripture/kjv/12/08/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 4:8 +8 I will both lay me down in peace, and sleep: for thou, Lord, only makest me dwell in safety. + +Monday 08-December, 2025 diff --git a/scripture/kjv/12/08/25/scripture.tg.id b/scripture/kjv/12/08/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/08/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/08/25/scripture.today b/scripture/kjv/12/08/25/scripture.today new file mode 100644 index 00000000..979912e0 --- /dev/null +++ b/scripture/kjv/12/08/25/scripture.today @@ -0,0 +1 @@ +19 4:8 diff --git a/scripture/kjv/12/09/23/scripture.html b/scripture/kjv/12/09/23/scripture.html new file mode 100644 index 00000000..3da9dabb --- /dev/null +++ b/scripture/kjv/12/09/23/scripture.html @@ -0,0 +1,3 @@ +Acts 9:11
+11 And the Lord said unto him, Arise, and go into the street which is called Straight, and enquire in the house of Judas for one called Saul, of Tarsus: for, behold, he prayeth,

+Saturday 09-December, 2023 diff --git a/scripture/kjv/12/09/23/scripture.json b/scripture/kjv/12/09/23/scripture.json new file mode 100644 index 00000000..1b549bfa --- /dev/null +++ b/scripture/kjv/12/09/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Acts", + "chapter": "9", + "date": "Saturday 09-December, 2023", + "getbible": "https://getbible.life/kjv/Acts/9/11", + "name": "Acts 9:11", + "scripture": [ + { + "nr": "11", + "text": "And the Lord said unto him, Arise, and go into the street which is called Straight, and enquire in the house of Judas for one called Saul, of Tarsus: for, behold, he prayeth," + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "11", + "version": "kjv" +} diff --git a/scripture/kjv/12/09/23/scripture.md b/scripture/kjv/12/09/23/scripture.md new file mode 100644 index 00000000..9c8d418d --- /dev/null +++ b/scripture/kjv/12/09/23/scripture.md @@ -0,0 +1,5 @@ +**Acts 9:11** + +11 And the Lord said unto him, Arise, and go into the street which is called Straight, and enquire in the house of Judas for one called Saul, of Tarsus: for, behold, he prayeth, + +[Saturday 09-December, 2023](https://getbible.life/kjv/Acts/9/11) diff --git a/scripture/kjv/12/09/23/scripture.tg b/scripture/kjv/12/09/23/scripture.tg new file mode 100644 index 00000000..4474cfd4 --- /dev/null +++ b/scripture/kjv/12/09/23/scripture.tg @@ -0,0 +1,4 @@ +Acts 9:11 +11 And the Lord said unto him, Arise, and go into the street which is called Straight, and enquire in the house of Judas for one called Saul, of Tarsus: for, behold, he prayeth, + +Saturday 09-December, 2023 diff --git a/scripture/kjv/12/09/23/scripture.tg.id b/scripture/kjv/12/09/23/scripture.tg.id new file mode 100644 index 00000000..378d4b14 --- /dev/null +++ b/scripture/kjv/12/09/23/scripture.tg.id @@ -0,0 +1 @@ +1162 diff --git a/scripture/kjv/12/09/23/scripture.today b/scripture/kjv/12/09/23/scripture.today new file mode 100644 index 00000000..5f7789cc --- /dev/null +++ b/scripture/kjv/12/09/23/scripture.today @@ -0,0 +1 @@ +44 9:11 diff --git a/scripture/kjv/12/09/24/scripture.html b/scripture/kjv/12/09/24/scripture.html new file mode 100644 index 00000000..55e6e071 --- /dev/null +++ b/scripture/kjv/12/09/24/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 5:10
+10 For we must all appear before the judgment seat of Christ; that every one may receive the things done in his body, according to that he hath done, whether it be good or bad.

+Monday 09-December, 2024 diff --git a/scripture/kjv/12/09/24/scripture.json b/scripture/kjv/12/09/24/scripture.json new file mode 100644 index 00000000..af97a4a2 --- /dev/null +++ b/scripture/kjv/12/09/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "5", + "date": "Monday 09-December, 2024", + "getbible": "https://getbible.life/kjv/2 Corinthians/5/10", + "name": "2 Corinthians 5:10", + "scripture": [ + { + "nr": "10", + "text": "For we must all appear before the judgment seat of Christ; that every one may receive the things done in his body, according to that he hath done, whether it be good or bad." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/12/09/24/scripture.md b/scripture/kjv/12/09/24/scripture.md new file mode 100644 index 00000000..578163b6 --- /dev/null +++ b/scripture/kjv/12/09/24/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 5:10** + +10 For we must all appear before the judgment seat of Christ; that every one may receive the things done in his body, according to that he hath done, whether it be good or bad. + +[Monday 09-December, 2024](https://getbible.life/kjv/2 Corinthians/5/10) diff --git a/scripture/kjv/12/09/24/scripture.tg b/scripture/kjv/12/09/24/scripture.tg new file mode 100644 index 00000000..e94fbd8c --- /dev/null +++ b/scripture/kjv/12/09/24/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 5:10 +10 For we must all appear before the judgment seat of Christ; that every one may receive the things done in his body, according to that he hath done, whether it be good or bad. + +Monday 09-December, 2024 diff --git a/scripture/kjv/12/09/24/scripture.tg.id b/scripture/kjv/12/09/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/09/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/09/24/scripture.today b/scripture/kjv/12/09/24/scripture.today new file mode 100644 index 00000000..0d9c0802 --- /dev/null +++ b/scripture/kjv/12/09/24/scripture.today @@ -0,0 +1 @@ +47 5:10 diff --git a/scripture/kjv/12/09/25/scripture.html b/scripture/kjv/12/09/25/scripture.html new file mode 100644 index 00000000..470b4326 --- /dev/null +++ b/scripture/kjv/12/09/25/scripture.html @@ -0,0 +1,3 @@ +1 John 4:4
+4 Ye are of God, little children, and have overcome them: because greater is he that is in you, than he that is in the world.

+Tuesday 09-December, 2025 diff --git a/scripture/kjv/12/09/25/scripture.json b/scripture/kjv/12/09/25/scripture.json new file mode 100644 index 00000000..b84fef53 --- /dev/null +++ b/scripture/kjv/12/09/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 John", + "chapter": "4", + "date": "Tuesday 09-December, 2025", + "getbible": "https://getbible.life/kjv/1 John/4/4", + "name": "1 John 4:4", + "scripture": [ + { + "nr": "4", + "text": "Ye are of God, little children, and have overcome them: because greater is he that is in you, than he that is in the world." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4", + "version": "kjv" +} diff --git a/scripture/kjv/12/09/25/scripture.md b/scripture/kjv/12/09/25/scripture.md new file mode 100644 index 00000000..e8379b1b --- /dev/null +++ b/scripture/kjv/12/09/25/scripture.md @@ -0,0 +1,5 @@ +**1 John 4:4** + +4 Ye are of God, little children, and have overcome them: because greater is he that is in you, than he that is in the world. + +[Tuesday 09-December, 2025](https://getbible.life/kjv/1 John/4/4) diff --git a/scripture/kjv/12/09/25/scripture.tg b/scripture/kjv/12/09/25/scripture.tg new file mode 100644 index 00000000..897d7015 --- /dev/null +++ b/scripture/kjv/12/09/25/scripture.tg @@ -0,0 +1,4 @@ +1 John 4:4 +4 Ye are of God, little children, and have overcome them: because greater is he that is in you, than he that is in the world. + +Tuesday 09-December, 2025 diff --git a/scripture/kjv/12/09/25/scripture.tg.id b/scripture/kjv/12/09/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/09/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/09/25/scripture.today b/scripture/kjv/12/09/25/scripture.today new file mode 100644 index 00000000..e648f6a0 --- /dev/null +++ b/scripture/kjv/12/09/25/scripture.today @@ -0,0 +1 @@ +62 4:4 diff --git a/scripture/kjv/12/10/23/scripture.html b/scripture/kjv/12/10/23/scripture.html new file mode 100644 index 00000000..b646afeb --- /dev/null +++ b/scripture/kjv/12/10/23/scripture.html @@ -0,0 +1,3 @@ +Luke 17:32
+32 Remember Lot’s wife.

+Sunday 10-December, 2023 diff --git a/scripture/kjv/12/10/23/scripture.json b/scripture/kjv/12/10/23/scripture.json new file mode 100644 index 00000000..2d445ebe --- /dev/null +++ b/scripture/kjv/12/10/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "17", + "date": "Sunday 10-December, 2023", + "getbible": "https://getbible.life/kjv/Luke/17/32", + "name": "Luke 17:32", + "scripture": [ + { + "nr": "32", + "text": "Remember Lot’s wife." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "32", + "version": "kjv" +} diff --git a/scripture/kjv/12/10/23/scripture.md b/scripture/kjv/12/10/23/scripture.md new file mode 100644 index 00000000..1d3d348e --- /dev/null +++ b/scripture/kjv/12/10/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 17:32** + +32 Remember Lot’s wife. + +[Sunday 10-December, 2023](https://getbible.life/kjv/Luke/17/32) diff --git a/scripture/kjv/12/10/23/scripture.tg b/scripture/kjv/12/10/23/scripture.tg new file mode 100644 index 00000000..5590ff18 --- /dev/null +++ b/scripture/kjv/12/10/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 17:32 +32 Remember Lot’s wife. + +Sunday 10-December, 2023 diff --git a/scripture/kjv/12/10/23/scripture.tg.id b/scripture/kjv/12/10/23/scripture.tg.id new file mode 100644 index 00000000..1bb44860 --- /dev/null +++ b/scripture/kjv/12/10/23/scripture.tg.id @@ -0,0 +1 @@ +1163 diff --git a/scripture/kjv/12/10/23/scripture.today b/scripture/kjv/12/10/23/scripture.today new file mode 100644 index 00000000..a11b3cf5 --- /dev/null +++ b/scripture/kjv/12/10/23/scripture.today @@ -0,0 +1 @@ +42 17:32 diff --git a/scripture/kjv/12/10/24/scripture.html b/scripture/kjv/12/10/24/scripture.html new file mode 100644 index 00000000..990d6680 --- /dev/null +++ b/scripture/kjv/12/10/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 11:9
+9 An hypocrite with his mouth destroyeth his neighbour: but through knowledge shall the just be delivered.

+Tuesday 10-December, 2024 diff --git a/scripture/kjv/12/10/24/scripture.json b/scripture/kjv/12/10/24/scripture.json new file mode 100644 index 00000000..3bb2f5d6 --- /dev/null +++ b/scripture/kjv/12/10/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "11", + "date": "Tuesday 10-December, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/11/9", + "name": "Proverbs 11:9", + "scripture": [ + { + "nr": "9", + "text": "An hypocrite with his mouth destroyeth his neighbour: but through knowledge shall the just be delivered." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9", + "version": "kjv" +} diff --git a/scripture/kjv/12/10/24/scripture.md b/scripture/kjv/12/10/24/scripture.md new file mode 100644 index 00000000..105a78fe --- /dev/null +++ b/scripture/kjv/12/10/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 11:9** + +9 An hypocrite with his mouth destroyeth his neighbour: but through knowledge shall the just be delivered. + +[Tuesday 10-December, 2024](https://getbible.life/kjv/Proverbs/11/9) diff --git a/scripture/kjv/12/10/24/scripture.tg b/scripture/kjv/12/10/24/scripture.tg new file mode 100644 index 00000000..41c5db32 --- /dev/null +++ b/scripture/kjv/12/10/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 11:9 +9 An hypocrite with his mouth destroyeth his neighbour: but through knowledge shall the just be delivered. + +Tuesday 10-December, 2024 diff --git a/scripture/kjv/12/10/24/scripture.tg.id b/scripture/kjv/12/10/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/10/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/10/24/scripture.today b/scripture/kjv/12/10/24/scripture.today new file mode 100644 index 00000000..bc654441 --- /dev/null +++ b/scripture/kjv/12/10/24/scripture.today @@ -0,0 +1 @@ +20 11:9 diff --git a/scripture/kjv/12/10/25/scripture.html b/scripture/kjv/12/10/25/scripture.html new file mode 100644 index 00000000..84b0782a --- /dev/null +++ b/scripture/kjv/12/10/25/scripture.html @@ -0,0 +1,3 @@ +Job 29:12-17
+12 Because I delivered the poor that cried, and the fatherless, and him that had none to help him. 13 The blessing of him that was ready to perish came upon me: and I caused the widow’s heart to sing for joy. 14 I put on righteousness, and it clothed me: my judgment was as a robe and a diadem. 15 I was eyes to the blind, and feet was I to the lame. 16 I was a father to the poor: and the cause which I knew not I searched out. 17 And I brake the jaws of the wicked, and plucked the spoil out of his teeth.

+Wednesday 10-December, 2025 diff --git a/scripture/kjv/12/10/25/scripture.json b/scripture/kjv/12/10/25/scripture.json new file mode 100644 index 00000000..1fe05f2e --- /dev/null +++ b/scripture/kjv/12/10/25/scripture.json @@ -0,0 +1,37 @@ +{ + "book": "Job", + "chapter": "29", + "date": "Wednesday 10-December, 2025", + "getbible": "https://getbible.life/kjv/Job/29/12-17", + "name": "Job 29:12-17", + "scripture": [ + { + "nr": "12", + "text": "Because I delivered the poor that cried, and the fatherless, and him that had none to help him." + }, + { + "nr": "13", + "text": "The blessing of him that was ready to perish came upon me: and I caused the widow’s heart to sing for joy." + }, + { + "nr": "14", + "text": "I put on righteousness, and it clothed me: my judgment was as a robe and a diadem." + }, + { + "nr": "15", + "text": "I was eyes to the blind, and feet was I to the lame." + }, + { + "nr": "16", + "text": "I was a father to the poor: and the cause which I knew not I searched out." + }, + { + "nr": "17", + "text": "And I brake the jaws of the wicked, and plucked the spoil out of his teeth." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12-17", + "version": "kjv" +} diff --git a/scripture/kjv/12/10/25/scripture.md b/scripture/kjv/12/10/25/scripture.md new file mode 100644 index 00000000..c20fa96f --- /dev/null +++ b/scripture/kjv/12/10/25/scripture.md @@ -0,0 +1,5 @@ +**Job 29:12-17** + +12 Because I delivered the poor that cried, and the fatherless, and him that had none to help him. 13 The blessing of him that was ready to perish came upon me: and I caused the widow’s heart to sing for joy. 14 I put on righteousness, and it clothed me: my judgment was as a robe and a diadem. 15 I was eyes to the blind, and feet was I to the lame. 16 I was a father to the poor: and the cause which I knew not I searched out. 17 And I brake the jaws of the wicked, and plucked the spoil out of his teeth. + +[Wednesday 10-December, 2025](https://getbible.life/kjv/Job/29/12-17) diff --git a/scripture/kjv/12/10/25/scripture.tg b/scripture/kjv/12/10/25/scripture.tg new file mode 100644 index 00000000..29b90129 --- /dev/null +++ b/scripture/kjv/12/10/25/scripture.tg @@ -0,0 +1,4 @@ +Job 29:12-17 +12 Because I delivered the poor that cried, and the fatherless, and him that had none to help him. 13 The blessing of him that was ready to perish came upon me: and I caused the widow’s heart to sing for joy. 14 I put on righteousness, and it clothed me: my judgment was as a robe and a diadem. 15 I was eyes to the blind, and feet was I to the lame. 16 I was a father to the poor: and the cause which I knew not I searched out. 17 And I brake the jaws of the wicked, and plucked the spoil out of his teeth. + +Wednesday 10-December, 2025 diff --git a/scripture/kjv/12/10/25/scripture.tg.id b/scripture/kjv/12/10/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/10/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/10/25/scripture.today b/scripture/kjv/12/10/25/scripture.today new file mode 100644 index 00000000..7548a3b4 --- /dev/null +++ b/scripture/kjv/12/10/25/scripture.today @@ -0,0 +1 @@ +18 29:12-17 diff --git a/scripture/kjv/12/11/23/scripture.html b/scripture/kjv/12/11/23/scripture.html new file mode 100644 index 00000000..88917896 --- /dev/null +++ b/scripture/kjv/12/11/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 28:1
+1 The wicked flee when no man pursueth: but the righteous are bold as a lion.

+Monday 11-December, 2023 diff --git a/scripture/kjv/12/11/23/scripture.json b/scripture/kjv/12/11/23/scripture.json new file mode 100644 index 00000000..dc7d6073 --- /dev/null +++ b/scripture/kjv/12/11/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "28", + "date": "Monday 11-December, 2023", + "getbible": "https://getbible.life/kjv/Proverbs/28/1", + "name": "Proverbs 28:1", + "scripture": [ + { + "nr": "1", + "text": "The wicked flee when no man pursueth: but the righteous are bold as a lion." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1", + "version": "kjv" +} diff --git a/scripture/kjv/12/11/23/scripture.md b/scripture/kjv/12/11/23/scripture.md new file mode 100644 index 00000000..1475665b --- /dev/null +++ b/scripture/kjv/12/11/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 28:1** + +1 The wicked flee when no man pursueth: but the righteous are bold as a lion. + +[Monday 11-December, 2023](https://getbible.life/kjv/Proverbs/28/1) diff --git a/scripture/kjv/12/11/23/scripture.tg b/scripture/kjv/12/11/23/scripture.tg new file mode 100644 index 00000000..20d1ea06 --- /dev/null +++ b/scripture/kjv/12/11/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 28:1 +1 The wicked flee when no man pursueth: but the righteous are bold as a lion. + +Monday 11-December, 2023 diff --git a/scripture/kjv/12/11/23/scripture.tg.id b/scripture/kjv/12/11/23/scripture.tg.id new file mode 100644 index 00000000..0fabf9ba --- /dev/null +++ b/scripture/kjv/12/11/23/scripture.tg.id @@ -0,0 +1 @@ +1164 diff --git a/scripture/kjv/12/11/23/scripture.today b/scripture/kjv/12/11/23/scripture.today new file mode 100644 index 00000000..44d51a27 --- /dev/null +++ b/scripture/kjv/12/11/23/scripture.today @@ -0,0 +1 @@ +20 28:1 diff --git a/scripture/kjv/12/11/24/scripture.html b/scripture/kjv/12/11/24/scripture.html new file mode 100644 index 00000000..4ede19f6 --- /dev/null +++ b/scripture/kjv/12/11/24/scripture.html @@ -0,0 +1,3 @@ +Revelation 3:3
+3 Remember therefore how thou hast received and heard, and hold fast, and repent. If therefore thou shalt not watch, I will come on thee as a thief, and thou shalt not know what hour I will come upon thee.

+Wednesday 11-December, 2024 diff --git a/scripture/kjv/12/11/24/scripture.json b/scripture/kjv/12/11/24/scripture.json new file mode 100644 index 00000000..20140cf6 --- /dev/null +++ b/scripture/kjv/12/11/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Revelation", + "chapter": "3", + "date": "Wednesday 11-December, 2024", + "getbible": "https://getbible.life/kjv/Revelation/3/3", + "name": "Revelation 3:3", + "scripture": [ + { + "nr": "3", + "text": "Remember therefore how thou hast received and heard, and hold fast, and repent. If therefore thou shalt not watch, I will come on thee as a thief, and thou shalt not know what hour I will come upon thee." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3", + "version": "kjv" +} diff --git a/scripture/kjv/12/11/24/scripture.md b/scripture/kjv/12/11/24/scripture.md new file mode 100644 index 00000000..7c5efb1e --- /dev/null +++ b/scripture/kjv/12/11/24/scripture.md @@ -0,0 +1,5 @@ +**Revelation 3:3** + +3 Remember therefore how thou hast received and heard, and hold fast, and repent. If therefore thou shalt not watch, I will come on thee as a thief, and thou shalt not know what hour I will come upon thee. + +[Wednesday 11-December, 2024](https://getbible.life/kjv/Revelation/3/3) diff --git a/scripture/kjv/12/11/24/scripture.tg b/scripture/kjv/12/11/24/scripture.tg new file mode 100644 index 00000000..97159267 --- /dev/null +++ b/scripture/kjv/12/11/24/scripture.tg @@ -0,0 +1,4 @@ +Revelation 3:3 +3 Remember therefore how thou hast received and heard, and hold fast, and repent. If therefore thou shalt not watch, I will come on thee as a thief, and thou shalt not know what hour I will come upon thee. + +Wednesday 11-December, 2024 diff --git a/scripture/kjv/12/11/24/scripture.tg.id b/scripture/kjv/12/11/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/11/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/11/24/scripture.today b/scripture/kjv/12/11/24/scripture.today new file mode 100644 index 00000000..1c7049aa --- /dev/null +++ b/scripture/kjv/12/11/24/scripture.today @@ -0,0 +1 @@ +66 3:3 diff --git a/scripture/kjv/12/11/25/scripture.html b/scripture/kjv/12/11/25/scripture.html new file mode 100644 index 00000000..21782e13 --- /dev/null +++ b/scripture/kjv/12/11/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 51:7
+7 Purge me with hyssop, and I shall be clean: wash me, and I shall be whiter than snow.

+Thursday 11-December, 2025 diff --git a/scripture/kjv/12/11/25/scripture.json b/scripture/kjv/12/11/25/scripture.json new file mode 100644 index 00000000..29a83f6b --- /dev/null +++ b/scripture/kjv/12/11/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "51", + "date": "Thursday 11-December, 2025", + "getbible": "https://getbible.life/kjv/Psalms/51/7", + "name": "Psalms 51:7", + "scripture": [ + { + "nr": "7", + "text": "Purge me with hyssop, and I shall be clean: wash me, and I shall be whiter than snow." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7", + "version": "kjv" +} diff --git a/scripture/kjv/12/11/25/scripture.md b/scripture/kjv/12/11/25/scripture.md new file mode 100644 index 00000000..c1aba940 --- /dev/null +++ b/scripture/kjv/12/11/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 51:7** + +7 Purge me with hyssop, and I shall be clean: wash me, and I shall be whiter than snow. + +[Thursday 11-December, 2025](https://getbible.life/kjv/Psalms/51/7) diff --git a/scripture/kjv/12/11/25/scripture.tg b/scripture/kjv/12/11/25/scripture.tg new file mode 100644 index 00000000..f0109592 --- /dev/null +++ b/scripture/kjv/12/11/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 51:7 +7 Purge me with hyssop, and I shall be clean: wash me, and I shall be whiter than snow. + +Thursday 11-December, 2025 diff --git a/scripture/kjv/12/11/25/scripture.tg.id b/scripture/kjv/12/11/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/11/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/11/25/scripture.today b/scripture/kjv/12/11/25/scripture.today new file mode 100644 index 00000000..e2985f5f --- /dev/null +++ b/scripture/kjv/12/11/25/scripture.today @@ -0,0 +1 @@ +19 51:7 diff --git a/scripture/kjv/12/12/22/scripture.html b/scripture/kjv/12/12/22/scripture.html new file mode 100644 index 00000000..0ce7faf8 --- /dev/null +++ b/scripture/kjv/12/12/22/scripture.html @@ -0,0 +1,3 @@ +Job 5:26
+26 Thou shalt come to thy grave in a full age, like as a shock of corn cometh in in his season.

+Monday 12-December, 2022 diff --git a/scripture/kjv/12/12/22/scripture.json b/scripture/kjv/12/12/22/scripture.json new file mode 100644 index 00000000..cf1e34ab --- /dev/null +++ b/scripture/kjv/12/12/22/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Monday 12-December, 2022", + "name": "Job 5:26", + "scripture": [ + { + "nr": "26", + "text": "Thou shalt come to thy grave in a full age, like as a shock of corn cometh in in his season." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/12/12/22/scripture.md b/scripture/kjv/12/12/22/scripture.md new file mode 100644 index 00000000..0718b94c --- /dev/null +++ b/scripture/kjv/12/12/22/scripture.md @@ -0,0 +1,5 @@ +**Job 5:26** + +26 Thou shalt come to thy grave in a full age, like as a shock of corn cometh in in his season. + +[Monday 12-December, 2022](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/12/12/22/scripture.tg b/scripture/kjv/12/12/22/scripture.tg new file mode 100644 index 00000000..8d10d26e --- /dev/null +++ b/scripture/kjv/12/12/22/scripture.tg @@ -0,0 +1,4 @@ +Job 5:26 +26 Thou shalt come to thy grave in a full age, like as a shock of corn cometh in in his season. + +Monday 12-December, 2022 diff --git a/scripture/kjv/12/12/22/scripture.today b/scripture/kjv/12/12/22/scripture.today new file mode 100644 index 00000000..333d1ce1 --- /dev/null +++ b/scripture/kjv/12/12/22/scripture.today @@ -0,0 +1 @@ +18 5:26 diff --git a/scripture/kjv/12/12/23/scripture.html b/scripture/kjv/12/12/23/scripture.html new file mode 100644 index 00000000..2a58559b --- /dev/null +++ b/scripture/kjv/12/12/23/scripture.html @@ -0,0 +1,3 @@ +John 16:27
+27 For the Father himself loveth you, because ye have loved me, and have believed that I came out from God.

+Tuesday 12-December, 2023 diff --git a/scripture/kjv/12/12/23/scripture.json b/scripture/kjv/12/12/23/scripture.json new file mode 100644 index 00000000..d2b2a29a --- /dev/null +++ b/scripture/kjv/12/12/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "16", + "date": "Tuesday 12-December, 2023", + "getbible": "https://getbible.life/kjv/John/16/27", + "name": "John 16:27", + "scripture": [ + { + "nr": "27", + "text": "For the Father himself loveth you, because ye have loved me, and have believed that I came out from God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "27", + "version": "kjv" +} diff --git a/scripture/kjv/12/12/23/scripture.md b/scripture/kjv/12/12/23/scripture.md new file mode 100644 index 00000000..60b22b23 --- /dev/null +++ b/scripture/kjv/12/12/23/scripture.md @@ -0,0 +1,5 @@ +**John 16:27** + +27 For the Father himself loveth you, because ye have loved me, and have believed that I came out from God. + +[Tuesday 12-December, 2023](https://getbible.life/kjv/John/16/27) diff --git a/scripture/kjv/12/12/23/scripture.tg b/scripture/kjv/12/12/23/scripture.tg new file mode 100644 index 00000000..ad7db04a --- /dev/null +++ b/scripture/kjv/12/12/23/scripture.tg @@ -0,0 +1,4 @@ +John 16:27 +27 For the Father himself loveth you, because ye have loved me, and have believed that I came out from God. + +Tuesday 12-December, 2023 diff --git a/scripture/kjv/12/12/23/scripture.tg.id b/scripture/kjv/12/12/23/scripture.tg.id new file mode 100644 index 00000000..169ec560 --- /dev/null +++ b/scripture/kjv/12/12/23/scripture.tg.id @@ -0,0 +1 @@ +1165 diff --git a/scripture/kjv/12/12/23/scripture.today b/scripture/kjv/12/12/23/scripture.today new file mode 100644 index 00000000..298ab215 --- /dev/null +++ b/scripture/kjv/12/12/23/scripture.today @@ -0,0 +1 @@ +43 16:27 diff --git a/scripture/kjv/12/12/24/scripture.html b/scripture/kjv/12/12/24/scripture.html new file mode 100644 index 00000000..fc288d12 --- /dev/null +++ b/scripture/kjv/12/12/24/scripture.html @@ -0,0 +1,3 @@ +Proverbs 1:33
+33 But whoso hearkeneth unto me shall dwell safely, and shall be quiet from fear of evil.

+Thursday 12-December, 2024 diff --git a/scripture/kjv/12/12/24/scripture.json b/scripture/kjv/12/12/24/scripture.json new file mode 100644 index 00000000..6c5007af --- /dev/null +++ b/scripture/kjv/12/12/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "1", + "date": "Thursday 12-December, 2024", + "getbible": "https://getbible.life/kjv/Proverbs/1/33", + "name": "Proverbs 1:33", + "scripture": [ + { + "nr": "33", + "text": "But whoso hearkeneth unto me shall dwell safely, and shall be quiet from fear of evil. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "33", + "version": "kjv" +} diff --git a/scripture/kjv/12/12/24/scripture.md b/scripture/kjv/12/12/24/scripture.md new file mode 100644 index 00000000..8ddb2e7e --- /dev/null +++ b/scripture/kjv/12/12/24/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 1:33** + +33 But whoso hearkeneth unto me shall dwell safely, and shall be quiet from fear of evil. + +[Thursday 12-December, 2024](https://getbible.life/kjv/Proverbs/1/33) diff --git a/scripture/kjv/12/12/24/scripture.tg b/scripture/kjv/12/12/24/scripture.tg new file mode 100644 index 00000000..a3750405 --- /dev/null +++ b/scripture/kjv/12/12/24/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 1:33 +33 But whoso hearkeneth unto me shall dwell safely, and shall be quiet from fear of evil. + +Thursday 12-December, 2024 diff --git a/scripture/kjv/12/12/24/scripture.tg.id b/scripture/kjv/12/12/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/12/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/12/24/scripture.today b/scripture/kjv/12/12/24/scripture.today new file mode 100644 index 00000000..2c6ecd59 --- /dev/null +++ b/scripture/kjv/12/12/24/scripture.today @@ -0,0 +1 @@ +20 1:33 diff --git a/scripture/kjv/12/12/25/scripture.html b/scripture/kjv/12/12/25/scripture.html new file mode 100644 index 00000000..71d6f9b7 --- /dev/null +++ b/scripture/kjv/12/12/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 82:1
+1 God standeth in the congregation of the mighty; he judgeth among the gods.

+Friday 12-December, 2025 diff --git a/scripture/kjv/12/12/25/scripture.json b/scripture/kjv/12/12/25/scripture.json new file mode 100644 index 00000000..efd63b4e --- /dev/null +++ b/scripture/kjv/12/12/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "82", + "date": "Friday 12-December, 2025", + "getbible": "https://getbible.life/kjv/Psalms/82/1", + "name": "Psalms 82:1", + "scripture": [ + { + "nr": "1", + "text": "God standeth in the congregation of the mighty; he judgeth among the gods." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1", + "version": "kjv" +} diff --git a/scripture/kjv/12/12/25/scripture.md b/scripture/kjv/12/12/25/scripture.md new file mode 100644 index 00000000..80784fc0 --- /dev/null +++ b/scripture/kjv/12/12/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 82:1** + +1 God standeth in the congregation of the mighty; he judgeth among the gods. + +[Friday 12-December, 2025](https://getbible.life/kjv/Psalms/82/1) diff --git a/scripture/kjv/12/12/25/scripture.tg b/scripture/kjv/12/12/25/scripture.tg new file mode 100644 index 00000000..c4f338a4 --- /dev/null +++ b/scripture/kjv/12/12/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 82:1 +1 God standeth in the congregation of the mighty; he judgeth among the gods. + +Friday 12-December, 2025 diff --git a/scripture/kjv/12/12/25/scripture.tg.id b/scripture/kjv/12/12/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/12/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/12/25/scripture.today b/scripture/kjv/12/12/25/scripture.today new file mode 100644 index 00000000..367fc49e --- /dev/null +++ b/scripture/kjv/12/12/25/scripture.today @@ -0,0 +1 @@ +19 82:1 diff --git a/scripture/kjv/12/13/22/scripture.html b/scripture/kjv/12/13/22/scripture.html new file mode 100644 index 00000000..4818fbbf --- /dev/null +++ b/scripture/kjv/12/13/22/scripture.html @@ -0,0 +1,3 @@ +Proverbs 15:5
+5 A fool despiseth his father’s instruction: but he that regardeth reproof is prudent.

+Tuesday 13-December, 2022 diff --git a/scripture/kjv/12/13/22/scripture.json b/scripture/kjv/12/13/22/scripture.json new file mode 100644 index 00000000..d3bebb74 --- /dev/null +++ b/scripture/kjv/12/13/22/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Tuesday 13-December, 2022", + "name": "Proverbs 15:5", + "scripture": [ + { + "nr": "5", + "text": "A fool despiseth his father’s instruction: but he that regardeth reproof is prudent." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/12/13/22/scripture.md b/scripture/kjv/12/13/22/scripture.md new file mode 100644 index 00000000..4d6df7da --- /dev/null +++ b/scripture/kjv/12/13/22/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 15:5** + +5 A fool despiseth his father’s instruction: but he that regardeth reproof is prudent. + +[Tuesday 13-December, 2022](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/12/13/22/scripture.tg b/scripture/kjv/12/13/22/scripture.tg new file mode 100644 index 00000000..b59b7b28 --- /dev/null +++ b/scripture/kjv/12/13/22/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 15:5 +5 A fool despiseth his father’s instruction: but he that regardeth reproof is prudent. + +Tuesday 13-December, 2022 diff --git a/scripture/kjv/12/13/22/scripture.today b/scripture/kjv/12/13/22/scripture.today new file mode 100644 index 00000000..49bb9d4d --- /dev/null +++ b/scripture/kjv/12/13/22/scripture.today @@ -0,0 +1 @@ +20 15:5 diff --git a/scripture/kjv/12/13/23/scripture.html b/scripture/kjv/12/13/23/scripture.html new file mode 100644 index 00000000..ac995541 --- /dev/null +++ b/scripture/kjv/12/13/23/scripture.html @@ -0,0 +1,3 @@ +Luke 12:29-31
+29 And seek not ye what ye shall eat, or what ye shall drink, neither be ye of doubtful mind. 30 For all these things do the nations of the world seek after: and your Father knoweth that ye have need of these things. 31 But rather seek ye the kingdom of God; and all these things shall be added unto you.

+Wednesday 13-December, 2023 diff --git a/scripture/kjv/12/13/23/scripture.json b/scripture/kjv/12/13/23/scripture.json new file mode 100644 index 00000000..d8df9253 --- /dev/null +++ b/scripture/kjv/12/13/23/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Luke", + "chapter": "12", + "date": "Wednesday 13-December, 2023", + "getbible": "https://getbible.life/kjv/Luke/12/29-31", + "name": "Luke 12:29-31", + "scripture": [ + { + "nr": "29", + "text": "And seek not ye what ye shall eat, or what ye shall drink, neither be ye of doubtful mind." + }, + { + "nr": "30", + "text": "For all these things do the nations of the world seek after: and your Father knoweth that ye have need of these things." + }, + { + "nr": "31", + "text": "But rather seek ye the kingdom of God; and all these things shall be added unto you." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "29-31", + "version": "kjv" +} diff --git a/scripture/kjv/12/13/23/scripture.md b/scripture/kjv/12/13/23/scripture.md new file mode 100644 index 00000000..e83bfcb9 --- /dev/null +++ b/scripture/kjv/12/13/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 12:29-31** + +29 And seek not ye what ye shall eat, or what ye shall drink, neither be ye of doubtful mind. 30 For all these things do the nations of the world seek after: and your Father knoweth that ye have need of these things. 31 But rather seek ye the kingdom of God; and all these things shall be added unto you. + +[Wednesday 13-December, 2023](https://getbible.life/kjv/Luke/12/29-31) diff --git a/scripture/kjv/12/13/23/scripture.tg b/scripture/kjv/12/13/23/scripture.tg new file mode 100644 index 00000000..0939f194 --- /dev/null +++ b/scripture/kjv/12/13/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 12:29-31 +29 And seek not ye what ye shall eat, or what ye shall drink, neither be ye of doubtful mind. 30 For all these things do the nations of the world seek after: and your Father knoweth that ye have need of these things. 31 But rather seek ye the kingdom of God; and all these things shall be added unto you. + +Wednesday 13-December, 2023 diff --git a/scripture/kjv/12/13/23/scripture.tg.id b/scripture/kjv/12/13/23/scripture.tg.id new file mode 100644 index 00000000..0a7f95a2 --- /dev/null +++ b/scripture/kjv/12/13/23/scripture.tg.id @@ -0,0 +1 @@ +1166 diff --git a/scripture/kjv/12/13/23/scripture.today b/scripture/kjv/12/13/23/scripture.today new file mode 100644 index 00000000..6a2aa029 --- /dev/null +++ b/scripture/kjv/12/13/23/scripture.today @@ -0,0 +1 @@ +42 12:29-31 diff --git a/scripture/kjv/12/13/24/scripture.html b/scripture/kjv/12/13/24/scripture.html new file mode 100644 index 00000000..13bc94a9 --- /dev/null +++ b/scripture/kjv/12/13/24/scripture.html @@ -0,0 +1,3 @@ +Job 22:24-30
+24 Then shalt thou lay up gold as dust, and the gold of Ophir as the stones of the brooks. 25 Yea, the Almighty shall be thy defence, and thou shalt have plenty of silver. 26 For then shalt thou have thy delight in the Almighty, and shalt lift up thy face unto God. 27 Thou shalt make thy prayer unto him, and he shall hear thee, and thou shalt pay thy vows. 28 Thou shalt also decree a thing, and it shall be established unto thee: and the light shall shine upon thy ways. 29 When men are cast down, then thou shalt say, There is lifting up; and he shall save the humble person. 30 He shall deliver the island of the innocent: and it is delivered by the pureness of thine hands.

+Friday 13-December, 2024 diff --git a/scripture/kjv/12/13/24/scripture.json b/scripture/kjv/12/13/24/scripture.json new file mode 100644 index 00000000..bef843fc --- /dev/null +++ b/scripture/kjv/12/13/24/scripture.json @@ -0,0 +1,41 @@ +{ + "book": "Job", + "chapter": "22", + "date": "Friday 13-December, 2024", + "getbible": "https://getbible.life/kjv/Job/22/24-30", + "name": "Job 22:24-30", + "scripture": [ + { + "nr": "24", + "text": "Then shalt thou lay up gold as dust, and the gold of Ophir as the stones of the brooks." + }, + { + "nr": "25", + "text": "Yea, the Almighty shall be thy defence, and thou shalt have plenty of silver." + }, + { + "nr": "26", + "text": "For then shalt thou have thy delight in the Almighty, and shalt lift up thy face unto God." + }, + { + "nr": "27", + "text": "Thou shalt make thy prayer unto him, and he shall hear thee, and thou shalt pay thy vows." + }, + { + "nr": "28", + "text": "Thou shalt also decree a thing, and it shall be established unto thee: and the light shall shine upon thy ways." + }, + { + "nr": "29", + "text": "When men are cast down, then thou shalt say, There is lifting up; and he shall save the humble person." + }, + { + "nr": "30", + "text": "He shall deliver the island of the innocent: and it is delivered by the pureness of thine hands. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "24-30", + "version": "kjv" +} diff --git a/scripture/kjv/12/13/24/scripture.md b/scripture/kjv/12/13/24/scripture.md new file mode 100644 index 00000000..af29c47e --- /dev/null +++ b/scripture/kjv/12/13/24/scripture.md @@ -0,0 +1,5 @@ +**Job 22:24-30** + +24 Then shalt thou lay up gold as dust, and the gold of Ophir as the stones of the brooks. 25 Yea, the Almighty shall be thy defence, and thou shalt have plenty of silver. 26 For then shalt thou have thy delight in the Almighty, and shalt lift up thy face unto God. 27 Thou shalt make thy prayer unto him, and he shall hear thee, and thou shalt pay thy vows. 28 Thou shalt also decree a thing, and it shall be established unto thee: and the light shall shine upon thy ways. 29 When men are cast down, then thou shalt say, There is lifting up; and he shall save the humble person. 30 He shall deliver the island of the innocent: and it is delivered by the pureness of thine hands. + +[Friday 13-December, 2024](https://getbible.life/kjv/Job/22/24-30) diff --git a/scripture/kjv/12/13/24/scripture.tg b/scripture/kjv/12/13/24/scripture.tg new file mode 100644 index 00000000..f4af64bf --- /dev/null +++ b/scripture/kjv/12/13/24/scripture.tg @@ -0,0 +1,4 @@ +Job 22:24-30 +24 Then shalt thou lay up gold as dust, and the gold of Ophir as the stones of the brooks. 25 Yea, the Almighty shall be thy defence, and thou shalt have plenty of silver. 26 For then shalt thou have thy delight in the Almighty, and shalt lift up thy face unto God. 27 Thou shalt make thy prayer unto him, and he shall hear thee, and thou shalt pay thy vows. 28 Thou shalt also decree a thing, and it shall be established unto thee: and the light shall shine upon thy ways. 29 When men are cast down, then thou shalt say, There is lifting up; and he shall save the humble person. 30 He shall deliver the island of the innocent: and it is delivered by the pureness of thine hands. + +Friday 13-December, 2024 diff --git a/scripture/kjv/12/13/24/scripture.tg.id b/scripture/kjv/12/13/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/13/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/13/24/scripture.today b/scripture/kjv/12/13/24/scripture.today new file mode 100644 index 00000000..80e5c57a --- /dev/null +++ b/scripture/kjv/12/13/24/scripture.today @@ -0,0 +1 @@ +18 22:24-30 diff --git a/scripture/kjv/12/13/25/scripture.html b/scripture/kjv/12/13/25/scripture.html new file mode 100644 index 00000000..223fe8d7 --- /dev/null +++ b/scripture/kjv/12/13/25/scripture.html @@ -0,0 +1,3 @@ +Obadiah 1:12
+12 But thou shouldest not have looked on the day of thy brother in the day that he became a stranger; neither shouldest thou have rejoiced over the children of Judah in the day of their destruction; neither shouldest thou have spoken proudly in the day of distress.

+Saturday 13-December, 2025 diff --git a/scripture/kjv/12/13/25/scripture.json b/scripture/kjv/12/13/25/scripture.json new file mode 100644 index 00000000..ae13db56 --- /dev/null +++ b/scripture/kjv/12/13/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Obadiah", + "chapter": "1", + "date": "Saturday 13-December, 2025", + "getbible": "https://getbible.life/kjv/Obadiah/1/12", + "name": "Obadiah 1:12", + "scripture": [ + { + "nr": "12", + "text": "But thou shouldest not have looked on the day of thy brother in the day that he became a stranger; neither shouldest thou have rejoiced over the children of Judah in the day of their destruction; neither shouldest thou have spoken proudly in the day of distress." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/12/13/25/scripture.md b/scripture/kjv/12/13/25/scripture.md new file mode 100644 index 00000000..5d167ece --- /dev/null +++ b/scripture/kjv/12/13/25/scripture.md @@ -0,0 +1,5 @@ +**Obadiah 1:12** + +12 But thou shouldest not have looked on the day of thy brother in the day that he became a stranger; neither shouldest thou have rejoiced over the children of Judah in the day of their destruction; neither shouldest thou have spoken proudly in the day of distress. + +[Saturday 13-December, 2025](https://getbible.life/kjv/Obadiah/1/12) diff --git a/scripture/kjv/12/13/25/scripture.tg b/scripture/kjv/12/13/25/scripture.tg new file mode 100644 index 00000000..2d8f3182 --- /dev/null +++ b/scripture/kjv/12/13/25/scripture.tg @@ -0,0 +1,4 @@ +Obadiah 1:12 +12 But thou shouldest not have looked on the day of thy brother in the day that he became a stranger; neither shouldest thou have rejoiced over the children of Judah in the day of their destruction; neither shouldest thou have spoken proudly in the day of distress. + +Saturday 13-December, 2025 diff --git a/scripture/kjv/12/13/25/scripture.tg.id b/scripture/kjv/12/13/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/13/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/13/25/scripture.today b/scripture/kjv/12/13/25/scripture.today new file mode 100644 index 00000000..d64f1235 --- /dev/null +++ b/scripture/kjv/12/13/25/scripture.today @@ -0,0 +1 @@ +31 1:12 diff --git a/scripture/kjv/12/14/22/scripture.html b/scripture/kjv/12/14/22/scripture.html new file mode 100644 index 00000000..ff36494f --- /dev/null +++ b/scripture/kjv/12/14/22/scripture.html @@ -0,0 +1,3 @@ +Daniel 1:20
+20 And in all matters of wisdom and understanding, that the king enquired of them, he found them ten times better than all the magicians and astrologers that were in all his realm.

+Wednesday 14-December, 2022 diff --git a/scripture/kjv/12/14/22/scripture.json b/scripture/kjv/12/14/22/scripture.json new file mode 100644 index 00000000..50faf05d --- /dev/null +++ b/scripture/kjv/12/14/22/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Wednesday 14-December, 2022", + "name": "Daniel 1:20", + "scripture": [ + { + "nr": "20", + "text": "And in all matters of wisdom and understanding, that the king enquired of them, he found them ten times better than all the magicians and astrologers that were in all his realm." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/12/14/22/scripture.md b/scripture/kjv/12/14/22/scripture.md new file mode 100644 index 00000000..97e06fa0 --- /dev/null +++ b/scripture/kjv/12/14/22/scripture.md @@ -0,0 +1,5 @@ +**Daniel 1:20** + +20 And in all matters of wisdom and understanding, that the king enquired of them, he found them ten times better than all the magicians and astrologers that were in all his realm. + +[Wednesday 14-December, 2022](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/12/14/22/scripture.tg b/scripture/kjv/12/14/22/scripture.tg new file mode 100644 index 00000000..d1eb1efa --- /dev/null +++ b/scripture/kjv/12/14/22/scripture.tg @@ -0,0 +1,4 @@ +Daniel 1:20 +20 And in all matters of wisdom and understanding, that the king enquired of them, he found them ten times better than all the magicians and astrologers that were in all his realm. + +Wednesday 14-December, 2022 diff --git a/scripture/kjv/12/14/22/scripture.today b/scripture/kjv/12/14/22/scripture.today new file mode 100644 index 00000000..398f04f3 --- /dev/null +++ b/scripture/kjv/12/14/22/scripture.today @@ -0,0 +1 @@ +27 1:20 diff --git a/scripture/kjv/12/14/23/scripture.html b/scripture/kjv/12/14/23/scripture.html new file mode 100644 index 00000000..d2c71ac6 --- /dev/null +++ b/scripture/kjv/12/14/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 22:9
+9 He that hath a bountiful eye shall be blessed; for he giveth of his bread to the poor.

+Thursday 14-December, 2023 diff --git a/scripture/kjv/12/14/23/scripture.json b/scripture/kjv/12/14/23/scripture.json new file mode 100644 index 00000000..55fdb3ad --- /dev/null +++ b/scripture/kjv/12/14/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "22", + "date": "Thursday 14-December, 2023", + "getbible": "https://getbible.life/kjv/Proverbs/22/9", + "name": "Proverbs 22:9", + "scripture": [ + { + "nr": "9", + "text": "He that hath a bountiful eye shall be blessed; for he giveth of his bread to the poor." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9", + "version": "kjv" +} diff --git a/scripture/kjv/12/14/23/scripture.md b/scripture/kjv/12/14/23/scripture.md new file mode 100644 index 00000000..a9451dce --- /dev/null +++ b/scripture/kjv/12/14/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 22:9** + +9 He that hath a bountiful eye shall be blessed; for he giveth of his bread to the poor. + +[Thursday 14-December, 2023](https://getbible.life/kjv/Proverbs/22/9) diff --git a/scripture/kjv/12/14/23/scripture.tg b/scripture/kjv/12/14/23/scripture.tg new file mode 100644 index 00000000..9b6e8477 --- /dev/null +++ b/scripture/kjv/12/14/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 22:9 +9 He that hath a bountiful eye shall be blessed; for he giveth of his bread to the poor. + +Thursday 14-December, 2023 diff --git a/scripture/kjv/12/14/23/scripture.tg.id b/scripture/kjv/12/14/23/scripture.tg.id new file mode 100644 index 00000000..785c0c10 --- /dev/null +++ b/scripture/kjv/12/14/23/scripture.tg.id @@ -0,0 +1 @@ +1167 diff --git a/scripture/kjv/12/14/23/scripture.today b/scripture/kjv/12/14/23/scripture.today new file mode 100644 index 00000000..25c85180 --- /dev/null +++ b/scripture/kjv/12/14/23/scripture.today @@ -0,0 +1 @@ +20 22:9 diff --git a/scripture/kjv/12/14/24/scripture.html b/scripture/kjv/12/14/24/scripture.html new file mode 100644 index 00000000..73906044 --- /dev/null +++ b/scripture/kjv/12/14/24/scripture.html @@ -0,0 +1,3 @@ +John 3:8-10
+8 The wind bloweth where it listeth, and thou hearest the sound thereof, but canst not tell whence it cometh, and whither it goeth: so is every one that is born of the Spirit. 9 Nicodemus answered and said unto him, How can these things be? 10 Jesus answered and said unto him, Art thou a master of Israel, and knowest not these things?

+Saturday 14-December, 2024 diff --git a/scripture/kjv/12/14/24/scripture.json b/scripture/kjv/12/14/24/scripture.json new file mode 100644 index 00000000..0582d394 --- /dev/null +++ b/scripture/kjv/12/14/24/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "John", + "chapter": "3", + "date": "Saturday 14-December, 2024", + "getbible": "https://getbible.life/kjv/John/3/8-10", + "name": "John 3:8-10", + "scripture": [ + { + "nr": "8", + "text": "The wind bloweth where it listeth, and thou hearest the sound thereof, but canst not tell whence it cometh, and whither it goeth: so is every one that is born of the Spirit." + }, + { + "nr": "9", + "text": "Nicodemus answered and said unto him, How can these things be?" + }, + { + "nr": "10", + "text": "Jesus answered and said unto him, Art thou a master of Israel, and knowest not these things?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8-10", + "version": "kjv" +} diff --git a/scripture/kjv/12/14/24/scripture.md b/scripture/kjv/12/14/24/scripture.md new file mode 100644 index 00000000..39c25737 --- /dev/null +++ b/scripture/kjv/12/14/24/scripture.md @@ -0,0 +1,5 @@ +**John 3:8-10** + +8 The wind bloweth where it listeth, and thou hearest the sound thereof, but canst not tell whence it cometh, and whither it goeth: so is every one that is born of the Spirit. 9 Nicodemus answered and said unto him, How can these things be? 10 Jesus answered and said unto him, Art thou a master of Israel, and knowest not these things? + +[Saturday 14-December, 2024](https://getbible.life/kjv/John/3/8-10) diff --git a/scripture/kjv/12/14/24/scripture.tg b/scripture/kjv/12/14/24/scripture.tg new file mode 100644 index 00000000..feb49c7d --- /dev/null +++ b/scripture/kjv/12/14/24/scripture.tg @@ -0,0 +1,4 @@ +John 3:8-10 +8 The wind bloweth where it listeth, and thou hearest the sound thereof, but canst not tell whence it cometh, and whither it goeth: so is every one that is born of the Spirit. 9 Nicodemus answered and said unto him, How can these things be? 10 Jesus answered and said unto him, Art thou a master of Israel, and knowest not these things? + +Saturday 14-December, 2024 diff --git a/scripture/kjv/12/14/24/scripture.tg.id b/scripture/kjv/12/14/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/14/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/14/24/scripture.today b/scripture/kjv/12/14/24/scripture.today new file mode 100644 index 00000000..40cbf9f2 --- /dev/null +++ b/scripture/kjv/12/14/24/scripture.today @@ -0,0 +1 @@ +43 3:8-10 diff --git a/scripture/kjv/12/14/25/scripture.html b/scripture/kjv/12/14/25/scripture.html new file mode 100644 index 00000000..560dbd32 --- /dev/null +++ b/scripture/kjv/12/14/25/scripture.html @@ -0,0 +1,3 @@ +Titus 3:8-9
+8 This is a faithful saying, and these things I will that thou affirm constantly, that they which have believed in God might be careful to maintain good works. These things are good and profitable unto men. 9 But avoid foolish questions, and genealogies, and contentions, and strivings about the law; for they are unprofitable and vain.

+Sunday 14-December, 2025 diff --git a/scripture/kjv/12/14/25/scripture.json b/scripture/kjv/12/14/25/scripture.json new file mode 100644 index 00000000..bd791fab --- /dev/null +++ b/scripture/kjv/12/14/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Titus", + "chapter": "3", + "date": "Sunday 14-December, 2025", + "getbible": "https://getbible.life/kjv/Titus/3/8-9", + "name": "Titus 3:8-9", + "scripture": [ + { + "nr": "8", + "text": "This is a faithful saying, and these things I will that thou affirm constantly, that they which have believed in God might be careful to maintain good works. These things are good and profitable unto men." + }, + { + "nr": "9", + "text": "But avoid foolish questions, and genealogies, and contentions, and strivings about the law; for they are unprofitable and vain." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8-9", + "version": "kjv" +} diff --git a/scripture/kjv/12/14/25/scripture.md b/scripture/kjv/12/14/25/scripture.md new file mode 100644 index 00000000..f0136976 --- /dev/null +++ b/scripture/kjv/12/14/25/scripture.md @@ -0,0 +1,5 @@ +**Titus 3:8-9** + +8 This is a faithful saying, and these things I will that thou affirm constantly, that they which have believed in God might be careful to maintain good works. These things are good and profitable unto men. 9 But avoid foolish questions, and genealogies, and contentions, and strivings about the law; for they are unprofitable and vain. + +[Sunday 14-December, 2025](https://getbible.life/kjv/Titus/3/8-9) diff --git a/scripture/kjv/12/14/25/scripture.tg b/scripture/kjv/12/14/25/scripture.tg new file mode 100644 index 00000000..12c894d7 --- /dev/null +++ b/scripture/kjv/12/14/25/scripture.tg @@ -0,0 +1,4 @@ +Titus 3:8-9 +8 This is a faithful saying, and these things I will that thou affirm constantly, that they which have believed in God might be careful to maintain good works. These things are good and profitable unto men. 9 But avoid foolish questions, and genealogies, and contentions, and strivings about the law; for they are unprofitable and vain. + +Sunday 14-December, 2025 diff --git a/scripture/kjv/12/14/25/scripture.tg.id b/scripture/kjv/12/14/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/14/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/14/25/scripture.today b/scripture/kjv/12/14/25/scripture.today new file mode 100644 index 00000000..764ffb72 --- /dev/null +++ b/scripture/kjv/12/14/25/scripture.today @@ -0,0 +1 @@ +56 3:8-9 diff --git a/scripture/kjv/12/15/22/scripture.html b/scripture/kjv/12/15/22/scripture.html new file mode 100644 index 00000000..e3bd804d --- /dev/null +++ b/scripture/kjv/12/15/22/scripture.html @@ -0,0 +1,3 @@ +3 John 1:9-10
+9 I wrote unto the church: but Diotrephes, who loveth to have the preeminence among them, receiveth us not. 10 Wherefore, if I come, I will remember his deeds which he doeth, prating against us with malicious words: and not content therewith, neither doth he himself receive the brethren, and forbiddeth them that would, and casteth them out of the church.

+Thursday 15-December, 2022 diff --git a/scripture/kjv/12/15/22/scripture.json b/scripture/kjv/12/15/22/scripture.json new file mode 100644 index 00000000..8271bd58 --- /dev/null +++ b/scripture/kjv/12/15/22/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Thursday 15-December, 2022", + "name": "3 John 1:9-10", + "scripture": [ + { + "nr": "9", + "text": "I wrote unto the church: but Diotrephes, who loveth to have the preeminence among them, receiveth us not." + }, + { + "nr": "10", + "text": "Wherefore, if I come, I will remember his deeds which he doeth, prating against us with malicious words: and not content therewith, neither doth he himself receive the brethren, and forbiddeth them that would, and casteth them out of the church." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/12/15/22/scripture.md b/scripture/kjv/12/15/22/scripture.md new file mode 100644 index 00000000..4835e6a3 --- /dev/null +++ b/scripture/kjv/12/15/22/scripture.md @@ -0,0 +1,5 @@ +**3 John 1:9-10** + +9 I wrote unto the church: but Diotrephes, who loveth to have the preeminence among them, receiveth us not. 10 Wherefore, if I come, I will remember his deeds which he doeth, prating against us with malicious words: and not content therewith, neither doth he himself receive the brethren, and forbiddeth them that would, and casteth them out of the church. + +[Thursday 15-December, 2022](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/12/15/22/scripture.tg b/scripture/kjv/12/15/22/scripture.tg new file mode 100644 index 00000000..4f06aeeb --- /dev/null +++ b/scripture/kjv/12/15/22/scripture.tg @@ -0,0 +1,4 @@ +3 John 1:9-10 +9 I wrote unto the church: but Diotrephes, who loveth to have the preeminence among them, receiveth us not. 10 Wherefore, if I come, I will remember his deeds which he doeth, prating against us with malicious words: and not content therewith, neither doth he himself receive the brethren, and forbiddeth them that would, and casteth them out of the church. + +Thursday 15-December, 2022 diff --git a/scripture/kjv/12/15/22/scripture.today b/scripture/kjv/12/15/22/scripture.today new file mode 100644 index 00000000..7e5bcf24 --- /dev/null +++ b/scripture/kjv/12/15/22/scripture.today @@ -0,0 +1 @@ +64 1:9-10 diff --git a/scripture/kjv/12/15/23/scripture.html b/scripture/kjv/12/15/23/scripture.html new file mode 100644 index 00000000..0045f24c --- /dev/null +++ b/scripture/kjv/12/15/23/scripture.html @@ -0,0 +1,3 @@ +Ezra 8:22-23
+22 For I was ashamed to require of the king a band of soldiers and horsemen to help us against the enemy in the way: because we had spoken unto the king, saying, The hand of our God is upon all them for good that seek him; but his power and his wrath is against all them that forsake him. 23 So we fasted and besought our God for this: and he was intreated of us.

+Friday 15-December, 2023 diff --git a/scripture/kjv/12/15/23/scripture.json b/scripture/kjv/12/15/23/scripture.json new file mode 100644 index 00000000..17eb92ef --- /dev/null +++ b/scripture/kjv/12/15/23/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Ezra", + "chapter": "8", + "date": "Friday 15-December, 2023", + "getbible": "https://getbible.life/kjv/Ezra/8/22-23", + "name": "Ezra 8:22-23", + "scripture": [ + { + "nr": "22", + "text": "For I was ashamed to require of the king a band of soldiers and horsemen to help us against the enemy in the way: because we had spoken unto the king, saying, The hand of our God is upon all them for good that seek him; but his power and his wrath is against all them that forsake him." + }, + { + "nr": "23", + "text": "So we fasted and besought our God for this: and he was intreated of us." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "22-23", + "version": "kjv" +} diff --git a/scripture/kjv/12/15/23/scripture.md b/scripture/kjv/12/15/23/scripture.md new file mode 100644 index 00000000..ea129a5e --- /dev/null +++ b/scripture/kjv/12/15/23/scripture.md @@ -0,0 +1,5 @@ +**Ezra 8:22-23** + +22 For I was ashamed to require of the king a band of soldiers and horsemen to help us against the enemy in the way: because we had spoken unto the king, saying, The hand of our God is upon all them for good that seek him; but his power and his wrath is against all them that forsake him. 23 So we fasted and besought our God for this: and he was intreated of us. + +[Friday 15-December, 2023](https://getbible.life/kjv/Ezra/8/22-23) diff --git a/scripture/kjv/12/15/23/scripture.tg b/scripture/kjv/12/15/23/scripture.tg new file mode 100644 index 00000000..ce6ae134 --- /dev/null +++ b/scripture/kjv/12/15/23/scripture.tg @@ -0,0 +1,4 @@ +Ezra 8:22-23 +22 For I was ashamed to require of the king a band of soldiers and horsemen to help us against the enemy in the way: because we had spoken unto the king, saying, The hand of our God is upon all them for good that seek him; but his power and his wrath is against all them that forsake him. 23 So we fasted and besought our God for this: and he was intreated of us. + +Friday 15-December, 2023 diff --git a/scripture/kjv/12/15/23/scripture.tg.id b/scripture/kjv/12/15/23/scripture.tg.id new file mode 100644 index 00000000..ddbefde5 --- /dev/null +++ b/scripture/kjv/12/15/23/scripture.tg.id @@ -0,0 +1 @@ +1168 diff --git a/scripture/kjv/12/15/23/scripture.today b/scripture/kjv/12/15/23/scripture.today new file mode 100644 index 00000000..6a026530 --- /dev/null +++ b/scripture/kjv/12/15/23/scripture.today @@ -0,0 +1 @@ +15 8:22-23 diff --git a/scripture/kjv/12/15/24/scripture.html b/scripture/kjv/12/15/24/scripture.html new file mode 100644 index 00000000..03daaafa --- /dev/null +++ b/scripture/kjv/12/15/24/scripture.html @@ -0,0 +1,3 @@ +Revelation 19:8
+8 And to her was granted that she should be arrayed in fine linen, clean and white: for the fine linen is the righteousness of saints.

+Sunday 15-December, 2024 diff --git a/scripture/kjv/12/15/24/scripture.json b/scripture/kjv/12/15/24/scripture.json new file mode 100644 index 00000000..78e2d36f --- /dev/null +++ b/scripture/kjv/12/15/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Revelation", + "chapter": "19", + "date": "Sunday 15-December, 2024", + "getbible": "https://getbible.life/kjv/Revelation/19/8", + "name": "Revelation 19:8", + "scripture": [ + { + "nr": "8", + "text": "And to her was granted that she should be arrayed in fine linen, clean and white: for the fine linen is the righteousness of saints." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "8", + "version": "kjv" +} diff --git a/scripture/kjv/12/15/24/scripture.md b/scripture/kjv/12/15/24/scripture.md new file mode 100644 index 00000000..1cc7c2cf --- /dev/null +++ b/scripture/kjv/12/15/24/scripture.md @@ -0,0 +1,5 @@ +**Revelation 19:8** + +8 And to her was granted that she should be arrayed in fine linen, clean and white: for the fine linen is the righteousness of saints. + +[Sunday 15-December, 2024](https://getbible.life/kjv/Revelation/19/8) diff --git a/scripture/kjv/12/15/24/scripture.tg b/scripture/kjv/12/15/24/scripture.tg new file mode 100644 index 00000000..51f84884 --- /dev/null +++ b/scripture/kjv/12/15/24/scripture.tg @@ -0,0 +1,4 @@ +Revelation 19:8 +8 And to her was granted that she should be arrayed in fine linen, clean and white: for the fine linen is the righteousness of saints. + +Sunday 15-December, 2024 diff --git a/scripture/kjv/12/15/24/scripture.tg.id b/scripture/kjv/12/15/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/15/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/15/24/scripture.today b/scripture/kjv/12/15/24/scripture.today new file mode 100644 index 00000000..b4f91cac --- /dev/null +++ b/scripture/kjv/12/15/24/scripture.today @@ -0,0 +1 @@ +66 19:8 diff --git a/scripture/kjv/12/15/25/scripture.html b/scripture/kjv/12/15/25/scripture.html new file mode 100644 index 00000000..26c92de7 --- /dev/null +++ b/scripture/kjv/12/15/25/scripture.html @@ -0,0 +1,3 @@ +1 Corinthians 2:10
+10 But God hath revealed them unto us by his Spirit: for the Spirit searcheth all things, yea, the deep things of God.

+Monday 15-December, 2025 diff --git a/scripture/kjv/12/15/25/scripture.json b/scripture/kjv/12/15/25/scripture.json new file mode 100644 index 00000000..3823b462 --- /dev/null +++ b/scripture/kjv/12/15/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 Corinthians", + "chapter": "2", + "date": "Monday 15-December, 2025", + "getbible": "https://getbible.life/kjv/1 Corinthians/2/10", + "name": "1 Corinthians 2:10", + "scripture": [ + { + "nr": "10", + "text": "But God hath revealed them unto us by his Spirit: for the Spirit searcheth all things, yea, the deep things of God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/12/15/25/scripture.md b/scripture/kjv/12/15/25/scripture.md new file mode 100644 index 00000000..94e5c02c --- /dev/null +++ b/scripture/kjv/12/15/25/scripture.md @@ -0,0 +1,5 @@ +**1 Corinthians 2:10** + +10 But God hath revealed them unto us by his Spirit: for the Spirit searcheth all things, yea, the deep things of God. + +[Monday 15-December, 2025](https://getbible.life/kjv/1 Corinthians/2/10) diff --git a/scripture/kjv/12/15/25/scripture.tg b/scripture/kjv/12/15/25/scripture.tg new file mode 100644 index 00000000..52eb15ac --- /dev/null +++ b/scripture/kjv/12/15/25/scripture.tg @@ -0,0 +1,4 @@ +1 Corinthians 2:10 +10 But God hath revealed them unto us by his Spirit: for the Spirit searcheth all things, yea, the deep things of God. + +Monday 15-December, 2025 diff --git a/scripture/kjv/12/15/25/scripture.tg.id b/scripture/kjv/12/15/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/15/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/15/25/scripture.today b/scripture/kjv/12/15/25/scripture.today new file mode 100644 index 00000000..d107cda0 --- /dev/null +++ b/scripture/kjv/12/15/25/scripture.today @@ -0,0 +1 @@ +46 2:10 diff --git a/scripture/kjv/12/16/22/scripture.html b/scripture/kjv/12/16/22/scripture.html new file mode 100644 index 00000000..e2146054 --- /dev/null +++ b/scripture/kjv/12/16/22/scripture.html @@ -0,0 +1,3 @@ +Isaiah 50:4
+4 The Lord God hath given me the tongue of the learned, that I should know how to speak a word in season to him that is weary: he wakeneth morning by morning, he wakeneth mine ear to hear as the learned.

+Friday 16-December, 2022 diff --git a/scripture/kjv/12/16/22/scripture.json b/scripture/kjv/12/16/22/scripture.json new file mode 100644 index 00000000..dce4677e --- /dev/null +++ b/scripture/kjv/12/16/22/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Friday 16-December, 2022", + "name": "Isaiah 50:4", + "scripture": [ + { + "nr": "4", + "text": "The Lord God hath given me the tongue of the learned, that I should know how to speak a word in season to him that is weary: he wakeneth morning by morning, he wakeneth mine ear to hear as the learned." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/12/16/22/scripture.md b/scripture/kjv/12/16/22/scripture.md new file mode 100644 index 00000000..393e0547 --- /dev/null +++ b/scripture/kjv/12/16/22/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 50:4** + +4 The Lord God hath given me the tongue of the learned, that I should know how to speak a word in season to him that is weary: he wakeneth morning by morning, he wakeneth mine ear to hear as the learned. + +[Friday 16-December, 2022](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/12/16/22/scripture.tg b/scripture/kjv/12/16/22/scripture.tg new file mode 100644 index 00000000..94ae152d --- /dev/null +++ b/scripture/kjv/12/16/22/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 50:4 +4 The Lord God hath given me the tongue of the learned, that I should know how to speak a word in season to him that is weary: he wakeneth morning by morning, he wakeneth mine ear to hear as the learned. + +Friday 16-December, 2022 diff --git a/scripture/kjv/12/16/22/scripture.today b/scripture/kjv/12/16/22/scripture.today new file mode 100644 index 00000000..e691371d --- /dev/null +++ b/scripture/kjv/12/16/22/scripture.today @@ -0,0 +1 @@ +23 50:4 diff --git a/scripture/kjv/12/16/23/scripture.html b/scripture/kjv/12/16/23/scripture.html new file mode 100644 index 00000000..2ae38216 --- /dev/null +++ b/scripture/kjv/12/16/23/scripture.html @@ -0,0 +1,3 @@ +Job 42:3
+3 Who is he that hideth counsel without knowledge? therefore have I uttered that I understood not; things too wonderful for me, which I knew not.

+Saturday 16-December, 2023 diff --git a/scripture/kjv/12/16/23/scripture.json b/scripture/kjv/12/16/23/scripture.json new file mode 100644 index 00000000..3211bcd3 --- /dev/null +++ b/scripture/kjv/12/16/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Job", + "chapter": "42", + "date": "Saturday 16-December, 2023", + "getbible": "https://getbible.life/kjv/Job/42/3", + "name": "Job 42:3", + "scripture": [ + { + "nr": "3", + "text": "Who is he that hideth counsel without knowledge? therefore have I uttered that I understood not; things too wonderful for me, which I knew not." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3", + "version": "kjv" +} diff --git a/scripture/kjv/12/16/23/scripture.md b/scripture/kjv/12/16/23/scripture.md new file mode 100644 index 00000000..0d29fdfb --- /dev/null +++ b/scripture/kjv/12/16/23/scripture.md @@ -0,0 +1,5 @@ +**Job 42:3** + +3 Who is he that hideth counsel without knowledge? therefore have I uttered that I understood not; things too wonderful for me, which I knew not. + +[Saturday 16-December, 2023](https://getbible.life/kjv/Job/42/3) diff --git a/scripture/kjv/12/16/23/scripture.tg b/scripture/kjv/12/16/23/scripture.tg new file mode 100644 index 00000000..b9ecc964 --- /dev/null +++ b/scripture/kjv/12/16/23/scripture.tg @@ -0,0 +1,4 @@ +Job 42:3 +3 Who is he that hideth counsel without knowledge? therefore have I uttered that I understood not; things too wonderful for me, which I knew not. + +Saturday 16-December, 2023 diff --git a/scripture/kjv/12/16/23/scripture.tg.id b/scripture/kjv/12/16/23/scripture.tg.id new file mode 100644 index 00000000..34684091 --- /dev/null +++ b/scripture/kjv/12/16/23/scripture.tg.id @@ -0,0 +1 @@ +1169 diff --git a/scripture/kjv/12/16/23/scripture.today b/scripture/kjv/12/16/23/scripture.today new file mode 100644 index 00000000..1a41f028 --- /dev/null +++ b/scripture/kjv/12/16/23/scripture.today @@ -0,0 +1 @@ +18 42:3 diff --git a/scripture/kjv/12/16/24/scripture.html b/scripture/kjv/12/16/24/scripture.html new file mode 100644 index 00000000..4e4bce05 --- /dev/null +++ b/scripture/kjv/12/16/24/scripture.html @@ -0,0 +1,3 @@ +Romans 12:21
+21 Be not overcome of evil, but overcome evil with good.

+Monday 16-December, 2024 diff --git a/scripture/kjv/12/16/24/scripture.json b/scripture/kjv/12/16/24/scripture.json new file mode 100644 index 00000000..eb32e4c8 --- /dev/null +++ b/scripture/kjv/12/16/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Romans", + "chapter": "12", + "date": "Monday 16-December, 2024", + "getbible": "https://getbible.life/kjv/Romans/12/21", + "name": "Romans 12:21", + "scripture": [ + { + "nr": "21", + "text": "Be not overcome of evil, but overcome evil with good. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "21", + "version": "kjv" +} diff --git a/scripture/kjv/12/16/24/scripture.md b/scripture/kjv/12/16/24/scripture.md new file mode 100644 index 00000000..1c3b5ccd --- /dev/null +++ b/scripture/kjv/12/16/24/scripture.md @@ -0,0 +1,5 @@ +**Romans 12:21** + +21 Be not overcome of evil, but overcome evil with good. + +[Monday 16-December, 2024](https://getbible.life/kjv/Romans/12/21) diff --git a/scripture/kjv/12/16/24/scripture.tg b/scripture/kjv/12/16/24/scripture.tg new file mode 100644 index 00000000..e28bae71 --- /dev/null +++ b/scripture/kjv/12/16/24/scripture.tg @@ -0,0 +1,4 @@ +Romans 12:21 +21 Be not overcome of evil, but overcome evil with good. + +Monday 16-December, 2024 diff --git a/scripture/kjv/12/16/24/scripture.tg.id b/scripture/kjv/12/16/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/16/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/16/24/scripture.today b/scripture/kjv/12/16/24/scripture.today new file mode 100644 index 00000000..bdc3d225 --- /dev/null +++ b/scripture/kjv/12/16/24/scripture.today @@ -0,0 +1 @@ +45 12:21 diff --git a/scripture/kjv/12/16/25/scripture.html b/scripture/kjv/12/16/25/scripture.html new file mode 100644 index 00000000..6c9a29bc --- /dev/null +++ b/scripture/kjv/12/16/25/scripture.html @@ -0,0 +1,3 @@ +1 John 3:24
+24 And he that keepeth his commandments dwelleth in him, and he in him. And hereby we know that he abideth in us, by the Spirit which he hath given us.

+Tuesday 16-December, 2025 diff --git a/scripture/kjv/12/16/25/scripture.json b/scripture/kjv/12/16/25/scripture.json new file mode 100644 index 00000000..aefe86cb --- /dev/null +++ b/scripture/kjv/12/16/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "1 John", + "chapter": "3", + "date": "Tuesday 16-December, 2025", + "getbible": "https://getbible.life/kjv/1 John/3/24", + "name": "1 John 3:24", + "scripture": [ + { + "nr": "24", + "text": "And he that keepeth his commandments dwelleth in him, and he in him. And hereby we know that he abideth in us, by the Spirit which he hath given us. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "24", + "version": "kjv" +} diff --git a/scripture/kjv/12/16/25/scripture.md b/scripture/kjv/12/16/25/scripture.md new file mode 100644 index 00000000..396a079b --- /dev/null +++ b/scripture/kjv/12/16/25/scripture.md @@ -0,0 +1,5 @@ +**1 John 3:24** + +24 And he that keepeth his commandments dwelleth in him, and he in him. And hereby we know that he abideth in us, by the Spirit which he hath given us. + +[Tuesday 16-December, 2025](https://getbible.life/kjv/1 John/3/24) diff --git a/scripture/kjv/12/16/25/scripture.tg b/scripture/kjv/12/16/25/scripture.tg new file mode 100644 index 00000000..2bc3255d --- /dev/null +++ b/scripture/kjv/12/16/25/scripture.tg @@ -0,0 +1,4 @@ +1 John 3:24 +24 And he that keepeth his commandments dwelleth in him, and he in him. And hereby we know that he abideth in us, by the Spirit which he hath given us. + +Tuesday 16-December, 2025 diff --git a/scripture/kjv/12/16/25/scripture.tg.id b/scripture/kjv/12/16/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/16/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/16/25/scripture.today b/scripture/kjv/12/16/25/scripture.today new file mode 100644 index 00000000..a9320cc4 --- /dev/null +++ b/scripture/kjv/12/16/25/scripture.today @@ -0,0 +1 @@ +62 3:24 diff --git a/scripture/kjv/12/17/22/scripture.html b/scripture/kjv/12/17/22/scripture.html new file mode 100644 index 00000000..2555a264 --- /dev/null +++ b/scripture/kjv/12/17/22/scripture.html @@ -0,0 +1,3 @@ +1 John 4:6
+6 We are of God: he that knoweth God heareth us; he that is not of God heareth not us. Hereby know we the spirit of truth, and the spirit of error.

+Saturday 17-December, 2022 diff --git a/scripture/kjv/12/17/22/scripture.json b/scripture/kjv/12/17/22/scripture.json new file mode 100644 index 00000000..57f5fb10 --- /dev/null +++ b/scripture/kjv/12/17/22/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Saturday 17-December, 2022", + "name": "1 John 4:6", + "scripture": [ + { + "nr": "6", + "text": "We are of God: he that knoweth God heareth us; he that is not of God heareth not us. Hereby know we the spirit of truth, and the spirit of error." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/12/17/22/scripture.md b/scripture/kjv/12/17/22/scripture.md new file mode 100644 index 00000000..8432ce01 --- /dev/null +++ b/scripture/kjv/12/17/22/scripture.md @@ -0,0 +1,5 @@ +**1 John 4:6** + +6 We are of God: he that knoweth God heareth us; he that is not of God heareth not us. Hereby know we the spirit of truth, and the spirit of error. + +[Saturday 17-December, 2022](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/12/17/22/scripture.tg b/scripture/kjv/12/17/22/scripture.tg new file mode 100644 index 00000000..2ea011b5 --- /dev/null +++ b/scripture/kjv/12/17/22/scripture.tg @@ -0,0 +1,4 @@ +1 John 4:6 +6 We are of God: he that knoweth God heareth us; he that is not of God heareth not us. Hereby know we the spirit of truth, and the spirit of error. + +Saturday 17-December, 2022 diff --git a/scripture/kjv/12/17/22/scripture.today b/scripture/kjv/12/17/22/scripture.today new file mode 100644 index 00000000..64d19216 --- /dev/null +++ b/scripture/kjv/12/17/22/scripture.today @@ -0,0 +1 @@ +62 4:6 diff --git a/scripture/kjv/12/17/23/scripture.html b/scripture/kjv/12/17/23/scripture.html new file mode 100644 index 00000000..0332aa6d --- /dev/null +++ b/scripture/kjv/12/17/23/scripture.html @@ -0,0 +1,3 @@ +John 15:16
+16 Ye have not chosen me, but I have chosen you, and ordained you, that ye should go and bring forth fruit, and that your fruit should remain: that whatsoever ye shall ask of the Father in my name, he may give it you.

+Sunday 17-December, 2023 diff --git a/scripture/kjv/12/17/23/scripture.json b/scripture/kjv/12/17/23/scripture.json new file mode 100644 index 00000000..b230f1d1 --- /dev/null +++ b/scripture/kjv/12/17/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "15", + "date": "Sunday 17-December, 2023", + "getbible": "https://getbible.life/kjv/John/15/16", + "name": "John 15:16", + "scripture": [ + { + "nr": "16", + "text": "Ye have not chosen me, but I have chosen you, and ordained you, that ye should go and bring forth fruit, and that your fruit should remain: that whatsoever ye shall ask of the Father in my name, he may give it you." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16", + "version": "kjv" +} diff --git a/scripture/kjv/12/17/23/scripture.md b/scripture/kjv/12/17/23/scripture.md new file mode 100644 index 00000000..a8689840 --- /dev/null +++ b/scripture/kjv/12/17/23/scripture.md @@ -0,0 +1,5 @@ +**John 15:16** + +16 Ye have not chosen me, but I have chosen you, and ordained you, that ye should go and bring forth fruit, and that your fruit should remain: that whatsoever ye shall ask of the Father in my name, he may give it you. + +[Sunday 17-December, 2023](https://getbible.life/kjv/John/15/16) diff --git a/scripture/kjv/12/17/23/scripture.tg b/scripture/kjv/12/17/23/scripture.tg new file mode 100644 index 00000000..e9cbcfcb --- /dev/null +++ b/scripture/kjv/12/17/23/scripture.tg @@ -0,0 +1,4 @@ +John 15:16 +16 Ye have not chosen me, but I have chosen you, and ordained you, that ye should go and bring forth fruit, and that your fruit should remain: that whatsoever ye shall ask of the Father in my name, he may give it you. + +Sunday 17-December, 2023 diff --git a/scripture/kjv/12/17/23/scripture.tg.id b/scripture/kjv/12/17/23/scripture.tg.id new file mode 100644 index 00000000..98a603ee --- /dev/null +++ b/scripture/kjv/12/17/23/scripture.tg.id @@ -0,0 +1 @@ +1170 diff --git a/scripture/kjv/12/17/23/scripture.today b/scripture/kjv/12/17/23/scripture.today new file mode 100644 index 00000000..db506959 --- /dev/null +++ b/scripture/kjv/12/17/23/scripture.today @@ -0,0 +1 @@ +43 15:16 diff --git a/scripture/kjv/12/17/24/scripture.html b/scripture/kjv/12/17/24/scripture.html new file mode 100644 index 00000000..c6c9c5c9 --- /dev/null +++ b/scripture/kjv/12/17/24/scripture.html @@ -0,0 +1,3 @@ +Isaiah 11:6-9
+6 The wolf also shall dwell with the lamb, and the leopard shall lie down with the kid; and the calf and the young lion and the fatling together; and a little child shall lead them. 7 And the cow and the bear shall feed; their young ones shall lie down together: and the lion shall eat straw like the ox. 8 And the sucking child shall play on the hole of the asp, and the weaned child shall put his hand on the cockatrice’ den. 9 They shall not hurt nor destroy in all my holy mountain: for the earth shall be full of the knowledge of the Lord, as the waters cover the sea.

+Tuesday 17-December, 2024 diff --git a/scripture/kjv/12/17/24/scripture.json b/scripture/kjv/12/17/24/scripture.json new file mode 100644 index 00000000..e2c75abc --- /dev/null +++ b/scripture/kjv/12/17/24/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "Isaiah", + "chapter": "11", + "date": "Tuesday 17-December, 2024", + "getbible": "https://getbible.life/kjv/Isaiah/11/6-9", + "name": "Isaiah 11:6-9", + "scripture": [ + { + "nr": "6", + "text": "The wolf also shall dwell with the lamb, and the leopard shall lie down with the kid; and the calf and the young lion and the fatling together; and a little child shall lead them." + }, + { + "nr": "7", + "text": "And the cow and the bear shall feed; their young ones shall lie down together: and the lion shall eat straw like the ox." + }, + { + "nr": "8", + "text": "And the sucking child shall play on the hole of the asp, and the weaned child shall put his hand on the cockatrice’ den." + }, + { + "nr": "9", + "text": "They shall not hurt nor destroy in all my holy mountain: for the earth shall be full of the knowledge of the Lord, as the waters cover the sea." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6-9", + "version": "kjv" +} diff --git a/scripture/kjv/12/17/24/scripture.md b/scripture/kjv/12/17/24/scripture.md new file mode 100644 index 00000000..4eb2e62f --- /dev/null +++ b/scripture/kjv/12/17/24/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 11:6-9** + +6 The wolf also shall dwell with the lamb, and the leopard shall lie down with the kid; and the calf and the young lion and the fatling together; and a little child shall lead them. 7 And the cow and the bear shall feed; their young ones shall lie down together: and the lion shall eat straw like the ox. 8 And the sucking child shall play on the hole of the asp, and the weaned child shall put his hand on the cockatrice’ den. 9 They shall not hurt nor destroy in all my holy mountain: for the earth shall be full of the knowledge of the Lord, as the waters cover the sea. + +[Tuesday 17-December, 2024](https://getbible.life/kjv/Isaiah/11/6-9) diff --git a/scripture/kjv/12/17/24/scripture.tg b/scripture/kjv/12/17/24/scripture.tg new file mode 100644 index 00000000..9ec6e144 --- /dev/null +++ b/scripture/kjv/12/17/24/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 11:6-9 +6 The wolf also shall dwell with the lamb, and the leopard shall lie down with the kid; and the calf and the young lion and the fatling together; and a little child shall lead them. 7 And the cow and the bear shall feed; their young ones shall lie down together: and the lion shall eat straw like the ox. 8 And the sucking child shall play on the hole of the asp, and the weaned child shall put his hand on the cockatrice’ den. 9 They shall not hurt nor destroy in all my holy mountain: for the earth shall be full of the knowledge of the Lord, as the waters cover the sea. + +Tuesday 17-December, 2024 diff --git a/scripture/kjv/12/17/24/scripture.tg.id b/scripture/kjv/12/17/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/17/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/17/24/scripture.today b/scripture/kjv/12/17/24/scripture.today new file mode 100644 index 00000000..25caaef4 --- /dev/null +++ b/scripture/kjv/12/17/24/scripture.today @@ -0,0 +1 @@ +23 11:6-9 diff --git a/scripture/kjv/12/17/25/scripture.html b/scripture/kjv/12/17/25/scripture.html new file mode 100644 index 00000000..8df85442 --- /dev/null +++ b/scripture/kjv/12/17/25/scripture.html @@ -0,0 +1,3 @@ +Isaiah 45:2
+2 I will go before thee, and make the crooked places straight: I will break in pieces the gates of brass, and cut in sunder the bars of iron:

+Wednesday 17-December, 2025 diff --git a/scripture/kjv/12/17/25/scripture.json b/scripture/kjv/12/17/25/scripture.json new file mode 100644 index 00000000..d83d45eb --- /dev/null +++ b/scripture/kjv/12/17/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "45", + "date": "Wednesday 17-December, 2025", + "getbible": "https://getbible.life/kjv/Isaiah/45/2", + "name": "Isaiah 45:2", + "scripture": [ + { + "nr": "2", + "text": "I will go before thee, and make the crooked places straight: I will break in pieces the gates of brass, and cut in sunder the bars of iron:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "2", + "version": "kjv" +} diff --git a/scripture/kjv/12/17/25/scripture.md b/scripture/kjv/12/17/25/scripture.md new file mode 100644 index 00000000..2e25d923 --- /dev/null +++ b/scripture/kjv/12/17/25/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 45:2** + +2 I will go before thee, and make the crooked places straight: I will break in pieces the gates of brass, and cut in sunder the bars of iron: + +[Wednesday 17-December, 2025](https://getbible.life/kjv/Isaiah/45/2) diff --git a/scripture/kjv/12/17/25/scripture.tg b/scripture/kjv/12/17/25/scripture.tg new file mode 100644 index 00000000..16afcade --- /dev/null +++ b/scripture/kjv/12/17/25/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 45:2 +2 I will go before thee, and make the crooked places straight: I will break in pieces the gates of brass, and cut in sunder the bars of iron: + +Wednesday 17-December, 2025 diff --git a/scripture/kjv/12/17/25/scripture.tg.id b/scripture/kjv/12/17/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/17/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/17/25/scripture.today b/scripture/kjv/12/17/25/scripture.today new file mode 100644 index 00000000..896176a7 --- /dev/null +++ b/scripture/kjv/12/17/25/scripture.today @@ -0,0 +1 @@ +23 45:2 diff --git a/scripture/kjv/12/18/22/scripture.html b/scripture/kjv/12/18/22/scripture.html new file mode 100644 index 00000000..5f0e5216 --- /dev/null +++ b/scripture/kjv/12/18/22/scripture.html @@ -0,0 +1,3 @@ +Proverbs 29:15
+15 The rod and reproof give wisdom: but a child left to himself bringeth his mother to shame.

+Sunday 18-December, 2022 diff --git a/scripture/kjv/12/18/22/scripture.json b/scripture/kjv/12/18/22/scripture.json new file mode 100644 index 00000000..adb512b3 --- /dev/null +++ b/scripture/kjv/12/18/22/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Sunday 18-December, 2022", + "name": "Proverbs 29:15", + "scripture": [ + { + "nr": "15", + "text": "The rod and reproof give wisdom: but a child left to himself bringeth his mother to shame." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/12/18/22/scripture.md b/scripture/kjv/12/18/22/scripture.md new file mode 100644 index 00000000..730bfd5b --- /dev/null +++ b/scripture/kjv/12/18/22/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 29:15** + +15 The rod and reproof give wisdom: but a child left to himself bringeth his mother to shame. + +[Sunday 18-December, 2022](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/12/18/22/scripture.tg b/scripture/kjv/12/18/22/scripture.tg new file mode 100644 index 00000000..835c6918 --- /dev/null +++ b/scripture/kjv/12/18/22/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 29:15 +15 The rod and reproof give wisdom: but a child left to himself bringeth his mother to shame. + +Sunday 18-December, 2022 diff --git a/scripture/kjv/12/18/22/scripture.today b/scripture/kjv/12/18/22/scripture.today new file mode 100644 index 00000000..0c29838c --- /dev/null +++ b/scripture/kjv/12/18/22/scripture.today @@ -0,0 +1 @@ +20 29:15 diff --git a/scripture/kjv/12/18/23/scripture.html b/scripture/kjv/12/18/23/scripture.html new file mode 100644 index 00000000..b594d3a1 --- /dev/null +++ b/scripture/kjv/12/18/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 42:5
+5 Why art thou cast down, O my soul? and why art thou disquieted in me? hope thou in God: for I shall yet praise him for the help of his countenance.

+Monday 18-December, 2023 diff --git a/scripture/kjv/12/18/23/scripture.json b/scripture/kjv/12/18/23/scripture.json new file mode 100644 index 00000000..220ffbb5 --- /dev/null +++ b/scripture/kjv/12/18/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "42", + "date": "Monday 18-December, 2023", + "getbible": "https://getbible.life/kjv/Psalms/42/5", + "name": "Psalms 42:5", + "scripture": [ + { + "nr": "5", + "text": "Why art thou cast down, O my soul? and why art thou disquieted in me? hope thou in God: for I shall yet praise him for the help of his countenance." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "5", + "version": "kjv" +} diff --git a/scripture/kjv/12/18/23/scripture.md b/scripture/kjv/12/18/23/scripture.md new file mode 100644 index 00000000..1b8281f5 --- /dev/null +++ b/scripture/kjv/12/18/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 42:5** + +5 Why art thou cast down, O my soul? and why art thou disquieted in me? hope thou in God: for I shall yet praise him for the help of his countenance. + +[Monday 18-December, 2023](https://getbible.life/kjv/Psalms/42/5) diff --git a/scripture/kjv/12/18/23/scripture.tg b/scripture/kjv/12/18/23/scripture.tg new file mode 100644 index 00000000..88b1560a --- /dev/null +++ b/scripture/kjv/12/18/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 42:5 +5 Why art thou cast down, O my soul? and why art thou disquieted in me? hope thou in God: for I shall yet praise him for the help of his countenance. + +Monday 18-December, 2023 diff --git a/scripture/kjv/12/18/23/scripture.tg.id b/scripture/kjv/12/18/23/scripture.tg.id new file mode 100644 index 00000000..75fccd69 --- /dev/null +++ b/scripture/kjv/12/18/23/scripture.tg.id @@ -0,0 +1 @@ +1171 diff --git a/scripture/kjv/12/18/23/scripture.today b/scripture/kjv/12/18/23/scripture.today new file mode 100644 index 00000000..9468d4f3 --- /dev/null +++ b/scripture/kjv/12/18/23/scripture.today @@ -0,0 +1 @@ +19 42:5 diff --git a/scripture/kjv/12/18/24/scripture.html b/scripture/kjv/12/18/24/scripture.html new file mode 100644 index 00000000..4dbc7232 --- /dev/null +++ b/scripture/kjv/12/18/24/scripture.html @@ -0,0 +1,3 @@ +Acts 4:14
+14 And beholding the man which was healed standing with them, they could say nothing against it.

+Wednesday 18-December, 2024 diff --git a/scripture/kjv/12/18/24/scripture.json b/scripture/kjv/12/18/24/scripture.json new file mode 100644 index 00000000..0493be54 --- /dev/null +++ b/scripture/kjv/12/18/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Acts", + "chapter": "4", + "date": "Wednesday 18-December, 2024", + "getbible": "https://getbible.life/kjv/Acts/4/14", + "name": "Acts 4:14", + "scripture": [ + { + "nr": "14", + "text": "And beholding the man which was healed standing with them, they could say nothing against it." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/12/18/24/scripture.md b/scripture/kjv/12/18/24/scripture.md new file mode 100644 index 00000000..e7f057d8 --- /dev/null +++ b/scripture/kjv/12/18/24/scripture.md @@ -0,0 +1,5 @@ +**Acts 4:14** + +14 And beholding the man which was healed standing with them, they could say nothing against it. + +[Wednesday 18-December, 2024](https://getbible.life/kjv/Acts/4/14) diff --git a/scripture/kjv/12/18/24/scripture.tg b/scripture/kjv/12/18/24/scripture.tg new file mode 100644 index 00000000..11612565 --- /dev/null +++ b/scripture/kjv/12/18/24/scripture.tg @@ -0,0 +1,4 @@ +Acts 4:14 +14 And beholding the man which was healed standing with them, they could say nothing against it. + +Wednesday 18-December, 2024 diff --git a/scripture/kjv/12/18/24/scripture.tg.id b/scripture/kjv/12/18/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/18/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/18/24/scripture.today b/scripture/kjv/12/18/24/scripture.today new file mode 100644 index 00000000..ac9433a8 --- /dev/null +++ b/scripture/kjv/12/18/24/scripture.today @@ -0,0 +1 @@ +44 4:14 diff --git a/scripture/kjv/12/18/25/scripture.html b/scripture/kjv/12/18/25/scripture.html new file mode 100644 index 00000000..3528aa35 --- /dev/null +++ b/scripture/kjv/12/18/25/scripture.html @@ -0,0 +1,3 @@ +Amos 5:10
+10 They hate him that rebuketh in the gate, and they abhor him that speaketh uprightly.

+Thursday 18-December, 2025 diff --git a/scripture/kjv/12/18/25/scripture.json b/scripture/kjv/12/18/25/scripture.json new file mode 100644 index 00000000..b25d7152 --- /dev/null +++ b/scripture/kjv/12/18/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Amos", + "chapter": "5", + "date": "Thursday 18-December, 2025", + "getbible": "https://getbible.life/kjv/Amos/5/10", + "name": "Amos 5:10", + "scripture": [ + { + "nr": "10", + "text": "They hate him that rebuketh in the gate, and they abhor him that speaketh uprightly." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10", + "version": "kjv" +} diff --git a/scripture/kjv/12/18/25/scripture.md b/scripture/kjv/12/18/25/scripture.md new file mode 100644 index 00000000..175aad79 --- /dev/null +++ b/scripture/kjv/12/18/25/scripture.md @@ -0,0 +1,5 @@ +**Amos 5:10** + +10 They hate him that rebuketh in the gate, and they abhor him that speaketh uprightly. + +[Thursday 18-December, 2025](https://getbible.life/kjv/Amos/5/10) diff --git a/scripture/kjv/12/18/25/scripture.tg b/scripture/kjv/12/18/25/scripture.tg new file mode 100644 index 00000000..357b0054 --- /dev/null +++ b/scripture/kjv/12/18/25/scripture.tg @@ -0,0 +1,4 @@ +Amos 5:10 +10 They hate him that rebuketh in the gate, and they abhor him that speaketh uprightly. + +Thursday 18-December, 2025 diff --git a/scripture/kjv/12/18/25/scripture.tg.id b/scripture/kjv/12/18/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/18/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/18/25/scripture.today b/scripture/kjv/12/18/25/scripture.today new file mode 100644 index 00000000..4bbbe63e --- /dev/null +++ b/scripture/kjv/12/18/25/scripture.today @@ -0,0 +1 @@ +30 5:10 diff --git a/scripture/kjv/12/19/22/scripture.html b/scripture/kjv/12/19/22/scripture.html new file mode 100644 index 00000000..ad21c9fd --- /dev/null +++ b/scripture/kjv/12/19/22/scripture.html @@ -0,0 +1,3 @@ +Hebrews 12:5-6
+5 And ye have forgotten the exhortation which speaketh unto you as unto children, My son, despise not thou the chastening of the Lord, nor faint when thou art rebuked of him: 6 For whom the Lord loveth he chasteneth, and scourgeth every son whom he receiveth.

+Monday 19-December, 2022 diff --git a/scripture/kjv/12/19/22/scripture.json b/scripture/kjv/12/19/22/scripture.json new file mode 100644 index 00000000..fb4e26f3 --- /dev/null +++ b/scripture/kjv/12/19/22/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Monday 19-December, 2022", + "name": "Hebrews 12:5-6", + "scripture": [ + { + "nr": "5", + "text": "And ye have forgotten the exhortation which speaketh unto you as unto children, My son, despise not thou the chastening of the Lord, nor faint when thou art rebuked of him:" + }, + { + "nr": "6", + "text": "For whom the Lord loveth he chasteneth, and scourgeth every son whom he receiveth." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/12/19/22/scripture.md b/scripture/kjv/12/19/22/scripture.md new file mode 100644 index 00000000..cb054fba --- /dev/null +++ b/scripture/kjv/12/19/22/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 12:5-6** + +5 And ye have forgotten the exhortation which speaketh unto you as unto children, My son, despise not thou the chastening of the Lord, nor faint when thou art rebuked of him: 6 For whom the Lord loveth he chasteneth, and scourgeth every son whom he receiveth. + +[Monday 19-December, 2022](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/12/19/22/scripture.tg b/scripture/kjv/12/19/22/scripture.tg new file mode 100644 index 00000000..3517f1ef --- /dev/null +++ b/scripture/kjv/12/19/22/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 12:5-6 +5 And ye have forgotten the exhortation which speaketh unto you as unto children, My son, despise not thou the chastening of the Lord, nor faint when thou art rebuked of him: 6 For whom the Lord loveth he chasteneth, and scourgeth every son whom he receiveth. + +Monday 19-December, 2022 diff --git a/scripture/kjv/12/19/22/scripture.today b/scripture/kjv/12/19/22/scripture.today new file mode 100644 index 00000000..9289d057 --- /dev/null +++ b/scripture/kjv/12/19/22/scripture.today @@ -0,0 +1 @@ +58 12:5-6 diff --git a/scripture/kjv/12/19/23/scripture.html b/scripture/kjv/12/19/23/scripture.html new file mode 100644 index 00000000..a5046fad --- /dev/null +++ b/scripture/kjv/12/19/23/scripture.html @@ -0,0 +1,3 @@ +Ephesians 2:6-7
+6 And hath raised us up together, and made us sit together in heavenly places in Christ Jesus: 7 That in the ages to come he might shew the exceeding riches of his grace in his kindness toward us through Christ Jesus.

+Tuesday 19-December, 2023 diff --git a/scripture/kjv/12/19/23/scripture.json b/scripture/kjv/12/19/23/scripture.json new file mode 100644 index 00000000..a7575aae --- /dev/null +++ b/scripture/kjv/12/19/23/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Ephesians", + "chapter": "2", + "date": "Tuesday 19-December, 2023", + "getbible": "https://getbible.life/kjv/Ephesians/2/6-7", + "name": "Ephesians 2:6-7", + "scripture": [ + { + "nr": "6", + "text": "And hath raised us up together, and made us sit together in heavenly places in Christ Jesus:" + }, + { + "nr": "7", + "text": "That in the ages to come he might shew the exceeding riches of his grace in his kindness toward us through Christ Jesus." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6-7", + "version": "kjv" +} diff --git a/scripture/kjv/12/19/23/scripture.md b/scripture/kjv/12/19/23/scripture.md new file mode 100644 index 00000000..5bfdfc1d --- /dev/null +++ b/scripture/kjv/12/19/23/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 2:6-7** + +6 And hath raised us up together, and made us sit together in heavenly places in Christ Jesus: 7 That in the ages to come he might shew the exceeding riches of his grace in his kindness toward us through Christ Jesus. + +[Tuesday 19-December, 2023](https://getbible.life/kjv/Ephesians/2/6-7) diff --git a/scripture/kjv/12/19/23/scripture.tg b/scripture/kjv/12/19/23/scripture.tg new file mode 100644 index 00000000..9c916c02 --- /dev/null +++ b/scripture/kjv/12/19/23/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 2:6-7 +6 And hath raised us up together, and made us sit together in heavenly places in Christ Jesus: 7 That in the ages to come he might shew the exceeding riches of his grace in his kindness toward us through Christ Jesus. + +Tuesday 19-December, 2023 diff --git a/scripture/kjv/12/19/23/scripture.tg.id b/scripture/kjv/12/19/23/scripture.tg.id new file mode 100644 index 00000000..15c1c7c6 --- /dev/null +++ b/scripture/kjv/12/19/23/scripture.tg.id @@ -0,0 +1 @@ +1172 diff --git a/scripture/kjv/12/19/23/scripture.today b/scripture/kjv/12/19/23/scripture.today new file mode 100644 index 00000000..12a1710b --- /dev/null +++ b/scripture/kjv/12/19/23/scripture.today @@ -0,0 +1 @@ +49 2:6-7 diff --git a/scripture/kjv/12/19/24/scripture.html b/scripture/kjv/12/19/24/scripture.html new file mode 100644 index 00000000..3d1432e3 --- /dev/null +++ b/scripture/kjv/12/19/24/scripture.html @@ -0,0 +1,3 @@ +Philippians 2:29
+29 Receive him therefore in the Lord with all gladness; and hold such in reputation:

+Thursday 19-December, 2024 diff --git a/scripture/kjv/12/19/24/scripture.json b/scripture/kjv/12/19/24/scripture.json new file mode 100644 index 00000000..9d769bd3 --- /dev/null +++ b/scripture/kjv/12/19/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Philippians", + "chapter": "2", + "date": "Thursday 19-December, 2024", + "getbible": "https://getbible.life/kjv/Philippians/2/29", + "name": "Philippians 2:29", + "scripture": [ + { + "nr": "29", + "text": "Receive him therefore in the Lord with all gladness; and hold such in reputation:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "29", + "version": "kjv" +} diff --git a/scripture/kjv/12/19/24/scripture.md b/scripture/kjv/12/19/24/scripture.md new file mode 100644 index 00000000..95c95dd8 --- /dev/null +++ b/scripture/kjv/12/19/24/scripture.md @@ -0,0 +1,5 @@ +**Philippians 2:29** + +29 Receive him therefore in the Lord with all gladness; and hold such in reputation: + +[Thursday 19-December, 2024](https://getbible.life/kjv/Philippians/2/29) diff --git a/scripture/kjv/12/19/24/scripture.tg b/scripture/kjv/12/19/24/scripture.tg new file mode 100644 index 00000000..562a826b --- /dev/null +++ b/scripture/kjv/12/19/24/scripture.tg @@ -0,0 +1,4 @@ +Philippians 2:29 +29 Receive him therefore in the Lord with all gladness; and hold such in reputation: + +Thursday 19-December, 2024 diff --git a/scripture/kjv/12/19/24/scripture.tg.id b/scripture/kjv/12/19/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/19/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/19/24/scripture.today b/scripture/kjv/12/19/24/scripture.today new file mode 100644 index 00000000..f191906b --- /dev/null +++ b/scripture/kjv/12/19/24/scripture.today @@ -0,0 +1 @@ +50 2:29 diff --git a/scripture/kjv/12/19/25/scripture.html b/scripture/kjv/12/19/25/scripture.html new file mode 100644 index 00000000..fb402046 --- /dev/null +++ b/scripture/kjv/12/19/25/scripture.html @@ -0,0 +1,3 @@ +Hebrews 3:12
+12 Take heed, brethren, lest there be in any of you an evil heart of unbelief, in departing from the living God.

+Friday 19-December, 2025 diff --git a/scripture/kjv/12/19/25/scripture.json b/scripture/kjv/12/19/25/scripture.json new file mode 100644 index 00000000..54e5fef5 --- /dev/null +++ b/scripture/kjv/12/19/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Hebrews", + "chapter": "3", + "date": "Friday 19-December, 2025", + "getbible": "https://getbible.life/kjv/Hebrews/3/12", + "name": "Hebrews 3:12", + "scripture": [ + { + "nr": "12", + "text": "Take heed, brethren, lest there be in any of you an evil heart of unbelief, in departing from the living God." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/12/19/25/scripture.md b/scripture/kjv/12/19/25/scripture.md new file mode 100644 index 00000000..6fd8a344 --- /dev/null +++ b/scripture/kjv/12/19/25/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 3:12** + +12 Take heed, brethren, lest there be in any of you an evil heart of unbelief, in departing from the living God. + +[Friday 19-December, 2025](https://getbible.life/kjv/Hebrews/3/12) diff --git a/scripture/kjv/12/19/25/scripture.tg b/scripture/kjv/12/19/25/scripture.tg new file mode 100644 index 00000000..9d328189 --- /dev/null +++ b/scripture/kjv/12/19/25/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 3:12 +12 Take heed, brethren, lest there be in any of you an evil heart of unbelief, in departing from the living God. + +Friday 19-December, 2025 diff --git a/scripture/kjv/12/19/25/scripture.tg.id b/scripture/kjv/12/19/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/19/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/19/25/scripture.today b/scripture/kjv/12/19/25/scripture.today new file mode 100644 index 00000000..a9306734 --- /dev/null +++ b/scripture/kjv/12/19/25/scripture.today @@ -0,0 +1 @@ +58 3:12 diff --git a/scripture/kjv/12/20/22/scripture.html b/scripture/kjv/12/20/22/scripture.html new file mode 100644 index 00000000..73217e50 --- /dev/null +++ b/scripture/kjv/12/20/22/scripture.html @@ -0,0 +1,3 @@ +Galatians 3:28
+28 There is neither Jew nor Greek, there is neither bond nor free, there is neither male nor female: for ye are all one in Christ Jesus.

+Tuesday 20-December, 2022 diff --git a/scripture/kjv/12/20/22/scripture.json b/scripture/kjv/12/20/22/scripture.json new file mode 100644 index 00000000..30999bfe --- /dev/null +++ b/scripture/kjv/12/20/22/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Tuesday 20-December, 2022", + "name": "Galatians 3:28", + "scripture": [ + { + "nr": "28", + "text": "There is neither Jew nor Greek, there is neither bond nor free, there is neither male nor female: for ye are all one in Christ Jesus." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/12/20/22/scripture.md b/scripture/kjv/12/20/22/scripture.md new file mode 100644 index 00000000..bd3d7d6f --- /dev/null +++ b/scripture/kjv/12/20/22/scripture.md @@ -0,0 +1,5 @@ +**Galatians 3:28** + +28 There is neither Jew nor Greek, there is neither bond nor free, there is neither male nor female: for ye are all one in Christ Jesus. + +[Tuesday 20-December, 2022](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/12/20/22/scripture.tg b/scripture/kjv/12/20/22/scripture.tg new file mode 100644 index 00000000..c7b3b587 --- /dev/null +++ b/scripture/kjv/12/20/22/scripture.tg @@ -0,0 +1,4 @@ +Galatians 3:28 +28 There is neither Jew nor Greek, there is neither bond nor free, there is neither male nor female: for ye are all one in Christ Jesus. + +Tuesday 20-December, 2022 diff --git a/scripture/kjv/12/20/22/scripture.today b/scripture/kjv/12/20/22/scripture.today new file mode 100644 index 00000000..1d54a358 --- /dev/null +++ b/scripture/kjv/12/20/22/scripture.today @@ -0,0 +1 @@ +48 3:28 diff --git a/scripture/kjv/12/20/23/scripture.html b/scripture/kjv/12/20/23/scripture.html new file mode 100644 index 00000000..7de2d14e --- /dev/null +++ b/scripture/kjv/12/20/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 46:7
+7 The Lord of hosts is with us; the God of Jacob is our refuge. Selah.

+Wednesday 20-December, 2023 diff --git a/scripture/kjv/12/20/23/scripture.json b/scripture/kjv/12/20/23/scripture.json new file mode 100644 index 00000000..6302e21b --- /dev/null +++ b/scripture/kjv/12/20/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "46", + "date": "Wednesday 20-December, 2023", + "getbible": "https://getbible.life/kjv/Psalms/46/7", + "name": "Psalms 46:7", + "scripture": [ + { + "nr": "7", + "text": "The Lord of hosts is with us; the God of Jacob is our refuge. Selah." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7", + "version": "kjv" +} diff --git a/scripture/kjv/12/20/23/scripture.md b/scripture/kjv/12/20/23/scripture.md new file mode 100644 index 00000000..bf9951de --- /dev/null +++ b/scripture/kjv/12/20/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 46:7** + +7 The Lord of hosts is with us; the God of Jacob is our refuge. Selah. + +[Wednesday 20-December, 2023](https://getbible.life/kjv/Psalms/46/7) diff --git a/scripture/kjv/12/20/23/scripture.tg b/scripture/kjv/12/20/23/scripture.tg new file mode 100644 index 00000000..aa6d33f1 --- /dev/null +++ b/scripture/kjv/12/20/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 46:7 +7 The Lord of hosts is with us; the God of Jacob is our refuge. Selah. + +Wednesday 20-December, 2023 diff --git a/scripture/kjv/12/20/23/scripture.tg.id b/scripture/kjv/12/20/23/scripture.tg.id new file mode 100644 index 00000000..6e64a914 --- /dev/null +++ b/scripture/kjv/12/20/23/scripture.tg.id @@ -0,0 +1 @@ +1173 diff --git a/scripture/kjv/12/20/23/scripture.today b/scripture/kjv/12/20/23/scripture.today new file mode 100644 index 00000000..ea2c3e24 --- /dev/null +++ b/scripture/kjv/12/20/23/scripture.today @@ -0,0 +1 @@ +19 46:7 diff --git a/scripture/kjv/12/20/24/scripture.html b/scripture/kjv/12/20/24/scripture.html new file mode 100644 index 00000000..24dbe610 --- /dev/null +++ b/scripture/kjv/12/20/24/scripture.html @@ -0,0 +1,3 @@ +John 11:25
+25 Jesus said unto her, I am the resurrection, and the life: he that believeth in me, though he were dead, yet shall he live:

+Friday 20-December, 2024 diff --git a/scripture/kjv/12/20/24/scripture.json b/scripture/kjv/12/20/24/scripture.json new file mode 100644 index 00000000..8b50b9a5 --- /dev/null +++ b/scripture/kjv/12/20/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "11", + "date": "Friday 20-December, 2024", + "getbible": "https://getbible.life/kjv/John/11/25", + "name": "John 11:25", + "scripture": [ + { + "nr": "25", + "text": "Jesus said unto her, I am the resurrection, and the life: he that believeth in me, though he were dead, yet shall he live:" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "25", + "version": "kjv" +} diff --git a/scripture/kjv/12/20/24/scripture.md b/scripture/kjv/12/20/24/scripture.md new file mode 100644 index 00000000..a9c924d7 --- /dev/null +++ b/scripture/kjv/12/20/24/scripture.md @@ -0,0 +1,5 @@ +**John 11:25** + +25 Jesus said unto her, I am the resurrection, and the life: he that believeth in me, though he were dead, yet shall he live: + +[Friday 20-December, 2024](https://getbible.life/kjv/John/11/25) diff --git a/scripture/kjv/12/20/24/scripture.tg b/scripture/kjv/12/20/24/scripture.tg new file mode 100644 index 00000000..7de18ea8 --- /dev/null +++ b/scripture/kjv/12/20/24/scripture.tg @@ -0,0 +1,4 @@ +John 11:25 +25 Jesus said unto her, I am the resurrection, and the life: he that believeth in me, though he were dead, yet shall he live: + +Friday 20-December, 2024 diff --git a/scripture/kjv/12/20/24/scripture.tg.id b/scripture/kjv/12/20/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/20/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/20/24/scripture.today b/scripture/kjv/12/20/24/scripture.today new file mode 100644 index 00000000..34e5ae1f --- /dev/null +++ b/scripture/kjv/12/20/24/scripture.today @@ -0,0 +1 @@ +43 11:25 diff --git a/scripture/kjv/12/20/25/scripture.html b/scripture/kjv/12/20/25/scripture.html new file mode 100644 index 00000000..2fe59ba9 --- /dev/null +++ b/scripture/kjv/12/20/25/scripture.html @@ -0,0 +1,3 @@ +Daniel 10:18-19
+18 Then there came again and touched me one like the appearance of a man, and he strengthened me, 19 And said, O man greatly beloved, fear not: peace be unto thee, be strong, yea, be strong. And when he had spoken unto me, I was strengthened, and said, Let my lord speak; for thou hast strengthened me.

+Saturday 20-December, 2025 diff --git a/scripture/kjv/12/20/25/scripture.json b/scripture/kjv/12/20/25/scripture.json new file mode 100644 index 00000000..c22cb8d7 --- /dev/null +++ b/scripture/kjv/12/20/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Daniel", + "chapter": "10", + "date": "Saturday 20-December, 2025", + "getbible": "https://getbible.life/kjv/Daniel/10/18-19", + "name": "Daniel 10:18-19", + "scripture": [ + { + "nr": "18", + "text": "Then there came again and touched me one like the appearance of a man, and he strengthened me," + }, + { + "nr": "19", + "text": "And said, O man greatly beloved, fear not: peace be unto thee, be strong, yea, be strong. And when he had spoken unto me, I was strengthened, and said, Let my lord speak; for thou hast strengthened me." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18-19", + "version": "kjv" +} diff --git a/scripture/kjv/12/20/25/scripture.md b/scripture/kjv/12/20/25/scripture.md new file mode 100644 index 00000000..c573a025 --- /dev/null +++ b/scripture/kjv/12/20/25/scripture.md @@ -0,0 +1,5 @@ +**Daniel 10:18-19** + +18 Then there came again and touched me one like the appearance of a man, and he strengthened me, 19 And said, O man greatly beloved, fear not: peace be unto thee, be strong, yea, be strong. And when he had spoken unto me, I was strengthened, and said, Let my lord speak; for thou hast strengthened me. + +[Saturday 20-December, 2025](https://getbible.life/kjv/Daniel/10/18-19) diff --git a/scripture/kjv/12/20/25/scripture.tg b/scripture/kjv/12/20/25/scripture.tg new file mode 100644 index 00000000..6074aad8 --- /dev/null +++ b/scripture/kjv/12/20/25/scripture.tg @@ -0,0 +1,4 @@ +Daniel 10:18-19 +18 Then there came again and touched me one like the appearance of a man, and he strengthened me, 19 And said, O man greatly beloved, fear not: peace be unto thee, be strong, yea, be strong. And when he had spoken unto me, I was strengthened, and said, Let my lord speak; for thou hast strengthened me. + +Saturday 20-December, 2025 diff --git a/scripture/kjv/12/20/25/scripture.tg.id b/scripture/kjv/12/20/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/20/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/20/25/scripture.today b/scripture/kjv/12/20/25/scripture.today new file mode 100644 index 00000000..8dbc9ee7 --- /dev/null +++ b/scripture/kjv/12/20/25/scripture.today @@ -0,0 +1 @@ +27 10:18-19 diff --git a/scripture/kjv/12/21/22/scripture.html b/scripture/kjv/12/21/22/scripture.html new file mode 100644 index 00000000..552a7f1f --- /dev/null +++ b/scripture/kjv/12/21/22/scripture.html @@ -0,0 +1,3 @@ +Psalms 31:5
+5 Into thine hand I commit my spirit: thou hast redeemed me, O Lord God of truth.

+Wednesday 21-December, 2022 diff --git a/scripture/kjv/12/21/22/scripture.json b/scripture/kjv/12/21/22/scripture.json new file mode 100644 index 00000000..1ea5846a --- /dev/null +++ b/scripture/kjv/12/21/22/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Wednesday 21-December, 2022", + "name": "Psalms 31:5", + "scripture": [ + { + "nr": "5", + "text": "Into thine hand I commit my spirit: thou hast redeemed me, O Lord God of truth." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/12/21/22/scripture.md b/scripture/kjv/12/21/22/scripture.md new file mode 100644 index 00000000..2726b8f0 --- /dev/null +++ b/scripture/kjv/12/21/22/scripture.md @@ -0,0 +1,5 @@ +**Psalms 31:5** + +5 Into thine hand I commit my spirit: thou hast redeemed me, O Lord God of truth. + +[Wednesday 21-December, 2022](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/12/21/22/scripture.tg b/scripture/kjv/12/21/22/scripture.tg new file mode 100644 index 00000000..0e4784cf --- /dev/null +++ b/scripture/kjv/12/21/22/scripture.tg @@ -0,0 +1,4 @@ +Psalms 31:5 +5 Into thine hand I commit my spirit: thou hast redeemed me, O Lord God of truth. + +Wednesday 21-December, 2022 diff --git a/scripture/kjv/12/21/22/scripture.today b/scripture/kjv/12/21/22/scripture.today new file mode 100644 index 00000000..2dbd03b7 --- /dev/null +++ b/scripture/kjv/12/21/22/scripture.today @@ -0,0 +1 @@ +19 31:5 diff --git a/scripture/kjv/12/21/23/scripture.html b/scripture/kjv/12/21/23/scripture.html new file mode 100644 index 00000000..f7c19df6 --- /dev/null +++ b/scripture/kjv/12/21/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 10:17-18
+17 Lord, thou hast heard the desire of the humble: thou wilt prepare their heart, thou wilt cause thine ear to hear: 18 To judge the fatherless and the oppressed, that the man of the earth may no more oppress.

+Thursday 21-December, 2023 diff --git a/scripture/kjv/12/21/23/scripture.json b/scripture/kjv/12/21/23/scripture.json new file mode 100644 index 00000000..75586d48 --- /dev/null +++ b/scripture/kjv/12/21/23/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Psalms", + "chapter": "10", + "date": "Thursday 21-December, 2023", + "getbible": "https://getbible.life/kjv/Psalms/10/17-18", + "name": "Psalms 10:17-18", + "scripture": [ + { + "nr": "17", + "text": "Lord, thou hast heard the desire of the humble: thou wilt prepare their heart, thou wilt cause thine ear to hear:" + }, + { + "nr": "18", + "text": "To judge the fatherless and the oppressed, that the man of the earth may no more oppress. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17-18", + "version": "kjv" +} diff --git a/scripture/kjv/12/21/23/scripture.md b/scripture/kjv/12/21/23/scripture.md new file mode 100644 index 00000000..d8541dfa --- /dev/null +++ b/scripture/kjv/12/21/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 10:17-18** + +17 Lord, thou hast heard the desire of the humble: thou wilt prepare their heart, thou wilt cause thine ear to hear: 18 To judge the fatherless and the oppressed, that the man of the earth may no more oppress. + +[Thursday 21-December, 2023](https://getbible.life/kjv/Psalms/10/17-18) diff --git a/scripture/kjv/12/21/23/scripture.tg b/scripture/kjv/12/21/23/scripture.tg new file mode 100644 index 00000000..07c385e9 --- /dev/null +++ b/scripture/kjv/12/21/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 10:17-18 +17 Lord, thou hast heard the desire of the humble: thou wilt prepare their heart, thou wilt cause thine ear to hear: 18 To judge the fatherless and the oppressed, that the man of the earth may no more oppress. + +Thursday 21-December, 2023 diff --git a/scripture/kjv/12/21/23/scripture.tg.id b/scripture/kjv/12/21/23/scripture.tg.id new file mode 100644 index 00000000..e7ff19bd --- /dev/null +++ b/scripture/kjv/12/21/23/scripture.tg.id @@ -0,0 +1 @@ +1174 diff --git a/scripture/kjv/12/21/23/scripture.today b/scripture/kjv/12/21/23/scripture.today new file mode 100644 index 00000000..92202998 --- /dev/null +++ b/scripture/kjv/12/21/23/scripture.today @@ -0,0 +1 @@ +19 10:17-18 diff --git a/scripture/kjv/12/21/24/scripture.html b/scripture/kjv/12/21/24/scripture.html new file mode 100644 index 00000000..db0e3e7c --- /dev/null +++ b/scripture/kjv/12/21/24/scripture.html @@ -0,0 +1,3 @@ +Romans 11:14
+14 If by any means I may provoke to emulation them which are my flesh, and might save some of them.

+Saturday 21-December, 2024 diff --git a/scripture/kjv/12/21/24/scripture.json b/scripture/kjv/12/21/24/scripture.json new file mode 100644 index 00000000..82f07538 --- /dev/null +++ b/scripture/kjv/12/21/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Romans", + "chapter": "11", + "date": "Saturday 21-December, 2024", + "getbible": "https://getbible.life/kjv/Romans/11/14", + "name": "Romans 11:14", + "scripture": [ + { + "nr": "14", + "text": "If by any means I may provoke to emulation them which are my flesh, and might save some of them." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/12/21/24/scripture.md b/scripture/kjv/12/21/24/scripture.md new file mode 100644 index 00000000..b06da116 --- /dev/null +++ b/scripture/kjv/12/21/24/scripture.md @@ -0,0 +1,5 @@ +**Romans 11:14** + +14 If by any means I may provoke to emulation them which are my flesh, and might save some of them. + +[Saturday 21-December, 2024](https://getbible.life/kjv/Romans/11/14) diff --git a/scripture/kjv/12/21/24/scripture.tg b/scripture/kjv/12/21/24/scripture.tg new file mode 100644 index 00000000..7946cdda --- /dev/null +++ b/scripture/kjv/12/21/24/scripture.tg @@ -0,0 +1,4 @@ +Romans 11:14 +14 If by any means I may provoke to emulation them which are my flesh, and might save some of them. + +Saturday 21-December, 2024 diff --git a/scripture/kjv/12/21/24/scripture.tg.id b/scripture/kjv/12/21/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/21/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/21/24/scripture.today b/scripture/kjv/12/21/24/scripture.today new file mode 100644 index 00000000..8d142be4 --- /dev/null +++ b/scripture/kjv/12/21/24/scripture.today @@ -0,0 +1 @@ +45 11:14 diff --git a/scripture/kjv/12/21/25/scripture.html b/scripture/kjv/12/21/25/scripture.html new file mode 100644 index 00000000..30d03c54 --- /dev/null +++ b/scripture/kjv/12/21/25/scripture.html @@ -0,0 +1,3 @@ +Job 19:25-27
+25 For I know that my redeemer liveth, and that he shall stand at the latter day upon the earth: 26 And though after my skin worms destroy this body, yet in my flesh shall I see God: 27 Whom I shall see for myself, and mine eyes shall behold, and not another; though my reins be consumed within me.

+Sunday 21-December, 2025 diff --git a/scripture/kjv/12/21/25/scripture.json b/scripture/kjv/12/21/25/scripture.json new file mode 100644 index 00000000..b080a09b --- /dev/null +++ b/scripture/kjv/12/21/25/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Job", + "chapter": "19", + "date": "Sunday 21-December, 2025", + "getbible": "https://getbible.life/kjv/Job/19/25-27", + "name": "Job 19:25-27", + "scripture": [ + { + "nr": "25", + "text": "For I know that my redeemer liveth, and that he shall stand at the latter day upon the earth:" + }, + { + "nr": "26", + "text": "And though after my skin worms destroy this body, yet in my flesh shall I see God:" + }, + { + "nr": "27", + "text": "Whom I shall see for myself, and mine eyes shall behold, and not another; though my reins be consumed within me." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "25-27", + "version": "kjv" +} diff --git a/scripture/kjv/12/21/25/scripture.md b/scripture/kjv/12/21/25/scripture.md new file mode 100644 index 00000000..c292ae87 --- /dev/null +++ b/scripture/kjv/12/21/25/scripture.md @@ -0,0 +1,5 @@ +**Job 19:25-27** + +25 For I know that my redeemer liveth, and that he shall stand at the latter day upon the earth: 26 And though after my skin worms destroy this body, yet in my flesh shall I see God: 27 Whom I shall see for myself, and mine eyes shall behold, and not another; though my reins be consumed within me. + +[Sunday 21-December, 2025](https://getbible.life/kjv/Job/19/25-27) diff --git a/scripture/kjv/12/21/25/scripture.tg b/scripture/kjv/12/21/25/scripture.tg new file mode 100644 index 00000000..2a7dd927 --- /dev/null +++ b/scripture/kjv/12/21/25/scripture.tg @@ -0,0 +1,4 @@ +Job 19:25-27 +25 For I know that my redeemer liveth, and that he shall stand at the latter day upon the earth: 26 And though after my skin worms destroy this body, yet in my flesh shall I see God: 27 Whom I shall see for myself, and mine eyes shall behold, and not another; though my reins be consumed within me. + +Sunday 21-December, 2025 diff --git a/scripture/kjv/12/21/25/scripture.tg.id b/scripture/kjv/12/21/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/21/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/21/25/scripture.today b/scripture/kjv/12/21/25/scripture.today new file mode 100644 index 00000000..4e5a31f4 --- /dev/null +++ b/scripture/kjv/12/21/25/scripture.today @@ -0,0 +1 @@ +18 19:25-27 diff --git a/scripture/kjv/12/22/22/scripture.html b/scripture/kjv/12/22/22/scripture.html new file mode 100644 index 00000000..61c61dec --- /dev/null +++ b/scripture/kjv/12/22/22/scripture.html @@ -0,0 +1,3 @@ +John 6:38
+38 For I came down from heaven, not to do mine own will, but the will of him that sent me.

+Thursday 22-December, 2022 diff --git a/scripture/kjv/12/22/22/scripture.json b/scripture/kjv/12/22/22/scripture.json new file mode 100644 index 00000000..f458759c --- /dev/null +++ b/scripture/kjv/12/22/22/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Thursday 22-December, 2022", + "name": "John 6:38", + "scripture": [ + { + "nr": "38", + "text": "For I came down from heaven, not to do mine own will, but the will of him that sent me." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/12/22/22/scripture.md b/scripture/kjv/12/22/22/scripture.md new file mode 100644 index 00000000..11a4a0d7 --- /dev/null +++ b/scripture/kjv/12/22/22/scripture.md @@ -0,0 +1,5 @@ +**John 6:38** + +38 For I came down from heaven, not to do mine own will, but the will of him that sent me. + +[Thursday 22-December, 2022](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/12/22/22/scripture.tg b/scripture/kjv/12/22/22/scripture.tg new file mode 100644 index 00000000..3f9b840c --- /dev/null +++ b/scripture/kjv/12/22/22/scripture.tg @@ -0,0 +1,4 @@ +John 6:38 +38 For I came down from heaven, not to do mine own will, but the will of him that sent me. + +Thursday 22-December, 2022 diff --git a/scripture/kjv/12/22/22/scripture.today b/scripture/kjv/12/22/22/scripture.today new file mode 100644 index 00000000..f13a8c2a --- /dev/null +++ b/scripture/kjv/12/22/22/scripture.today @@ -0,0 +1 @@ +43 6:38 diff --git a/scripture/kjv/12/22/23/scripture.html b/scripture/kjv/12/22/23/scripture.html new file mode 100644 index 00000000..4c431107 --- /dev/null +++ b/scripture/kjv/12/22/23/scripture.html @@ -0,0 +1,3 @@ +Mark 14:38
+38 Watch ye and pray, lest ye enter into temptation. The spirit truly is ready, but the flesh is weak.

+Friday 22-December, 2023 diff --git a/scripture/kjv/12/22/23/scripture.json b/scripture/kjv/12/22/23/scripture.json new file mode 100644 index 00000000..e069ee3b --- /dev/null +++ b/scripture/kjv/12/22/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Mark", + "chapter": "14", + "date": "Friday 22-December, 2023", + "getbible": "https://getbible.life/kjv/Mark/14/38", + "name": "Mark 14:38", + "scripture": [ + { + "nr": "38", + "text": "Watch ye and pray, lest ye enter into temptation. The spirit truly is ready, but the flesh is weak." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "38", + "version": "kjv" +} diff --git a/scripture/kjv/12/22/23/scripture.md b/scripture/kjv/12/22/23/scripture.md new file mode 100644 index 00000000..451c5d19 --- /dev/null +++ b/scripture/kjv/12/22/23/scripture.md @@ -0,0 +1,5 @@ +**Mark 14:38** + +38 Watch ye and pray, lest ye enter into temptation. The spirit truly is ready, but the flesh is weak. + +[Friday 22-December, 2023](https://getbible.life/kjv/Mark/14/38) diff --git a/scripture/kjv/12/22/23/scripture.tg b/scripture/kjv/12/22/23/scripture.tg new file mode 100644 index 00000000..4ebe8c8a --- /dev/null +++ b/scripture/kjv/12/22/23/scripture.tg @@ -0,0 +1,4 @@ +Mark 14:38 +38 Watch ye and pray, lest ye enter into temptation. The spirit truly is ready, but the flesh is weak. + +Friday 22-December, 2023 diff --git a/scripture/kjv/12/22/23/scripture.tg.id b/scripture/kjv/12/22/23/scripture.tg.id new file mode 100644 index 00000000..1c509f5b --- /dev/null +++ b/scripture/kjv/12/22/23/scripture.tg.id @@ -0,0 +1 @@ +1175 diff --git a/scripture/kjv/12/22/23/scripture.today b/scripture/kjv/12/22/23/scripture.today new file mode 100644 index 00000000..060dcc0a --- /dev/null +++ b/scripture/kjv/12/22/23/scripture.today @@ -0,0 +1 @@ +41 14:38 diff --git a/scripture/kjv/12/22/24/scripture.html b/scripture/kjv/12/22/24/scripture.html new file mode 100644 index 00000000..80aa2272 --- /dev/null +++ b/scripture/kjv/12/22/24/scripture.html @@ -0,0 +1,3 @@ +Luke 17:9-10
+9 Doth he thank that servant because he did the things that were commanded him? I trow not. 10 So likewise ye, when ye shall have done all those things which are commanded you, say, We are unprofitable servants: we have done that which was our duty to do.

+Sunday 22-December, 2024 diff --git a/scripture/kjv/12/22/24/scripture.json b/scripture/kjv/12/22/24/scripture.json new file mode 100644 index 00000000..8c15d02d --- /dev/null +++ b/scripture/kjv/12/22/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Luke", + "chapter": "17", + "date": "Sunday 22-December, 2024", + "getbible": "https://getbible.life/kjv/Luke/17/9-10", + "name": "Luke 17:9-10", + "scripture": [ + { + "nr": "9", + "text": "Doth he thank that servant because he did the things that were commanded him? I trow not." + }, + { + "nr": "10", + "text": "So likewise ye, when ye shall have done all those things which are commanded you, say, We are unprofitable servants: we have done that which was our duty to do." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9-10", + "version": "kjv" +} diff --git a/scripture/kjv/12/22/24/scripture.md b/scripture/kjv/12/22/24/scripture.md new file mode 100644 index 00000000..ef15467f --- /dev/null +++ b/scripture/kjv/12/22/24/scripture.md @@ -0,0 +1,5 @@ +**Luke 17:9-10** + +9 Doth he thank that servant because he did the things that were commanded him? I trow not. 10 So likewise ye, when ye shall have done all those things which are commanded you, say, We are unprofitable servants: we have done that which was our duty to do. + +[Sunday 22-December, 2024](https://getbible.life/kjv/Luke/17/9-10) diff --git a/scripture/kjv/12/22/24/scripture.tg b/scripture/kjv/12/22/24/scripture.tg new file mode 100644 index 00000000..2f8499c1 --- /dev/null +++ b/scripture/kjv/12/22/24/scripture.tg @@ -0,0 +1,4 @@ +Luke 17:9-10 +9 Doth he thank that servant because he did the things that were commanded him? I trow not. 10 So likewise ye, when ye shall have done all those things which are commanded you, say, We are unprofitable servants: we have done that which was our duty to do. + +Sunday 22-December, 2024 diff --git a/scripture/kjv/12/22/24/scripture.tg.id b/scripture/kjv/12/22/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/22/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/22/24/scripture.today b/scripture/kjv/12/22/24/scripture.today new file mode 100644 index 00000000..2eb36857 --- /dev/null +++ b/scripture/kjv/12/22/24/scripture.today @@ -0,0 +1 @@ +42 17:9-10 diff --git a/scripture/kjv/12/22/25/scripture.html b/scripture/kjv/12/22/25/scripture.html new file mode 100644 index 00000000..2055ed74 --- /dev/null +++ b/scripture/kjv/12/22/25/scripture.html @@ -0,0 +1,3 @@ +John 7:7
+7 The world cannot hate you; but me it hateth, because I testify of it, that the works thereof are evil.

+Monday 22-December, 2025 diff --git a/scripture/kjv/12/22/25/scripture.json b/scripture/kjv/12/22/25/scripture.json new file mode 100644 index 00000000..d413487a --- /dev/null +++ b/scripture/kjv/12/22/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "7", + "date": "Monday 22-December, 2025", + "getbible": "https://getbible.life/kjv/John/7/7", + "name": "John 7:7", + "scripture": [ + { + "nr": "7", + "text": "The world cannot hate you; but me it hateth, because I testify of it, that the works thereof are evil." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "7", + "version": "kjv" +} diff --git a/scripture/kjv/12/22/25/scripture.md b/scripture/kjv/12/22/25/scripture.md new file mode 100644 index 00000000..c8b421ef --- /dev/null +++ b/scripture/kjv/12/22/25/scripture.md @@ -0,0 +1,5 @@ +**John 7:7** + +7 The world cannot hate you; but me it hateth, because I testify of it, that the works thereof are evil. + +[Monday 22-December, 2025](https://getbible.life/kjv/John/7/7) diff --git a/scripture/kjv/12/22/25/scripture.tg b/scripture/kjv/12/22/25/scripture.tg new file mode 100644 index 00000000..ad1f64d4 --- /dev/null +++ b/scripture/kjv/12/22/25/scripture.tg @@ -0,0 +1,4 @@ +John 7:7 +7 The world cannot hate you; but me it hateth, because I testify of it, that the works thereof are evil. + +Monday 22-December, 2025 diff --git a/scripture/kjv/12/22/25/scripture.tg.id b/scripture/kjv/12/22/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/22/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/22/25/scripture.today b/scripture/kjv/12/22/25/scripture.today new file mode 100644 index 00000000..158017e5 --- /dev/null +++ b/scripture/kjv/12/22/25/scripture.today @@ -0,0 +1 @@ +43 7:7 diff --git a/scripture/kjv/12/23/22/scripture.html b/scripture/kjv/12/23/22/scripture.html new file mode 100644 index 00000000..a9384faa --- /dev/null +++ b/scripture/kjv/12/23/22/scripture.html @@ -0,0 +1,3 @@ +John 4:44
+44 For Jesus himself testified, that a prophet hath no honour in his own country.

+Friday 23-December, 2022 diff --git a/scripture/kjv/12/23/22/scripture.json b/scripture/kjv/12/23/22/scripture.json new file mode 100644 index 00000000..9699c817 --- /dev/null +++ b/scripture/kjv/12/23/22/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Friday 23-December, 2022", + "name": "John 4:44", + "scripture": [ + { + "nr": "44", + "text": "For Jesus himself testified, that a prophet hath no honour in his own country." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/12/23/22/scripture.md b/scripture/kjv/12/23/22/scripture.md new file mode 100644 index 00000000..c29b0df5 --- /dev/null +++ b/scripture/kjv/12/23/22/scripture.md @@ -0,0 +1,5 @@ +**John 4:44** + +44 For Jesus himself testified, that a prophet hath no honour in his own country. + +[Friday 23-December, 2022](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/12/23/22/scripture.tg b/scripture/kjv/12/23/22/scripture.tg new file mode 100644 index 00000000..d5b71bab --- /dev/null +++ b/scripture/kjv/12/23/22/scripture.tg @@ -0,0 +1,4 @@ +John 4:44 +44 For Jesus himself testified, that a prophet hath no honour in his own country. + +Friday 23-December, 2022 diff --git a/scripture/kjv/12/23/22/scripture.today b/scripture/kjv/12/23/22/scripture.today new file mode 100644 index 00000000..f9fc5450 --- /dev/null +++ b/scripture/kjv/12/23/22/scripture.today @@ -0,0 +1 @@ +43 4:44 diff --git a/scripture/kjv/12/23/23/scripture.html b/scripture/kjv/12/23/23/scripture.html new file mode 100644 index 00000000..02aa0da2 --- /dev/null +++ b/scripture/kjv/12/23/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 4:22
+22 For they are life unto those that find them, and health to all their flesh.

+Saturday 23-December, 2023 diff --git a/scripture/kjv/12/23/23/scripture.json b/scripture/kjv/12/23/23/scripture.json new file mode 100644 index 00000000..ad443ed6 --- /dev/null +++ b/scripture/kjv/12/23/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Proverbs", + "chapter": "4", + "date": "Saturday 23-December, 2023", + "getbible": "https://getbible.life/kjv/Proverbs/4/22", + "name": "Proverbs 4:22", + "scripture": [ + { + "nr": "22", + "text": "For they are life unto those that find them, and health to all their flesh." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "22", + "version": "kjv" +} diff --git a/scripture/kjv/12/23/23/scripture.md b/scripture/kjv/12/23/23/scripture.md new file mode 100644 index 00000000..de416850 --- /dev/null +++ b/scripture/kjv/12/23/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 4:22** + +22 For they are life unto those that find them, and health to all their flesh. + +[Saturday 23-December, 2023](https://getbible.life/kjv/Proverbs/4/22) diff --git a/scripture/kjv/12/23/23/scripture.tg b/scripture/kjv/12/23/23/scripture.tg new file mode 100644 index 00000000..8c77b3db --- /dev/null +++ b/scripture/kjv/12/23/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 4:22 +22 For they are life unto those that find them, and health to all their flesh. + +Saturday 23-December, 2023 diff --git a/scripture/kjv/12/23/23/scripture.tg.id b/scripture/kjv/12/23/23/scripture.tg.id new file mode 100644 index 00000000..5ddd971d --- /dev/null +++ b/scripture/kjv/12/23/23/scripture.tg.id @@ -0,0 +1 @@ +1176 diff --git a/scripture/kjv/12/23/23/scripture.today b/scripture/kjv/12/23/23/scripture.today new file mode 100644 index 00000000..7a159555 --- /dev/null +++ b/scripture/kjv/12/23/23/scripture.today @@ -0,0 +1 @@ +20 4:22 diff --git a/scripture/kjv/12/23/24/scripture.html b/scripture/kjv/12/23/24/scripture.html new file mode 100644 index 00000000..eb2c17df --- /dev/null +++ b/scripture/kjv/12/23/24/scripture.html @@ -0,0 +1,3 @@ +2 Kings 3:15
+15 But now bring me a minstrel. And it came to pass, when the minstrel played, that the hand of the Lord came upon him.

+Monday 23-December, 2024 diff --git a/scripture/kjv/12/23/24/scripture.json b/scripture/kjv/12/23/24/scripture.json new file mode 100644 index 00000000..462768f7 --- /dev/null +++ b/scripture/kjv/12/23/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Kings", + "chapter": "3", + "date": "Monday 23-December, 2024", + "getbible": "https://getbible.life/kjv/2 Kings/3/15", + "name": "2 Kings 3:15", + "scripture": [ + { + "nr": "15", + "text": "But now bring me a minstrel. And it came to pass, when the minstrel played, that the hand of the Lord came upon him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "15", + "version": "kjv" +} diff --git a/scripture/kjv/12/23/24/scripture.md b/scripture/kjv/12/23/24/scripture.md new file mode 100644 index 00000000..03031a0d --- /dev/null +++ b/scripture/kjv/12/23/24/scripture.md @@ -0,0 +1,5 @@ +**2 Kings 3:15** + +15 But now bring me a minstrel. And it came to pass, when the minstrel played, that the hand of the Lord came upon him. + +[Monday 23-December, 2024](https://getbible.life/kjv/2 Kings/3/15) diff --git a/scripture/kjv/12/23/24/scripture.tg b/scripture/kjv/12/23/24/scripture.tg new file mode 100644 index 00000000..1c4b6743 --- /dev/null +++ b/scripture/kjv/12/23/24/scripture.tg @@ -0,0 +1,4 @@ +2 Kings 3:15 +15 But now bring me a minstrel. And it came to pass, when the minstrel played, that the hand of the Lord came upon him. + +Monday 23-December, 2024 diff --git a/scripture/kjv/12/23/24/scripture.tg.id b/scripture/kjv/12/23/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/23/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/23/24/scripture.today b/scripture/kjv/12/23/24/scripture.today new file mode 100644 index 00000000..adde5618 --- /dev/null +++ b/scripture/kjv/12/23/24/scripture.today @@ -0,0 +1 @@ +12 3:15 diff --git a/scripture/kjv/12/23/25/scripture.html b/scripture/kjv/12/23/25/scripture.html new file mode 100644 index 00000000..4a4ae574 --- /dev/null +++ b/scripture/kjv/12/23/25/scripture.html @@ -0,0 +1,3 @@ +1 John 4:1-3
+1 Beloved, believe not every spirit, but try the spirits whether they are of God: because many false prophets are gone out into the world. 2 Hereby know ye the Spirit of God: Every spirit that confesseth that Jesus Christ is come in the flesh is of God: 3 And every spirit that confesseth not that Jesus Christ is come in the flesh is not of God: and this is that spirit of antichrist, whereof ye have heard that it should come; and even now already is it in the world.

+Tuesday 23-December, 2025 diff --git a/scripture/kjv/12/23/25/scripture.json b/scripture/kjv/12/23/25/scripture.json new file mode 100644 index 00000000..908f7ee8 --- /dev/null +++ b/scripture/kjv/12/23/25/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "1 John", + "chapter": "4", + "date": "Tuesday 23-December, 2025", + "getbible": "https://getbible.life/kjv/1 John/4/1-3", + "name": "1 John 4:1-3", + "scripture": [ + { + "nr": "1", + "text": "Beloved, believe not every spirit, but try the spirits whether they are of God: because many false prophets are gone out into the world." + }, + { + "nr": "2", + "text": "Hereby know ye the Spirit of God: Every spirit that confesseth that Jesus Christ is come in the flesh is of God:" + }, + { + "nr": "3", + "text": "And every spirit that confesseth not that Jesus Christ is come in the flesh is not of God: and this is that spirit of antichrist, whereof ye have heard that it should come; and even now already is it in the world." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1-3", + "version": "kjv" +} diff --git a/scripture/kjv/12/23/25/scripture.md b/scripture/kjv/12/23/25/scripture.md new file mode 100644 index 00000000..190b271a --- /dev/null +++ b/scripture/kjv/12/23/25/scripture.md @@ -0,0 +1,5 @@ +**1 John 4:1-3** + +1 Beloved, believe not every spirit, but try the spirits whether they are of God: because many false prophets are gone out into the world. 2 Hereby know ye the Spirit of God: Every spirit that confesseth that Jesus Christ is come in the flesh is of God: 3 And every spirit that confesseth not that Jesus Christ is come in the flesh is not of God: and this is that spirit of antichrist, whereof ye have heard that it should come; and even now already is it in the world. + +[Tuesday 23-December, 2025](https://getbible.life/kjv/1 John/4/1-3) diff --git a/scripture/kjv/12/23/25/scripture.tg b/scripture/kjv/12/23/25/scripture.tg new file mode 100644 index 00000000..5263461a --- /dev/null +++ b/scripture/kjv/12/23/25/scripture.tg @@ -0,0 +1,4 @@ +1 John 4:1-3 +1 Beloved, believe not every spirit, but try the spirits whether they are of God: because many false prophets are gone out into the world. 2 Hereby know ye the Spirit of God: Every spirit that confesseth that Jesus Christ is come in the flesh is of God: 3 And every spirit that confesseth not that Jesus Christ is come in the flesh is not of God: and this is that spirit of antichrist, whereof ye have heard that it should come; and even now already is it in the world. + +Tuesday 23-December, 2025 diff --git a/scripture/kjv/12/23/25/scripture.tg.id b/scripture/kjv/12/23/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/23/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/23/25/scripture.today b/scripture/kjv/12/23/25/scripture.today new file mode 100644 index 00000000..37c77b7e --- /dev/null +++ b/scripture/kjv/12/23/25/scripture.today @@ -0,0 +1 @@ +62 4:1-3 diff --git a/scripture/kjv/12/24/22/scripture.html b/scripture/kjv/12/24/22/scripture.html new file mode 100644 index 00000000..8f11bb0c --- /dev/null +++ b/scripture/kjv/12/24/22/scripture.html @@ -0,0 +1,3 @@ +John 20:25-29
+25 The other disciples therefore said unto him, We have seen the Lord. But he said unto them, Except I shall see in his hands the print of the nails, and put my finger into the print of the nails, and thrust my hand into his side, I will not believe. 26 And after eight days again his disciples were within, and Thomas with them: then came Jesus, the doors being shut, and stood in the midst, and said, Peace be unto you. 27 Then saith he to Thomas, Reach hither thy finger, and behold my hands; and reach hither thy hand, and thrust it into my side: and be not faithless, but believing. 28 And Thomas answered and said unto him, My Lord and my God. 29 Jesus saith unto him, Thomas, because thou hast seen me, thou hast believed: blessed are they that have not seen, and yet have believed.

+Saturday 24-December, 2022 diff --git a/scripture/kjv/12/24/22/scripture.json b/scripture/kjv/12/24/22/scripture.json new file mode 100644 index 00000000..7753b96b --- /dev/null +++ b/scripture/kjv/12/24/22/scripture.json @@ -0,0 +1,29 @@ +{ + "date": "Saturday 24-December, 2022", + "name": "John 20:25-29", + "scripture": [ + { + "nr": "25", + "text": "The other disciples therefore said unto him, We have seen the Lord. But he said unto them, Except I shall see in his hands the print of the nails, and put my finger into the print of the nails, and thrust my hand into his side, I will not believe." + }, + { + "nr": "26", + "text": "And after eight days again his disciples were within, and Thomas with them: then came Jesus, the doors being shut, and stood in the midst, and said, Peace be unto you." + }, + { + "nr": "27", + "text": "Then saith he to Thomas, Reach hither thy finger, and behold my hands; and reach hither thy hand, and thrust it into my side: and be not faithless, but believing." + }, + { + "nr": "28", + "text": "And Thomas answered and said unto him, My Lord and my God." + }, + { + "nr": "29", + "text": "Jesus saith unto him, Thomas, because thou hast seen me, thou hast believed: blessed are they that have not seen, and yet have believed." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/12/24/22/scripture.md b/scripture/kjv/12/24/22/scripture.md new file mode 100644 index 00000000..022e49d5 --- /dev/null +++ b/scripture/kjv/12/24/22/scripture.md @@ -0,0 +1,5 @@ +**John 20:25-29** + +25 The other disciples therefore said unto him, We have seen the Lord. But he said unto them, Except I shall see in his hands the print of the nails, and put my finger into the print of the nails, and thrust my hand into his side, I will not believe. 26 And after eight days again his disciples were within, and Thomas with them: then came Jesus, the doors being shut, and stood in the midst, and said, Peace be unto you. 27 Then saith he to Thomas, Reach hither thy finger, and behold my hands; and reach hither thy hand, and thrust it into my side: and be not faithless, but believing. 28 And Thomas answered and said unto him, My Lord and my God. 29 Jesus saith unto him, Thomas, because thou hast seen me, thou hast believed: blessed are they that have not seen, and yet have believed. + +[Saturday 24-December, 2022](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/12/24/22/scripture.tg b/scripture/kjv/12/24/22/scripture.tg new file mode 100644 index 00000000..a6b4067c --- /dev/null +++ b/scripture/kjv/12/24/22/scripture.tg @@ -0,0 +1,4 @@ +John 20:25-29 +25 The other disciples therefore said unto him, We have seen the Lord. But he said unto them, Except I shall see in his hands the print of the nails, and put my finger into the print of the nails, and thrust my hand into his side, I will not believe. 26 And after eight days again his disciples were within, and Thomas with them: then came Jesus, the doors being shut, and stood in the midst, and said, Peace be unto you. 27 Then saith he to Thomas, Reach hither thy finger, and behold my hands; and reach hither thy hand, and thrust it into my side: and be not faithless, but believing. 28 And Thomas answered and said unto him, My Lord and my God. 29 Jesus saith unto him, Thomas, because thou hast seen me, thou hast believed: blessed are they that have not seen, and yet have believed. + +Saturday 24-December, 2022 diff --git a/scripture/kjv/12/24/22/scripture.today b/scripture/kjv/12/24/22/scripture.today new file mode 100644 index 00000000..4aeac7d0 --- /dev/null +++ b/scripture/kjv/12/24/22/scripture.today @@ -0,0 +1 @@ +43 20:25-29 diff --git a/scripture/kjv/12/24/23/scripture.html b/scripture/kjv/12/24/23/scripture.html new file mode 100644 index 00000000..f6a040eb --- /dev/null +++ b/scripture/kjv/12/24/23/scripture.html @@ -0,0 +1,3 @@ +Ephesians 6:9
+9 And, ye masters, do the same things unto them, forbearing threatening: knowing that your Master also is in heaven; neither is there respect of persons with him.

+Sunday 24-December, 2023 diff --git a/scripture/kjv/12/24/23/scripture.json b/scripture/kjv/12/24/23/scripture.json new file mode 100644 index 00000000..49b0f1be --- /dev/null +++ b/scripture/kjv/12/24/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ephesians", + "chapter": "6", + "date": "Sunday 24-December, 2023", + "getbible": "https://getbible.life/kjv/Ephesians/6/9", + "name": "Ephesians 6:9", + "scripture": [ + { + "nr": "9", + "text": "And, ye masters, do the same things unto them, forbearing threatening: knowing that your Master also is in heaven; neither is there respect of persons with him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9", + "version": "kjv" +} diff --git a/scripture/kjv/12/24/23/scripture.md b/scripture/kjv/12/24/23/scripture.md new file mode 100644 index 00000000..deae6a61 --- /dev/null +++ b/scripture/kjv/12/24/23/scripture.md @@ -0,0 +1,5 @@ +**Ephesians 6:9** + +9 And, ye masters, do the same things unto them, forbearing threatening: knowing that your Master also is in heaven; neither is there respect of persons with him. + +[Sunday 24-December, 2023](https://getbible.life/kjv/Ephesians/6/9) diff --git a/scripture/kjv/12/24/23/scripture.tg b/scripture/kjv/12/24/23/scripture.tg new file mode 100644 index 00000000..7efe9889 --- /dev/null +++ b/scripture/kjv/12/24/23/scripture.tg @@ -0,0 +1,4 @@ +Ephesians 6:9 +9 And, ye masters, do the same things unto them, forbearing threatening: knowing that your Master also is in heaven; neither is there respect of persons with him. + +Sunday 24-December, 2023 diff --git a/scripture/kjv/12/24/23/scripture.tg.id b/scripture/kjv/12/24/23/scripture.tg.id new file mode 100644 index 00000000..bacbcf47 --- /dev/null +++ b/scripture/kjv/12/24/23/scripture.tg.id @@ -0,0 +1 @@ +1177 diff --git a/scripture/kjv/12/24/23/scripture.today b/scripture/kjv/12/24/23/scripture.today new file mode 100644 index 00000000..96c31b28 --- /dev/null +++ b/scripture/kjv/12/24/23/scripture.today @@ -0,0 +1 @@ +49 6:9 diff --git a/scripture/kjv/12/24/24/scripture.html b/scripture/kjv/12/24/24/scripture.html new file mode 100644 index 00000000..c29e582e --- /dev/null +++ b/scripture/kjv/12/24/24/scripture.html @@ -0,0 +1,3 @@ +2 Thessalonians 2:16-17
+16 Now our Lord Jesus Christ himself, and God, even our Father, which hath loved us, and hath given us everlasting consolation and good hope through grace, 17 Comfort your hearts, and stablish you in every good word and work.

+Tuesday 24-December, 2024 diff --git a/scripture/kjv/12/24/24/scripture.json b/scripture/kjv/12/24/24/scripture.json new file mode 100644 index 00000000..42f35628 --- /dev/null +++ b/scripture/kjv/12/24/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "2 Thessalonians", + "chapter": "2", + "date": "Tuesday 24-December, 2024", + "getbible": "https://getbible.life/kjv/2 Thessalonians/2/16-17", + "name": "2 Thessalonians 2:16-17", + "scripture": [ + { + "nr": "16", + "text": "Now our Lord Jesus Christ himself, and God, even our Father, which hath loved us, and hath given us everlasting consolation and good hope through grace," + }, + { + "nr": "17", + "text": "Comfort your hearts, and stablish you in every good word and work. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "16-17", + "version": "kjv" +} diff --git a/scripture/kjv/12/24/24/scripture.md b/scripture/kjv/12/24/24/scripture.md new file mode 100644 index 00000000..f36de5f2 --- /dev/null +++ b/scripture/kjv/12/24/24/scripture.md @@ -0,0 +1,5 @@ +**2 Thessalonians 2:16-17** + +16 Now our Lord Jesus Christ himself, and God, even our Father, which hath loved us, and hath given us everlasting consolation and good hope through grace, 17 Comfort your hearts, and stablish you in every good word and work. + +[Tuesday 24-December, 2024](https://getbible.life/kjv/2 Thessalonians/2/16-17) diff --git a/scripture/kjv/12/24/24/scripture.tg b/scripture/kjv/12/24/24/scripture.tg new file mode 100644 index 00000000..c647d023 --- /dev/null +++ b/scripture/kjv/12/24/24/scripture.tg @@ -0,0 +1,4 @@ +2 Thessalonians 2:16-17 +16 Now our Lord Jesus Christ himself, and God, even our Father, which hath loved us, and hath given us everlasting consolation and good hope through grace, 17 Comfort your hearts, and stablish you in every good word and work. + +Tuesday 24-December, 2024 diff --git a/scripture/kjv/12/24/24/scripture.tg.id b/scripture/kjv/12/24/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/24/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/24/24/scripture.today b/scripture/kjv/12/24/24/scripture.today new file mode 100644 index 00000000..4868190a --- /dev/null +++ b/scripture/kjv/12/24/24/scripture.today @@ -0,0 +1 @@ +53 2:16-17 diff --git a/scripture/kjv/12/24/25/scripture.html b/scripture/kjv/12/24/25/scripture.html new file mode 100644 index 00000000..cb62f1dc --- /dev/null +++ b/scripture/kjv/12/24/25/scripture.html @@ -0,0 +1,3 @@ +Psalms 107:29-30
+29 He maketh the storm a calm, so that the waves thereof are still. 30 Then are they glad because they be quiet; so he bringeth them unto their desired haven.

+Wednesday 24-December, 2025 diff --git a/scripture/kjv/12/24/25/scripture.json b/scripture/kjv/12/24/25/scripture.json new file mode 100644 index 00000000..ae4ea7c6 --- /dev/null +++ b/scripture/kjv/12/24/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Psalms", + "chapter": "107", + "date": "Wednesday 24-December, 2025", + "getbible": "https://getbible.life/kjv/Psalms/107/29-30", + "name": "Psalms 107:29-30", + "scripture": [ + { + "nr": "29", + "text": "He maketh the storm a calm, so that the waves thereof are still." + }, + { + "nr": "30", + "text": "Then are they glad because they be quiet; so he bringeth them unto their desired haven." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "29-30", + "version": "kjv" +} diff --git a/scripture/kjv/12/24/25/scripture.md b/scripture/kjv/12/24/25/scripture.md new file mode 100644 index 00000000..37dc193a --- /dev/null +++ b/scripture/kjv/12/24/25/scripture.md @@ -0,0 +1,5 @@ +**Psalms 107:29-30** + +29 He maketh the storm a calm, so that the waves thereof are still. 30 Then are they glad because they be quiet; so he bringeth them unto their desired haven. + +[Wednesday 24-December, 2025](https://getbible.life/kjv/Psalms/107/29-30) diff --git a/scripture/kjv/12/24/25/scripture.tg b/scripture/kjv/12/24/25/scripture.tg new file mode 100644 index 00000000..0df2d71a --- /dev/null +++ b/scripture/kjv/12/24/25/scripture.tg @@ -0,0 +1,4 @@ +Psalms 107:29-30 +29 He maketh the storm a calm, so that the waves thereof are still. 30 Then are they glad because they be quiet; so he bringeth them unto their desired haven. + +Wednesday 24-December, 2025 diff --git a/scripture/kjv/12/24/25/scripture.tg.id b/scripture/kjv/12/24/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/24/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/24/25/scripture.today b/scripture/kjv/12/24/25/scripture.today new file mode 100644 index 00000000..2afeae96 --- /dev/null +++ b/scripture/kjv/12/24/25/scripture.today @@ -0,0 +1 @@ +19 107:29-30 diff --git a/scripture/kjv/12/25/22/scripture.html b/scripture/kjv/12/25/22/scripture.html new file mode 100644 index 00000000..54673507 --- /dev/null +++ b/scripture/kjv/12/25/22/scripture.html @@ -0,0 +1,3 @@ +Leviticus 6:13
+13 The fire shall ever be burning upon the altar; it shall never go out.

+Sunday 25-December, 2022 diff --git a/scripture/kjv/12/25/22/scripture.json b/scripture/kjv/12/25/22/scripture.json new file mode 100644 index 00000000..0cedce0c --- /dev/null +++ b/scripture/kjv/12/25/22/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Sunday 25-December, 2022", + "name": "Leviticus 6:13", + "scripture": [ + { + "nr": "13", + "text": "The fire shall ever be burning upon the altar; it shall never go out." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/12/25/22/scripture.md b/scripture/kjv/12/25/22/scripture.md new file mode 100644 index 00000000..9503fad9 --- /dev/null +++ b/scripture/kjv/12/25/22/scripture.md @@ -0,0 +1,5 @@ +**Leviticus 6:13** + +13 The fire shall ever be burning upon the altar; it shall never go out. + +[Sunday 25-December, 2022](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/12/25/22/scripture.tg b/scripture/kjv/12/25/22/scripture.tg new file mode 100644 index 00000000..b2479036 --- /dev/null +++ b/scripture/kjv/12/25/22/scripture.tg @@ -0,0 +1,4 @@ +Leviticus 6:13 +13 The fire shall ever be burning upon the altar; it shall never go out. + +Sunday 25-December, 2022 diff --git a/scripture/kjv/12/25/22/scripture.today b/scripture/kjv/12/25/22/scripture.today new file mode 100644 index 00000000..e57250e9 --- /dev/null +++ b/scripture/kjv/12/25/22/scripture.today @@ -0,0 +1 @@ +3 6:13 diff --git a/scripture/kjv/12/25/23/scripture.html b/scripture/kjv/12/25/23/scripture.html new file mode 100644 index 00000000..a4b7c0b9 --- /dev/null +++ b/scripture/kjv/12/25/23/scripture.html @@ -0,0 +1,3 @@ +Proverbs 22:17-18
+17 Bow down thine ear, and hear the words of the wise, and apply thine heart unto my knowledge. 18 For it is a pleasant thing if thou keep them within thee; they shall withal be fitted in thy lips.

+Monday 25-December, 2023 diff --git a/scripture/kjv/12/25/23/scripture.json b/scripture/kjv/12/25/23/scripture.json new file mode 100644 index 00000000..32e97f37 --- /dev/null +++ b/scripture/kjv/12/25/23/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Proverbs", + "chapter": "22", + "date": "Monday 25-December, 2023", + "getbible": "https://getbible.life/kjv/Proverbs/22/17-18", + "name": "Proverbs 22:17-18", + "scripture": [ + { + "nr": "17", + "text": "Bow down thine ear, and hear the words of the wise, and apply thine heart unto my knowledge." + }, + { + "nr": "18", + "text": "For it is a pleasant thing if thou keep them within thee; they shall withal be fitted in thy lips." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "17-18", + "version": "kjv" +} diff --git a/scripture/kjv/12/25/23/scripture.md b/scripture/kjv/12/25/23/scripture.md new file mode 100644 index 00000000..0ed45492 --- /dev/null +++ b/scripture/kjv/12/25/23/scripture.md @@ -0,0 +1,5 @@ +**Proverbs 22:17-18** + +17 Bow down thine ear, and hear the words of the wise, and apply thine heart unto my knowledge. 18 For it is a pleasant thing if thou keep them within thee; they shall withal be fitted in thy lips. + +[Monday 25-December, 2023](https://getbible.life/kjv/Proverbs/22/17-18) diff --git a/scripture/kjv/12/25/23/scripture.tg b/scripture/kjv/12/25/23/scripture.tg new file mode 100644 index 00000000..d177ba8d --- /dev/null +++ b/scripture/kjv/12/25/23/scripture.tg @@ -0,0 +1,4 @@ +Proverbs 22:17-18 +17 Bow down thine ear, and hear the words of the wise, and apply thine heart unto my knowledge. 18 For it is a pleasant thing if thou keep them within thee; they shall withal be fitted in thy lips. + +Monday 25-December, 2023 diff --git a/scripture/kjv/12/25/23/scripture.tg.id b/scripture/kjv/12/25/23/scripture.tg.id new file mode 100644 index 00000000..8c8b8bca --- /dev/null +++ b/scripture/kjv/12/25/23/scripture.tg.id @@ -0,0 +1 @@ +1179 diff --git a/scripture/kjv/12/25/23/scripture.today b/scripture/kjv/12/25/23/scripture.today new file mode 100644 index 00000000..9c18bf8d --- /dev/null +++ b/scripture/kjv/12/25/23/scripture.today @@ -0,0 +1 @@ +20 22:17-18 diff --git a/scripture/kjv/12/25/24/scripture.html b/scripture/kjv/12/25/24/scripture.html new file mode 100644 index 00000000..1c0c0335 --- /dev/null +++ b/scripture/kjv/12/25/24/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 9:13
+13 Whiles by the experiment of this ministration they glorify God for your professed subjection unto the gospel of Christ, and for your liberal distribution unto them, and unto all men;

+Wednesday 25-December, 2024 diff --git a/scripture/kjv/12/25/24/scripture.json b/scripture/kjv/12/25/24/scripture.json new file mode 100644 index 00000000..fff388f4 --- /dev/null +++ b/scripture/kjv/12/25/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "2 Corinthians", + "chapter": "9", + "date": "Wednesday 25-December, 2024", + "getbible": "https://getbible.life/kjv/2 Corinthians/9/13", + "name": "2 Corinthians 9:13", + "scripture": [ + { + "nr": "13", + "text": "Whiles by the experiment of this ministration they glorify God for your professed subjection unto the gospel of Christ, and for your liberal distribution unto them, and unto all men; " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "13", + "version": "kjv" +} diff --git a/scripture/kjv/12/25/24/scripture.md b/scripture/kjv/12/25/24/scripture.md new file mode 100644 index 00000000..79f59369 --- /dev/null +++ b/scripture/kjv/12/25/24/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 9:13** + +13 Whiles by the experiment of this ministration they glorify God for your professed subjection unto the gospel of Christ, and for your liberal distribution unto them, and unto all men; + +[Wednesday 25-December, 2024](https://getbible.life/kjv/2 Corinthians/9/13) diff --git a/scripture/kjv/12/25/24/scripture.tg b/scripture/kjv/12/25/24/scripture.tg new file mode 100644 index 00000000..fae12fac --- /dev/null +++ b/scripture/kjv/12/25/24/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 9:13 +13 Whiles by the experiment of this ministration they glorify God for your professed subjection unto the gospel of Christ, and for your liberal distribution unto them, and unto all men; + +Wednesday 25-December, 2024 diff --git a/scripture/kjv/12/25/24/scripture.tg.id b/scripture/kjv/12/25/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/25/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/25/24/scripture.today b/scripture/kjv/12/25/24/scripture.today new file mode 100644 index 00000000..f50ad672 --- /dev/null +++ b/scripture/kjv/12/25/24/scripture.today @@ -0,0 +1 @@ +47 9:13 diff --git a/scripture/kjv/12/25/25/scripture.html b/scripture/kjv/12/25/25/scripture.html new file mode 100644 index 00000000..2688d344 --- /dev/null +++ b/scripture/kjv/12/25/25/scripture.html @@ -0,0 +1,3 @@ +Luke 22:61-62
+61 And the Lord turned, and looked upon Peter. And Peter remembered the word of the Lord, how he had said unto him, Before the cock crow, thou shalt deny me thrice. 62 And Peter went out, and wept bitterly.

+Thursday 25-December, 2025 diff --git a/scripture/kjv/12/25/25/scripture.json b/scripture/kjv/12/25/25/scripture.json new file mode 100644 index 00000000..32c00d7d --- /dev/null +++ b/scripture/kjv/12/25/25/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Luke", + "chapter": "22", + "date": "Thursday 25-December, 2025", + "getbible": "https://getbible.life/kjv/Luke/22/61-62", + "name": "Luke 22:61-62", + "scripture": [ + { + "nr": "61", + "text": "And the Lord turned, and looked upon Peter. And Peter remembered the word of the Lord, how he had said unto him, Before the cock crow, thou shalt deny me thrice." + }, + { + "nr": "62", + "text": "And Peter went out, and wept bitterly." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "61-62", + "version": "kjv" +} diff --git a/scripture/kjv/12/25/25/scripture.md b/scripture/kjv/12/25/25/scripture.md new file mode 100644 index 00000000..ef830035 --- /dev/null +++ b/scripture/kjv/12/25/25/scripture.md @@ -0,0 +1,5 @@ +**Luke 22:61-62** + +61 And the Lord turned, and looked upon Peter. And Peter remembered the word of the Lord, how he had said unto him, Before the cock crow, thou shalt deny me thrice. 62 And Peter went out, and wept bitterly. + +[Thursday 25-December, 2025](https://getbible.life/kjv/Luke/22/61-62) diff --git a/scripture/kjv/12/25/25/scripture.tg b/scripture/kjv/12/25/25/scripture.tg new file mode 100644 index 00000000..a619fd87 --- /dev/null +++ b/scripture/kjv/12/25/25/scripture.tg @@ -0,0 +1,4 @@ +Luke 22:61-62 +61 And the Lord turned, and looked upon Peter. And Peter remembered the word of the Lord, how he had said unto him, Before the cock crow, thou shalt deny me thrice. 62 And Peter went out, and wept bitterly. + +Thursday 25-December, 2025 diff --git a/scripture/kjv/12/25/25/scripture.tg.id b/scripture/kjv/12/25/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/25/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/25/25/scripture.today b/scripture/kjv/12/25/25/scripture.today new file mode 100644 index 00000000..852fb5cc --- /dev/null +++ b/scripture/kjv/12/25/25/scripture.today @@ -0,0 +1 @@ +42 22:61-62 diff --git a/scripture/kjv/12/26/22/scripture.html b/scripture/kjv/12/26/22/scripture.html new file mode 100644 index 00000000..0490cfb2 --- /dev/null +++ b/scripture/kjv/12/26/22/scripture.html @@ -0,0 +1,3 @@ +2 Corinthians 8:11
+11 Now therefore perform the doing of it; that as there was a readiness to will, so there may be a performance also out of that which ye have.

+Monday 26-December, 2022 diff --git a/scripture/kjv/12/26/22/scripture.json b/scripture/kjv/12/26/22/scripture.json new file mode 100644 index 00000000..382cbfc5 --- /dev/null +++ b/scripture/kjv/12/26/22/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Monday 26-December, 2022", + "name": "2 Corinthians 8:11", + "scripture": [ + { + "nr": "11", + "text": "Now therefore perform the doing of it; that as there was a readiness to will, so there may be a performance also out of that which ye have." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/12/26/22/scripture.md b/scripture/kjv/12/26/22/scripture.md new file mode 100644 index 00000000..90fed02d --- /dev/null +++ b/scripture/kjv/12/26/22/scripture.md @@ -0,0 +1,5 @@ +**2 Corinthians 8:11** + +11 Now therefore perform the doing of it; that as there was a readiness to will, so there may be a performance also out of that which ye have. + +[Monday 26-December, 2022](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/12/26/22/scripture.tg b/scripture/kjv/12/26/22/scripture.tg new file mode 100644 index 00000000..98fb3443 --- /dev/null +++ b/scripture/kjv/12/26/22/scripture.tg @@ -0,0 +1,4 @@ +2 Corinthians 8:11 +11 Now therefore perform the doing of it; that as there was a readiness to will, so there may be a performance also out of that which ye have. + +Monday 26-December, 2022 diff --git a/scripture/kjv/12/26/22/scripture.today b/scripture/kjv/12/26/22/scripture.today new file mode 100644 index 00000000..136090e1 --- /dev/null +++ b/scripture/kjv/12/26/22/scripture.today @@ -0,0 +1 @@ +47 8:11 diff --git a/scripture/kjv/12/26/23/scripture.html b/scripture/kjv/12/26/23/scripture.html new file mode 100644 index 00000000..ed475da2 --- /dev/null +++ b/scripture/kjv/12/26/23/scripture.html @@ -0,0 +1,3 @@ +Luke 21:9
+9 But when ye shall hear of wars and commotions, be not terrified: for these things must first come to pass; but the end is not by and by.

+Tuesday 26-December, 2023 diff --git a/scripture/kjv/12/26/23/scripture.json b/scripture/kjv/12/26/23/scripture.json new file mode 100644 index 00000000..831855f4 --- /dev/null +++ b/scripture/kjv/12/26/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "21", + "date": "Tuesday 26-December, 2023", + "getbible": "https://getbible.life/kjv/Luke/21/9", + "name": "Luke 21:9", + "scripture": [ + { + "nr": "9", + "text": "But when ye shall hear of wars and commotions, be not terrified: for these things must first come to pass; but the end is not by and by." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9", + "version": "kjv" +} diff --git a/scripture/kjv/12/26/23/scripture.md b/scripture/kjv/12/26/23/scripture.md new file mode 100644 index 00000000..326b0847 --- /dev/null +++ b/scripture/kjv/12/26/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 21:9** + +9 But when ye shall hear of wars and commotions, be not terrified: for these things must first come to pass; but the end is not by and by. + +[Tuesday 26-December, 2023](https://getbible.life/kjv/Luke/21/9) diff --git a/scripture/kjv/12/26/23/scripture.tg b/scripture/kjv/12/26/23/scripture.tg new file mode 100644 index 00000000..97c5ee4a --- /dev/null +++ b/scripture/kjv/12/26/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 21:9 +9 But when ye shall hear of wars and commotions, be not terrified: for these things must first come to pass; but the end is not by and by. + +Tuesday 26-December, 2023 diff --git a/scripture/kjv/12/26/23/scripture.tg.id b/scripture/kjv/12/26/23/scripture.tg.id new file mode 100644 index 00000000..0eec1ae5 --- /dev/null +++ b/scripture/kjv/12/26/23/scripture.tg.id @@ -0,0 +1 @@ +1180 diff --git a/scripture/kjv/12/26/23/scripture.today b/scripture/kjv/12/26/23/scripture.today new file mode 100644 index 00000000..4c944972 --- /dev/null +++ b/scripture/kjv/12/26/23/scripture.today @@ -0,0 +1 @@ +42 21:9 diff --git a/scripture/kjv/12/26/24/scripture.html b/scripture/kjv/12/26/24/scripture.html new file mode 100644 index 00000000..c7127406 --- /dev/null +++ b/scripture/kjv/12/26/24/scripture.html @@ -0,0 +1,3 @@ +James 2:12-13
+12 So speak ye, and so do, as they that shall be judged by the law of liberty. 13 For he shall have judgment without mercy, that hath shewed no mercy; and mercy rejoiceth against judgment.

+Thursday 26-December, 2024 diff --git a/scripture/kjv/12/26/24/scripture.json b/scripture/kjv/12/26/24/scripture.json new file mode 100644 index 00000000..bdf505e2 --- /dev/null +++ b/scripture/kjv/12/26/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "James", + "chapter": "2", + "date": "Thursday 26-December, 2024", + "getbible": "https://getbible.life/kjv/James/2/12-13", + "name": "James 2:12-13", + "scripture": [ + { + "nr": "12", + "text": "So speak ye, and so do, as they that shall be judged by the law of liberty." + }, + { + "nr": "13", + "text": "For he shall have judgment without mercy, that hath shewed no mercy; and mercy rejoiceth against judgment." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12-13", + "version": "kjv" +} diff --git a/scripture/kjv/12/26/24/scripture.md b/scripture/kjv/12/26/24/scripture.md new file mode 100644 index 00000000..13d0567f --- /dev/null +++ b/scripture/kjv/12/26/24/scripture.md @@ -0,0 +1,5 @@ +**James 2:12-13** + +12 So speak ye, and so do, as they that shall be judged by the law of liberty. 13 For he shall have judgment without mercy, that hath shewed no mercy; and mercy rejoiceth against judgment. + +[Thursday 26-December, 2024](https://getbible.life/kjv/James/2/12-13) diff --git a/scripture/kjv/12/26/24/scripture.tg b/scripture/kjv/12/26/24/scripture.tg new file mode 100644 index 00000000..a31850b6 --- /dev/null +++ b/scripture/kjv/12/26/24/scripture.tg @@ -0,0 +1,4 @@ +James 2:12-13 +12 So speak ye, and so do, as they that shall be judged by the law of liberty. 13 For he shall have judgment without mercy, that hath shewed no mercy; and mercy rejoiceth against judgment. + +Thursday 26-December, 2024 diff --git a/scripture/kjv/12/26/24/scripture.tg.id b/scripture/kjv/12/26/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/26/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/26/24/scripture.today b/scripture/kjv/12/26/24/scripture.today new file mode 100644 index 00000000..7cb9fe27 --- /dev/null +++ b/scripture/kjv/12/26/24/scripture.today @@ -0,0 +1 @@ +59 2:12-13 diff --git a/scripture/kjv/12/26/25/scripture.html b/scripture/kjv/12/26/25/scripture.html new file mode 100644 index 00000000..21b92bf5 --- /dev/null +++ b/scripture/kjv/12/26/25/scripture.html @@ -0,0 +1,3 @@ +John 9:34
+34 They answered and said unto him, Thou wast altogether born in sins, and dost thou teach us? And they cast him out.

+Friday 26-December, 2025 diff --git a/scripture/kjv/12/26/25/scripture.json b/scripture/kjv/12/26/25/scripture.json new file mode 100644 index 00000000..166f42a5 --- /dev/null +++ b/scripture/kjv/12/26/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "9", + "date": "Friday 26-December, 2025", + "getbible": "https://getbible.life/kjv/John/9/34", + "name": "John 9:34", + "scripture": [ + { + "nr": "34", + "text": "They answered and said unto him, Thou wast altogether born in sins, and dost thou teach us? And they cast him out." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "34", + "version": "kjv" +} diff --git a/scripture/kjv/12/26/25/scripture.md b/scripture/kjv/12/26/25/scripture.md new file mode 100644 index 00000000..065ecaf6 --- /dev/null +++ b/scripture/kjv/12/26/25/scripture.md @@ -0,0 +1,5 @@ +**John 9:34** + +34 They answered and said unto him, Thou wast altogether born in sins, and dost thou teach us? And they cast him out. + +[Friday 26-December, 2025](https://getbible.life/kjv/John/9/34) diff --git a/scripture/kjv/12/26/25/scripture.tg b/scripture/kjv/12/26/25/scripture.tg new file mode 100644 index 00000000..6e38337b --- /dev/null +++ b/scripture/kjv/12/26/25/scripture.tg @@ -0,0 +1,4 @@ +John 9:34 +34 They answered and said unto him, Thou wast altogether born in sins, and dost thou teach us? And they cast him out. + +Friday 26-December, 2025 diff --git a/scripture/kjv/12/26/25/scripture.tg.id b/scripture/kjv/12/26/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/26/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/26/25/scripture.today b/scripture/kjv/12/26/25/scripture.today new file mode 100644 index 00000000..09507090 --- /dev/null +++ b/scripture/kjv/12/26/25/scripture.today @@ -0,0 +1 @@ +43 9:34 diff --git a/scripture/kjv/12/27/22/scripture.html b/scripture/kjv/12/27/22/scripture.html new file mode 100644 index 00000000..7af57e23 --- /dev/null +++ b/scripture/kjv/12/27/22/scripture.html @@ -0,0 +1,3 @@ +Daniel 7:27
+27 And the kingdom and dominion, and the greatness of the kingdom under the whole heaven, shall be given to the people of the saints of the most High, whose kingdom is an everlasting kingdom, and all dominions shall serve and obey him.

+Tuesday 27-December, 2022 diff --git a/scripture/kjv/12/27/22/scripture.json b/scripture/kjv/12/27/22/scripture.json new file mode 100644 index 00000000..bb164952 --- /dev/null +++ b/scripture/kjv/12/27/22/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Tuesday 27-December, 2022", + "name": "Daniel 7:27", + "scripture": [ + { + "nr": "27", + "text": "And the kingdom and dominion, and the greatness of the kingdom under the whole heaven, shall be given to the people of the saints of the most High, whose kingdom is an everlasting kingdom, and all dominions shall serve and obey him." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/12/27/22/scripture.md b/scripture/kjv/12/27/22/scripture.md new file mode 100644 index 00000000..a781c2d4 --- /dev/null +++ b/scripture/kjv/12/27/22/scripture.md @@ -0,0 +1,5 @@ +**Daniel 7:27** + +27 And the kingdom and dominion, and the greatness of the kingdom under the whole heaven, shall be given to the people of the saints of the most High, whose kingdom is an everlasting kingdom, and all dominions shall serve and obey him. + +[Tuesday 27-December, 2022](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/12/27/22/scripture.tg b/scripture/kjv/12/27/22/scripture.tg new file mode 100644 index 00000000..26998e55 --- /dev/null +++ b/scripture/kjv/12/27/22/scripture.tg @@ -0,0 +1,4 @@ +Daniel 7:27 +27 And the kingdom and dominion, and the greatness of the kingdom under the whole heaven, shall be given to the people of the saints of the most High, whose kingdom is an everlasting kingdom, and all dominions shall serve and obey him. + +Tuesday 27-December, 2022 diff --git a/scripture/kjv/12/27/22/scripture.today b/scripture/kjv/12/27/22/scripture.today new file mode 100644 index 00000000..88ee7f10 --- /dev/null +++ b/scripture/kjv/12/27/22/scripture.today @@ -0,0 +1 @@ +27 7:27 diff --git a/scripture/kjv/12/27/23/scripture.html b/scripture/kjv/12/27/23/scripture.html new file mode 100644 index 00000000..ecb11942 --- /dev/null +++ b/scripture/kjv/12/27/23/scripture.html @@ -0,0 +1,3 @@ +Psalms 3:6
+6 I will not be afraid of ten thousands of people, that have set themselves against me round about.

+Wednesday 27-December, 2023 diff --git a/scripture/kjv/12/27/23/scripture.json b/scripture/kjv/12/27/23/scripture.json new file mode 100644 index 00000000..453666d7 --- /dev/null +++ b/scripture/kjv/12/27/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Psalms", + "chapter": "3", + "date": "Wednesday 27-December, 2023", + "getbible": "https://getbible.life/kjv/Psalms/3/6", + "name": "Psalms 3:6", + "scripture": [ + { + "nr": "6", + "text": "I will not be afraid of ten thousands of people, that have set themselves against me round about." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "6", + "version": "kjv" +} diff --git a/scripture/kjv/12/27/23/scripture.md b/scripture/kjv/12/27/23/scripture.md new file mode 100644 index 00000000..013ce108 --- /dev/null +++ b/scripture/kjv/12/27/23/scripture.md @@ -0,0 +1,5 @@ +**Psalms 3:6** + +6 I will not be afraid of ten thousands of people, that have set themselves against me round about. + +[Wednesday 27-December, 2023](https://getbible.life/kjv/Psalms/3/6) diff --git a/scripture/kjv/12/27/23/scripture.tg b/scripture/kjv/12/27/23/scripture.tg new file mode 100644 index 00000000..ce8d853a --- /dev/null +++ b/scripture/kjv/12/27/23/scripture.tg @@ -0,0 +1,4 @@ +Psalms 3:6 +6 I will not be afraid of ten thousands of people, that have set themselves against me round about. + +Wednesday 27-December, 2023 diff --git a/scripture/kjv/12/27/23/scripture.tg.id b/scripture/kjv/12/27/23/scripture.tg.id new file mode 100644 index 00000000..69c992d1 --- /dev/null +++ b/scripture/kjv/12/27/23/scripture.tg.id @@ -0,0 +1 @@ +1181 diff --git a/scripture/kjv/12/27/23/scripture.today b/scripture/kjv/12/27/23/scripture.today new file mode 100644 index 00000000..69521d8f --- /dev/null +++ b/scripture/kjv/12/27/23/scripture.today @@ -0,0 +1 @@ +19 3:6 diff --git a/scripture/kjv/12/27/24/scripture.html b/scripture/kjv/12/27/24/scripture.html new file mode 100644 index 00000000..89727eac --- /dev/null +++ b/scripture/kjv/12/27/24/scripture.html @@ -0,0 +1,3 @@ +1 John 4:10-11
+10 Herein is love, not that we loved God, but that he loved us, and sent his Son to be the propitiation for our sins. 11 Beloved, if God so loved us, we ought also to love one another.

+Friday 27-December, 2024 diff --git a/scripture/kjv/12/27/24/scripture.json b/scripture/kjv/12/27/24/scripture.json new file mode 100644 index 00000000..65226152 --- /dev/null +++ b/scripture/kjv/12/27/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "1 John", + "chapter": "4", + "date": "Friday 27-December, 2024", + "getbible": "https://getbible.life/kjv/1 John/4/10-11", + "name": "1 John 4:10-11", + "scripture": [ + { + "nr": "10", + "text": "Herein is love, not that we loved God, but that he loved us, and sent his Son to be the propitiation for our sins." + }, + { + "nr": "11", + "text": "Beloved, if God so loved us, we ought also to love one another." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "10-11", + "version": "kjv" +} diff --git a/scripture/kjv/12/27/24/scripture.md b/scripture/kjv/12/27/24/scripture.md new file mode 100644 index 00000000..25970519 --- /dev/null +++ b/scripture/kjv/12/27/24/scripture.md @@ -0,0 +1,5 @@ +**1 John 4:10-11** + +10 Herein is love, not that we loved God, but that he loved us, and sent his Son to be the propitiation for our sins. 11 Beloved, if God so loved us, we ought also to love one another. + +[Friday 27-December, 2024](https://getbible.life/kjv/1 John/4/10-11) diff --git a/scripture/kjv/12/27/24/scripture.tg b/scripture/kjv/12/27/24/scripture.tg new file mode 100644 index 00000000..3c5f988e --- /dev/null +++ b/scripture/kjv/12/27/24/scripture.tg @@ -0,0 +1,4 @@ +1 John 4:10-11 +10 Herein is love, not that we loved God, but that he loved us, and sent his Son to be the propitiation for our sins. 11 Beloved, if God so loved us, we ought also to love one another. + +Friday 27-December, 2024 diff --git a/scripture/kjv/12/27/24/scripture.tg.id b/scripture/kjv/12/27/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/27/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/27/24/scripture.today b/scripture/kjv/12/27/24/scripture.today new file mode 100644 index 00000000..82fded2b --- /dev/null +++ b/scripture/kjv/12/27/24/scripture.today @@ -0,0 +1 @@ +62 4:10-11 diff --git a/scripture/kjv/12/27/25/scripture.html b/scripture/kjv/12/27/25/scripture.html new file mode 100644 index 00000000..355e2753 --- /dev/null +++ b/scripture/kjv/12/27/25/scripture.html @@ -0,0 +1,3 @@ +Isaiah 60:20
+20 Thy sun shall no more go down; neither shall thy moon withdraw itself: for the Lord shall be thine everlasting light, and the days of thy mourning shall be ended.

+Saturday 27-December, 2025 diff --git a/scripture/kjv/12/27/25/scripture.json b/scripture/kjv/12/27/25/scripture.json new file mode 100644 index 00000000..08d9fdf4 --- /dev/null +++ b/scripture/kjv/12/27/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "60", + "date": "Saturday 27-December, 2025", + "getbible": "https://getbible.life/kjv/Isaiah/60/20", + "name": "Isaiah 60:20", + "scripture": [ + { + "nr": "20", + "text": "Thy sun shall no more go down; neither shall thy moon withdraw itself: for the Lord shall be thine everlasting light, and the days of thy mourning shall be ended." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "20", + "version": "kjv" +} diff --git a/scripture/kjv/12/27/25/scripture.md b/scripture/kjv/12/27/25/scripture.md new file mode 100644 index 00000000..5f04e1fc --- /dev/null +++ b/scripture/kjv/12/27/25/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 60:20** + +20 Thy sun shall no more go down; neither shall thy moon withdraw itself: for the Lord shall be thine everlasting light, and the days of thy mourning shall be ended. + +[Saturday 27-December, 2025](https://getbible.life/kjv/Isaiah/60/20) diff --git a/scripture/kjv/12/27/25/scripture.tg b/scripture/kjv/12/27/25/scripture.tg new file mode 100644 index 00000000..414b0f02 --- /dev/null +++ b/scripture/kjv/12/27/25/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 60:20 +20 Thy sun shall no more go down; neither shall thy moon withdraw itself: for the Lord shall be thine everlasting light, and the days of thy mourning shall be ended. + +Saturday 27-December, 2025 diff --git a/scripture/kjv/12/27/25/scripture.tg.id b/scripture/kjv/12/27/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/27/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/27/25/scripture.today b/scripture/kjv/12/27/25/scripture.today new file mode 100644 index 00000000..dc1fe795 --- /dev/null +++ b/scripture/kjv/12/27/25/scripture.today @@ -0,0 +1 @@ +23 60:20 diff --git a/scripture/kjv/12/28/22/scripture.html b/scripture/kjv/12/28/22/scripture.html new file mode 100644 index 00000000..1e3bdfec --- /dev/null +++ b/scripture/kjv/12/28/22/scripture.html @@ -0,0 +1,3 @@ +Hebrews 3:1-2
+1 Wherefore, holy brethren, partakers of the heavenly calling, consider the Apostle and High Priest of our profession, Christ Jesus; 2 Who was faithful to him that appointed him, as also Moses was faithful in all his house.

+Wednesday 28-December, 2022 diff --git a/scripture/kjv/12/28/22/scripture.json b/scripture/kjv/12/28/22/scripture.json new file mode 100644 index 00000000..49725408 --- /dev/null +++ b/scripture/kjv/12/28/22/scripture.json @@ -0,0 +1,17 @@ +{ + "date": "Wednesday 28-December, 2022", + "name": "Hebrews 3:1-2", + "scripture": [ + { + "nr": "1", + "text": "Wherefore, holy brethren, partakers of the heavenly calling, consider the Apostle and High Priest of our profession, Christ Jesus;" + }, + { + "nr": "2", + "text": "Who was faithful to him that appointed him, as also Moses was faithful in all his house." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/12/28/22/scripture.md b/scripture/kjv/12/28/22/scripture.md new file mode 100644 index 00000000..bf70748e --- /dev/null +++ b/scripture/kjv/12/28/22/scripture.md @@ -0,0 +1,5 @@ +**Hebrews 3:1-2** + +1 Wherefore, holy brethren, partakers of the heavenly calling, consider the Apostle and High Priest of our profession, Christ Jesus; 2 Who was faithful to him that appointed him, as also Moses was faithful in all his house. + +[Wednesday 28-December, 2022](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/12/28/22/scripture.tg b/scripture/kjv/12/28/22/scripture.tg new file mode 100644 index 00000000..e104e703 --- /dev/null +++ b/scripture/kjv/12/28/22/scripture.tg @@ -0,0 +1,4 @@ +Hebrews 3:1-2 +1 Wherefore, holy brethren, partakers of the heavenly calling, consider the Apostle and High Priest of our profession, Christ Jesus; 2 Who was faithful to him that appointed him, as also Moses was faithful in all his house. + +Wednesday 28-December, 2022 diff --git a/scripture/kjv/12/28/22/scripture.today b/scripture/kjv/12/28/22/scripture.today new file mode 100644 index 00000000..7109ee31 --- /dev/null +++ b/scripture/kjv/12/28/22/scripture.today @@ -0,0 +1 @@ +58 3:1-2 diff --git a/scripture/kjv/12/28/23/scripture.html b/scripture/kjv/12/28/23/scripture.html new file mode 100644 index 00000000..a2bc3595 --- /dev/null +++ b/scripture/kjv/12/28/23/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 18:31
+31 Cast away from you all your transgressions, whereby ye have transgressed; and make you a new heart and a new spirit: for why will ye die, O house of Israel?

+Thursday 28-December, 2023 diff --git a/scripture/kjv/12/28/23/scripture.json b/scripture/kjv/12/28/23/scripture.json new file mode 100644 index 00000000..634f99a3 --- /dev/null +++ b/scripture/kjv/12/28/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ezekiel", + "chapter": "18", + "date": "Thursday 28-December, 2023", + "getbible": "https://getbible.life/kjv/Ezekiel/18/31", + "name": "Ezekiel 18:31", + "scripture": [ + { + "nr": "31", + "text": "Cast away from you all your transgressions, whereby ye have transgressed; and make you a new heart and a new spirit: for why will ye die, O house of Israel?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "31", + "version": "kjv" +} diff --git a/scripture/kjv/12/28/23/scripture.md b/scripture/kjv/12/28/23/scripture.md new file mode 100644 index 00000000..a1be61cd --- /dev/null +++ b/scripture/kjv/12/28/23/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 18:31** + +31 Cast away from you all your transgressions, whereby ye have transgressed; and make you a new heart and a new spirit: for why will ye die, O house of Israel? + +[Thursday 28-December, 2023](https://getbible.life/kjv/Ezekiel/18/31) diff --git a/scripture/kjv/12/28/23/scripture.tg b/scripture/kjv/12/28/23/scripture.tg new file mode 100644 index 00000000..fc048ceb --- /dev/null +++ b/scripture/kjv/12/28/23/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 18:31 +31 Cast away from you all your transgressions, whereby ye have transgressed; and make you a new heart and a new spirit: for why will ye die, O house of Israel? + +Thursday 28-December, 2023 diff --git a/scripture/kjv/12/28/23/scripture.tg.id b/scripture/kjv/12/28/23/scripture.tg.id new file mode 100644 index 00000000..7fe7c518 --- /dev/null +++ b/scripture/kjv/12/28/23/scripture.tg.id @@ -0,0 +1 @@ +1182 diff --git a/scripture/kjv/12/28/23/scripture.today b/scripture/kjv/12/28/23/scripture.today new file mode 100644 index 00000000..72cb5750 --- /dev/null +++ b/scripture/kjv/12/28/23/scripture.today @@ -0,0 +1 @@ +26 18:31 diff --git a/scripture/kjv/12/28/24/scripture.html b/scripture/kjv/12/28/24/scripture.html new file mode 100644 index 00000000..5f8e10fb --- /dev/null +++ b/scripture/kjv/12/28/24/scripture.html @@ -0,0 +1,3 @@ +Acts 2:4
+4 And they were all filled with the Holy Ghost, and began to speak with other tongues, as the Spirit gave them utterance.

+Saturday 28-December, 2024 diff --git a/scripture/kjv/12/28/24/scripture.json b/scripture/kjv/12/28/24/scripture.json new file mode 100644 index 00000000..0e9ab939 --- /dev/null +++ b/scripture/kjv/12/28/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Acts", + "chapter": "2", + "date": "Saturday 28-December, 2024", + "getbible": "https://getbible.life/kjv/Acts/2/4", + "name": "Acts 2:4", + "scripture": [ + { + "nr": "4", + "text": "And they were all filled with the Holy Ghost, and began to speak with other tongues, as the Spirit gave them utterance." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "4", + "version": "kjv" +} diff --git a/scripture/kjv/12/28/24/scripture.md b/scripture/kjv/12/28/24/scripture.md new file mode 100644 index 00000000..c7dc24e9 --- /dev/null +++ b/scripture/kjv/12/28/24/scripture.md @@ -0,0 +1,5 @@ +**Acts 2:4** + +4 And they were all filled with the Holy Ghost, and began to speak with other tongues, as the Spirit gave them utterance. + +[Saturday 28-December, 2024](https://getbible.life/kjv/Acts/2/4) diff --git a/scripture/kjv/12/28/24/scripture.tg b/scripture/kjv/12/28/24/scripture.tg new file mode 100644 index 00000000..ae835c12 --- /dev/null +++ b/scripture/kjv/12/28/24/scripture.tg @@ -0,0 +1,4 @@ +Acts 2:4 +4 And they were all filled with the Holy Ghost, and began to speak with other tongues, as the Spirit gave them utterance. + +Saturday 28-December, 2024 diff --git a/scripture/kjv/12/28/24/scripture.tg.id b/scripture/kjv/12/28/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/28/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/28/24/scripture.today b/scripture/kjv/12/28/24/scripture.today new file mode 100644 index 00000000..1df790d9 --- /dev/null +++ b/scripture/kjv/12/28/24/scripture.today @@ -0,0 +1 @@ +44 2:4 diff --git a/scripture/kjv/12/28/25/scripture.html b/scripture/kjv/12/28/25/scripture.html new file mode 100644 index 00000000..75c0f077 --- /dev/null +++ b/scripture/kjv/12/28/25/scripture.html @@ -0,0 +1,3 @@ +Romans 11:14
+14 If by any means I may provoke to emulation them which are my flesh, and might save some of them.

+Sunday 28-December, 2025 diff --git a/scripture/kjv/12/28/25/scripture.json b/scripture/kjv/12/28/25/scripture.json new file mode 100644 index 00000000..dbfb9063 --- /dev/null +++ b/scripture/kjv/12/28/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Romans", + "chapter": "11", + "date": "Sunday 28-December, 2025", + "getbible": "https://getbible.life/kjv/Romans/11/14", + "name": "Romans 11:14", + "scripture": [ + { + "nr": "14", + "text": "If by any means I may provoke to emulation them which are my flesh, and might save some of them." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "14", + "version": "kjv" +} diff --git a/scripture/kjv/12/28/25/scripture.md b/scripture/kjv/12/28/25/scripture.md new file mode 100644 index 00000000..10ae18ff --- /dev/null +++ b/scripture/kjv/12/28/25/scripture.md @@ -0,0 +1,5 @@ +**Romans 11:14** + +14 If by any means I may provoke to emulation them which are my flesh, and might save some of them. + +[Sunday 28-December, 2025](https://getbible.life/kjv/Romans/11/14) diff --git a/scripture/kjv/12/28/25/scripture.tg b/scripture/kjv/12/28/25/scripture.tg new file mode 100644 index 00000000..f8fe8ac1 --- /dev/null +++ b/scripture/kjv/12/28/25/scripture.tg @@ -0,0 +1,4 @@ +Romans 11:14 +14 If by any means I may provoke to emulation them which are my flesh, and might save some of them. + +Sunday 28-December, 2025 diff --git a/scripture/kjv/12/28/25/scripture.tg.id b/scripture/kjv/12/28/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/28/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/28/25/scripture.today b/scripture/kjv/12/28/25/scripture.today new file mode 100644 index 00000000..8d142be4 --- /dev/null +++ b/scripture/kjv/12/28/25/scripture.today @@ -0,0 +1 @@ +45 11:14 diff --git a/scripture/kjv/12/29/22/scripture.html b/scripture/kjv/12/29/22/scripture.html new file mode 100644 index 00000000..bc634def --- /dev/null +++ b/scripture/kjv/12/29/22/scripture.html @@ -0,0 +1,3 @@ +Isaiah 32:20
+20 Blessed are ye that sow beside all waters, that send forth thither the feet of the ox and the ass.

+Thursday 29-December, 2022 diff --git a/scripture/kjv/12/29/22/scripture.json b/scripture/kjv/12/29/22/scripture.json new file mode 100644 index 00000000..e4c8047b --- /dev/null +++ b/scripture/kjv/12/29/22/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Thursday 29-December, 2022", + "name": "Isaiah 32:20", + "scripture": [ + { + "nr": "20", + "text": "Blessed are ye that sow beside all waters, that send forth thither the feet of the ox and the ass. " + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/12/29/22/scripture.md b/scripture/kjv/12/29/22/scripture.md new file mode 100644 index 00000000..36a91aff --- /dev/null +++ b/scripture/kjv/12/29/22/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 32:20** + +20 Blessed are ye that sow beside all waters, that send forth thither the feet of the ox and the ass. + +[Thursday 29-December, 2022](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/12/29/22/scripture.tg b/scripture/kjv/12/29/22/scripture.tg new file mode 100644 index 00000000..b3133db7 --- /dev/null +++ b/scripture/kjv/12/29/22/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 32:20 +20 Blessed are ye that sow beside all waters, that send forth thither the feet of the ox and the ass. + +Thursday 29-December, 2022 diff --git a/scripture/kjv/12/29/22/scripture.today b/scripture/kjv/12/29/22/scripture.today new file mode 100644 index 00000000..1a9360cf --- /dev/null +++ b/scripture/kjv/12/29/22/scripture.today @@ -0,0 +1 @@ +23 32:20 diff --git a/scripture/kjv/12/29/23/scripture.html b/scripture/kjv/12/29/23/scripture.html new file mode 100644 index 00000000..60344d6b --- /dev/null +++ b/scripture/kjv/12/29/23/scripture.html @@ -0,0 +1,3 @@ +Luke 12:49
+49 I am come to send fire on the earth; and what will I, if it be already kindled?

+Friday 29-December, 2023 diff --git a/scripture/kjv/12/29/23/scripture.json b/scripture/kjv/12/29/23/scripture.json new file mode 100644 index 00000000..ffff4e2d --- /dev/null +++ b/scripture/kjv/12/29/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Luke", + "chapter": "12", + "date": "Friday 29-December, 2023", + "getbible": "https://getbible.life/kjv/Luke/12/49", + "name": "Luke 12:49", + "scripture": [ + { + "nr": "49", + "text": "I am come to send fire on the earth; and what will I, if it be already kindled?" + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "49", + "version": "kjv" +} diff --git a/scripture/kjv/12/29/23/scripture.md b/scripture/kjv/12/29/23/scripture.md new file mode 100644 index 00000000..5eb97b5a --- /dev/null +++ b/scripture/kjv/12/29/23/scripture.md @@ -0,0 +1,5 @@ +**Luke 12:49** + +49 I am come to send fire on the earth; and what will I, if it be already kindled? + +[Friday 29-December, 2023](https://getbible.life/kjv/Luke/12/49) diff --git a/scripture/kjv/12/29/23/scripture.tg b/scripture/kjv/12/29/23/scripture.tg new file mode 100644 index 00000000..d65e8a3b --- /dev/null +++ b/scripture/kjv/12/29/23/scripture.tg @@ -0,0 +1,4 @@ +Luke 12:49 +49 I am come to send fire on the earth; and what will I, if it be already kindled? + +Friday 29-December, 2023 diff --git a/scripture/kjv/12/29/23/scripture.tg.id b/scripture/kjv/12/29/23/scripture.tg.id new file mode 100644 index 00000000..10f1cd98 --- /dev/null +++ b/scripture/kjv/12/29/23/scripture.tg.id @@ -0,0 +1 @@ +1183 diff --git a/scripture/kjv/12/29/23/scripture.today b/scripture/kjv/12/29/23/scripture.today new file mode 100644 index 00000000..a19d3ee5 --- /dev/null +++ b/scripture/kjv/12/29/23/scripture.today @@ -0,0 +1 @@ +42 12:49 diff --git a/scripture/kjv/12/29/24/scripture.html b/scripture/kjv/12/29/24/scripture.html new file mode 100644 index 00000000..992109c9 --- /dev/null +++ b/scripture/kjv/12/29/24/scripture.html @@ -0,0 +1,3 @@ +Revelation 6:9-11
+9 And when he had opened the fifth seal, I saw under the altar the souls of them that were slain for the word of God, and for the testimony which they held: 10 And they cried with a loud voice, saying, How long, O Lord, holy and true, dost thou not judge and avenge our blood on them that dwell on the earth? 11 And white robes were given unto every one of them; and it was said unto them, that they should rest yet for a little season, until their fellowservants also and their brethren, that should be killed as they were, should be fulfilled.

+Sunday 29-December, 2024 diff --git a/scripture/kjv/12/29/24/scripture.json b/scripture/kjv/12/29/24/scripture.json new file mode 100644 index 00000000..07f4ef8f --- /dev/null +++ b/scripture/kjv/12/29/24/scripture.json @@ -0,0 +1,25 @@ +{ + "book": "Revelation", + "chapter": "6", + "date": "Sunday 29-December, 2024", + "getbible": "https://getbible.life/kjv/Revelation/6/9-11", + "name": "Revelation 6:9-11", + "scripture": [ + { + "nr": "9", + "text": "And when he had opened the fifth seal, I saw under the altar the souls of them that were slain for the word of God, and for the testimony which they held:" + }, + { + "nr": "10", + "text": "And they cried with a loud voice, saying, How long, O Lord, holy and true, dost thou not judge and avenge our blood on them that dwell on the earth?" + }, + { + "nr": "11", + "text": "And white robes were given unto every one of them; and it was said unto them, that they should rest yet for a little season, until their fellowservants also and their brethren, that should be killed as they were, should be fulfilled." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "9-11", + "version": "kjv" +} diff --git a/scripture/kjv/12/29/24/scripture.md b/scripture/kjv/12/29/24/scripture.md new file mode 100644 index 00000000..a0c33227 --- /dev/null +++ b/scripture/kjv/12/29/24/scripture.md @@ -0,0 +1,5 @@ +**Revelation 6:9-11** + +9 And when he had opened the fifth seal, I saw under the altar the souls of them that were slain for the word of God, and for the testimony which they held: 10 And they cried with a loud voice, saying, How long, O Lord, holy and true, dost thou not judge and avenge our blood on them that dwell on the earth? 11 And white robes were given unto every one of them; and it was said unto them, that they should rest yet for a little season, until their fellowservants also and their brethren, that should be killed as they were, should be fulfilled. + +[Sunday 29-December, 2024](https://getbible.life/kjv/Revelation/6/9-11) diff --git a/scripture/kjv/12/29/24/scripture.tg b/scripture/kjv/12/29/24/scripture.tg new file mode 100644 index 00000000..1c8a7da9 --- /dev/null +++ b/scripture/kjv/12/29/24/scripture.tg @@ -0,0 +1,4 @@ +Revelation 6:9-11 +9 And when he had opened the fifth seal, I saw under the altar the souls of them that were slain for the word of God, and for the testimony which they held: 10 And they cried with a loud voice, saying, How long, O Lord, holy and true, dost thou not judge and avenge our blood on them that dwell on the earth? 11 And white robes were given unto every one of them; and it was said unto them, that they should rest yet for a little season, until their fellowservants also and their brethren, that should be killed as they were, should be fulfilled. + +Sunday 29-December, 2024 diff --git a/scripture/kjv/12/29/24/scripture.tg.id b/scripture/kjv/12/29/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/29/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/29/24/scripture.today b/scripture/kjv/12/29/24/scripture.today new file mode 100644 index 00000000..d61c0b8b --- /dev/null +++ b/scripture/kjv/12/29/24/scripture.today @@ -0,0 +1 @@ +66 6:9-11 diff --git a/scripture/kjv/12/29/25/scripture.html b/scripture/kjv/12/29/25/scripture.html new file mode 100644 index 00000000..721b89fb --- /dev/null +++ b/scripture/kjv/12/29/25/scripture.html @@ -0,0 +1,3 @@ +John 17:23
+23 I in them, and thou in me, that they may be made perfect in one; and that the world may know that thou hast sent me, and hast loved them, as thou hast loved me.

+Monday 29-December, 2025 diff --git a/scripture/kjv/12/29/25/scripture.json b/scripture/kjv/12/29/25/scripture.json new file mode 100644 index 00000000..e9353261 --- /dev/null +++ b/scripture/kjv/12/29/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "John", + "chapter": "17", + "date": "Monday 29-December, 2025", + "getbible": "https://getbible.life/kjv/John/17/23", + "name": "John 17:23", + "scripture": [ + { + "nr": "23", + "text": "I in them, and thou in me, that they may be made perfect in one; and that the world may know that thou hast sent me, and hast loved them, as thou hast loved me." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "23", + "version": "kjv" +} diff --git a/scripture/kjv/12/29/25/scripture.md b/scripture/kjv/12/29/25/scripture.md new file mode 100644 index 00000000..6ac51bd0 --- /dev/null +++ b/scripture/kjv/12/29/25/scripture.md @@ -0,0 +1,5 @@ +**John 17:23** + +23 I in them, and thou in me, that they may be made perfect in one; and that the world may know that thou hast sent me, and hast loved them, as thou hast loved me. + +[Monday 29-December, 2025](https://getbible.life/kjv/John/17/23) diff --git a/scripture/kjv/12/29/25/scripture.tg b/scripture/kjv/12/29/25/scripture.tg new file mode 100644 index 00000000..ca523dea --- /dev/null +++ b/scripture/kjv/12/29/25/scripture.tg @@ -0,0 +1,4 @@ +John 17:23 +23 I in them, and thou in me, that they may be made perfect in one; and that the world may know that thou hast sent me, and hast loved them, as thou hast loved me. + +Monday 29-December, 2025 diff --git a/scripture/kjv/12/29/25/scripture.tg.id b/scripture/kjv/12/29/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/29/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/29/25/scripture.today b/scripture/kjv/12/29/25/scripture.today new file mode 100644 index 00000000..4d465515 --- /dev/null +++ b/scripture/kjv/12/29/25/scripture.today @@ -0,0 +1 @@ +43 17:23 diff --git a/scripture/kjv/12/30/22/scripture.html b/scripture/kjv/12/30/22/scripture.html new file mode 100644 index 00000000..49569b8d --- /dev/null +++ b/scripture/kjv/12/30/22/scripture.html @@ -0,0 +1,3 @@ +Psalms 39:11
+11 When thou with rebukes dost correct man for iniquity, thou makest his beauty to consume away like a moth: surely every man is vanity. Selah.

+Friday 30-December, 2022 diff --git a/scripture/kjv/12/30/22/scripture.json b/scripture/kjv/12/30/22/scripture.json new file mode 100644 index 00000000..33a66481 --- /dev/null +++ b/scripture/kjv/12/30/22/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Friday 30-December, 2022", + "name": "Psalms 39:11", + "scripture": [ + { + "nr": "11", + "text": "When thou with rebukes dost correct man for iniquity, thou makest his beauty to consume away like a moth: surely every man is vanity. Selah." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/12/30/22/scripture.md b/scripture/kjv/12/30/22/scripture.md new file mode 100644 index 00000000..8f7625de --- /dev/null +++ b/scripture/kjv/12/30/22/scripture.md @@ -0,0 +1,5 @@ +**Psalms 39:11** + +11 When thou with rebukes dost correct man for iniquity, thou makest his beauty to consume away like a moth: surely every man is vanity. Selah. + +[Friday 30-December, 2022](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/12/30/22/scripture.tg b/scripture/kjv/12/30/22/scripture.tg new file mode 100644 index 00000000..11e97558 --- /dev/null +++ b/scripture/kjv/12/30/22/scripture.tg @@ -0,0 +1,4 @@ +Psalms 39:11 +11 When thou with rebukes dost correct man for iniquity, thou makest his beauty to consume away like a moth: surely every man is vanity. Selah. + +Friday 30-December, 2022 diff --git a/scripture/kjv/12/30/22/scripture.today b/scripture/kjv/12/30/22/scripture.today new file mode 100644 index 00000000..3b30fc02 --- /dev/null +++ b/scripture/kjv/12/30/22/scripture.today @@ -0,0 +1 @@ +19 39:11 diff --git a/scripture/kjv/12/30/23/scripture.html b/scripture/kjv/12/30/23/scripture.html new file mode 100644 index 00000000..94382cd7 --- /dev/null +++ b/scripture/kjv/12/30/23/scripture.html @@ -0,0 +1,3 @@ +Isaiah 45:18-19
+18 For thus saith the Lord that created the heavens; God himself that formed the earth and made it; he hath established it, he created it not in vain, he formed it to be inhabited: I am the Lord; and there is none else. 19 I have not spoken in secret, in a dark place of the earth: I said not unto the seed of Jacob, Seek ye me in vain: I the Lord speak righteousness, I declare things that are right.

+Saturday 30-December, 2023 diff --git a/scripture/kjv/12/30/23/scripture.json b/scripture/kjv/12/30/23/scripture.json new file mode 100644 index 00000000..9b5b706b --- /dev/null +++ b/scripture/kjv/12/30/23/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Isaiah", + "chapter": "45", + "date": "Saturday 30-December, 2023", + "getbible": "https://getbible.life/kjv/Isaiah/45/18-19", + "name": "Isaiah 45:18-19", + "scripture": [ + { + "nr": "18", + "text": "For thus saith the Lord that created the heavens; God himself that formed the earth and made it; he hath established it, he created it not in vain, he formed it to be inhabited: I am the Lord; and there is none else." + }, + { + "nr": "19", + "text": "I have not spoken in secret, in a dark place of the earth: I said not unto the seed of Jacob, Seek ye me in vain: I the Lord speak righteousness, I declare things that are right." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "18-19", + "version": "kjv" +} diff --git a/scripture/kjv/12/30/23/scripture.md b/scripture/kjv/12/30/23/scripture.md new file mode 100644 index 00000000..25830de3 --- /dev/null +++ b/scripture/kjv/12/30/23/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 45:18-19** + +18 For thus saith the Lord that created the heavens; God himself that formed the earth and made it; he hath established it, he created it not in vain, he formed it to be inhabited: I am the Lord; and there is none else. 19 I have not spoken in secret, in a dark place of the earth: I said not unto the seed of Jacob, Seek ye me in vain: I the Lord speak righteousness, I declare things that are right. + +[Saturday 30-December, 2023](https://getbible.life/kjv/Isaiah/45/18-19) diff --git a/scripture/kjv/12/30/23/scripture.tg b/scripture/kjv/12/30/23/scripture.tg new file mode 100644 index 00000000..aa22e571 --- /dev/null +++ b/scripture/kjv/12/30/23/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 45:18-19 +18 For thus saith the Lord that created the heavens; God himself that formed the earth and made it; he hath established it, he created it not in vain, he formed it to be inhabited: I am the Lord; and there is none else. 19 I have not spoken in secret, in a dark place of the earth: I said not unto the seed of Jacob, Seek ye me in vain: I the Lord speak righteousness, I declare things that are right. + +Saturday 30-December, 2023 diff --git a/scripture/kjv/12/30/23/scripture.tg.id b/scripture/kjv/12/30/23/scripture.tg.id new file mode 100644 index 00000000..faa29ef7 --- /dev/null +++ b/scripture/kjv/12/30/23/scripture.tg.id @@ -0,0 +1 @@ +1184 diff --git a/scripture/kjv/12/30/23/scripture.today b/scripture/kjv/12/30/23/scripture.today new file mode 100644 index 00000000..1e0a760f --- /dev/null +++ b/scripture/kjv/12/30/23/scripture.today @@ -0,0 +1 @@ +23 45:18-19 diff --git a/scripture/kjv/12/30/24/scripture.html b/scripture/kjv/12/30/24/scripture.html new file mode 100644 index 00000000..b2bfacd5 --- /dev/null +++ b/scripture/kjv/12/30/24/scripture.html @@ -0,0 +1,3 @@ +Isaiah 53:12
+12 Therefore will I divide him a portion with the great, and he shall divide the spoil with the strong; because he hath poured out his soul unto death: and he was numbered with the transgressors; and he bare the sin of many, and made intercession for the transgressors.

+Monday 30-December, 2024 diff --git a/scripture/kjv/12/30/24/scripture.json b/scripture/kjv/12/30/24/scripture.json new file mode 100644 index 00000000..ce376f20 --- /dev/null +++ b/scripture/kjv/12/30/24/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Isaiah", + "chapter": "53", + "date": "Monday 30-December, 2024", + "getbible": "https://getbible.life/kjv/Isaiah/53/12", + "name": "Isaiah 53:12", + "scripture": [ + { + "nr": "12", + "text": "Therefore will I divide him a portion with the great, and he shall divide the spoil with the strong; because he hath poured out his soul unto death: and he was numbered with the transgressors; and he bare the sin of many, and made intercession for the transgressors. " + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "12", + "version": "kjv" +} diff --git a/scripture/kjv/12/30/24/scripture.md b/scripture/kjv/12/30/24/scripture.md new file mode 100644 index 00000000..4a96e9f0 --- /dev/null +++ b/scripture/kjv/12/30/24/scripture.md @@ -0,0 +1,5 @@ +**Isaiah 53:12** + +12 Therefore will I divide him a portion with the great, and he shall divide the spoil with the strong; because he hath poured out his soul unto death: and he was numbered with the transgressors; and he bare the sin of many, and made intercession for the transgressors. + +[Monday 30-December, 2024](https://getbible.life/kjv/Isaiah/53/12) diff --git a/scripture/kjv/12/30/24/scripture.tg b/scripture/kjv/12/30/24/scripture.tg new file mode 100644 index 00000000..1f5bd4c0 --- /dev/null +++ b/scripture/kjv/12/30/24/scripture.tg @@ -0,0 +1,4 @@ +Isaiah 53:12 +12 Therefore will I divide him a portion with the great, and he shall divide the spoil with the strong; because he hath poured out his soul unto death: and he was numbered with the transgressors; and he bare the sin of many, and made intercession for the transgressors. + +Monday 30-December, 2024 diff --git a/scripture/kjv/12/30/24/scripture.tg.id b/scripture/kjv/12/30/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/30/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/30/24/scripture.today b/scripture/kjv/12/30/24/scripture.today new file mode 100644 index 00000000..7cbf28a4 --- /dev/null +++ b/scripture/kjv/12/30/24/scripture.today @@ -0,0 +1 @@ +23 53:12 diff --git a/scripture/kjv/12/30/25/scripture.html b/scripture/kjv/12/30/25/scripture.html new file mode 100644 index 00000000..fb23adc2 --- /dev/null +++ b/scripture/kjv/12/30/25/scripture.html @@ -0,0 +1,3 @@ +Acts 5:32
+32 And we are his witnesses of these things; and so is also the Holy Ghost, whom God hath given to them that obey him.

+Tuesday 30-December, 2025 diff --git a/scripture/kjv/12/30/25/scripture.json b/scripture/kjv/12/30/25/scripture.json new file mode 100644 index 00000000..c417076f --- /dev/null +++ b/scripture/kjv/12/30/25/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Acts", + "chapter": "5", + "date": "Tuesday 30-December, 2025", + "getbible": "https://getbible.life/kjv/Acts/5/32", + "name": "Acts 5:32", + "scripture": [ + { + "nr": "32", + "text": "And we are his witnesses of these things; and so is also the Holy Ghost, whom God hath given to them that obey him." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "32", + "version": "kjv" +} diff --git a/scripture/kjv/12/30/25/scripture.md b/scripture/kjv/12/30/25/scripture.md new file mode 100644 index 00000000..739a191a --- /dev/null +++ b/scripture/kjv/12/30/25/scripture.md @@ -0,0 +1,5 @@ +**Acts 5:32** + +32 And we are his witnesses of these things; and so is also the Holy Ghost, whom God hath given to them that obey him. + +[Tuesday 30-December, 2025](https://getbible.life/kjv/Acts/5/32) diff --git a/scripture/kjv/12/30/25/scripture.tg b/scripture/kjv/12/30/25/scripture.tg new file mode 100644 index 00000000..85f9949d --- /dev/null +++ b/scripture/kjv/12/30/25/scripture.tg @@ -0,0 +1,4 @@ +Acts 5:32 +32 And we are his witnesses of these things; and so is also the Holy Ghost, whom God hath given to them that obey him. + +Tuesday 30-December, 2025 diff --git a/scripture/kjv/12/30/25/scripture.tg.id b/scripture/kjv/12/30/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/30/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/30/25/scripture.today b/scripture/kjv/12/30/25/scripture.today new file mode 100644 index 00000000..41156411 --- /dev/null +++ b/scripture/kjv/12/30/25/scripture.today @@ -0,0 +1 @@ +44 5:32 diff --git a/scripture/kjv/12/31/22/scripture.html b/scripture/kjv/12/31/22/scripture.html new file mode 100644 index 00000000..5d6550b1 --- /dev/null +++ b/scripture/kjv/12/31/22/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 12:24
+24 For there shall be no more any vain vision nor flattering divination within the house of Israel.

+Saturday 31-December, 2022 diff --git a/scripture/kjv/12/31/22/scripture.json b/scripture/kjv/12/31/22/scripture.json new file mode 100644 index 00000000..ac748724 --- /dev/null +++ b/scripture/kjv/12/31/22/scripture.json @@ -0,0 +1,13 @@ +{ + "date": "Saturday 31-December, 2022", + "name": "Ezekiel 12:24", + "scripture": [ + { + "nr": "24", + "text": "For there shall be no more any vain vision nor flattering divination within the house of Israel." + } + ], + "source": "https://github.com/trueChristian/daily-scripture", + "telegram": "daily_scripture", + "version": "kjv" +} diff --git a/scripture/kjv/12/31/22/scripture.md b/scripture/kjv/12/31/22/scripture.md new file mode 100644 index 00000000..50b60197 --- /dev/null +++ b/scripture/kjv/12/31/22/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 12:24** + +24 For there shall be no more any vain vision nor flattering divination within the house of Israel. + +[Saturday 31-December, 2022](https://t.me/s/daily_scripture) diff --git a/scripture/kjv/12/31/22/scripture.tg b/scripture/kjv/12/31/22/scripture.tg new file mode 100644 index 00000000..ec62f7af --- /dev/null +++ b/scripture/kjv/12/31/22/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 12:24 +24 For there shall be no more any vain vision nor flattering divination within the house of Israel. + +Saturday 31-December, 2022 diff --git a/scripture/kjv/12/31/22/scripture.today b/scripture/kjv/12/31/22/scripture.today new file mode 100644 index 00000000..071ff3a2 --- /dev/null +++ b/scripture/kjv/12/31/22/scripture.today @@ -0,0 +1 @@ +26 12:24 diff --git a/scripture/kjv/12/31/23/scripture.html b/scripture/kjv/12/31/23/scripture.html new file mode 100644 index 00000000..13127139 --- /dev/null +++ b/scripture/kjv/12/31/23/scripture.html @@ -0,0 +1,3 @@ +Ezekiel 6:1
+1 And the word of the Lord came unto me, saying,

+Sunday 31-December, 2023 diff --git a/scripture/kjv/12/31/23/scripture.json b/scripture/kjv/12/31/23/scripture.json new file mode 100644 index 00000000..4c425838 --- /dev/null +++ b/scripture/kjv/12/31/23/scripture.json @@ -0,0 +1,17 @@ +{ + "book": "Ezekiel", + "chapter": "6", + "date": "Sunday 31-December, 2023", + "getbible": "https://getbible.life/kjv/Ezekiel/6/1", + "name": "Ezekiel 6:1", + "scripture": [ + { + "nr": "1", + "text": "And the word of the Lord came unto me, saying," + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "1", + "version": "kjv" +} diff --git a/scripture/kjv/12/31/23/scripture.md b/scripture/kjv/12/31/23/scripture.md new file mode 100644 index 00000000..220b72c5 --- /dev/null +++ b/scripture/kjv/12/31/23/scripture.md @@ -0,0 +1,5 @@ +**Ezekiel 6:1** + +1 And the word of the Lord came unto me, saying, + +[Sunday 31-December, 2023](https://getbible.life/kjv/Ezekiel/6/1) diff --git a/scripture/kjv/12/31/23/scripture.tg b/scripture/kjv/12/31/23/scripture.tg new file mode 100644 index 00000000..128f60c8 --- /dev/null +++ b/scripture/kjv/12/31/23/scripture.tg @@ -0,0 +1,4 @@ +Ezekiel 6:1 +1 And the word of the Lord came unto me, saying, + +Sunday 31-December, 2023 diff --git a/scripture/kjv/12/31/23/scripture.tg.id b/scripture/kjv/12/31/23/scripture.tg.id new file mode 100644 index 00000000..73a426e8 --- /dev/null +++ b/scripture/kjv/12/31/23/scripture.tg.id @@ -0,0 +1 @@ +1185 diff --git a/scripture/kjv/12/31/23/scripture.today b/scripture/kjv/12/31/23/scripture.today new file mode 100644 index 00000000..09e3632d --- /dev/null +++ b/scripture/kjv/12/31/23/scripture.today @@ -0,0 +1 @@ +26 6:1 diff --git a/scripture/kjv/12/31/24/scripture.html b/scripture/kjv/12/31/24/scripture.html new file mode 100644 index 00000000..bd7fc700 --- /dev/null +++ b/scripture/kjv/12/31/24/scripture.html @@ -0,0 +1,3 @@ +Romans 3:3-4
+3 For what if some did not believe? shall their unbelief make the faith of God without effect? 4 God forbid: yea, let God be true, but every man a liar; as it is written, That thou mightest be justified in thy sayings, and mightest overcome when thou art judged.

+Tuesday 31-December, 2024 diff --git a/scripture/kjv/12/31/24/scripture.json b/scripture/kjv/12/31/24/scripture.json new file mode 100644 index 00000000..a8aee908 --- /dev/null +++ b/scripture/kjv/12/31/24/scripture.json @@ -0,0 +1,21 @@ +{ + "book": "Romans", + "chapter": "3", + "date": "Tuesday 31-December, 2024", + "getbible": "https://getbible.life/kjv/Romans/3/3-4", + "name": "Romans 3:3-4", + "scripture": [ + { + "nr": "3", + "text": "For what if some did not believe? shall their unbelief make the faith of God without effect?" + }, + { + "nr": "4", + "text": "God forbid: yea, let God be true, but every man a liar; as it is written, That thou mightest be justified in thy sayings, and mightest overcome when thou art judged." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "3-4", + "version": "kjv" +} diff --git a/scripture/kjv/12/31/24/scripture.md b/scripture/kjv/12/31/24/scripture.md new file mode 100644 index 00000000..62a62551 --- /dev/null +++ b/scripture/kjv/12/31/24/scripture.md @@ -0,0 +1,5 @@ +**Romans 3:3-4** + +3 For what if some did not believe? shall their unbelief make the faith of God without effect? 4 God forbid: yea, let God be true, but every man a liar; as it is written, That thou mightest be justified in thy sayings, and mightest overcome when thou art judged. + +[Tuesday 31-December, 2024](https://getbible.life/kjv/Romans/3/3-4) diff --git a/scripture/kjv/12/31/24/scripture.tg b/scripture/kjv/12/31/24/scripture.tg new file mode 100644 index 00000000..815aaee6 --- /dev/null +++ b/scripture/kjv/12/31/24/scripture.tg @@ -0,0 +1,4 @@ +Romans 3:3-4 +3 For what if some did not believe? shall their unbelief make the faith of God without effect? 4 God forbid: yea, let God be true, but every man a liar; as it is written, That thou mightest be justified in thy sayings, and mightest overcome when thou art judged. + +Tuesday 31-December, 2024 diff --git a/scripture/kjv/12/31/24/scripture.tg.id b/scripture/kjv/12/31/24/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/31/24/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/31/24/scripture.today b/scripture/kjv/12/31/24/scripture.today new file mode 100644 index 00000000..ddd2c176 --- /dev/null +++ b/scripture/kjv/12/31/24/scripture.today @@ -0,0 +1 @@ +45 3:3-4 diff --git a/scripture/kjv/12/31/25/scripture.html b/scripture/kjv/12/31/25/scripture.html new file mode 100644 index 00000000..a50ca835 --- /dev/null +++ b/scripture/kjv/12/31/25/scripture.html @@ -0,0 +1,3 @@ +Mark 10:42-45
+42 But Jesus called them to him, and saith unto them, Ye know that they which are accounted to rule over the Gentiles exercise lordship over them; and their great ones exercise authority upon them. 43 But so shall it not be among you: but whosoever will be great among you, shall be your minister: 44 And whosoever of you will be the chiefest, shall be servant of all. 45 For even the Son of man came not to be ministered unto, but to minister, and to give his life a ransom for many.

+Wednesday 31-December, 2025 diff --git a/scripture/kjv/12/31/25/scripture.json b/scripture/kjv/12/31/25/scripture.json new file mode 100644 index 00000000..05ebcc02 --- /dev/null +++ b/scripture/kjv/12/31/25/scripture.json @@ -0,0 +1,29 @@ +{ + "book": "Mark", + "chapter": "10", + "date": "Wednesday 31-December, 2025", + "getbible": "https://getbible.life/kjv/Mark/10/42-45", + "name": "Mark 10:42-45", + "scripture": [ + { + "nr": "42", + "text": "But Jesus called them to him, and saith unto them, Ye know that they which are accounted to rule over the Gentiles exercise lordship over them; and their great ones exercise authority upon them." + }, + { + "nr": "43", + "text": "But so shall it not be among you: but whosoever will be great among you, shall be your minister:" + }, + { + "nr": "44", + "text": "And whosoever of you will be the chiefest, shall be servant of all." + }, + { + "nr": "45", + "text": "For even the Son of man came not to be ministered unto, but to minister, and to give his life a ransom for many." + } + ], + "source": "https://git.vdm.dev/christian/daily-scripture", + "telegram": "daily_scripture", + "verse": "42-45", + "version": "kjv" +} diff --git a/scripture/kjv/12/31/25/scripture.md b/scripture/kjv/12/31/25/scripture.md new file mode 100644 index 00000000..915ded9c --- /dev/null +++ b/scripture/kjv/12/31/25/scripture.md @@ -0,0 +1,5 @@ +**Mark 10:42-45** + +42 But Jesus called them to him, and saith unto them, Ye know that they which are accounted to rule over the Gentiles exercise lordship over them; and their great ones exercise authority upon them. 43 But so shall it not be among you: but whosoever will be great among you, shall be your minister: 44 And whosoever of you will be the chiefest, shall be servant of all. 45 For even the Son of man came not to be ministered unto, but to minister, and to give his life a ransom for many. + +[Wednesday 31-December, 2025](https://getbible.life/kjv/Mark/10/42-45) diff --git a/scripture/kjv/12/31/25/scripture.tg b/scripture/kjv/12/31/25/scripture.tg new file mode 100644 index 00000000..41f70ffa --- /dev/null +++ b/scripture/kjv/12/31/25/scripture.tg @@ -0,0 +1,4 @@ +Mark 10:42-45 +42 But Jesus called them to him, and saith unto them, Ye know that they which are accounted to rule over the Gentiles exercise lordship over them; and their great ones exercise authority upon them. 43 But so shall it not be among you: but whosoever will be great among you, shall be your minister: 44 And whosoever of you will be the chiefest, shall be servant of all. 45 For even the Son of man came not to be ministered unto, but to minister, and to give his life a ransom for many. + +Wednesday 31-December, 2025 diff --git a/scripture/kjv/12/31/25/scripture.tg.id b/scripture/kjv/12/31/25/scripture.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/12/31/25/scripture.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/12/31/25/scripture.today b/scripture/kjv/12/31/25/scripture.today new file mode 100644 index 00000000..1e25ff56 --- /dev/null +++ b/scripture/kjv/12/31/25/scripture.today @@ -0,0 +1 @@ +41 10:42-45 diff --git a/scripture/kjv/README.html b/scripture/kjv/README.html index 40b4a04b..83a52f51 100644 --- a/scripture/kjv/README.html +++ b/scripture/kjv/README.html @@ -1,3 +1,3 @@ -Romans 8:36-37
-36 As it is written, For thy sake we are killed all the day long; we are accounted as sheep for the slaughter. 37 Nay, in all these things we are more than conquerors through him that loved us.

-Sunday 11-December, 2022 +1 Corinthians 2:7
+7 But we speak the wisdom of God in a mystery, even the hidden wisdom, which God ordained before the world unto our glory:

+Tuesday 16-June, 2026 diff --git a/scripture/kjv/README.json b/scripture/kjv/README.json index c7a677b2..3e6f74fa 100644 --- a/scripture/kjv/README.json +++ b/scripture/kjv/README.json @@ -1,17 +1,17 @@ { - "date": "Sunday 11-December, 2022", - "name": "Romans 8:36-37", + "book": "1 Corinthians", + "chapter": "2", + "date": "Tuesday 16-June, 2026", + "getbible": "https://getbible.life/kjv/1 Corinthians/2/7", + "name": "1 Corinthians 2:7", "scripture": [ { - "nr": "36", - "text": "As it is written, For thy sake we are killed all the day long; we are accounted as sheep for the slaughter." - }, - { - "nr": "37", - "text": "Nay, in all these things we are more than conquerors through him that loved us." + "nr": "7", + "text": "But we speak the wisdom of God in a mystery, even the hidden wisdom, which God ordained before the world unto our glory:" } ], - "source": "https://github.com/trueChristian/daily-scripture", + "source": "https://git.vdm.dev/christian/daily-scripture", "telegram": "daily_scripture", + "verse": "7", "version": "kjv" } diff --git a/scripture/kjv/README.md b/scripture/kjv/README.md index e1f21c2b..9f17282d 100644 --- a/scripture/kjv/README.md +++ b/scripture/kjv/README.md @@ -1,5 +1,5 @@ -**Romans 8:36-37** +**1 Corinthians 2:7** -36 As it is written, For thy sake we are killed all the day long; we are accounted as sheep for the slaughter. 37 Nay, in all these things we are more than conquerors through him that loved us. +7 But we speak the wisdom of God in a mystery, even the hidden wisdom, which God ordained before the world unto our glory: -[Sunday 11-December, 2022](https://t.me/s/daily_scripture) +[Tuesday 16-June, 2026](https://getbible.life/kjv/1 Corinthians/2/7) diff --git a/scripture/kjv/README.tg b/scripture/kjv/README.tg index e0f7b32b..2ba9e667 100644 --- a/scripture/kjv/README.tg +++ b/scripture/kjv/README.tg @@ -1,4 +1,4 @@ -Romans 8:36-37 -36 As it is written, For thy sake we are killed all the day long; we are accounted as sheep for the slaughter. 37 Nay, in all these things we are more than conquerors through him that loved us. +1 Corinthians 2:7 +7 But we speak the wisdom of God in a mystery, even the hidden wisdom, which God ordained before the world unto our glory: -Sunday 11-December, 2022 +Tuesday 16-June, 2026 diff --git a/scripture/kjv/README.tg.id b/scripture/kjv/README.tg.id new file mode 100644 index 00000000..19765bd5 --- /dev/null +++ b/scripture/kjv/README.tg.id @@ -0,0 +1 @@ +null diff --git a/scripture/kjv/README.today b/scripture/kjv/README.today index 0f3fca1a..d7465e9e 100644 --- a/scripture/kjv/README.today +++ b/scripture/kjv/README.today @@ -1 +1 @@ -45 8:36-37 +46 2:7 diff --git a/src/SCRIPTURE b/src/SCRIPTURE index b16b0af4..a56681ed 100644 --- a/src/SCRIPTURE +++ b/src/SCRIPTURE @@ -1,10 +1,7 @@ -1 14:21-24 1 15:1 -1 15:5 1 17:1 1 17:5 1 22:18 -1 29:20 1 2:18 1 32:26 1 39:9 @@ -12,14 +9,15 @@ 1 3:16 1 3:17-19 1 45:14-15 +1 4:7 2 14:14 2 15:26 2 20:17 2 23:1-2 -2 23:20-25 2 25:2 2 27:20 2 33:16-23 +2 35:34 2 35:5-29 2 4:12 3 19:17-18 @@ -30,6 +28,7 @@ 5 32:12 5 32:39 5 33:13-16 +5 33:25-29 5 33:3 5 33:9-10 6 15:19 @@ -45,15 +44,16 @@ 7 5:18 7 5:2-9 7 5:31 +7 6:14-16 8 1:16-17 8 2:12 -8 3:10 9 1:14-17 9 2:1-10 9 3:10 12 14:3-4 12 17:9 12 19:30-31 +12 20:5-6 12 25:30 12 2:9-10 12 3:15 @@ -64,6 +64,7 @@ 13 29:16-17 13 4:10 14 15:14-15 +14 15:7 14 20:20 14 20:32-37 14 26:16-18 @@ -74,22 +75,21 @@ 15 8:22-23 16 1:9 16 2:20 +16 4:17 16 4:19-20 16 5:10-13 16 5:19 16 6:9 16 8:10 17 1:17-22 -18 11:13-19 18 15:11 -18 19:25-27 -18 1:5 +18 1:21-22 18 22:21-23 -18 22:24-30 18 25:5-6 18 27:5-6 18 28:28 18 29:12-17 +18 2:9-10 18 31:1-9 18 31:16-20 18 31:31-32 @@ -115,6 +115,7 @@ 18 4:17-19 18 5:17-19 18 5:26 +18 6:14 18 8:21 18 8:5-7 19 101:3 @@ -126,23 +127,22 @@ 19 103:21 19 103:5 19 103:8-12 +19 104:27-28 19 104:33 -19 104:35 19 106:24 19 107:10-14 19 107:17-20 -19 107:29-30 19 107:38 -19 107:4-7 19 107:40-43 19 109:28 +19 109:30-31 19 109:4 19 10:17-18 19 110:7 19 112:1-2 -19 112:4 19 112:5-9 19 113:5-7 +19 115:1 19 115:14 19 116:18-19 19 118:5 @@ -161,7 +161,7 @@ 19 119:34-35 19 119:47-48 19 119:5-6 -19 119:59-60 +19 119:6 19 119:62 19 119:63 19 119:66 @@ -174,16 +174,15 @@ 19 122:1 19 124:7 19 125:1 -19 127:1-2 19 127:3-5 -19 128:1-6 19 129:2 19 12:5 -19 130:3-4 19 131:1-3 19 133:1-3 19 137:5-6 19 138:3 +19 139:23-24 +19 141:5 19 143:10 19 144:11-12 19 145:10-12 @@ -211,11 +210,13 @@ 19 19:14 19 19:7-10 19 1:1-2 +19 1:5 19 20:4-5 19 20:7 19 20:8 19 21:4 19 22:11-13 +19 22:21 19 22:24 19 22:26 19 23:1-3 @@ -244,27 +245,26 @@ 19 31:5 19 32:1 19 32:11 -19 32:3-5 19 32:8-9 19 33:16-19 19 33:3 19 33:9 +19 34:1 19 34:18 19 34:19 19 34:4 19 34:6 19 34:7 -19 36:7-9 19 37:1-2 19 37:16-17 19 37:25 +19 37:4 19 37:5-6 19 37:8 +19 38:18 19 38:5 19 39:1 -19 39:11 19 39:4-6 -19 3:6 19 40:1-3 19 40:12-13 19 40:16 @@ -276,6 +276,7 @@ 19 43:3-4 19 44:3 19 45:1 +19 45:10-11 19 45:16 19 45:7 19 46:7 @@ -284,6 +285,7 @@ 19 4:1 19 4:8 19 50:14 +19 50:15 19 50:20-22 19 50:5 19 51:1-3 @@ -301,25 +303,22 @@ 19 57:1-2 19 57:7 19 5:3 +19 60:11 19 61:4-5 -19 62:1-2 19 62:9 19 63:3 -19 63:4-8 -19 65:9-13 19 66:13-14 19 68:1-5 +19 68:10 19 68:11 19 68:16 19 68:18 19 68:19 19 68:20 -19 68:24-26 19 68:28 19 68:6 19 68:9 19 69:1-3 -19 69:19 19 69:5 19 69:6 19 69:9 @@ -328,6 +327,7 @@ 19 71:20-21 19 72:18-19 19 73:2-3 +19 73:23-24 19 73:25 19 74:22-23 19 76:4 @@ -341,9 +341,11 @@ 19 84:10 19 84:3 19 84:4 +19 84:5-7 19 86:11 19 87:7 19 88:18 +19 91:5-7 19 92:5 19 94:11 19 94:15 @@ -351,8 +353,8 @@ 19 97:11 19 9:1 19 9:18 -20 10:12 20 10:17 +20 10:18 20 10:19 20 10:20 20 10:21 @@ -362,14 +364,15 @@ 20 11:12 20 11:13 20 11:2 -20 11:25 +20 11:24 20 11:30 +20 11:9 20 12:1 -20 12:15 -20 12:18 +20 12:10 +20 12:19 20 12:24 +20 12:26 20 12:27 -20 13:10 20 13:20 20 13:24 20 13:4 @@ -390,35 +393,33 @@ 20 15:4 20 15:5 20 15:8 -20 16:17 20 16:19 20 16:20 20 16:3 20 16:32 20 16:33 20 16:6 +20 17:10 +20 17:14 20 17:15 -20 17:17 -20 17:26 20 17:27 20 17:28 20 17:8 20 17:9 20 18:1 20 18:12 -20 18:14 +20 18:24 20 18:5 20 18:6 20 18:9 20 19:11 20 19:15 20 19:17 -20 19:18 -20 19:2 20 19:20 20 19:3 20 19:6 20 1:10 +20 1:33 20 1:7 20 20:13 20 20:18 @@ -434,15 +435,17 @@ 20 21:13 20 21:22 20 21:23 +20 21:26 20 21:28 20 21:3 +20 21:30 20 21:31 20 21:8 20 22:11 20 22:15 20 22:16 20 22:17-18 -20 22:20-21 +20 22:19 20 22:29 20 22:6 20 22:9 @@ -460,12 +463,14 @@ 20 24:21-22 20 24:26 20 24:32 +20 25:12 20 25:14 20 25:2 20 25:26 20 25:28 20 25:4 20 25:50 +20 26:12 20 26:2 20 27:11 20 27:15 @@ -487,7 +492,6 @@ 20 29:17 20 29:2 20 29:2 5 -20 29:20 20 29:22 20 29:23 20 29:27 @@ -504,39 +508,40 @@ 20 31:8-9 20 3:1-2 20 3:11-12 +20 3:13-14 20 3:27 20 3:28 20 3:3-4 20 3:30 -20 3:35 20 3:5 20 3:6 -20 3:7 20 3:9-10 20 4:13 +20 4:18 20 4:22 +20 4:23 20 4:25 20 4:5 20 4:7 -20 4:8 20 4:9 20 5:8 20 6:10 20 6:19 -20 8:32-33 +20 6:6 +20 6:9 20 8:34-36 20 9:9 21 10:1 21 10:20 21 11:1 +21 11:2 21 11:6 21 12:13 21 12:14 21 1:18 21 3:18 21 4:13 -21 5:4 -21 7:27 +21 7:9 21 8:11 21 9:10 22 2:15 @@ -546,10 +551,12 @@ 22 4:7 22 4:9 22 5:16 +22 5:4 22 6:4 -22 7:10 22 8:6 22 8:7 +23 11:6-9 +23 1:13 23 1:18-20 23 1:26-27 23 1:9 @@ -561,7 +568,6 @@ 23 26:3 23 27:2-3 23 27:6 -23 28:23-29 23 28:5 23 2:12 23 30:22-23 @@ -570,13 +576,11 @@ 23 32:18 23 32:20 23 32:8 -23 33:17 23 33:20 23 35:10 23 35:3 23 35:8 23 38:17 -23 3:11 23 3:16-24 23 40:1-2 23 40:29 @@ -603,12 +607,13 @@ 23 51:3 23 52:11 23 52:7 +23 53:1-6 23 53:12 23 54:15-17 23 54:7-8 23 54:9-10 -23 55:1-3 23 55:10-11 +23 55:12-13 23 55:6-7 23 55:8-9 23 56:10-11 @@ -618,31 +623,27 @@ 23 58:1 23 58:6-12 23 59:1-2 -23 59:19 23 59:20 23 59:21 23 5:20 23 60:14 23 60:15 -23 60:20 23 60:22 23 60:4-5 23 61:1-3 -23 61:11 -23 61:9 23 62:1 23 62:12 +23 62:6-7 23 63:10 23 63:8-9 23 64:1-2 23 64:5-9 23 65:2 23 66:1-2 -23 66:13-14 23 66:16 23 66:5 23 66:8 -23 6:8 +23 7:15 24 10:23 24 12:6 24 13:15 @@ -657,15 +658,16 @@ 24 22:13-14 24 22:16-17 24 23:28-29 -24 29:11 +24 23:30 24 2:17 24 2:23 24 30:11 24 31:3-4 24 32:27 +24 3:10 24 3:14-15 -24 48:10 24 4:1 +24 6:14 24 6:27-30 24 6:6 24 7:9-11 @@ -683,7 +685,9 @@ 26 16:4-6 26 18:20 26 18:31 +26 21:16-17 26 22:30 +26 2:1-3,10 26 33:11 26 33:15 26 33:30-33 @@ -696,26 +700,24 @@ 26 36:26-27 26 37:1-6 26 37:11-14 -26 37:7-10 26 3:14-16 26 3:17-19 26 3:20-21 26 3:24 26 3:26-27 +26 43:10-11 26 44:23 26 44:28 26 44:30-31 26 44:9 26 45:10 26 47:10-11 -26 47:12 26 47:3-5 26 47:9 26 6:1 26 6:11 26 9:4-11 27 10:12-13 -27 10:18-19 27 12:10 27 12:3 27 1:20 @@ -724,7 +726,6 @@ 27 3:18 27 3:25 27 3:26 -27 3:27 27 3:28 27 3:29 27 4:17 @@ -736,7 +737,9 @@ 27 4:37 27 5:20 27 5:22 +27 6:10 27 6:11 +27 6:20-24 27 6:27 27 6:4 27 7:18 @@ -755,10 +758,11 @@ 28 14:9 28 5:15 28 6:1 -28 6:11 28 6:3 +28 6:4 28 6:7 28 7:3-4 +28 7:8-9 28 8:11-12 28 8:14 28 8:5 @@ -770,9 +774,7 @@ 29 3:18 30 3:12 30 3:6 -30 3:7 30 3:8 -30 5:10 30 5:15 30 5:18-24 30 6:4-6 @@ -783,10 +785,7 @@ 31 1:3 32 1:3 32 2:10 -32 2:6 -32 2:7 32 2:9 -32 3:2 32 3:8-10 32 4:1,3-4 32 4:1-4 @@ -794,6 +793,7 @@ 33 2:11 33 2:12 33 2:13 +33 2:6-7 33 3:12 33 3:8 33 5:7 @@ -806,17 +806,20 @@ 34 12:3 34 1:3 35 2:2 +36 3:12-13 36 3:15 -36 3:17 36 3:19 36 3:5 36 3:9 +37 1:14 37 1:4-11 37 2:3-5 +37 2:8 38 11:17 38 11:4 38 11:7 38 13:1 +38 1:14 38 1:17 38 2:5 38 4:10 @@ -829,6 +832,7 @@ 39 3:12 39 3:5 39 4:2-3 +40 10:19-20 40 10:27-28 40 10:29-31 40 10:32-33 @@ -837,9 +841,7 @@ 40 11:25 40 11:26 40 11:28-30 -40 11:6 40 12:30 -40 12:35-37 40 12:46-50 40 13:16-17 40 13:22-23 @@ -849,20 +851,20 @@ 40 13:44 40 13:45-46 40 13:51-52 -40 14:23 +40 13:57 +40 14:30-31 40 15:12-14 40 15:27-28 +40 15:8 40 16:26 40 17:19-21 40 17:8 40 18:1-4 40 18:11 40 18:15-17 -40 18:19-20 40 18:21-22 40 18:23-35 40 19:12 -40 19:16-24 40 19:26 40 19:29-30 40 20:25-28 @@ -876,20 +878,18 @@ 40 22:29 40 22:3-5 40 22:37-39 -40 22:41-45 40 22:9 40 23:13 40 23:23-24 -40 23:28 40 23:34-37 40 23:6-12 -40 24:12-13 40 24:27-28 40 24:33 40 24:35 40 24:39-42 40 24:45-47 40 25:1-13 +40 25:14-30 40 25:20 40 25:33-46 40 26:36-45 @@ -898,7 +898,6 @@ 40 28:18-20 40 3:8 40 4:1 -40 4:19-20 40 4:21-22 40 4:4 40 4:8-11 @@ -907,7 +906,6 @@ 40 5:19 40 5:21-26 40 5:27-32 -40 5:3 40 5:33_37 40 5:38-41 40 5:4 @@ -917,7 +915,7 @@ 40 5:8 40 5:9 40 6:1-4 -40 6:10 +40 6:14-15 40 6:19-21 40 6:24 40 6:25-34 @@ -927,7 +925,7 @@ 40 7:15-18 40 7:20-23 40 7:24-25 -40 7:28-29 +40 7:7-11 40 8:14-17 40 8:19-23 40 8:24-26 @@ -938,19 +936,16 @@ 41 10:16 41 10:27 41 10:39 -41 10:42-45 41 10:9-12 41 11:21-24 41 11:24 41 11:25-26 -41 12:10-11 41 12:41-44 41 12:44 41 13:29 41 13:33 41 13:37 41 14:35-36 -41 14:38 41 15:13 41 15:28 41 15:34 @@ -974,12 +969,14 @@ 42 10:29-37 42 10:41-42 42 11:39 +42 11:41-42 +42 11:5-13 42 12:1 42 12:11-12 42 12:13-15 42 12:16-20 -42 12:2-3 42 12:22-24 +42 12:25-26 42 12:27-28 42 12:29-31 42 12:32 @@ -1001,17 +998,19 @@ 42 14:25-27 42 14:33 42 15:1 +42 15:17-18 42 15:20-24 42 15:28-32 +42 15:7 42 16:10 42 16:11 42 16:13 -42 16:15 42 16:16 42 16:19-31 42 16:7-9 42 17:15-18 42 17:26-30 +42 17:3 42 17:32 42 17:34-36 42 17:9-10 @@ -1024,23 +1023,19 @@ 42 19:40 42 19:41-42 42 19:5-6 -42 19:8-9 42 1:16 42 1:30 -42 1:45 42 1:47 42 1:51-53 +42 1:6 42 1:74-75 42 20:21 42 20:23 42 20:3-7 42 20:46-47 -42 21:13 -42 21:17-19 42 21:26-28 42 21:3-4 42 21:34 -42 21:36 42 21:37-38 42 21:9 42 22:19-20 @@ -1054,25 +1049,21 @@ 42 22:46 42 22:51 42 22:52-53 +42 22:54 42 22:57-60 -42 22:61-62 42 22:63-65 42 22:68 42 23:12 42 23:18 42 23:25 -42 23:34 +42 23:28 42 23:5 42 23:9 42 24:25 42 24:32 42 24:37-38 42 24:45 -42 24:49 -42 24:53 -42 2:27 42 2:52 -42 3:10-14 42 4:42-43 42 5:13 42 5:27-28 @@ -1087,6 +1078,7 @@ 42 6:46 42 7:29-30 42 7:35 +42 7:47 42 7:48 42 8:1-3 42 8:11 @@ -1099,21 +1091,27 @@ 42 9:6 43 10:11 43 10:16 -43 10:19-21 43 10:27 +43 10:28 +43 10:29 +43 10:42 43 11:22 43 11:25 +43 11:26 43 11:3 43 11:35-36 +43 11:4 43 11:40 43 11:52 -43 11:6-7 43 12:10 43 12:19 43 12:24 43 12:25 +43 12:26 43 12:27 +43 12:31 43 12:36 +43 12:42-43 43 12:46 43 12:48 43 12:49 @@ -1126,7 +1124,6 @@ 43 13:5 43 13:7 43 14:1 -43 14:12 43 14:13 43 14:14 43 14:15 @@ -1138,7 +1135,7 @@ 43 14:3 43 14:4 43 15:10 -43 15:12 +43 15:11 43 15:13 43 15:14 43 15:16 @@ -1161,13 +1158,13 @@ 43 17:11 43 17:17 43 17:21 -43 17:23 43 17:26 43 17:6 43 18:11 43 18:17 43 18:20 43 18:23 +43 18:25 43 18:37 43 19:16 43 19:17 @@ -1175,12 +1172,13 @@ 43 1:12-13 43 1:16 43 1:29 -43 1:33 +43 1:37 43 1:4 43 20:25-29 +43 21:15 43 21:16 -43 21:17 43 21:22 +43 21:25 43 21:6 43 2:17 43 2:24 @@ -1188,10 +1186,8 @@ 43 3:15 43 3:16-17 43 3:19 -43 3:20 43 3:21 43 3:27 -43 3:34 43 3:36 43 3:8-10 43 4:14 @@ -1200,9 +1196,9 @@ 43 4:32 43 4:34 43 4:35 +43 4:35 43 4:37-38 43 4:44 -43 4:48 43 4:50 43 5:14 43 5:17 @@ -1217,22 +1213,24 @@ 43 6:27 43 6:37 43 6:38 -43 6:39 43 6:40 43 6:51 +43 6:57 43 6:60 43 6:66-69 43 7:12 43 7:17 43 7:18 +43 7:22 43 7:24 43 7:37 +43 7:38-39 43 7:43 43 7:46 43 7:53 43 7:6 -43 7:7 43 8:10-11 +43 8:12 43 8:15 43 8:26 43 8:29 @@ -1241,12 +1239,13 @@ 43 8:34 43 8:36 43 8:40 +43 8:43 43 8:45 43 8:47 43 8:7 43 8:8 43 9:22 -43 9:34 +43 9:3 43 9:4 43 9:5 44 10:20 @@ -1254,7 +1253,6 @@ 44 10:43 44 11:24 44 11:29 -44 12:2 44 13:22 44 13:36 44 13:40-41 @@ -1273,7 +1271,6 @@ 44 20:27 44 20:28 44 20:35 -44 21:13 44 21:14 44 24:16 44 27:22 @@ -1282,19 +1279,23 @@ 44 2:28 44 2:4 44 2:42 +44 2:44 +44 3:16 +44 3:19 44 3:22 44 3:9 44 4:10 44 4:14 44 4:19 44 4:20 +44 4:28 44 4:29 +44 4:31 44 4:32 44 5:14 44 5:20 44 5:25 44 5:29 -44 5:32 44 5:39 44 5:41 44 5:42 @@ -1305,9 +1306,8 @@ 44 8:15-17 44 8:37-38 44 8:40 -44 9:11 44 9:31 -44 9:32 +44 9:34 44 9:35 44 9:36 44 9:38 @@ -1319,10 +1319,10 @@ 45 10:9-10 45 11:20-22 45 11:29 -45 11:3-5 45 11:33 45 11:7 45 12:1 +45 12:10 45 12:11 45 12:12 45 12:14 @@ -1341,25 +1341,27 @@ 45 14:5 45 15:1 45 15:14 +45 15:2 45 15:5-6 45 15:7 45 16:20 -45 1:14-15 45 1:16 45 1:3-4 45 1:5 +45 1:9-13 45 2:1 -45 2:4 +45 2:28-29 45 2:7-10 45 3:23-24 -45 3:3-4 45 4:19-21 +45 4:5-8 +45 5:10 45 5:20 -45 5:8 45 6:1-2 45 6:11 45 6:12 45 6:15 +45 6:22 45 6:23 45 6:3-4 45 6:5-6 @@ -1367,6 +1369,7 @@ 45 7:24 45 7:5-6 45 8:12-13 +45 8:17 45 8:18 45 8:23 45 8:25 @@ -1376,30 +1379,28 @@ 45 8:32 45 8:33-34 45 8:35 +45 8:36-37 45 8:38-39 -45 9:1-2 45 9:20 45 9:25-26 -45 9:27 45 9:33 -46 10:1-12 46 10:13 46 10:23 46 10:24 -46 10:33 -46 11:16 46 12:10 +46 12:11 46 12:13 46 12:15-16 46 12:17 46 12:21 46 12:22 46 12:23 -46 12:24 46 12:26 46 12:7 46 12:8 46 12:9 +46 13:1 +46 13:2 46 13:3-8 46 13:4 46 13:5 @@ -1428,14 +1429,11 @@ 46 17:27 46 1:10 46 1:27 -46 1:28 46 1:8 46 2:10 46 2:12 -46 2:7 46 3:12-15 46 3:22 -46 3:3-4 46 3:7 46 3:8 46 4:16 @@ -1449,7 +1447,9 @@ 46 6:12 46 6:18 46 6:19 +46 6:20 46 6:7 +46 6:9-10 46 7:10-11 46 7:22 46 7:23 @@ -1478,12 +1478,12 @@ 47 12:15 47 12:20 47 13:11 +47 13:12 47 13:14 47 13:5 47 13:6 47 13:8 47 13:9 -47 14:11 47 1:12 47 1:4 47 1:8-10 @@ -1491,8 +1491,8 @@ 47 2:15-16 47 2:17 47 2:8 +47 2:9 47 3:12 -47 3:17 47 3:18 47 3:2 47 3:3 @@ -1520,8 +1520,8 @@ 47 5:20 47 5:21 47 5:6 +47 5:7 47 5:8 -47 5:9 47 6:1 47 6:11-13 47 6:14-18 @@ -1535,7 +1535,6 @@ 47 7:16 47 7:2 47 7:4 -47 7:5 47 7:9 47 8:11 47 8:14 @@ -1549,17 +1548,16 @@ 47 8:8 47 8:9 47 9:10-11 -47 9:15 +47 9:13 47 9:6 47 9:7 47 9:8 -47 9:9 48 1:10 48 1:24 48 2:10 48 2:20 -48 3:28 48 4:10-11 +48 4:16 48 4:18 48 5:13 48 5:14 @@ -1580,16 +1578,15 @@ 48 6:6 48 6:7 48 6:9-10 -49 1:15-17 49 1:18 49 1:19 49 1:3 49 1:4 49 2:1 +49 2:10 49 2:11-13 49 2:14-16 49 2:18 -49 2:6-7 49 2:8 49 3:15 49 3:16 @@ -1601,7 +1598,7 @@ 49 4:15 49 4:16 49 4:22-24 -49 4:25 +49 4:28 49 4:29-30 49 4:31-32 49 4:7 @@ -1609,12 +1606,12 @@ 49 5:14 49 5:15-16 49 5:18-21 +49 5:22-24 49 5:25 49 5:27 49 5:30 49 5:31-32 49 5:33 -49 5:8-11 49 6:1-3 49 6:10 49 6:13 @@ -1636,7 +1633,6 @@ 50 1:4-5 50 1:6 50 1:9-11 -50 2:1-2 50 2:12-13 50 2:14 50 2:15-16 @@ -1651,9 +1647,11 @@ 50 3:17-19 50 3:20-21 50 3:3 +50 3:7-8 50 4:12-13 50 4:19 50 4:2 +50 4:23 50 4:4 50 4:5 50 4:6 @@ -1669,11 +1667,11 @@ 51 2:13-14 51 2:16-17 51 2:18 -51 2:6 51 2:8 51 2:9-10 51 3:1 51 3:12-13 +51 3:14 51 3:16 51 3:17 51 3:18 @@ -1695,27 +1693,29 @@ 52 3:12-13 52 3:3 52 4:1 -52 4:11-12 52 4:9-10 +52 5:11 52 5:12-13 52 5:14 +52 5:15 52 5:16 52 5:17 52 5:18 52 5:19 +52 5:22 52 5:23-24 52 5:6 52 5:8-10 53 1:11-12 53 2:16-17 53 3:10 -53 3:13 53 3:16 53 3:3 54 1:12 54 1:14 54 1:15 54 1:5-6 +54 1:7 54 2:1-4 54 2:11 54 2:12-14 @@ -1740,20 +1740,21 @@ 54 6:17-19 54 6:6-8 54 6:9-10 +55 2:1 55 2:15 55 2:19 55 2:22 -55 2:24-26 55 2:4 55 2:5 -55 2:8 55 3:12 +55 3:5 55 4:18 55 4:2 55 4:22 55 4:8 56 2:1 56 2:14 +56 3:14 56 3:2-3 56 3:8-9 57 1:12 @@ -1762,20 +1763,23 @@ 58 10:17 58 10:19-22 58 10:23 +58 10:34 58 10:35 58 10:36-39 58 11:1 58 11:19 -58 11:24-26 58 11:30 +58 11:32-38 58 11:6 58 11:7 58 11:8 58 12:1 58 12:11-12 +58 12:14 58 12:15 58 12:2-4 58 12:22-24 +58 12:25 58 12:28-29 58 12:5-6 58 12:9-10 @@ -1791,7 +1795,6 @@ 58 2:17-18 58 2:2 58 3:1-2 -58 3:12 58 3:18-19 58 3:7-8 58 4:1 @@ -1804,8 +1807,6 @@ 58 5:9 58 6:1-2 58 6:10 -58 6:11-12 -58 6:15 58 7:25 58 9:13-14 58 9:27-28 @@ -1816,10 +1817,13 @@ 59 1:22-24 59 1:25 59 1:26 +59 1:27 +59 1:5-8 59 1:9 59 2:1 59 2:14-17 59 2:26 +59 2:8-9 59 3:1-2 59 3:10-12 59 3:13-18 @@ -1828,7 +1832,6 @@ 59 4:17 59 4:4 59 4:7 -59 4:9-10 59 5:1-3 59 5:10-11 59 5:13 @@ -1846,6 +1849,7 @@ 60 3:10-11 60 3:13 60 3:8-9 +60 4:1-2 60 4:12-13 60 4:14-16 60 4:19 @@ -1857,31 +1861,30 @@ 60 5:7 60 5:8-9 61 1:3-11 +61 2:4-9 61 3:1-2 61 3:17-18 61 3:8 62 1:3 62 1:5-6 -62 1:7-8 62 1:9 62 2:1-2 62 2:12 62 2:15-17 -62 2:20 62 2:25 -62 2:29 62 2:4-6 62 2:9-11 62 3:1 62 3:10 62 3:11 +62 3:13 62 3:15 62 3:16 62 3:16-18 +62 3:2-3 +62 3:20 62 3:22 62 3:23 -62 3:24 -62 4:1-3 62 4:10-11 62 4:12 62 4:15 @@ -1895,15 +1898,13 @@ 62 4:7-8 62 4:8 62 4:9 -62 5:10 -62 5:12-13 62 5:14-15 62 5:18 62 5:19 62 5:20 62 5:21 62 5:3-4 -63 1:12 +62 5:5 63 1:2-4 63 1:3 63 1:5 @@ -1912,14 +1913,13 @@ 64 1:12 64 1:2 64 1:3-4 -64 1:4 64 1:6-8 64 1:9-10 65 1:11 65 1:2 +65 1:20-21 65 1:22-23 65 1:24-25 -65 1:3 66 12:11 66 14:11-12 66 14:13 @@ -1938,13 +1938,13 @@ 66 1:8 66 1:9 66 20:12 +66 20:15 66 20:4 66 21:4 66 21:7 66 21:8 66 21:9-27 66 22:11 -66 22:12 66 22:14 66 22:16 66 22:17 @@ -1953,14 +1953,13 @@ 66 2:13 66 2:16 66 2:17 +66 2:19 66 2:4-5 66 2:9-10 +66 3:10 66 3:11 -66 3:12 66 3:15-19 -66 3:17-19 66 3:19 -66 3:2 66 3:20 66 3:21 66 3:3 @@ -1969,6 +1968,7 @@ 66 3:6 66 3:8 66 3:9 +66 4:9-11 66 5:13 66 5:5 66 5:9 diff --git a/src/SCRIPTURE_ALL b/src/SCRIPTURE_ALL index 7965cbf3..b7ee19ca 100644 --- a/src/SCRIPTURE_ALL +++ b/src/SCRIPTURE_ALL @@ -1624,13 +1624,13 @@ 47 12:15 47 12:20 47 13:11 +47 13:12 47 13:14 47 13:5 47 13:6 47 13:8 47 13:9 47 1:4 -47 14:11 47 1:8-10 47 2:14 47 2:15-16 diff --git a/src/SCRIPTURE_USED b/src/SCRIPTURE_USED index 64ab2728..7a1c5fd6 100644 --- a/src/SCRIPTURE_USED +++ b/src/SCRIPTURE_USED @@ -1,182 +1,182 @@ -23 1:13 +62 3:24 23 45:2 -20 10:18 -23 7:15 -65 1:20-21 -54 1:7 -40 6:14-15 -26 8:5-18 -20 18:24 -46 12:11 -43 18:25 -62 3:2-3 -5 33:25-29 -20 6:9 -43 4:35 -40 25:14-30 -42 7:47 -36 3:12-13 -19 109:30-31 -43 21:15 -43 12:42-43 -66 20:15 -21 7:9 -43 7:22 -21 11:2 -58 12:14 -20 6:6 -44 4:28 -47 2:9 -47 9:13 -40 10:19-20 -42 15:7 +30 5:10 +58 3:12 +27 10:18-19 +18 19:25-27 +43 7:7 +62 4:1-3 +19 107:29-30 +42 22:61-62 +43 9:34 +23 60:20 +45 11:14 +43 17:23 +44 5:32 +41 10:42-45 +40 6:10 +63 1:12 +47 9:15 +20 10:12 +59 2:12-13 +42 21:17-19 +42 3:10-14 +45 3:3-4 +2 23:20-25 +41 14:38 +46 11:16 +43 3:34 +20 16:17 +20 22:24 +28 6:11 +23 60:1-2 +47 9:9 +46 10:1-12 +32 2:6 +21 7:27 +22 7:10 +18 22:24-30 +24 29:11 +64 1:4 +30 3:7 +66 3:12 1 24:31 -46 13:1 -27 4:26 -45 15:2 -43 8:12 -48 4:16 -43 9:3 -7 6:14-16 -43 1:37 +23 59:19 +1 15:5 +62 1:7-8 +40 19:16-24 19 9:9-10 -43 12:31 -19 73:23-24 -19 119:6 -42 11:41-42 -19 46:1-2 -43 12:26 -19 139:23-24 -42 22:54 -55 3:5 -42 15:17-18 -45 11:14 -23 54:11-12 -42 12:25-26 -24 23:30 -56 3:14 -14 15:7 -23 55:12-13 -43 8:43 -23 62:6-7 -20 4:23 -19 60:11 -40 14:30-31 -45 5:10 -43 11:4 -59 1:5-8 -1 4:7 -20 12:26 -23 53:1-6 -37 1:14 -62 3:20 -43 6:57 -20 11:9 -20 4:18 -40 15:8 -20 1:33 -46 6:20 -19 68:10 +48 3:28 +45 11:3-5 +20 17:17 +19 3:6 +20 3:7 +46 3:3-4 +19 62:1-2 +26 8:5-18 +42 21:13 +66 3:2 +23 3:11 +52 4:11-12 +62 5:12-13 +6 23:8-11 +62 2:20 +45 1:14-15 +58 6:15 +19 63:4-8 +66 22:12 +23 55:1-3 +19 65:9-13 +23 6:8 +45 2:4 +40 7:28-29 +23 66:13-14 3 19:15 -60 4:1-2 -16 4:17 -19 1:5 -59 2:12-13 -43 7:38-39 -19 34:1 -18 1:21-22 -20 11:24 -58 11:32-38 -44 2:44 -59 2:8-9 +36 3:17 +46 12:24 +19 39:11 +20 19:2 24 4:3 -50 3:7-8 -28 7:8-9 -19 50:15 -43 15:11 -45 8:17 -49 4:28 -44 4:31 -20 12:10 -45 6:22 -19 141:5 -6 23:8-11 -38 1:14 -20 25:12 -55 2:1 -66 2:19 -43 11:26 -42 23:28 -33 2:6-7 -27 6:10 -40 13:57 -18 6:14 -20 21:30 -19 84:5-7 -18 2:9-10 +19 36:7-9 +20 19:18 +40 4:19-20 +43 11:6-7 +53 3:13 +26 37:7-10 +45 9:27 +50 2:1-2 +58 11:24-26 +19 119:59-60 +19 128:1-6 +43 10:19-21 +43 4:48 +20 12:18 +62 2:29 +55 2:24-26 +19 46:1-2 +20 12:15 +20 17:26 +32 3:2 +20 18:14 +20 11:25 +23 33:17 +40 24:12-13 +23 61:11 +19 69:19 +46 10:33 +58 6:11-12 +66 3:17-19 +59 4:9-10 +62 5:10 +20 4:8 +19 112:4 +21 5:4 +44 9:11 +49 5:8-11 +42 21:36 +42 2:27 +19 104:35 +43 6:39 +26 47:12 +55 2:8 +19 130:3-4 +43 15:17 +23 54:11-12 +42 19:8-9 +42 23:34 +49 1:15-17 +20 8:32-33 +19 107:4-7 +1 29:20 +32 2:7 +40 18:19-20 +49 2:6-7 +43 21:17 +47 3:17 +24 48:10 +1 14:21-24 +23 61:9 19 145:18 -58 10:34 -26 43:10-11 -20 3:13-14 -44 9:34 -49 5:22-24 -50 4:23 -51 3:14 -20 12:19 -23 3:12 -42 1:6 -40 7:7-11 -19 104:27-28 -45 4:5-8 -52 5:15 -59 1:27 -62 3:13 +47 7:5 +43 3:20 +51 2:6 +49 4:25 +40 11:6 50 2:4 -46 6:9-10 -42 11:5-13 -47 5:7 -66 3:10 -66 4:9-11 -26 2:1-3,10 -43 15:17 -20 17:10 -19 38:18 -19 37:4 -45 12:10 -61 2:4-9 -27 6:20-24 -43 10:42 -12 20:5-6 -49 2:10 -20 17:14 -45 2:28-29 -62 5:5 -45 1:9-13 -22 5:4 -20 26:12 -58 12:25 -43 21:25 -44 3:19 -19 91:5-7 -46 13:2 -28 6:4 -43 10:29 -42 17:3 -43 10:28 -24 6:14 -20 21:26 -23 60:1-2 -20 22:19 -26 21:16-17 -23 11:6-9 -20 22:24 -24 3:10 -2 35:34 -19 115:1 -19 45:10-11 -19 22:21 -52 5:11 -37 2:8 -44 3:16 -52 5:22 -45 8:36-37 +18 1:5 +44 21:13 +46 1:28 +23 28:23-29 +42 16:15 +43 14:12 +20 13:10 +45 9:1-2 +45 5:8 +44 12:2 +8 3:10 +23 3:12 +65 1:3 +19 68:24-26 +40 12:35-37 +43 15:12 +41 12:10-11 +42 24:53 +20 29:20 +47 5:9 +19 32:3-5 +19 127:1-2 +40 14:23 +20 3:35 +40 5:3 +27 3:27 +42 1:45 +40 23:28 +42 24:49 +20 22:20-21 +44 9:32 +27 4:26 +40 22:41-45 +42 12:2-3 +43 1:33 +18 11:13-19 +46 2:7 diff --git a/src/telegram.sh b/src/telegram.sh new file mode 100644 index 00000000..c705b748 --- /dev/null +++ b/src/telegram.sh @@ -0,0 +1,94 @@ +#!/bin/bash + +# Do some prep work +command -v jq >/dev/null 2>&1 || { + echo >&2 "We require jq for this script to run, but it's not installed. Aborting." + exit 1 +} +command -v git >/dev/null 2>&1 || { + echo >&2 "We require git for this script to run, but it's not installed. Aborting." + exit 1 +} +command -v curl >/dev/null 2>&1 || { + echo >&2 "We require curl for this script to run, but it's not installed. Aborting." + exit 1 +} + +# global config options +DRY_RUN=0 +# translation version +VERSION="kjv" + +# check if we have options +while :; do + case $1 in + --dry) + DRY_RUN=1 + ;; + -v | --version) # Takes an option argument; ensure it has been specified. + if [ "$2" ]; then + VERSION=$2 + shift + else + echo >&2 '"--version" requires a non-empty option argument.' + exit 17 + fi + ;; + -v=?* | --version=?*) + VERSION=${1#*=} # Delete everything up to "=" and assign the remainder. + ;; + -v= | --version=) # Handle the case of an empty --version= + echo >&2 '"--version=" requires a non-empty option argument.' + exit 17 + ;; + *) # Default case: No more options, so break out of the loop. + break ;; + esac + shift +done + +#██████████████████████████████████████████████████████████████ DATE TODAY ███ +# must set the time to Namibian :) +TODAY=$(TZ="Africa/Windhoek" date '+%A %d-%B, %Y') + +#█████████████████████████████████████████████████████████████ SCRIPT PATH ███ +DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +SCRIPTURE_DIR="$DIR/../scripture/${VERSION}" + +BOT_TOKEN="${BOT_TOKEN}" +CHANNEL_ID="${CHANNEL_ID}" + +CHAT_INFO=$(curl -s "https://api.telegram.org/bot${BOT_TOKEN}/getChat?chat_id=${CHANNEL_ID}") + +MESSAGE_ID=$(echo $CHAT_INFO | jq ".result.pinned_message.forward_from_message_id") +TEXT=$(echo $CHAT_INFO | jq ".result.pinned_message.text" | tr -d "\"") +DATE_STR=$(echo $TEXT | grep -oE "[A-Za-z]+ \d{2}-[A-Za-z]+, \d{4}$" | tr -d ",") +DATE_FORMATTED=$(date -d "${DATE_STR}" +"%m/%d/%y") + +FILE_PATH="${SCRIPTURE_DIR}/${DATE_FORMATTED}/scripture.tg.id" + +# check test behaviour +if (("$DRY_RUN" == 1)); then + echo "====================================================" + echo "Message ID: ${MESSAGE_ID}" + echo "Path: ${FILE_PATH}" + echo "====================================================" +elif [ ! -f "${FILE_PATH}" ] || [ "$(cat "${FILE_PATH}")" != "${MESSAGE_ID}" ]; then + # update the default if this is kjv + if [ "${VERSION}" = 'kjv' ]; then + echo "${MESSAGE_ID}" >README.tg.id + fi + # make sure the folders exist + mkdir -p "$(dirname "${FILE_PATH}")" + + # set ID + echo "${MESSAGE_ID}" >"${FILE_PATH}" + echo "${MESSAGE_ID}" >"${SCRIPTURE_DIR}/README.tg.id" + + # make sure to add new files and folders + git add . + git commit -am"${TODAY}" + git push +fi + +exit 0 diff --git a/src/today.sh b/src/today.sh index a510d1fe..ef5cf93c 100755 --- a/src/today.sh +++ b/src/today.sh @@ -84,17 +84,19 @@ VERSION_DIR="$DIR/../scripture/${VERSION}" # only load if not already given if [ -z "${TODAY_S_SCRIPTURE}" ]; then #████████████████████████████████████████████████████████████████ RANDOM ███ - # set a random temp file - sort -R -k1 -b "${SORTED}" >"${TMP}" - # get the first line - TODAY_S_SCRIPTURE=$(head -n 1 "${TMP}") - # only if not a test - if (("$DRY_RUN" == 0)); then - # remove the verse - sed -i -e '1,1d' "${TMP}" - # add to used verses - [ -f "${USED}" ] && echo "$TODAY_S_SCRIPTURE" >>"${USED}" || echo "$TODAY_S_SCRIPTURE" >"${USED}" - fi + # set a random temp file + sort -R -k1 -b "${SORTED}" >"${TMP}" + # get a random number between 1 and 1900 + RANDOM_LINE=$((RANDOM % 1900 + 1)) + # get the line corresponding to the random number + TODAY_S_SCRIPTURE=$(sed -n "${RANDOM_LINE}{p;q}" "${TMP}") + # only if not a test + if (("$DRY_RUN" == 0)); then + # remove the verse + sed -i -e "${RANDOM_LINE},${RANDOM_LINE}d" "${TMP}" + # add to used verses + [ -f "${USED}" ] && echo "$TODAY_S_SCRIPTURE" >>"${USED}" || echo "$TODAY_S_SCRIPTURE" >"${USED}" + fi #███████████████████████████████████████████████████ SIX MONTH RETENTION ███ # check test behaviour @@ -132,13 +134,25 @@ fi TODAY_S_SCRIPTURE_TEXT=$(bash <(curl -s https://raw.githubusercontent.com/getbible/getverse/master/src/chapter.sh) -s="${TODAY_S_SCRIPTURE}" -v="${VERSION}" ) #███████████████████████████████████████████████████████ GET SCRIPTURE NAME ███ -# Get the verses name from the getBible API -NAME=$(bash <(curl -s https://raw.githubusercontent.com/getbible/getverse/master/src/name.sh) -s="${TODAY_S_SCRIPTURE}" -v="${VERSION}" ) +# get the book number +BOOK_NUMBER=$(echo "$TODAY_S_SCRIPTURE" | cut -d' ' -f1) +# get the list of books from the API to get the book number +BOOKS=$(curl -s "https://api.getbible.net/v2/${VERSION}/books.json") +BOOK_NAME=$(echo "$BOOKS" | jq -r ".[] | select(.nr == ${BOOK_NUMBER}) | .name") +# get the chapter +CHAPTER=$(echo "$TODAY_S_SCRIPTURE" | cut -d' ' -f2 | cut -d':' -f1) +# get the verses +VERSES=$(echo "$TODAY_S_SCRIPTURE" | cut -d' ' -f2 | cut -d':' -f2) +# Set the passage name +NAME="${BOOK_NAME} ${CHAPTER}:${VERSES}" +#███████████████████████████████████████████████████████████ GET BIBLE LINK ███ +# We set the GetBible link for this verse +GETBIBLE_LINK="https://getbible.life/${VERSION}/${BOOK_NAME}/${CHAPTER}/${VERSES}" #████████████████████████████████████████████ SET TODAY'S SCRIPTURE IN HTML ███ HTML="${NAME}
${TODAY_S_SCRIPTURE_TEXT//$'\n'/ }

-${TODAY}" +${TODAY}" #████████████████████████████████████████████ SET TODAY'S SCRIPTURE IN JSON ███ # convert text to json @@ -165,15 +179,23 @@ JSON='{}'; JSON="$( --arg name "${NAME}" \ --argjson scripture "${TODAY_S_SCRIPTURE_JSON}" \ --arg version "${VERSION}" \ + --arg book "${BOOK_NAME}" \ + --arg chapter "${CHAPTER}" \ + --arg verse "${VERSES}" \ --arg date "${TODAY}" \ --arg telegram "daily_scripture" \ - --arg source "https://github.com/trueChristian/daily-scripture" ' + --arg getbible "${GETBIBLE_LINK}" \ + --arg source "https://git.vdm.dev/christian/daily-scripture" ' { name: $name, scripture: $scripture, version: $version, + book: $book, + chapter: $chapter, + verse: $verse, date: $date, telegram: $telegram, + getbible: $getbible, source: $source } ' @@ -183,14 +205,14 @@ JSON='{}'; JSON="$( TG="${NAME} ${TODAY_S_SCRIPTURE_TEXT//$'\n'/ } -${TODAY}" +${TODAY}" #████████████████████████████████████████ SET TODAY'S SCRIPTURE IN MARKDOWN ███ MARKDOWN="**${NAME}** ${TODAY_S_SCRIPTURE_TEXT//$'\n'/ } -[${TODAY}](https://t.me/s/daily_scripture)" +[${TODAY}](${GETBIBLE_LINK})" #███████████████████████████████████████████████████████████████ SET FILES ███