'+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; })); }); -->

Babylonian captivity

The Babylonian captivity or Babylonian exile is the period in Jewish history during which a number of Judahites of the ancient Kingdom of Judah were captives in Babylonia. After the Battle of Carchemish in 605 BCE, Nebuchadnezzar, the king of Babylon, besieged Jerusalem, resulting in tribute being paid by King Jehoiakim. Jehoiakim refused to pay tribute in Nebuchadnezzar's fourth year, which led to another siege in Nebuchadnezzar's seventh year, culminating with the death of Jehoiakim and the exile of King Jeconiah, his court and many others; Jeconiah's successor Zedekiah and others were exiled in Nebuchadnezzar's eighteenth year; a later deportation occurred in Nebuchadnezzar's twenty-third year. The dates, numbers of deportations, and numbers of deportees given in the biblical accounts vary. These deportations are dated to 597 BCE for the first, with others dated at 587/586 BCE, and 582/581 BCE respectively.

After the fall of Babylon to the Persian king Cyrus the Great in 539 BCE, exiled Jews began to return to the land of Judah. According to the biblical book of Ezra, construction of a second temple in Jerusalem began at this time. All these events are considered significant in Jewish history and culture, and had a far-reaching impact on the development of Judaism.

Podcasts:

  • The Judean Exile to Babylonia | The Jewish Story | Unpacked

    When the Jewish people were exiled following the destruction of the First Temple, they seemed set to disappear from history. Instead, they survived and even thrived. What mysterious power held the Jewish people together and how did they retain their faith, tradition and identity in Babylonia - far from the Land of Israel? The Jewish Story Explained is based on the book "Letters to Auntie Fori: 5,000 Years of Jewish History and their Faith" by Martin Gilbert Chapters 00:00 Intro 01:20 Torah as portable Jewish history and language and national and religious identity 02:16 The Ten Lost Tribes assimilated througohut the world 03:06 The Babylonian Exile of Judah, Benjamin, and Levites 03:25 Maintaining Jewish identity and culture in Exile 04:26 Jewish presence in the Persian Empire 04:45 Cyru...

    published: 05 Oct 2020
  • The Babylonian Exile and the Creation of Judaism | Casual Historian | Jewish History

    In the 6th century BCE a large portion of the Jewish population was relocated from Jerusalem to Babylon. While in exile they codified Jewish customs, religion, and history. Support this channel on Patreon https://www.patreon.com/CasualHistorian Check out the Merch Store!: https://teespring.com/stores/casual-historian Sources and Affiliate Links Testament: The Bible and History, by John Romer https://amzn.to/3eFlf57 Ancient Israel: What do we Know and How do we Know It?, by Lester L. Grabbe https://amzn.to/3eyF0uP A History of Israel: From the Bronze Age Through the Jewish Wars, Walter C. Kaiser https://amzn.to/3ezBXTa The Old Testament Documents: Are They Reliable & Relevant?, Walter C. Kaiser https://amzn.to/2ZPLm4S The Bible Unearthed: Archaeology's New Vision of Ancient I...

    published: 15 Oct 2020
  • The Babylonian Exile and the Edict of King Cyrus

    The film accompanies the exiles from Jerusalem to Babylonia after the destruction of the First Temple. There they experience the shock of displacement before gradually integrating in Babylonia. Then, after decades in the far-off kingdom, they hear the rare, surprising pronouncement allowing them to return to Jerusalem and rebuild the Temple.

    published: 28 Nov 2019
  • The Human Condition You Can't Escape (No Matter Where You Live)

    Exile is one of the core, yet often overlooked, themes underlying the entire Biblical storyline. In this video, we'll see how Israel's exile to Babylon is a picture of all humanity's exile from Eden. As you might guess, Jesus is the one to open the way back home. #Exile #BibleProject #BibleVideo

    published: 26 Apr 2018
  • 16. The Babylonian Exile (Jewish History Lab)

    Brief description of the Babylonian Exile of the Jews in the 6th century BCE. This lecture is also part of the course entitled Biblical Jewish History: From Abraham to Bar Kochba. Course information and registration here: https://henryabramson.com/course/biblical-jewish-history/ For recommended reading, please visit: https://henryabramson.com/recommended-reading/ Interested in studying more deeply? Join our learning community of students, researchers and colleagues: https://www.youtube.com/channel/UCeNr6gwqin_7e_atjVnJcCQ/join Online Courses: Biblical Jewish History: From Abraham to Bar Kochba Course information and registration here: https://henryabramson.com/course/biblical-jewish-history/ A Thousand Years of Ashkenaz! Course information and registration here: https://henryabramso...

    published: 22 Nov 2020
  • 3 Ways to Choose to Live in "Babylon" (and Which Jesus Chose)

    If followers of Jesus are to give their total allegiance to God’s Kingdom, how should they relate to the governments and power structures of their own day? In this video, we’ll see how the experience of Daniel and his friends in Babylonian exile offers wisdom for navigating this tension. Following Jesus in the 21st century means learning the way of the exile. #Exile #BibleProject #BibleVideo

    published: 01 Nov 2018
  • Babylonian Conquest and Destruction of the First Temple

    Learn more about the Babylonian conquest of Jerusalem and the events that led up to the First Temple's destruction. The City of David (the true location of the ancient Biblical Jerusalem - 2 Samuel 5:7) is now rising from the dust as foretold by Isaiah (52:2) through the archaeological excavations. You can become part of the ancient city's rise by supporting the excavations at the City of David. Put more buckets on the ground by buying the COIN or by joining a MEMBERSHIP. SUPPORT NOW: www.jerusalem-watch.com CONTENT in this video: All rights reserved: The Megalim Institute. The Megalim Institute is the Research and Educational Wing of the City of David. (www.megalim.org.il/en)

    published: 25 Jun 2018
  • 6. Babylonian Captivity | Biblical Timeline

    http://video.wvbs.org Sadly, the Israelites turned away from God’s commandments and began worshiping false gods and partaking in other things contrary to God’s will. God used worldly nations, such as the Babylonians, to bring judgment on the Israelites. In this lesson, John Hall examines the years known as the the Israelites’ Babylonian Captivity.

    published: 20 Dec 2018
  • What is Babylonian captivity?, Explain Babylonian captivity, Define Babylonian captivity

    #Babyloniancaptivity #audioversity ~~~ Babylonian captivity ~~~ Title: What is Babylonian captivity?, Explain Babylonian captivity, Define Babylonian captivity Created on: 2019-02-03 Source Link: https://en.wikipedia.org/wiki/Babylonian_captivity ------ Description: The Babylonian captivity or Babylonian exile is the period in Jewish history during which a number of people from the ancient Kingdom of Judah were captives in Babylonia. After the Battle of Carchemish in 605 BCE, King Nebuchadnezzar of Babylon besieged Jerusalem, resulting in tribute being paid by King Jehoiakim. Jehoiakim refused to pay tribute in Nebuchadnezzar's fourth year, which led to another siege in Nebuchadnezzar's seventh year, culminating with the death of Jehoiakim and the exile of King Jeconiah, his court and m...

    published: 03 Feb 2019
  • Babylonian invasion and captivity of Israel exile

    published: 23 Oct 2017
