'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Book of Judith

The Book of Judith is a deuterocanonical book, included in the Septuagint and the Catholic and Eastern Orthodox Christian Old Testament of the Bible, but excluded from Jewish texts and assigned by Protestants to the Apocrypha. The book contains numerous historical anachronisms, which is why many scholars now accept it as non-historical; it has been considered a parable or perhaps the first historical novel.

The name Judith (Hebrew: יְהוּדִית, Modern Yehudit, Tiberian Yəhûḏîṯ ; "Praised" or "Jewess") is the feminine form of Judah.

Historical context

Original language

It is not clear whether the Book of Judith was originally written in Hebrew or in Greek. The oldest extant version is the Septuagint and might either be a translation from Hebrew or composed in Greek. Details of vocabulary and phrasing point to a Greek text written in a language modeled on the Greek developed through translating the other books in the Septuagint. The extant Hebrew language versions, whether identical to the Greek, or in the shorter Hebrew version, are medieval. The Hebrew versions name important figures directly such as the Seleucid king Antiochus Epiphanes, thus placing the events in the Hellenistic period when the Maccabees battled the Seleucid monarchs. The Greek version uses deliberately cryptic and anachronistic references such as "Nebuchadnezzar", a "King of Assyria," who "reigns in Nineveh," for the same king. The adoption of that name, though unhistorical, has been sometimes explained either as a copyist's addition, or an arbitrary name assigned to the ruler of Babylon.

