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

Ashur

Ashur (אַשּׁוּר; often also transliterated as Asshur to reflect the pointing of Hebrew letter 'ש' (Shin) in the Masoretic text, which doubles the 'ש'), was the second son of Shem, the son of Noah. Ashur's brothers were Elam, Arphaxad, Lud, and Aram.

The Hebrew text of Genesis 10:11 is somewhat ambiguous as to whether it was Asshur himself (as the 1611 Authorized Version says), or Nimrod (as in some other English translations) who, according to Biblical tradition, built the Assyrian cities of Nineveh, Resen, Rehoboth-Ir and Calah, since the name Asshur can refer to both the person and the country (Genesis 10:8–12 AV, Genesis 10:8–12 ESV).Sir Walter Raleigh devoted several pages in his History of the World (c. 1616) to reciting past scholarship regarding the question of whether it had been Nimrod or Ashur who built the cities in Assyria.

The 1st century Judaeo-Roman historian Flavius Josephus further gives the following statement: "Ashur lived at the city of Nineveh; and named his subjects Assyrians, who became the most fortunate nation, beyond others" (Antiquities, i, vi, 4).

Ashur (disambiguation)

Ashur or Assur or Asur may refer to

  • Assyria:
  • the city of Assur, the initial town dating from circa 2600 BC, and later capital of Assyria
  • Ashur, the main god of Assyrian mythology in Mesopotamian religion (later identified with Anshar)
  • Ashur a traditional and common given and family name among Assyrian people
  • Ashur, grandson of Noah in Genesis
  • Asur, India, a village in the Kumbakonam taluk of Thanjavur district, Tamil Nadu, India
  • Ashur, Iran, a village in Iran
  • Ashur, Sistan and Baluchestan, a village in Iran
  • Asur people, a tribal group living primarily in the Indian state of Jharkhand
  • Asur, a race in Warhammer Fantasy
  • See also

  • Assyria (disambiguation)
  • Assuræ city, in North Africa
  • Asuras, deities in Hinduism and Buddhism
  • Assur

    Aššur (Akkadian) (English | Ashur/Assyria, Assyrian / Aššur; Assyrian Neo-Aramaic / Ātûr ; Hebrew: אַשּׁוּר / Aššûr; Arabic: آشور / ALA-LC: Āshūr; Kurdish: Asûr), also known as Ashur, Qal'at Sherqat and Kalah Shergat, is a city from the Neo-Assyrian Empire. The remains of the city are situated on the western bank of the river Tigris, north of the confluence with the tributary Little Zab river, in modern-day Iraq, more precisely in the Al-Shirqat District (a small panhandle of the Saladin Governorate).

    The city was occupied from the mid-3rd millennium BCE (c. 2600–2500 BCE) to the 14th century, when Timur conducted a massacre of its Assyrian population. The site of Assur is a World Heritage Site and was placed on the list of World Heritage Sites in danger in 2003, in part due to the conflict in that area and also due to a proposed dam that would flood part of the site. It is about 40 miles south of the former Nimrud and 60 miles south of Nineveh.

    History of research

    Exploration of the site of Assur began in 1898 by German archaeologists. Excavations began in 1900 by Friedrich Delitzsch, and were continued in 1903–1913 by a team from the German Oriental Society led initially by Robert Koldewey and later by Walter Andrae. More than 16,000 tablets with cuneiform texts were discovered. Many of the objects found made their way to the Pergamon Museum in Berlin.

    Podcasts:

    • The Mysterious Rise of Ashur | The Vessel of the Anunnaki gods

      The Rise of the god Ashur in the Assyrian Pantheon as leader and Shining Host of the Anunnaki. In the video, you will learn the Anunnaki's true nature and the Winged Sun's alternative and possibly original purpose. @AncientMysteryChannel Discover the fascinating history of Ashur, the powerful deity worshipped in the ancient Mesopotamian city of Assur, founded over 4,600 years ago. [2600 BC]. Delve into the rich culture and mythology of the region and explore the many Old Assyrian texts in which the name Ashur appears. Uncover the mysteries of this legendary city god and gain a deeper understanding of the beliefs and practices of the people who worshipped him. anunnnaki #anunnakigods #ancientmystery

      published: 12 Jan 2024
    • Exploring the Assyrian Empire

      In this episode I’ll take you to all Assyrian capitals. Ashur, Kalhu, Dur-Sharrukin, and Nineveh. Get on the waiting list for my upcoming book, Table of Gods, and receive 3 recipes ►► https://www.tableofgods.com/yt Watch my other videos Sargon II vs Rusa ► https://youtu.be/BAw_uSF9qoY Ashurnasirpal’s party ► https://youtu.be/K4KmT0q7uHE 3,000 year old Assyrian breakfast ► https://youtu.be/TsInMGdTc3o Naqia, Ashurbanipals grandmother ► https://youtu.be/veKm0LYIuK8 Follow Table of Gods Instagram ► https://www.instagram.com/tableofgods/ Facebook ► https://www.facebook.com/tableofgods About Table of Gods Inspired by the world’s oldest recipes, cities, and stories. Table of Gods is not only a cookbook. Table of Gods is a time machine. One that takes you back to the cradle of civiliza...

      published: 26 Apr 2023
    • Ashiqi 3 / assur

      A Project By #assur

      published: 21 Sep 2024
    • TABADTOD | ASSUR x NOOR HUNDAL | OFFICIAL MUSIC VIDEO | EP:- PANJAB TAKEOVER | Desi Hip Hop 2k24 |

      TABADTOD Spotify - https://open.spotify.com/track/5GOG5hSdEXcGATkWdBolo4?si=d9ce3b5cfc8f4745 Apple music - https://music.apple.com/us/album/tabadtod/1745825430?i=1745825443 Wynk Music - https://wynk.in/u/ZlcBperU4 Saavn - https://www.jiosaavn.com/song/tabadtod/MQVbYTZKZ1I Performed by - Assur X Noor Hundal Lyrics - Assur and Noor Hundal Mix and Mastered by - KAANDI Video credits - BhullarxEdits video edited by - KAANDI Click here to subscribe - https://www.youtube.com/channel/UCw3IL6_TIsbFTMnv1oCfVjQ Instagram - @assur0Assur [ https://www.instagram.com/assur0?igsh=Ymd3eGExc2QwaW90 ] Noor Hundal [ https://www.instagram.com/noorhundal__?igsh=MWUwMzgzcWNsNGM0MQ%3D%3D&utm_source=qr ] Bhullxr.films [ https://www.instagram.com/bhullxr.films?igsh=Z201a3g3ejFudXI= ] KAANDI [ http...

      published: 20 May 2024
    • Plan f.t Assur (official music video )(2024 )

      written by : assur mixed & Mastered by : szemek Shot & Edited by : Karman bhullar Lyrics : So what is the plan ?? gxng kre meri pull up...pull up..!! So what is the plan ?? Mai behtar hu lakho se to ab..!! So what is the plan ?? Should I fuck these motherfuvkers !!! So this is the plan .. Ab kalakari mere hath mai... Krrha hu koshish kal raat se.. Likhne ki aisa kuch... Jo kre influence  Ye jaake sune real stuff... Sune assur inko pata bhi to lage.. Thodi samjh bhi to lage.. Mere fans bhi to bane.. Tracks mere baje...28 states .. Hua lakh baar fail pr..baar baar mai.. Aata ho k...or strong... Galtiyon se seekha hua hard core.. Verse mera bohot strong... Completion to chhodo tum behnchodo.. Meri beat se bhi halka tera full song... Plan A plan B plan C .. Bandi ho ...

      published: 31 Jan 2024
    • Davido - Assurance (Official Video)

      Davido - Assurance (Official Video) Listen to/download 'Assurance' here: http://smarturl.it/DavidoAssurance?IQid=YT --------------------------------------------------- More from Davido: Flora My Flawa - http://smarturl.it/FloraMyFlawa?IQid=YT FIA: http://smarturl.it/Davido-FIA?IQid=YT FIA (Remix): http://smarturl.it/Davido-FIARemix?IQid=YT Like Dat - http://smarturl.it/Davido-LikeDat?IQid=YT Pere (feat. Rae Sremmurd & Young Thug) - http://smarturl.it/Davido-Pere?IQid=YT Fall - http://smarturl.it/Davido-Fall?IQid=YT If - http://smarturl.it/Davido-If?IQid=YT Son Of Mercy (EP) - http://smarturl.it/Davido-SonOfMercy?IQid=YT Skelewu - http://smarturl.it/Davido-Skelewu?IQid=YT --------------------------------------------------- Follow Davido: https://www.facebook.com/davidoofficial2 https:...

      published: 01 May 2018
    • Assur the Father of the Gods

      Assur – Father of the Gods Culture: Assyrian Associated: Judicial office, conduct of war Originally the tutelary God of the town Assur Founded Approximately 2500 BCE Abandoned 14th century AD Periods Early Bronze Age to East Semitic god, and the head of the Assyrian pantheon in Mesopotamian religion, worshipped mainly in the northern half of Mesopotamia, and parts of north-east Syria and south-east Asia Minor which constituted old Assyria. He may have had a solar iconography. From the 13th century BCE onwards he gains ascendancy over Enlil oust him from the dominant role and takes over the titles great mountain and father of the gods. From the 19th century BC onward he is equated with Ansar. Among his functions or the judicial office otherwise reserved for the son God and the conduct ...

      published: 28 Dec 2020
    • ASSYRIAN GOD ASHUR/ASSUR

      published: 09 Jun 2016
    • Combo Off with Mono Black Zombies | Zul Ashur, Lich Lord EDH Deck Tech | Magic The Gathering

      Today we showcase the newly released Zul Ashur, Lich Lord in an EDH build that will be all about combo-ing off with zombies. We will take advantage of our commander's ability to infinitely loop low cmc zombies! If you enjoyed the video, subscribe to Common Command! Deck List: https://tcgplayer.pxf.io/mOg337 Want to help support future projects? Consider using our TCG Player Affiliate Link when purchasing from the site: https://tcgplayer.pxf.io/q4NmEj Want to go beyond with your support? Check out our patreon: https://www.patreon.com/commoncommand Don't Click Here: https://tinyurl.com/2p8m8pse Follow Common Command on all its socials! Twitter: https://twitter.com/CommonEDH Facebook: https://www.facebook.com/commoncommandedh Instagram: https://www.instagram.com/commoncommand/ #MTG #ED...

      published: 18 Nov 2024
    • Asshur Assur and the Assyrian Empire | Abantu Research and Study Bible

      #Assyria #namesinthebible #Asshur #Abrashem Modified Names in the Bible – Inherited Unprofitable Lies https://unprofitablelies.biblestudyministry.com/the-death-of-sarah-in-the-bible-genesis-23/ Most of the biblical names in the Bible have this thing at the end of them...this thing that ends with an "H" or some names just have an H added to them. This video was created with love and compassion Let me know if you have any questions in the comments section. Music: Moon: Aurora Night

      published: 18 May 2023
    developed with YouTube
    The Mysterious Rise of Ashur | The Vessel of the Anunnaki gods
    13:47

    The Mysterious Rise of Ashur | The Vessel of the Anunnaki gods

    • Order:
    • Duration: 13:47
    • Uploaded Date: 12 Jan 2024
    • views: 3764
    The Rise of the god Ashur in the Assyrian Pantheon as leader and Shining Host of the Anunnaki. In the video, you will learn the Anunnaki's true nature and the Winged Sun's alternative and possibly original purpose. @AncientMysteryChannel Discover the fascinating history of Ashur, the powerful deity worshipped in the ancient Mesopotamian city of Assur, founded over 4,600 years ago. [2600 BC]. Delve into the rich culture and mythology of the region and explore the many Old Assyrian texts in which the name Ashur appears. Uncover the mysteries of this legendary city god and gain a deeper understanding of the beliefs and practices of the people who worshipped him. anunnnaki #anunnakigods #ancientmystery
    https://wn.com/The_Mysterious_Rise_Of_Ashur_|_The_Vessel_Of_The_Anunnaki_Gods
    Exploring the Assyrian Empire
    21:48

    Exploring the Assyrian Empire

    • Order:
    • Duration: 21:48
    • Uploaded Date: 26 Apr 2023
    • views: 26547
    In this episode I’ll take you to all Assyrian capitals. Ashur, Kalhu, Dur-Sharrukin, and Nineveh. Get on the waiting list for my upcoming book, Table of Gods, and receive 3 recipes ►► https://www.tableofgods.com/yt Watch my other videos Sargon II vs Rusa ► https://youtu.be/BAw_uSF9qoY Ashurnasirpal’s party ► https://youtu.be/K4KmT0q7uHE 3,000 year old Assyrian breakfast ► https://youtu.be/TsInMGdTc3o Naqia, Ashurbanipals grandmother ► https://youtu.be/veKm0LYIuK8 Follow Table of Gods Instagram ► https://www.instagram.com/tableofgods/ Facebook ► https://www.facebook.com/tableofgods About Table of Gods Inspired by the world’s oldest recipes, cities, and stories. Table of Gods is not only a cookbook. Table of Gods is a time machine. One that takes you back to the cradle of civilization. #Mesopotamia #AncientHistory #Assyria #Iraq #Ashur #Kalhu #DurSharrukin #Nineveh #Tableofgods Credit Learning Sites Inc ► https://www.youtube.com/watch?v=rEQvg3YkkoI&t=0s https://www.youtube.com/watch?v=ZRASpLyjmHA https://www.youtube.com/watch?v=5VCldg1TdHc The British Museum ► https://www.youtube.com/watch?v=0OZe-y5tk9Q Archeologie Culture ► https://archeologie.culture.gouv.fr/khorsabad/fr 00:00 - 00:25 Intro 00:26 - 04:23 Ashur 04:24 - 09:06 Kalhu 09:07 - 13:08 Dur-Sharrukin 13:09 - 21:47 Nineveh
    https://wn.com/Exploring_The_Assyrian_Empire
    Ashiqi 3 / assur
    2:32

    Ashiqi 3 / assur

    • Order:
    • Duration: 2:32
    • Uploaded Date: 21 Sep 2024
    • views: 337
    A Project By #assur
    https://wn.com/Ashiqi_3_Assur
    TABADTOD |  ASSUR x NOOR HUNDAL | OFFICIAL MUSIC VIDEO | EP:- PANJAB TAKEOVER | Desi Hip Hop 2k24 |
    2:15

    TABADTOD | ASSUR x NOOR HUNDAL | OFFICIAL MUSIC VIDEO | EP:- PANJAB TAKEOVER | Desi Hip Hop 2k24 |

    • Order:
    • Duration: 2:15
    • Uploaded Date: 20 May 2024
    • views: 1396
    TABADTOD Spotify - https://open.spotify.com/track/5GOG5hSdEXcGATkWdBolo4?si=d9ce3b5cfc8f4745 Apple music - https://music.apple.com/us/album/tabadtod/1745825430?i=1745825443 Wynk Music - https://wynk.in/u/ZlcBperU4 Saavn - https://www.jiosaavn.com/song/tabadtod/MQVbYTZKZ1I Performed by - Assur X Noor Hundal Lyrics - Assur and Noor Hundal Mix and Mastered by - KAANDI Video credits - BhullarxEdits video edited by - KAANDI Click here to subscribe - https://www.youtube.com/channel/UCw3IL6_TIsbFTMnv1oCfVjQ Instagram - @assur0Assur [ https://www.instagram.com/assur0?igsh=Ymd3eGExc2QwaW90 ] Noor Hundal [ https://www.instagram.com/noorhundal__?igsh=MWUwMzgzcWNsNGM0MQ%3D%3D&utm_source=qr ] Bhullxr.films [ https://www.instagram.com/bhullxr.films?igsh=Z201a3g3ejFudXI= ] KAANDI [ https://www.instagram.com/ir._x_.nic?igsh=MTZ0em11dHV0NXBqNw==]
    https://wn.com/Tabadtod_|_Assur_X_Noor_Hundal_|_Official_Music_Video_|_Ep_Panjab_Takeover_|_Desi_Hip_Hop_2K24_|
    Plan f.t Assur (official music video )(2024 )
    2:15

    Plan f.t Assur (official music video )(2024 )

    • Order:
    • Duration: 2:15
    • Uploaded Date: 31 Jan 2024
    • views: 2023
    written by : assur mixed & Mastered by : szemek Shot & Edited by : Karman bhullar Lyrics : So what is the plan ?? gxng kre meri pull up...pull up..!! So what is the plan ?? Mai behtar hu lakho se to ab..!! So what is the plan ?? Should I fuck these motherfuvkers !!! So this is the plan .. Ab kalakari mere hath mai... Krrha hu koshish kal raat se.. Likhne ki aisa kuch... Jo kre influence  Ye jaake sune real stuff... Sune assur inko pata bhi to lage.. Thodi samjh bhi to lage.. Mere fans bhi to bane.. Tracks mere baje...28 states .. Hua lakh baar fail pr..baar baar mai.. Aata ho k...or strong... Galtiyon se seekha hua hard core.. Verse mera bohot strong... Completion to chhodo tum behnchodo.. Meri beat se bhi halka tera full song... Plan A plan B plan C .. Bandi ho ya anything .. I got millions of options  Millions of sounds millions of ideas.. Billions of flows & trillion of concepts !! Bajta hai..shehr tera yani am on the concert.. Am on your playlist ..sunkr mujhe ladke bandte hai gangsters ...!! Ianit no rapper...
    https://wn.com/Plan_F.T_Assur_(Official_Music_Video_)(2024_)
    Davido - Assurance (Official Video)
    4:08

    Davido - Assurance (Official Video)

    • Order:
    • Duration: 4:08
    • Uploaded Date: 01 May 2018
    • views: 99785109
    Davido - Assurance (Official Video) Listen to/download 'Assurance' here: http://smarturl.it/DavidoAssurance?IQid=YT --------------------------------------------------- More from Davido: Flora My Flawa - http://smarturl.it/FloraMyFlawa?IQid=YT FIA: http://smarturl.it/Davido-FIA?IQid=YT FIA (Remix): http://smarturl.it/Davido-FIARemix?IQid=YT Like Dat - http://smarturl.it/Davido-LikeDat?IQid=YT Pere (feat. Rae Sremmurd & Young Thug) - http://smarturl.it/Davido-Pere?IQid=YT Fall - http://smarturl.it/Davido-Fall?IQid=YT If - http://smarturl.it/Davido-If?IQid=YT Son Of Mercy (EP) - http://smarturl.it/Davido-SonOfMercy?IQid=YT Skelewu - http://smarturl.it/Davido-Skelewu?IQid=YT --------------------------------------------------- Follow Davido: https://www.facebook.com/davidoofficial2 https://twitter.com/iam_davido https://instagram.com/davidoofficial http://iamdavido.com
    https://wn.com/Davido_Assurance_(Official_Video)
    Assur the Father of the Gods
    1:55

    Assur the Father of the Gods

    • Order:
    • Duration: 1:55
    • Uploaded Date: 28 Dec 2020
    • views: 3220
    Assur – Father of the Gods Culture: Assyrian Associated: Judicial office, conduct of war Originally the tutelary God of the town Assur Founded Approximately 2500 BCE Abandoned 14th century AD Periods Early Bronze Age to East Semitic god, and the head of the Assyrian pantheon in Mesopotamian religion, worshipped mainly in the northern half of Mesopotamia, and parts of north-east Syria and south-east Asia Minor which constituted old Assyria. He may have had a solar iconography. From the 13th century BCE onwards he gains ascendancy over Enlil oust him from the dominant role and takes over the titles great mountain and father of the gods. From the 19th century BC onward he is equated with Ansar. Among his functions or the judicial office otherwise reserved for the son God and the conduct of war. In Assyrian art he is shown as a God standing on the wing disc of the sun and holding or bending a bow
    https://wn.com/Assur_The_Father_Of_The_Gods
    ASSYRIAN GOD ASHUR/ASSUR
    2:02

    ASSYRIAN GOD ASHUR/ASSUR

    • Order:
    • Duration: 2:02
    • Uploaded Date: 09 Jun 2016
    • views: 6543
    https://wn.com/Assyrian_God_Ashur_Assur
    Combo Off with Mono Black Zombies | Zul Ashur, Lich Lord EDH Deck Tech | Magic The Gathering
    8:02

    Combo Off with Mono Black Zombies | Zul Ashur, Lich Lord EDH Deck Tech | Magic The Gathering

    • Order:
    • Duration: 8:02
    • Uploaded Date: 18 Nov 2024
    • views: 420
    Today we showcase the newly released Zul Ashur, Lich Lord in an EDH build that will be all about combo-ing off with zombies. We will take advantage of our commander's ability to infinitely loop low cmc zombies! If you enjoyed the video, subscribe to Common Command! Deck List: https://tcgplayer.pxf.io/mOg337 Want to help support future projects? Consider using our TCG Player Affiliate Link when purchasing from the site: https://tcgplayer.pxf.io/q4NmEj Want to go beyond with your support? Check out our patreon: https://www.patreon.com/commoncommand Don't Click Here: https://tinyurl.com/2p8m8pse Follow Common Command on all its socials! Twitter: https://twitter.com/CommonEDH Facebook: https://www.facebook.com/commoncommandedh Instagram: https://www.instagram.com/commoncommand/ #MTG #EDH #commander #magicthegathering
    https://wn.com/Combo_Off_With_Mono_Black_Zombies_|_Zul_Ashur,_Lich_Lord_Edh_Deck_Tech_|_Magic_The_Gathering
    Asshur Assur and the Assyrian Empire | Abantu Research and Study Bible
    6:18

    Asshur Assur and the Assyrian Empire | Abantu Research and Study Bible

    • Order:
    • Duration: 6:18
    • Uploaded Date: 18 May 2023
    • views: 667
    #Assyria #namesinthebible #Asshur #Abrashem Modified Names in the Bible – Inherited Unprofitable Lies https://unprofitablelies.biblestudyministry.com/the-death-of-sarah-in-the-bible-genesis-23/ Most of the biblical names in the Bible have this thing at the end of them...this thing that ends with an "H" or some names just have an H added to them. This video was created with love and compassion Let me know if you have any questions in the comments section. Music: Moon: Aurora Night
    https://wn.com/Asshur_Assur_And_The_Assyrian_Empire_|_Abantu_Research_And_Study_Bible
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    The Mysterious Rise of Ashur | The Vessel of the Anunnaki gods

    The Rise of the god Ashur in the Assyrian Pantheon as leader and Shining Host of the Anunnaki. In the video, you will learn the Anunnaki's true nature and the Winged Sun's alternative and possibly original purpose. @AncientMysteryChannel Discover the fascinating history of Ashur, the powerful deity worshipped in the ancient Mesopotamian city of Assur, founded over 4,600 years ago. [2600 BC]. Delve into the rich culture and mythology of the region and explore the many Old Assyrian texts in which the name Ashur appears. Uncover the mysteries of this legendary city god and gain a deeper understanding of the beliefs and practices of the people who worshipped him. anunnnaki #anunnakigods #ancientmystery
    13:47
    The Mysterious Rise of Ashur | The Vessel of the Anunnaki gods
    The Rise of the god Ashur in the Assyrian Pantheon as leader and Shining Host of the Anunn...
    published: 12 Jan 2024
    Play in Full Screen
    21:48
    Exploring the Assyrian Empire
    In this episode I’ll take you to all Assyrian capitals. Ashur, Kalhu, Dur-Sharrukin, and N...
    published: 26 Apr 2023
    Play in Full Screen
    2:32
    Ashiqi 3 / assur
    A Project By #assur
    published: 21 Sep 2024
    Play in Full Screen
    2:15
    TABADTOD | ASSUR x NOOR HUNDAL | OFFICIAL MUSIC VIDEO | EP:- PANJAB TAKEOVER | Desi Hip Hop 2k24 |
    TABADTOD Spotify - https://open.spotify.com/track/5GOG5hSdEXcGATkWdBolo4?si=d9ce3b5cfc8f...
    published: 20 May 2024
    Play in Full Screen
    2:15
    Plan f.t Assur (official music video )(2024 )
    written by : assur mixed & Mastered by : szemek Shot & Edited by : Karman bhullar Lyr...
    published: 31 Jan 2024
    Play in Full Screen
    4:08
    Davido - Assurance (Official Video)
    Davido - Assurance (Official Video) Listen to/download 'Assurance' here: http://smarturl.i...
    published: 01 May 2018
    Play in Full Screen
    1:55
    Assur the Father of the Gods
    Assur – Father of the Gods Culture: Assyrian Associated: Judicial office, conduct of war ...
    published: 28 Dec 2020
    Play in Full Screen
    2:02
    ASSYRIAN GOD ASHUR/ASSUR
    published: 09 Jun 2016
    Play in Full Screen
    8:02
    Combo Off with Mono Black Zombies | Zul Ashur, Lich Lord EDH Deck Tech | Magic The Gathering
    Today we showcase the newly released Zul Ashur, Lich Lord in an EDH build that will be all...
    published: 18 Nov 2024
    Play in Full Screen
    6:18
    Asshur Assur and the Assyrian Empire | Abantu Research and Study Bible
    #Assyria #namesinthebible #Asshur #Abrashem Modified Names in the Bible – Inherited Unpr...
    published: 18 May 2023
    Play in Full Screen

    Ashur

    Ashur (אַשּׁוּר; often also transliterated as Asshur to reflect the pointing of Hebrew letter 'ש' (Shin) in the Masoretic text, which doubles the 'ש'), was the second son of Shem, the son of Noah. Ashur's brothers were Elam, Arphaxad, Lud, and Aram.

    The Hebrew text of Genesis 10:11 is somewhat ambiguous as to whether it was Asshur himself (as the 1611 Authorized Version says), or Nimrod (as in some other English translations) who, according to Biblical tradition, built the Assyrian cities of Nineveh, Resen, Rehoboth-Ir and Calah, since the name Asshur can refer to both the person and the country (Genesis 10:8–12 AV, Genesis 10:8–12 ESV).Sir Walter Raleigh devoted several pages in his History of the World (c. 1616) to reciting past scholarship regarding the question of whether it had been Nimrod or Ashur who built the cities in Assyria.

    The 1st century Judaeo-Roman historian Flavius Josephus further gives the following statement: "Ashur lived at the city of Nineveh; and named his subjects Assyrians, who became the most fortunate nation, beyond others" (Antiquities, i, vi, 4).

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

    Edit

    \u2018Spartacus: House of Ashur\u2019: Nick Tarabay Returns in Arena in Trailer (VIDEO)

    Walker & Catoosa County News 16 Jan 2025
    Starz is expanding its Spartacus franchise and bringing Nick Tarabay back as Ashur in a new spinoff. The 10-episode series, House of Ashur, was first announced in November 2023 as “a history-bending, ...
    Edit

    ‘Spartacus’ Lives Again in Teaser for Starz Follow-Up ‘House of Ashur’

    The Hollywood Reporter 15 Jan 2025
    Nick Tarabay will reprise his role from the original series in the new show, set to premiere in the fall. .
    Edit

    ‘Spartacus: House Of Ashur’ First Look Trailer Released By Starz

    Forbes 15 Jan 2025
    Starz has released the first look at its gladiator drama "Spartacus. House of Ashur." ... .
    Edit

    A New Era of Gladiators Enters the Arena in First ‘Spartacus: House of Ashur’ Teaser

    Collider 15 Jan 2025
    House of Ashur, the series that will see Nick Tarabay reprise his role as Ashur from the original Spartacus series that ran from 2010-2013, and ask, “What ...
    Edit

    Spartacus: House of Ashur Teaser Trailer Previews Latest Chapter in Gladiator Drama

    Coming Soon 15 Jan 2025
    House of Ashur teaser trailer is here, giving us our first look at the return to the arena in Starz’s next chapter in the long-running gladiatorial drama ... House of Ashur teaser trailer?.
    Edit

    Lucid Bots CEO Andrew Ashur Shares Vision For AI-Powered Robotics And Smart Manufacturing At CES 2025

    MENA FN 09 Jan 2025
    (MENAFN - EIN Presswire) CES Panel Members talking about Humans, Robots, Smart Manufacturing & Supply Chain Andrew Ashur, CEO of Lucid Bots at CES 2025 Sherpa Cleaning Drone Cleaning Brick ... .
    Edit

    Lucy Lawless to Reprise Role of Lucretia in Spartacus: House of Ashur

    Coming Soon 24 Jul 2024
    House of Ashur ... House of Ashur follows a different timeline, one where Lucretia survived ... House of Ashur?. Per the series synopsis, “House of Ashur poses the question. What if Ashur hadn’t died on Mount Vesuvius at the end of Spartacus.
    Edit

    Upcoming ‘House of Ashur’ Series Brings Back ‘Spartacus’ Universe After Decade-Long Hiatus

    War History Online 24 Jul 2024
    House of Ashur, widens the scope of the Spartacus world and follows Ashur (Nick Tarabay) in an alternate universe where he didn’t die on Mount Vesuvius and, instead, went on to be gifted a gladiator school, also known as a ludus.
    Edit

    Lucy Lawless Set To Return for 'Spartacus' Sequel Series

    Collider 23 Jul 2024
    House of Ashur will be even more of a must-watch due to one of its cast members ... ....
    Edit

    Anjuman Tajran delegation hails distt admin for best arrangements on 'Youm-e-Ashur'

    Urdu Point 21 Jul 2024
    The event also saw the installation of industrial fans at the Dargah, a sanitation system, carpets, and fan arrangements along the route.
    Edit

    Youm-e-Ashur observed peacefully in Islamabad amid tight security

    The News International 16 Jul 2024
    Muslim mourners gather to touch a white horse symbolising the one used by seventh-century Muslim saint Imam Hussein in the battle, during a Muharram procession on the ninth day of Ashura in Islamabad on July 16, 2024. — Online ... .
    Edit

    Youm-e-Ashur arrangements: Lesco ordered to ensure uninterrupted power supply

    The News International 15 Jul 2024
    A representational image of pylons and high-transmission power lines. — AFP/File ... Engineer Shahid Haider issued these directions while chairing a meeting on Monday ... Apart from this, additional staff have been alerted to deal with any emergency ... .

    Most Viewed

    ×