developed with YouTube
The Judean Exile to Babylonia | The Jewish Story | Unpacked
11:39

The Judean Exile to Babylonia | The Jewish Story | Unpacked

  • Order:
  • Duration: 11:39
  • Uploaded Date: 05 Oct 2020
  • views: 206408
When the Jewish people were exiled following the destruction of the First Temple, they seemed set to disappear from history. Instead, they survived and even thrived. What mysterious power held the Jewish people together and how did they retain their faith, tradition and identity in Babylonia - far from the Land of Israel? The Jewish Story Explained is based on the book "Letters to Auntie Fori: 5,000 Years of Jewish History and their Faith" by Martin Gilbert Chapters 00:00 Intro 01:20 Torah as portable Jewish history and language and national and religious identity 02:16 The Ten Lost Tribes assimilated througohut the world 03:06 The Babylonian Exile of Judah, Benjamin, and Levites 03:25 Maintaining Jewish identity and culture in Exile 04:26 Jewish presence in the Persian Empire 04:45 Cyrus the Great allows Jews to return to the Land of Israel 05:17 Xerxes/Achashverosh and the story of Esther/Purim 10:30 Cycle of oppression and salvation throughout Jewish history 11:27 Outro Subscribe and turn on your notifications so you don’t miss future uploads! https://www.youtube.com/UNPACKED?sub_confirmation=1 Missed the last episode? Check it out here: https://www.youtube.com/watch?v=51m_tBUaokg&list=PL-DNOnmKkUaYVJIFmU_RBihx8wezolzqL&index=7 Recommended series — “History of Israel Explained” https://youtu.be/t-sbCMYaFB8 Let’s connect: Website — https://www.jewishunpacked.com Instagram — https://www.instagram.com/jewishunpacked Twitter — https://twitter.com/jewishunpacked TikTok — https://www.tiktok.com/@jewishunpacked Facebook — https://www.facebook.com/jewishunpacked ----------- Co-Executive Producers: - Shmuel Katz - Melinda Goldrich Gold Level: - Irving I Moskowitz Foundation - Goldrich Family Foundation This series would not be possible without the generous support of Esther Gilbert and Michael Kagan ----------- Image Credits: - Wikimedia: John Hill, Hmundol, Arian Zwegers - Flickr: Ajay Tallam, Matt Ming About Jewish Story Explained: Understand three thousand years of Jewish history in these short videos based on the book Letters to Auntie Fori: The 5,000-Year History of the Jewish People and Their Faith by the renowned historian Sir Martin Gilbert. Learn the Jewish story from the ancient Israelites of the Bible to Hellenization, the Jews of the Middle Ages to modern day, and more. About Unpacked: We provide nuanced insights by unpacking all things Jewish. People are complex and complicated — yet we’re constantly being pushed to oversimplify our world. At Unpacked we know that being complex makes us more interesting. Because of this, we break the world down with nuance and insight to drive your curiosity and challenge your thinking. #Bible #History #Judaism
https://wn.com/The_Judean_Exile_To_Babylonia_|_The_Jewish_Story_|_Unpacked
The Babylonian Exile and the Creation of Judaism | Casual Historian | Jewish History
9:04