Podcasts:

  • BOOK OF JUDITH ⚔️ Excluded From The Bible | The Apocrypha | Full Audiobook With Text (KJV)

    👩‍🦰 Meet Judith, the story's protagonist, a woman of exceptional beauty, wisdom, and courage. Residing in the besieged city of Bethulia, Judith stands as a beacon of hope and defiance against the overwhelming might of the Assyrian army led by the fearsome general, Holofernes. 🏰 Explore the intense drama and suspense as Judith, driven by faith and a love for her people, devises a daring plan to save her city from destruction. Her story is a masterful blend of strategy and bravery, demonstrating how strength and intelligence can triumph over brute force and tyranny. 🙏 Witness Judith's deep faith and piety, which guide her actions and inspire her people. The narrative is rich in themes of trust in God, the power of prayer, and the role of women as instruments of divine justice and salvation...

    published: 11 Jul 2021
  • The Biblical Honeypot: The Book of Judith

    The Book of Judith is a thrilling tale of warfare, seduction, and bravery, with a heroine at its heart that could stand up to any modern action movie star. Perhaps even more interesting than its timeless attraction and inspiration, however, are the strange anomalies that run through the narrative from start to finish and leave the reader with as many questions as answers. #TheBookOfJudith #Hanukkah If you’re interested in early access to videos and live chats with the creator of Intrigued Mind, consider subscribing to our Patreon. Your support will greatly help us keep the channel producing more intriguing content. www.patreon.com/intriguedmind ____________________________________ ▶ Like us on Facebook 👍 @theintriguedmind www.facebook.com/theintriguedmind ▶ Follow our Instagram @_intri...

    published: 06 Nov 2023
  • Judith Contradicts History? When Protestants become Internet Atheists, ft. Mike Winger

    Popular claim made by a lot of Protestants online so I decided to make this a separate video.

    published: 06 Feb 2023
  • Summary of the Story of Judith from the Book of Judith

    All images are in the public domain.

    published: 17 Apr 2021
  • The Untold Story of Judith: How One Woman's Bravery Saved an Entire City

    Join us as we uncover the captivating history of Judith, a fearless heroine from biblical times. Discover how Judith's unwavering courage and cunning strategy turned the tide against the mighty Assyrians, lifting the siege on her city and securing victory for her people. This extraordinary tale of faith, bravery, and divine intervention will leave you in awe. Don't miss out on this incredible journey through history! Like, comment, and subscribe for more fascinating stories from the past.

    published: 08 Jul 2023
  • WARNING: Banned Book Of Judith Reveals HORRIFYING Truth About Humans

    Many books were banned from the Hebrew Bible, but the most interesting one is the Book of Judith. A significant reason for its exclusion is said to be that the Book of Judith contained truths that readers of the Bible couldn't handle, truths that might render the book unholy. But what were these truths? And why were they deemed unfit for canonization? Let's dive a little deeper into the shocking contents of this book! Subscribe 👉 https://bit.ly/godofrevelation Join the Community 👉 https://bit.ly/godmembership Our Most Popular Videos 👉 https://bit.ly/godmostpopular Subscribe 👉 https://bit.ly/godofrevelation Subscribe 👉 https://bit.ly/godofrevelation Subscribe 👉 https://bit.ly/godofrevelation #bookofjudith #bible #jesus #god #gospel #christianity

    published: 12 Aug 2024
  • The Book of Judith: A Summary & Explanation Of The Apocryphal Book of Judith

    This summary of the Book of Judith in the Bible Story explains the story of Judith during the reign of King Nebuchadnezzar and why it was banned from the Bible. Please consider donating: https://www.prayerforhealing.co/give Keep Watching! 👀 Series Introduction: https://www.youtube.com/watch?v=crkIRPo3z8M&t 👀 Previous Episode: https://www.youtube.com/watch?v=crkIRPo3z8M&t 👀 Next Episode: https://youtu.be/gNWa9eDTKjg 📌Subscribe: https://bit.ly/44lrHZU Free Resources: 📚Top 5 Free Resources For New Christians: https://www.prayerforhealing.co/5-free 🙏Prayer Sessions Every Tuesday @‌ 6 am MST: https://www.prayerforhealing.co/prayer-sets 📖Bible Study Every Tuesday @‌ 6 pm MST: http://www.prayerforhealing.co/bible-study 😇Download Hospital of Jesus Christ Guided Prayer Meditation: ⁠⁠https://w...

    published: 30 Apr 2024
  • 2000-Year-Old BANNED Book Of Judith Reveals HORRIFYING Truth About Humans

    The Book of Judith which has sparked vast conspiracy theories and intense debates for ages, was banned from the Bible for its shocking revelation about humans. Despite its thorough stories that give additional insight on events in Judith's day and show valor, as well as its references to God, the book has no place in the current Christian Bible due to its nature and material on seduction. Many scholars do not believe it was divinely inspired, but they say that it’s more of a disagreeable fact! So what could have possibly written in the pages of the Book of Judith? How controversial are the contents? And why are the scholars not supporting the written facts? Do Not Touch 👉 https://bit.ly/godofrevelation This 2000 Year Old BANNED Book Of Judith Revealed Horrifying Truth About Our Specie...

    published: 11 May 2024
  • Moving Parts 1(Album) Series: Adding Photo Mats & Embellishing

    Thanks for watching! Scrapbook Layouts - Moving Parts 1 (Album) https://paperphenomenon.com/products/scrapbook-layouts-moving-parts Paper collection being used for this series: Paper Phenomenon - Ladies Who Lunch https://paperphenomenon.com/search?q=ladies+who+lunch&options%5Bprefix%5D=last Hollow Hidden Hinge info https://paperphenomenon.com/products/hidden-hinge-license Supplies: - Maker Basics Cardstock 80-lbs - Black https://paperphenomenon.com/products/maker-basics-cardstock - Maker Basics Double Sided Tape https://paperphenomenon.com/products/maker-basics-tape - Paper Phenomenon Eyelets https://paperphenomenon.com/products/eyelets-gold - Mini Magnets with Disks https://paperphenomenon.com/products/mini-magnets-40 - Tim Holtz Rotary Media Trimmer https://amzn.to/3KK5a0l - Idea-ol...

    published: 26 Oct 2024
  • The Apocrypha Bible review

    published: 26 Nov 2023
developed with YouTube
BOOK OF JUDITH ⚔️ Excluded From The Bible | The Apocrypha | Full Audiobook With Text (KJV)
1:10:33

BOOK OF JUDITH ⚔️ Excluded From The Bible | The Apocrypha | Full Audiobook With Text (KJV)

  • Order:
  • Duration: 1:10:33
  • Uploaded Date: 11 Jul 2021
  • views: 140900
👩‍🦰 Meet Judith, the story's protagonist, a woman of exceptional beauty, wisdom, and courage. Residing in the besieged city of Bethulia, Judith stands as a beacon of hope and defiance against the overwhelming might of the Assyrian army led by the fearsome general, Holofernes. 🏰 Explore the intense drama and suspense as Judith, driven by faith and a love for her people, devises a daring plan to save her city from destruction. Her story is a masterful blend of strategy and bravery, demonstrating how strength and intelligence can triumph over brute force and tyranny. 🙏 Witness Judith's deep faith and piety, which guide her actions and inspire her people. The narrative is rich in themes of trust in God, the power of prayer, and the role of women as instruments of divine justice and salvation. 🔍 Examine the historical and cultural context of the Book of Judith, a source of fascination for scholars studying the Second Temple period. Its place in the Apocrypha raises intriguing questions about its canonical status and its influence in both Jewish and Christian traditions. 🌍 As a celebrated narrative in both Jewish and Christian apocryphal literature, the Book of Judith stands as a testament to the enduring power of faith and the human spirit. Its dramatic story and profound moral lessons continue to resonate, offering a timeless exploration of bravery, strategy, and divine intervention in the face of overwhelming odds. 💬 What about the Book of Judith intrigues you the most? Share your key insights in the comments below. ********* ✅ Download the complete Apocrypha audiobook on Shopify: https://chrisglynaudios.com/products/the-apocrypha 🥇 Support on Patreon: https://www.patreon.com/christopherglyn ✨ And don’t forget to subscribe to the Channel! https://www.youtube.com/@christopherglyn?sub_confirmation=1 ********* 📖 Welcome to the official YouTube channel of Christopher Glyn, where the timeless beauty of ancient and sacred texts meets the modern art of narration. ➡️ As a seasoned Christian broadcaster and narrator, Christopher brings to life the rich tapestries of biblical and apocryphal literature. Here, you'll find beautifully narrated audiobooks like the books of Enoch, Jasher, Jubilees, the Apocrypha, and key selections from the King James Bible (KJV), including the Book of Revelation and the Gospel of John. ➡️ Accompanied by read-along texts, these narrations are paired with insightful devotionals from revered authors like Charles Spurgeon and J.R. Miller. With one or two new videos posted each week, there's always something to deepen your understanding and enrich your faith. Your support on this channel also aids in distributing audio Bibles in various African languages. So, subscribe and ring the bell (🔔) to never miss a video. ********* 📲 Let’s Connect! Follow Christopher Glyn on Facebook ➡️ https://www.facebook.com/ChristopherGlynaudiobooks/ Visit the official website ➡️ http://www.chrisglyn.net/ ********* #christopherglyn #lostbooks #apocrypha #bookofjudith #apocryphaaudiobook #1611kingjamesbible
https://wn.com/Book_Of_Judith_⚔️_Excluded_From_The_Bible_|_The_Apocrypha_|_Full_Audiobook_With_Text_(Kjv)
The Biblical Honeypot: The Book of Judith
10:45

The Biblical Honeypot: The Book of Judith

  • Order:
  • Duration: 10:45
  • Uploaded Date: 06 Nov 2023
  • views: 11590
The Book of Judith is a thrilling tale of warfare, seduction, and bravery, with a heroine at its heart that could stand up to any modern action movie star. Perhaps even more interesting than its timeless attraction and inspiration, however, are the strange anomalies that run through the narrative from start to finish and leave the reader with as many questions as answers. #TheBookOfJudith #Hanukkah If you’re interested in early access to videos and live chats with the creator of Intrigued Mind, consider subscribing to our Patreon. Your support will greatly help us keep the channel producing more intriguing content. www.patreon.com/intriguedmind ____________________________________ ▶ Like us on Facebook 👍 @theintriguedmind www.facebook.com/theintriguedmind ▶ Follow our Instagram @_intriguedmind www.instagram.com/_intriguedmind ▶ Follow our TikTok @_intriguedmind www.tiktok.com/@_intriguedmind
https://wn.com/The_Biblical_Honeypot_The_Book_Of_Judith
Judith Contradicts History? When Protestants become Internet Atheists, ft. Mike Winger
3:35

Judith Contradicts History? When Protestants become Internet Atheists, ft. Mike Winger

  • Order:
  • Duration: 3:35
  • Uploaded Date: 06 Feb 2023
  • views: 2457