The Babylonian Exile and the Creation of Judaism | Casual Historian | Jewish History

  • Order:
  • Duration: 9:04
  • Uploaded Date: 15 Oct 2020
  • views: 41556
In the 6th century BCE a large portion of the Jewish population was relocated from Jerusalem to Babylon. While in exile they codified Jewish customs, religion, and history. Support this channel on Patreon https://www.patreon.com/CasualHistorian Check out the Merch Store!: https://teespring.com/stores/casual-historian Sources and Affiliate Links Testament: The Bible and History, by John Romer https://amzn.to/3eFlf57 Ancient Israel: What do we Know and How do we Know It?, by Lester L. Grabbe https://amzn.to/3eyF0uP A History of Israel: From the Bronze Age Through the Jewish Wars, Walter C. Kaiser https://amzn.to/3ezBXTa The Old Testament Documents: Are They Reliable & Relevant?, Walter C. Kaiser https://amzn.to/2ZPLm4S The Bible Unearthed: Archaeology's New Vision of Ancient Israel and the Origin of its Sacred Texts, by Israel Finkelstein and Neil Asher Silberman https://amzn.to/2BhQVPu Give a one time contribution on PayPal https://www.paypal.me/GrantHurst Buy me a book or piece of equipment on my Amazon Wish List https://www.amazon.com/hz/wishlist/ls/7MKSHMHG14U5?ref_=wl_share Check Out the Blog http://casualhistorian.com/ Check Out My History of the Modern Middle East Podcast https://www.historyofthemodernmiddleeast.com/
https://wn.com/The_Babylonian_Exile_And_The_Creation_Of_Judaism_|_Casual_Historian_|_Jewish_History
The Babylonian Exile and the Edict of King Cyrus
6:19