Popular claim made by a lot of Protestants online so I decided to make this a separate video.
https://wn.com/Judith_Contradicts_History_When_Protestants_Become_Internet_Atheists,_Ft._Mike_Winger
Summary of the Story of Judith from the Book of Judith
3:18

Summary of the Story of Judith from the Book of Judith

  • Order:
  • Duration: 3:18
  • Uploaded Date: 17 Apr 2021
  • views: 21979
All images are in the public domain.
https://wn.com/Summary_Of_The_Story_Of_Judith_From_The_Book_Of_Judith
The Untold Story of Judith: How One Woman's Bravery Saved an Entire City
3:01

The Untold Story of Judith: How One Woman's Bravery Saved an Entire City

  • Order:
  • Duration: 3:01
  • Uploaded Date: 08 Jul 2023
  • views: 27302
Join us as we uncover the captivating history of Judith, a fearless heroine from biblical times. Discover how Judith's unwavering courage and cunning strategy turned the tide against the mighty Assyrians, lifting the siege on her city and securing victory for her people. This extraordinary tale of faith, bravery, and divine intervention will leave you in awe. Don't miss out on this incredible journey through history! Like, comment, and subscribe for more fascinating stories from the past.
https://wn.com/The_Untold_Story_Of_Judith_How_One_Woman's_Bravery_Saved_An_Entire_City
WARNING: Banned Book Of Judith Reveals HORRIFYING Truth About Humans
14:11

WARNING: Banned Book Of Judith Reveals HORRIFYING Truth About Humans

  • Order:
  • Duration: 14:11
  • Uploaded Date: 12 Aug 2024
  • views: 14349
Many books were banned from the Hebrew Bible, but the most interesting one is the Book of Judith. A significant reason for its exclusion is said to be that the Book of Judith contained truths that readers of the Bible couldn't handle, truths that might render the book unholy. But what were these truths? And why were they deemed unfit for canonization? Let's dive a little deeper into the shocking contents of this book! Subscribe 👉 https://bit.ly/godofrevelation Join the Community 👉 https://bit.ly/godmembership Our Most Popular Videos 👉 https://bit.ly/godmostpopular Subscribe 👉 https://bit.ly/godofrevelation Subscribe 👉 https://bit.ly/godofrevelation Subscribe 👉 https://bit.ly/godofrevelation #bookofjudith #bible #jesus #god #gospel #christianity
https://wn.com/Warning_Banned_Book_Of_Judith_Reveals_Horrifying_Truth_About_Humans
The Book of Judith: A Summary & Explanation Of The Apocryphal Book of Judith
28:21

The Book of Judith: A Summary & Explanation Of The Apocryphal Book of Judith

  • Order:
  • Duration: 28:21
  • Uploaded Date: 30 Apr 2024
  • views: 1259
This summary of the Book of Judith in the Bible Story explains the story of Judith during the reign of King Nebuchadnezzar and why it was banned from the Bible. Please consider donating: https://www.prayerforhealing.co/give Keep Watching! 👀 Series Introduction: https://www.youtube.com/watch?v=crkIRPo3z8M&t 👀 Previous Episode: https://www.youtube.com/watch?v=crkIRPo3z8M&t 👀 Next Episode: https://youtu.be/gNWa9eDTKjg 📌Subscribe: https://bit.ly/44lrHZU Free Resources: 📚Top 5 Free Resources For New Christians: https://www.prayerforhealing.co/5-free 🙏Prayer Sessions Every Tuesday @‌ 6 am MST: https://www.prayerforhealing.co/prayer-sets 📖Bible Study Every Tuesday @‌ 6 pm MST: http://www.prayerforhealing.co/bible-study 😇Download Hospital of Jesus Christ Guided Prayer Meditation: ⁠⁠https://www.prayerforhealing.co/miracle-prayer Need Healing? Join our 15-Day Deliverance Challenge: https://www.prayerforhealing.co/healing-course Socials: 👉TikTok: https://www.tiktok.com/@healedbyfaith_podcast 👉Instagram: https://www.instagram.com/mrclarkvarin/ 👉Facebook Group: https://www.facebook.com/groups/healedbyfaith About: Our Bible Stories series covers all the stories of the Bible of the Book of Judith is one of the apocryphal books of the bible that describes a beautiful and brave woman named Judith, who takes a stand against the reign of King Nebuchadnezzar and his general Holofernes, to protect her people during a dire siege. Discover how Judith's cunning plan and her courageous confrontation with Holofernes turns her into a celebrated heroine of the Apocrypha. Unravel the layers of this intriguing tale, from its historical context to its lasting impact on religious and cultural discussions. Whether you're a first-time explorer or a seasoned scholar of biblical stories, this video will deepen your understanding of what the Book of Judith is and why it remains a powerful narrative in religious studies. For more Bible Stories like this, like, subscribe, & comment below! 💬 What aspect of the Judith story fascinates you the most? Join the conversation and share your thoughts in the comments below! #Apocrypha #TheBookOfJudith
https://wn.com/The_Book_Of_Judith_A_Summary_Explanation_Of_The_Apocryphal_Book_Of_Judith
2000-Year-Old BANNED Book Of Judith Reveals HORRIFYING Truth About Humans
11:37

2000-Year-Old BANNED Book Of Judith Reveals HORRIFYING Truth About Humans

  • Order:
  • Duration: 11:37
  • Uploaded Date: 11 May 2024
  • views: 8408
The Book of Judith which has sparked vast conspiracy theories and intense debates for ages, was banned from the Bible for its shocking revelation about humans. Despite its thorough stories that give additional insight on events in Judith's day and show valor, as well as its references to God, the book has no place in the current Christian Bible due to its nature and material on seduction. Many scholars do not believe it was divinely inspired, but they say that it’s more of a disagreeable fact! So what could have possibly written in the pages of the Book of Judith? How controversial are the contents? And why are the scholars not supporting the written facts? Do Not Touch 👉 https://bit.ly/godofrevelation This 2000 Year Old BANNED Book Of Judith Revealed Horrifying Truth About Our Species! https://www.youtube.com/watch?v=luvKS_RggP4
https://wn.com/2000_Year_Old_Banned_Book_Of_Judith_Reveals_Horrifying_Truth_About_Humans
Moving Parts 1(Album) Series: Adding Photo Mats & Embellishing
1:12:58

Moving Parts 1(Album) Series: Adding Photo Mats & Embellishing

  • Order:
  • Duration: 1:12:58
  • Uploaded Date: 26 Oct 2024
  • views: 246