The Babylonian Exile and the Edict of King Cyrus

  • Order:
  • Duration: 6:19
  • Uploaded Date: 28 Nov 2019
  • views: 52916
The film accompanies the exiles from Jerusalem to Babylonia after the destruction of the First Temple. There they experience the shock of displacement before gradually integrating in Babylonia. Then, after decades in the far-off kingdom, they hear the rare, surprising pronouncement allowing them to return to Jerusalem and rebuild the Temple.
https://wn.com/The_Babylonian_Exile_And_The_Edict_Of_King_Cyrus
The Human Condition You Can't Escape (No Matter Where You Live)
5:11

The Human Condition You Can't Escape (No Matter Where You Live)

  • Order:
  • Duration: 5:11
  • Uploaded Date: 26 Apr 2018
  • views: 1458638
Exile is one of the core, yet often overlooked, themes underlying the entire Biblical storyline. In this video, we'll see how Israel's exile to Babylon is a picture of all humanity's exile from Eden. As you might guess, Jesus is the one to open the way back home. #Exile #BibleProject #BibleVideo
https://wn.com/The_Human_Condition_You_Can't_Escape_(No_Matter_Where_You_Live)
16. The Babylonian Exile (Jewish History Lab)
9:31

16. The Babylonian Exile (Jewish History Lab)

  • Order:
  • Duration: 9:31
  • Uploaded Date: 22 Nov 2020
  • views: 21151
Brief description of the Babylonian Exile of the Jews in the 6th century BCE. This lecture is also part of the course entitled Biblical Jewish History: From Abraham to Bar Kochba. Course information and registration here: https://henryabramson.com/course/biblical-jewish-history/ For recommended reading, please visit: https://henryabramson.com/recommended-reading/ Interested in studying more deeply? Join our learning community of students, researchers and colleagues: https://www.youtube.com/channel/UCeNr6gwqin_7e_atjVnJcCQ/join Online Courses: Biblical Jewish History: From Abraham to Bar Kochba Course information and registration here: https://henryabramson.com/course/biblical-jewish-history/ A Thousand Years of Ashkenaz! Course information and registration here: https://henryabramson.com/course/a-thousand-years-of-ashkenaz/
https://wn.com/16._The_Babylonian_Exile_(Jewish_History_Lab)
3 Ways to Choose to Live in "Babylon" (and Which Jesus Chose)
5:20

3 Ways to Choose to Live in "Babylon" (and Which Jesus Chose)

  • Order:
  • Duration: 5:20
  • Uploaded Date: 01 Nov 2018
  • views: 1231850
If followers of Jesus are to give their total allegiance to God’s Kingdom, how should they relate to the governments and power structures of their own day? In this video, we’ll see how the experience of Daniel and his friends in Babylonian exile offers wisdom for navigating this tension. Following Jesus in the 21st century means learning the way of the exile. #Exile #BibleProject #BibleVideo
https://wn.com/3_Ways_To_Choose_To_Live_In_Babylon_(And_Which_Jesus_Chose)
Babylonian Conquest and Destruction of the First Temple
9:51

Babylonian Conquest and Destruction of the First Temple

  • Order:
  • Duration: 9:51
  • Uploaded Date: 25 Jun 2018
  • views: 200232
Learn more about the Babylonian conquest of Jerusalem and the events that led up to the First Temple's destruction. The City of David (the true location of the ancient Biblical Jerusalem - 2 Samuel 5:7) is now rising from the dust as foretold by Isaiah (52:2) through the archaeological excavations. You can become part of the ancient city's rise by supporting the excavations at the City of David. Put more buckets on the ground by buying the COIN or by joining a MEMBERSHIP. SUPPORT NOW: www.jerusalem-watch.com CONTENT in this video: All rights reserved: The Megalim Institute. The Megalim Institute is the Research and Educational Wing of the City of David. (www.megalim.org.il/en)
https://wn.com/Babylonian_Conquest_And_Destruction_Of_The_First_Temple
6. Babylonian Captivity | Biblical Timeline
24:55