Thanks for watching! Scrapbook Layouts - Moving Parts 1 (Album) https://paperphenomenon.com/products/scrapbook-layouts-moving-parts Paper collection being used for this series: Paper Phenomenon - Ladies Who Lunch https://paperphenomenon.com/search?q=ladies+who+lunch&options%5Bprefix%5D=last Hollow Hidden Hinge info https://paperphenomenon.com/products/hidden-hinge-license Supplies: - Maker Basics Cardstock 80-lbs - Black https://paperphenomenon.com/products/maker-basics-cardstock - Maker Basics Double Sided Tape https://paperphenomenon.com/products/maker-basics-tape - Paper Phenomenon Eyelets https://paperphenomenon.com/products/eyelets-gold - Mini Magnets with Disks https://paperphenomenon.com/products/mini-magnets-40 - Tim Holtz Rotary Media Trimmer https://amzn.to/3KK5a0l - Idea-ology Tim Holtz Ruler - 12" (discontinued. There is a newer Tim Holtz ruler. Link below.) Tonic Studios - Tim Holtz Media Ruler https://amzn.to/3MJXoUR - OLFA Utility Knife - 9mm https://amzn.to/3OZGX8V - Art Glitter Glue https://amzn.to/3YEKkoM - Large Non-Stick Bone Folder https://www.bonefolder.com/Large_Non_Stick_Bone_Folder_p/ltf.htm - Inking with Distress Oxide - Vintage Photo https://amzn.to/3sawVZo - Fiskars Premier Sparkle Tide Blue 8" Scissor https://amzn.to/3MjEhRO - Plastic Hang Tag Hooks (used as part of a clear closure) https://amzn.to/3QIBswq - We R Makers - Crop-A-Dile https://amzn.to/3OvK9aK - Cotton Baker's Twine - Black https://amzn.to/3szPK8G - Ek Success 1" Circle Punch ( retired Stampin' Up 1" circle punch used in the video) https://amzn.to/49VMTHd - Stamps By Judith - Place Photo Here Stamp https://www.stampsbyjudith.com/b-68-place-photo-here.html Photo Mats Measurements: - 6 ¼" x 4 ¼" - 4 ¼" x 4 ¼" - 4 ¼" x 3 ¼" - 3 ¼" x 6 ¼" - 3 ¼" x 3 ¼" - 3 ¼" x 2 ¼" - 2 ¼" x 2 ¼" How To Make An Embellishment Organizer https://youtu.be/L7Me_kEOR_4 Pro - Tips: How To Make Photo Mats pt1 https://youtu.be/75EUEp5hAW4 Scrapbook Layout - Moving Parts 2 (Album) https://paperphenomenon.com/products/scrapbook-layouts-moving-parts-2 ********************************************************************************** Want and/or need a box for your finished project? Check out Boxables. Boxable video playlist https://www.youtube.com/playlist?list=PLZcULlC7FLL4Be4ByiNQKl-Xtdhj_b9Iu Boxable Tutorials https://paperphenomenon.com/collections/boxables ********************************************************************************** Any questions? Please, email me at info@paperphenomenon.com ~Visit my website for more projects~ http://www.paperphenomenon.com ~Follow Paper Phenomenon~ Facebook: https://www.facebook.com/PaperPhenomenon/ Paper Phenomenon Community: https://www.facebook.com/groups/912977448911539/ Twitter: https://twitter.com/paperphenomenon Instagram: https://www.instagram.com/paperphenomenon/ Pinterest: https://www.pinterest.com/pphenomenon/ #PaperPhenomenon #ScrapbookLayouts #MovingParts YouTube Disclaimer: I am a participant in the Amazon Services LLC Associated Program and ACherryOnTop Crafts Affiliate Program. Some of the links may be affiliate links. I will receive a small commission from the use of those links. There are no additional charges to you, when you use them. Thank you for supporting my channel. The initial upload date: November 08, 2023
https://wn.com/Moving_Parts_1(Album)_Series_Adding_Photo_Mats_Embellishing
The  Apocrypha Bible review
0:36

The Apocrypha Bible review

  • Order:
  • Duration: 0:36
  • Uploaded Date: 26 Nov 2023
  • views: 250
https://wn.com/The_Apocrypha_Bible_Review
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • BOOK OF JUDITH ⚔️ Excluded From The Bible | The Apocrypha | Full Audiobook With Text (KJV)
    1:10:33
    BOOK OF JUDITH ⚔️ Excluded From The Bible | The Apocrypha | Full Audiobook With Text (KJV)remove from playlist
  • The Biblical Honeypot: The Book of Judith
    10:45
    The Biblical Honeypot: The Book of Judithremove from playlist
  • The Untold Story of Judith: How One Woman's Bravery Saved an Entire City
    3:01
    The Untold Story of Judith: How One Woman's Bravery Saved an Entire Cityremove from playlist
  • WARNING: Banned Book Of Judith Reveals HORRIFYING Truth About Humans
    14:11
    WARNING: Banned Book Of Judith Reveals HORRIFYING Truth About Humansremove from playlist
  • The Book of Judith: A Summary & Explanation Of The Apocryphal Book of Judith
    28:21
    The Book of Judith: A Summary & Explanation Of The Apocryphal Book of Judithremove from playlist
  • 2000-Year-Old BANNED Book Of Judith Reveals HORRIFYING Truth About Humans
    11:37
    2000-Year-Old BANNED Book Of Judith Reveals HORRIFYING Truth About Humansremove from playlist
  • Moving Parts 1(Album) Series: Adding Photo Mats & Embellishing
    1:12:58
    Moving Parts 1(Album) Series: Adding Photo Mats & Embellishingremove from playlist
developed with YouTube
PLAYLIST TIME:

BOOK OF JUDITH ⚔️ Excluded From The Bible | The Apocrypha | Full Audiobook With Text (KJV)