6. Babylonian Captivity | Biblical Timeline

  • Order:
  • Duration: 24:55
  • Uploaded Date: 20 Dec 2018
  • views: 45908
http://video.wvbs.org Sadly, the Israelites turned away from God’s commandments and began worshiping false gods and partaking in other things contrary to God’s will. God used worldly nations, such as the Babylonians, to bring judgment on the Israelites. In this lesson, John Hall examines the years known as the the Israelites’ Babylonian Captivity.
https://wn.com/6._Babylonian_Captivity_|_Biblical_Timeline
What is Babylonian captivity?, Explain Babylonian captivity, Define Babylonian captivity
2:09

What is Babylonian captivity?, Explain Babylonian captivity, Define Babylonian captivity

  • Order:
  • Duration: 2:09
  • Uploaded Date: 03 Feb 2019
  • views: 6851
#Babyloniancaptivity #audioversity ~~~ Babylonian captivity ~~~ Title: What is Babylonian captivity?, Explain Babylonian captivity, Define Babylonian captivity Created on: 2019-02-03 Source Link: https://en.wikipedia.org/wiki/Babylonian_captivity ------ Description: The Babylonian captivity or Babylonian exile is the period in Jewish history during which a number of people from the ancient Kingdom of Judah were captives in Babylonia. After the Battle of Carchemish in 605 BCE, King Nebuchadnezzar of Babylon besieged Jerusalem, resulting in tribute being paid by King Jehoiakim. Jehoiakim refused to pay tribute in Nebuchadnezzar's fourth year, which led to another siege in Nebuchadnezzar's seventh year, culminating with the death of Jehoiakim and the exile of King Jeconiah, his court and many others; Jeconiah's successor Zedekiah and others were exiled in Nebuchadnezzar's eighteenth year; a later deportation occurred in Nebuchadnezzar's twenty-third year. The dates, numbers of deportations, and numbers of deportees given in the biblical accounts vary. These deportations are dated to 597 BCE for the first, with others dated at 587/586 BCE, and 582/581 BCE respectively.After the fall of Babylon to the Persian king Cyrus the Great in 539 BCE, exiled Judeans were permitted to return to Judah. According to the biblical book of Ezra, construction of the second temple in Jerusalem began around 537 BCE. All these events are considered significant in Jewish history and culture, and had a far-reaching impact on the development of Judaism. Archaeological studies have revealed that not all of the population of Judah was deported, and that, although Jerusalem was utterly destroyed, other parts of Judah continued to be inhabited during the period of the exile. The return of the exiles was a gradual process rather than a single event, and many of the deportees or their descendants did not return, becoming the ancestors of the Iraqi Jews. ------ To see your favorite topic here, fill out this request form: https://docs.google.com/forms/d/e/1FAIpQLScU0dLbeWsc01IC0AaO8sgaSgxMFtvBL31c_pjnwEZUiq99Fw/viewform ------ Source: Wikipedia.org articles, adapted under https://creativecommons.org/licenses/by-sa/3.0/ license. Support: Donations can be made from https://wikimediafoundation.org/wiki/Ways_to_Give to support Wikimedia Foundation and knowledge sharing.
https://wn.com/What_Is_Babylonian_Captivity_,_Explain_Babylonian_Captivity,_Define_Babylonian_Captivity
Babylonian invasion and captivity of Israel exile
3:15

Babylonian invasion and captivity of Israel exile

  • Order:
  • Duration: 3:15
  • Uploaded Date: 23 Oct 2017
  • views: 27127
https://wn.com/Babylonian_Invasion_And_Captivity_Of_Israel_Exile
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • The Judean Exile to Babylonia | The Jewish Story | Unpacked
    11:39
    The Judean Exile to Babylonia | The Jewish Story | Unpackedremove from playlist
  • The Babylonian Exile and the Creation of Judaism | Casual Historian | Jewish History
    9:04
    The Babylonian Exile and the Creation of Judaism | Casual Historian | Jewish Historyremove from playlist
  • The Babylonian Exile and the Edict of King Cyrus
    6:19
    The Babylonian Exile and the Edict of King Cyrusremove from playlist
  • The Human Condition You Can't Escape (No Matter Where You Live)
    5:11
    The Human Condition You Can't Escape (No Matter Where You Live)remove from playlist
  • 16. The Babylonian Exile (Jewish History Lab)
    9:31
    16. The Babylonian Exile (Jewish History Lab)remove from playlist
  • 3 Ways to Choose to Live in
    5:20
    3 Ways to Choose to Live in "Babylon" (and Which Jesus Chose)remove from playlist
  • Babylonian Conquest and Destruction of the First Temple
    9:51
    Babylonian Conquest and Destruction of the First Templeremove from playlist
  • 6. Babylonian Captivity | Biblical Timeline
    24:55
    6. Babylonian Captivity | Biblical Timelineremove from playlist
  • What is Babylonian captivity?, Explain Babylonian captivity, Define Babylonian captivity
    2:09
    What is Babylonian captivity?, Explain Babylonian captivity, Define Babylonian captivityremove from playlist
developed with YouTube
PLAYLIST TIME:

The Judean Exile to Babylonia | The Jewish Story | Unpacked

When the Jewish people were exiled following the destruction of the First Temple, they seemed set to disappear from history. Instead, they survived and even thrived. What mysterious power held the Jewish people together and how did they retain their faith, tradition and identity in Babylonia - far from the Land of Israel? The Jewish Story Explained is based on the book "Letters to Auntie Fori: 5,000 Years of Jewish History and their Faith" by Martin Gilbert Chapters 00:00 Intro 01:20 Torah as portable Jewish history and language and national and religious identity 02:16 The Ten Lost Tribes assimilated througohut the world 03:06 The Babylonian Exile of Judah, Benjamin, and Levites 03:25 Maintaining Jewish identity and culture in Exile 04:26 Jewish presence in the Persian Empire 04:45 Cyrus the Great allows Jews to return to the Land of Israel 05:17 Xerxes/Achashverosh and the story of Esther/Purim 10:30 Cycle of oppression and salvation throughout Jewish history 11:27 Outro Subscribe and turn on your notifications so you don’t miss future uploads! https://www.youtube.com/UNPACKED?sub_confirmation=1 Missed the last episode? Check it out here: https://www.youtube.com/watch?v=51m_tBUaokg&list=PL-DNOnmKkUaYVJIFmU_RBihx8wezolzqL&index=7 Recommended series — “History of Israel Explained” https://youtu.be/t-sbCMYaFB8 Let’s connect: Website — https://www.jewishunpacked.com Instagram — https://www.instagram.com/jewishunpacked Twitter — https://twitter.com/jewishunpacked TikTok — https://www.tiktok.com/@jewishunpacked Facebook — https://www.facebook.com/jewishunpacked ----------- Co-Executive Producers: - Shmuel Katz - Melinda Goldrich Gold Level: - Irving I Moskowitz Foundation - Goldrich Family Foundation This series would not be possible without the generous support of Esther Gilbert and Michael Kagan ----------- Image Credits: - Wikimedia: John Hill, Hmundol, Arian Zwegers - Flickr: Ajay Tallam, Matt Ming About Jewish Story Explained: Understand three thousand years of Jewish history in these short videos based on the book Letters to Auntie Fori: The 5,000-Year History of the Jewish People and Their Faith by the renowned historian Sir Martin Gilbert. Learn the Jewish story from the ancient Israelites of the Bible to Hellenization, the Jews of the Middle Ages to modern day, and more. About Unpacked: We provide nuanced insights by unpacking all things Jewish. People are complex and complicated — yet we’re constantly being pushed to oversimplify our world. At Unpacked we know that being complex makes us more interesting. Because of this, we break the world down with nuance and insight to drive your curiosity and challenge your thinking. #Bible #History #Judaism
11:39
The Judean Exile to Babylonia | The Jewish Story | Unpacked
When the Jewish people were exiled following the destruction of the First Temple, they see...
published: 05 Oct 2020
Play in Full Screen
9:04
The Babylonian Exile and the Creation of Judaism | Casual Historian | Jewish History
In the 6th century BCE a large portion of the Jewish population was relocated from Jerusal...
published: 15 Oct 2020
Play in Full Screen
6:19
The Babylonian Exile and the Edict of King Cyrus
The film accompanies the exiles from Jerusalem to Babylonia after the destruction of the F...
published: 28 Nov 2019
Play in Full Screen
5:11
The Human Condition You Can't Escape (No Matter Where You Live)
Exile is one of the core, yet often overlooked, themes underlying the entire Biblical stor...
published: 26 Apr 2018
Play in Full Screen
9:31
16. The Babylonian Exile (Jewish History Lab)
Brief description of the Babylonian Exile of the Jews in the 6th century BCE. This lectu...
published: 22 Nov 2020
Play in Full Screen
5:20
3 Ways to Choose to Live in "Babylon" (and Which Jesus Chose)
If followers of Jesus are to give their total allegiance to God’s Kingdom, how should they...
published: 01 Nov 2018
Play in Full Screen
9:51
Babylonian Conquest and Destruction of the First Temple
Learn more about the Babylonian conquest of Jerusalem and the events that led up to the Fi...
published: 25 Jun 2018
Play in Full Screen
24:55
6. Babylonian Captivity | Biblical Timeline
http://video.wvbs.org Sadly, the Israelites turned away from God’s commandments and began ...
published: 20 Dec 2018
Play in Full Screen
2:09
What is Babylonian captivity?, Explain Babylonian captivity, Define Babylonian captivity
#Babyloniancaptivity #audioversity ~~~ Babylonian captivity ~~~ Title: What is Babylonian...
published: 03 Feb 2019
Play in Full Screen
3:15
Babylonian invasion and captivity of Israel exile
published: 23 Oct 2017
Play in Full Screen