👩‍🦰 Meet Judith, the story's protagonist, a woman of exceptional beauty, wisdom, and courage. Residing in the besieged city of Bethulia, Judith stands as a beacon of hope and defiance against the overwhelming might of the Assyrian army led by the fearsome general, Holofernes. 🏰 Explore the intense drama and suspense as Judith, driven by faith and a love for her people, devises a daring plan to save her city from destruction. Her story is a masterful blend of strategy and bravery, demonstrating how strength and intelligence can triumph over brute force and tyranny. 🙏 Witness Judith's deep faith and piety, which guide her actions and inspire her people. The narrative is rich in themes of trust in God, the power of prayer, and the role of women as instruments of divine justice and salvation. 🔍 Examine the historical and cultural context of the Book of Judith, a source of fascination for scholars studying the Second Temple period. Its place in the Apocrypha raises intriguing questions about its canonical status and its influence in both Jewish and Christian traditions. 🌍 As a celebrated narrative in both Jewish and Christian apocryphal literature, the Book of Judith stands as a testament to the enduring power of faith and the human spirit. Its dramatic story and profound moral lessons continue to resonate, offering a timeless exploration of bravery, strategy, and divine intervention in the face of overwhelming odds. 💬 What about the Book of Judith intrigues you the most? Share your key insights in the comments below. ********* ✅ Download the complete Apocrypha audiobook on Shopify: https://chrisglynaudios.com/products/the-apocrypha 🥇 Support on Patreon: https://www.patreon.com/christopherglyn ✨ And don’t forget to subscribe to the Channel! https://www.youtube.com/@christopherglyn?sub_confirmation=1 ********* 📖 Welcome to the official YouTube channel of Christopher Glyn, where the timeless beauty of ancient and sacred texts meets the modern art of narration. ➡️ As a seasoned Christian broadcaster and narrator, Christopher brings to life the rich tapestries of biblical and apocryphal literature. Here, you'll find beautifully narrated audiobooks like the books of Enoch, Jasher, Jubilees, the Apocrypha, and key selections from the King James Bible (KJV), including the Book of Revelation and the Gospel of John. ➡️ Accompanied by read-along texts, these narrations are paired with insightful devotionals from revered authors like Charles Spurgeon and J.R. Miller. With one or two new videos posted each week, there's always something to deepen your understanding and enrich your faith. Your support on this channel also aids in distributing audio Bibles in various African languages. So, subscribe and ring the bell (🔔) to never miss a video. ********* 📲 Let’s Connect! Follow Christopher Glyn on Facebook ➡️ https://www.facebook.com/ChristopherGlynaudiobooks/ Visit the official website ➡️ http://www.chrisglyn.net/ ********* #christopherglyn #lostbooks #apocrypha #bookofjudith #apocryphaaudiobook #1611kingjamesbible
1:10:33
BOOK OF JUDITH ⚔️ Excluded From The Bible | The Apocrypha | Full Audiobook With Text (KJV)
👩‍🦰 Meet Judith, the story's protagonist, a woman of exceptional beauty, wisdom, and coura...
published: 11 Jul 2021
Play in Full Screen
10:45
The Biblical Honeypot: The Book of Judith
The Book of Judith is a thrilling tale of warfare, seduction, and bravery, with a heroine ...
published: 06 Nov 2023
Play in Full Screen
3:35
Judith Contradicts History? When Protestants become Internet Atheists, ft. Mike Winger
Popular claim made by a lot of Protestants online so I decided to make this a separate vid...
published: 06 Feb 2023
Play in Full Screen
3:18
Summary of the Story of Judith from the Book of Judith
All images are in the public domain.
published: 17 Apr 2021
Play in Full Screen
3:01
The Untold Story of Judith: How One Woman's Bravery Saved an Entire City
Join us as we uncover the captivating history of Judith, a fearless heroine from biblical ...
published: 08 Jul 2023
Play in Full Screen
14:11
WARNING: Banned Book Of Judith Reveals HORRIFYING Truth About Humans
Many books were banned from the Hebrew Bible, but the most interesting one is the Book of ...
published: 12 Aug 2024
Play in Full Screen
28:21
The Book of Judith: A Summary & Explanation Of The Apocryphal Book of Judith
This summary of the Book of Judith in the Bible Story explains the story of Judith during ...
published: 30 Apr 2024
Play in Full Screen
11:37
2000-Year-Old BANNED Book Of Judith Reveals HORRIFYING Truth About Humans
The Book of Judith which has sparked vast conspiracy theories and intense debates for ages...
published: 11 May 2024
Play in Full Screen
1:12:58
Moving Parts 1(Album) Series: Adding Photo Mats & Embellishing
Thanks for watching! Scrapbook Layouts - Moving Parts 1 (Album) https://paperphenomenon.co...
published: 26 Oct 2024
Play in Full Screen
0:36
The Apocrypha Bible review
published: 26 Nov 2023
Play in Full Screen