Babylonian captivity

The Babylonian captivity or Babylonian exile is the period in Jewish history during which a number of Judahites of the ancient Kingdom of Judah were captives in Babylonia. After the Battle of Carchemish in 605 BCE, Nebuchadnezzar, the king of Babylon, besieged Jerusalem, resulting in tribute being paid by King Jehoiakim. Jehoiakim refused to pay tribute in Nebuchadnezzar's fourth year, which led to another siege in Nebuchadnezzar's seventh year, culminating with the death of Jehoiakim and the exile of King Jeconiah, his court and many others; Jeconiah's successor Zedekiah and others were exiled in Nebuchadnezzar's eighteenth year; a later deportation occurred in Nebuchadnezzar's twenty-third year. The dates, numbers of deportations, and numbers of deportees given in the biblical accounts vary. These deportations are dated to 597 BCE for the first, with others dated at 587/586 BCE, and 582/581 BCE respectively.

After the fall of Babylon to the Persian king Cyrus the Great in 539 BCE, exiled Jews began to return to the land of Judah. According to the biblical book of Ezra, construction of a second temple in Jerusalem began at this time. All these events are considered significant in Jewish history and culture, and had a far-reaching impact on the development of Judaism.

'); } 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: babylonian exile

Edit

The Cursed Nation and the Temple of Satan, by Laurent Guyénot

The Unz Review 17 Jan 2025
This would be speculation if there were no other scriptural clues that this is precisely what happened during the Babylonian exile, when human sacrifices were banned and eighth-day circumcision established.
Edit

Msgr. Owen F. Campion: Let us follow God’s call to ‘perfect day’

Hawaii Catholic Herald 01 Jan 2025
After four generations of exile in Babylon, survivors, or descendants of survivors, of the long-past Babylonian conquest of the Holy Land finally were able to return to their homeland.
Edit

Rachel weeping for her children

Manila Bulletin 28 Dec 2024
REFLECTIONS TODAY ... The second oracle is about Rachel weeping for her children taken into exile at the time of the Assyrian invasion and at another threat of Babylonian invasion (Jer 31.15) ... the innocent children in our midst ... Beloved ... Source ... .
Edit

Question corner: The genealogy of Jesus

Catholic Standard 17 Dec 2024
Q ... A ... St. Matthew also tells us specifically that “the total number of generations from Abraham to David is 14 generations; from David to the Babylonian exile, 14 generations; from the Babylonian exile to the Messiah, 14 generations” (Matthew 1.17) ... ....
Edit

The Good News of Hope: Sunday Reflection

Hot Air 15 Dec 2024
Zephaniah begins his prophetic ministry about a century after the fall of the Northern Kingdom to the Assyrians, and shortly before the first wave of the Babylonian exile ... of the Babylonian captivity.
Edit

Preparing the way of the Lord

Manila Bulletin 08 Dec 2024
For a long time after the return of the Jews from their Babylonian exile, no voice of the prophet could be heard in the land.
Edit

The Baby that fulfills every promise

The Baptist Messenger 05 Dec 2024
Exile in Egypt (Matt ... Matthew saw in the grieving of those Jewish mothers a reenactment of the grieving Jewish mothers during the Babylonian invasion & exile in 586 BC ... Both scenes point to the promise of the end of exile.
Edit

Bible in schools

The Danville News 05 Dec 2024
Genesis isn’t even the oldest Bible book, but a young work composed while the Hebrews suffered Babylonian exile ... Will the teachers teach how the Ten Commandments are based upon the Babylonian Code of ...
Edit

The Old Jewish Cemetery of Baghdad: A Forgotten Chapter in Iraq’s History

The Algemeiner 02 Dec 2024
The Jewish presence in Mesopotamia dates back more than 2,500 years, beginning with the Babylonian exile in 586 BCE ... connection to a community that had lived in Baghdad since the Babylonian exile.
Edit

Faith column: God uses Pagan Messiahs to accomplish his sovereign purposes

The Globe 01 Dec 2024
Isaiah 45.1. “This is what the LORD says to his anointed (mā·šîaḥ), to Cyrus, whose right hand I take hold of…” ... ADVERTISEMENT ... Through Cyrus, God fulfilled his promise to bring the Babylonian exiles back to Israel. More Columns.. Faith column ... Nov 17 ... Rev.
Edit

God chose Donald Trump to win the election and change the world

The Jerusalem Post 15 Nov 2024
God voted not only for Trump but for all these presidents, Democrat and Republican alike ... When you have to choose ... The Babylonians, though cruel, allowed an exiled Jewish community to exist, and thrive, leading to the creation of the Babylonian Talmud.
Edit

God has a plan for each of us

Tooele Transcript Bulletin 30 Oct 2024
This verse is from a letter written by the prophet Jeremiah to those from Judah and Jerusalem held captive by the Babylonians during their seventy year exile. It is an important reminder that God’s plans are not dictated by our circumstances ... ....
Edit

Chastisement is looming. What might happen to the world?

Life Site 21 Sep 2024
Chastisements. Salvation history is full of God’s corrective actions – the Flood, Sodom and Gomorrah, the Wandering in the Desert, the Assyrian Conquest of Israel, the Babylonian Exile, and the Destruction of the Second Temple ... Reason for joy ... .
Edit

Israeli official alludes to Tel Aviv’s responsibility for wireless device explosions in Lebanon

Anadolu Agency 18 Sep 2024
The verse posted by Karhi on X reads ... The verse is from the book of Nahum, believed to have been written between 663 and 612 BCE, and discusses the prophecy of the fall of the Assyrian Empire during the Babylonian exile ... 7. *Writing by Mohammad Sio .

Most Viewed

×