Book of Judith

The Book of Judith is a deuterocanonical book, included in the Septuagint and the Catholic and Eastern Orthodox Christian Old Testament of the Bible, but excluded from Jewish texts and assigned by Protestants to the Apocrypha. The book contains numerous historical anachronisms, which is why many scholars now accept it as non-historical; it has been considered a parable or perhaps the first historical novel.

The name Judith (Hebrew: יְהוּדִית, Modern Yehudit, Tiberian Yəhûḏîṯ ; "Praised" or "Jewess") is the feminine form of Judah.

Historical context

Original language

It is not clear whether the Book of Judith was originally written in Hebrew or in Greek. The oldest extant version is the Septuagint and might either be a translation from Hebrew or composed in Greek. Details of vocabulary and phrasing point to a Greek text written in a language modeled on the Greek developed through translating the other books in the Septuagint. The extant Hebrew language versions, whether identical to the Greek, or in the shorter Hebrew version, are medieval. The Hebrew versions name important figures directly such as the Seleucid king Antiochus Epiphanes, thus placing the events in the Hellenistic period when the Maccabees battled the Seleucid monarchs. The Greek version uses deliberately cryptic and anachronistic references such as "Nebuchadnezzar", a "King of Assyria," who "reigns in Nineveh," for the same king. The adoption of that name, though unhistorical, has been sometimes explained either as a copyist's addition, or an arbitrary name assigned to the ruler of Babylon.

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: yehudit

Edit

Otzma Yehudit ministers, MKs submit letters of resignation

Israel National News 19 Jan 2025
Itamar Ben-Gvir and the rest of his party's representatives resign from government in protest against the ceasefire deal with Hamas, which they call a "surrender." ....
Edit

Ben-Gvir’s Otzma Yehudit Party quits Israeli government

Cleveland Jewish News 19 Jan 2025
The national security minister said his party would rejoin the government if the war is renewed ... .
Edit

Ben Gvir’s Otzma Yehudit Officially Quits Government Over Hostage-Ceasefire Deal

The Algemeiner 19 Jan 2025
A press release by the Otzma Yehudit branded the US and Qatar-brokered deal a ... “From this time onwards the Otzma Yehudit party is no longer party to the coalition,” the statement read.
Edit

Israel-Hamas Truce Leaves Big Questions Unresolved for Now

New York Times 19 Jan 2025
It remains unclear whether the six-week truce will lead to a permanent cease-fire and the release of the remaining hostages in Gaza, or if fighting will resume ... .
Edit

Smotrich Slams Ben Gvir for Leaving Government, Skirting ‘National Responsibility’

The Algemeiner 19 Jan 2025
Photo. REUTERS/Ronen Zvulun ... Speaking on Sunday, he responded to Ben Gvir’s calls for him and his party, Religious Zionism, to join Otzma Yehudit’s ministers in leaving the coalition over the hostage release and ceasefire deal ... .
Edit

Otzma Yehudit members to submit letters of resignation to government on Sunday

The Jerusalem Post 18 Jan 2025
This comes after party leader Itamar Ben-Gvir called the hostage and ceasefire deal reckless. .
Edit

Otzma Yehudit: We expect our friends in the Likud to appreciate our ideological move

Virtual Jerusalem 17 Jan 2025
The Otzma Yehudit party responded to the Likud after its criticism which was ...
Edit

Ben-Gvir: If Gaza ceasefire is implemented, Otzma Yehudit will leave gov't

The Jerusalem Post 17 Jan 2025
The right wing minister called the deal 'reckless' and claimed it emboldens Hamas. .
Edit

Coalition to impose sanctions on Otzma Yehudit

Israel National News 05 Jan 2025
Coalition Chairman Ofir Katz announced that bills from Otzma Yehudit members, who voted against coalition discipline, would not be supported or placed on the agenda until further notice ....

Most Viewed

×