- published: 20 Nov 2023
- views: 847094
'+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; })); }); -->
The Hittites (/ˈhɪtaɪts/) were an Ancient Anatolian people who established an empire centered on Hattusa in north-central Anatolia around 1600 BC. This empire reached its height during the mid-14th century BC under Suppiluliuma I, when it encompassed an area that included most of Asia Minor as well as parts of the northern Levant and Upper Mesopotamia. After c. 1180 BC, the empire came to an end during the Bronze Age collapse, splintering into several independent "Neo-Hittite" city-states, some of which survived until the 8th century BC.
The Hittite language was a distinct member of the Anatolian branch of the Indo-European language family. They referred to their native land as Hatti. The conventional name "Hittites" is due to their initial identification with the Biblical Hittites in 19th century archaeology. The Hittites became an important component of the Turkish nationalist history beginning in the 1920s with authors such as Ahmet Ağaoğlu, and the creation of institutions such as the state-owned Etibank (Hittite bank).
The Complete History - (Arabic: الكامل في التاريخ), al-Kamil fi'l Tarikh, is a classic Islamic history book written by Ali ibn al-Athir. Composed in ca. 1231AD/628AH, it is one of the most important Islamic historical works. Ibn al-Athir was a contemporary and member of the retinue of Salah al-Din, the Kurdish Muslim general who captured Jerusalem from the Crusaders and eventually drove Europeans out of the Holy Land entirely.
The Complete History is organized into volumes, years, and subsections.
The Complete History has several volumes. Each volume is divided in chronological order into years. For example "then the year one and ninety and four hundred began" i.e. 491 AH. Each year has several sections committed to major events, which are not necessarily in chronological order. These subsections may include the deaths, births, and dynastic succession of major states like the Seljuk Turks. Subsections also include major political events, the appearance of groups such as the Franks or the Tatars (Mongols), and major battles like the Siege of Jerusalem (1099).
The Complete History is a compilation album released by 2 Unlimited on February 9, 2004 through ZYX Music label The record was released in two formats: as a single CD edition, and as a CD/DVD packaged in a DVD case. The package was released in Germany, and then in Brazil in 2005.
A sweeping epic two-hour docu-drama on the Hittites, a major empire and civilization that ruled between 1650 and 1200 BC and forever changed the landscape of the ancient Near East and modern Western civilization. Subscribe to Tolga Örnek: https://bit.ly/TolgaOrnekSubscribe Follow Tolga Örnek on Instagram: https://bit.ly/TolgaOrnekInstagram Shot in 35 locations in Turkey, Syria and Egypt, with photography in historical sites and museums of Turkey, Syria, and Egypt plus on-location interviews with world renowned scholars, The Hittites traces the history of these people, while presenting a political and cultural picture of the Near East and Anatolia. Through the use of digital technology and dramatic reenactments, key moments in Hittite history come alive and the audience journeys back in ...
The Hittites were a people whose kings at one time ruled unchallenged in Anatolia and large swaths of the ancient Near East. They were so powerful that they destroyed sacked the great ancient states of Yamhad and Babylon and destroyed the once-mighty Kingdom of the Mitanni. However, they're fortunes rose and fell like the tides with their successes often being fleeting due to internal infighting and spreading their forces too thin. If you've ever wanted to get a sense of who the Hittites were as well as learn about their fascinating history, this program is for you. Support History with Cy on Patreon: https://www.patreon.com/historywithcy Follow History with Cy: Instagram ► https://www.instagram.com/historywithcy/ Facebook ► https://www.facebook.com/historywithcy/ Twitter ► htt...
Who were the Hittites? (The Hittite Empire explained in 10 minutes)Animated history Support new videos from Epimetheus on Patreon! :D https://www.patreon.com/Epimetheus1776
History docuemntary on the Rise of the Hittite Empire in the Bronze Age! You can take command of these forces in Total War Pharaoh: https://play.totalwar.com/Invicta This documentary covers the story of the rise and fall of the Hittite Empire of the Bronze Age. We begin with their origins in the highlands of Anatolia where feuding powers eventually consolidated into the Old Kingdom of the Hittites. This new power would flex its might with various wars of expansion against its neighbors to the west, east, and south. The Middle Kingdom period would see them regress as they fell to invasion and infighting. Yet, in the New Kingdom, the Hittite Empire would rise to its greatest heights. Eventually, however, they would fall due to invasions from the Assyrian Empire and the Sea People during th...
Purchase Total War Saga: Troy now: https://store.troy.totalwar.com/?utm_source=Mythos&utm_medium=Influencer&utm_campaign=Launch&utm_content=Kings&Generals Kings and Generals' historical animated documentary series on the history of ancient civilizations continues with a 3d tour of the Hittite capital Hattusa. In this video we will showcase the architecture and structure of the city, focusing on the religious practices, defenses, culture, and daily life of the Bronze age capital. Videos on Bronze Age: Rise of Sumer: Cradle of Civilization: https://youtu.be/MHpmLrWBjnM Rise and Fall of the Akkadian Empire: https://youtu.be/evhDGp1KvPM Amorite Kingdoms and the Sumerian Renaissance: https://youtu.be/bX9SVkixxtk Rise of Babylon and Hammurabi: https://youtu.be/gJF_lYSREgc Rise of the Neo-Assy...
The Hittites were an ancient empire mentioned frequently in the Bible, more than 50 times. But they were not known from secular records until the late 19th century. So, who were the Hittites? And where did they come from? 📺 In this Episode: The Hittites were renowned for their skill in building chariots and also for being the pioneers of using iron instead of bronze in their battles and warfare with the Israelites. What is really surprising is that one of the trusted and elite soldiers of King David of Israel is a man called Uriah the Hittite. Now Uriah’s story is one of the most famous references to a Hittite in the Bible, and it is found in 2 Samuel 11. It is recorded that while Uriah was away fighting in the king’s army, King David saw Uriah’s wife, Bathsheba, and desired her. So, af...
Great Civilizations: The Hittite empire #SeeUinHistory #History #Civilization Wiki: The Hittites were an Anatolian people who played an important role in establishing an empire centered on Hattusa in north-central Anatolia around 1600 BC. This empire reached its height during the mid-14th century BC under Suppiluliuma I, when it encompassed an area that included most of Anatolia as well as parts of the northern Levant and Upper Mesopotamia.
Get 10% off 6” and 8.5” MOVA Globes with code WOA10 at https://bit.ly/woamova. In the third episode of Season 3 of the ATG, David and Tess continue their trek through Turkey by exploring the ancient ruins of the Hittite cities of Alaca Höyük and Hattusha. They show you the astounding remains left by this ancient empire, including monuments, artifacts, and hieroglyphic inscriptions. Thank you for watching this episode of the #antiquitiestravelguide. We hope you enjoy it as much as we enjoyed making it. Follow Tess Schumacher on social media: ►INSTAGRAM: https://www.instagram.com/tessbschumacher ►JOIN Professor Miano's expedition to Egypt here: https://adeptexpeditions.com/tours/egyptian-empire-egypt-tour/ ►LEAVE A COMMENT If your comment does not appear, try again with different word...
SOURCES: https://www.worldhistory.org/ https://www.britannica.com/ __________________________________________________________________________ SUBSCRIBE NOW : https://bit.ly/3aYZCOh PATREON : https://bit.ly/3b0VixZ MERCH : https://bit.ly/2X4d8rX __________________________________________________________________________ MUSIC : by Alexander Nakarada Music: by Alexander Nakarada (www.serpentsoundstudios.com) Licensed under Creative Commons BY Attribution 4.0 License #AncientHittites #Hittites #AncientHistoryGuy
The Hittites were an Indo-European culture that occupied the region of Ancient Anatolia, also known as Asia Minor and today is the region of Turkey. The Hittites expanded their territories from their capital at Hattusa, and ended up consolidating the Hittite Empire which both rivalled and threatened the nation of Egypt. The Hittites were in control of the Anatolian region in two periods which have been divided by modern scholars as the Old Kingdom between 1700 and 1500 BCE, and the New Kingdom which is also known as the Hittite Empire between 1400 and 1200 BCE. The one-hundred-year gap between the two periods is due to our lack of evidence or sources from the period, which some consider a dark age, and some call the Middle Kingdom, but there was no discontinuity between the Old and the ...
The Trojan War is one of the mainstays of classical mythology, and formed a major part of the educational curricula for Ancient Greece and Rome. Whether or not it actually happened has been debated by archaeologists and historians for over two centuries, along with whether or not the Iliad, and Odyssey, should be considered historically accurate at all. There are textual sources beyond the Greek epics, however. Hittite documents make frequent mention of the city of Wilusa, identified with the Greek Ilios, or Troy, and which is almost certainly the archaeological site of Hisarlik. This has led some to wonder if perhaps there was a Hittite version of the Trojan War, or if the Hittites played a part in the Trojan War. SOURCES: The Trojan War: A Very Short Introduction, Cline The Trojans an...
From the first to work with bronze in the Anatolian plains to nomadic horsemen fighting with Chinese kingdoms, to the conquerors of Iran, to the heirs of Rome, to the mightiest power in the hemisphere, through a century of turmoil, to a revolution with radical vision and the republic it birthed. This is the first part of one of the greatest stories in our history books. The story of Turkey. ►You can support my channel on Patreon here: https://www.patreon.com/Kraut_and_Tea ►And you can also support me on PayPal here: https://www.paypal.me/KrautandTea ►And you can follow my twitter here: https://twitter.com/notreallykraut ►And you can also follow me on Instagram here: https://www.instagram.com/el_kraut/ ►You can discuss this video on my subreddit: https://www.reddit.com/r/kraut/ ...
While the Israelites were settling into their territories of Canaan during the era of the judges, international conflicts were playing out around them, involving especially the great powers of Egypt to the south and the Hittites to the north. In spite of these surrounding threats, God protected his people and established them securely in the possessions that had been promised to Abraham. For more free resources, please visit www.brucegore.com.
The Complete History of the BIBLE As You've Never Seen It 🎬 in 4K. Chapters 00:00 Intro 00:24 Adam & Eve 04:02 Cain & Abel 07:05 Noah's Ark 10:38 The Tower of Babel 13:18 The Promise to Abraham 16:02 Joseph of Egypt 17:21 Moses & the Exodus 23:46 Joshua & the Promised Land 28:03 King David 29:55 King Solomon 30:51 Division of the Kingdom & Prophet Elijah 33:54 Captivity 37:19 Return from Exile 41:12 Intertestamental Period 41:51 Jesus of Nazareth 50:29 The Last Supper 53:46 Crucifixion & Resurrection 57:00 The Disciples 59:39 The Apostle Paul & The Vision of John 1:04:04 Martyrs and the Expansion of Christianity 1:07:07 Creation of the Bible
For centuries, the Roman Empire was one of the defining powers of the ancient world. But how did this all begin and what caused it to fall apart? Join Mary Beard as she delves into the history of this incredible Empire that shaped the world we know today. Odyssey is your journey into the world of Ancient History; from the dawn of Mesopotamia to the fall of Rome. We'll be bringing you only the best documentaries that journey into the mysteries and ruins of worlds long lost. Subscribe so you don't miss out! It's like Netflix for History: the world's finest documentary streaming service -- use the code 'Odyssey' to get 50% off your History Hit subscription! 👉 https://bit.ly/3cX9hGo Follow us on Facebook: https://www.facebook.com/OdysseyAncientHistory Odyssey is part of the History Hit N...
⭐ Support me by signing up to Nebula at https://go.nebula.tv/suibhne for only $2.50 a month! ⭐ Join this channel to get access to perks: https://www.youtube.com/channel/UCQD-0MjUbDBwm2UTVYr0Dag/join Knowing Better video on Japan: https://youtu.be/lnAC-Y9p_sY?si=aQ1PSQodLQ0XVvAg SUPPORT THE CHANNEL ▶️ Become a Member: https://www.youtube.com/channel/UCQD-0MjUbDBwm2UTVYr0Dag/join 🅿️ Pareon: https://www.patreon.com/Suibhne ⭐ Watch Ad Free on Nebula: go.nebula.tv/suibhne 🛒 Buy a Pin: https://store.nebula.tv/collections/suibhne 💬 Say Thank You: Button below the video LINKS 🧵 Follow on Threads: https://www.threads.net/@jamessuibhne 🗯️ Discuss on Reddit: https://www.reddit.com/r/Suibhne 🐦 Follow on Twitter: https://twitter.com/SuibhneOfficial MUSIC 🎹 Caleb Hennesey: https://www.youtube.com...
http://billwurtz.com patreon: http://patreon.com/billwurtz spotify: https://play.spotify.com/artist/78cT0dM5Ivm722EP2sgfDh itunes: http://itunes.apple.com/us/artist/bill-wurtz/id1019208137 twitter: http://twitter.com/billwurtz instagram: http://instagram.com/notbillwurtz donate: http://paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=VXTWA8CDYP4RJ soundcloud: http://soundcloud.com/billwurtz
What if YouTube video... but documentary?????? Join Blue on a feature-length journey through all of Roman history: from its origins, through the Republic, up and down the Empire, and out into the medieval world of Catholicism in the Latin West and the Byzantine Empire in the Greek East. It's a BIG tale, so Let's Do Some History! SOURCES & Further Reading: BOOKS "SPQR" by Mary Beard "Rome: A History in Seven Sackings" by Matthew Kneale "The Roman Way" by Edith Hamilton "The Aeneid" by Virgil "Histories" by Polybius "Ab Urbe Condita" by Livy "De Bello Gallico" by Julius Caesar "Odes" by Horace "Parallel Lives" by Plutarch "Rubicon" by Tom Holland "The Storm Before the Storm" by Mike Duncan "The Enemies of Rome" by Stephen P. Kershaw "The Age of Augustus" by Werner Eck "Augustus and th...
To summarise the entirety of WWE's long and colorful history is impossible within a blurb or anecdote. Where does one begin to tell the full story of professional wrestling's most renowned and famous promotion, in all of its vivid splendor and gritty substance? That's why we here at Cultaholic Wrestling have undertaken the monumental task of presenting more than 60 years of WWE history in this very special presentation, in which we will attempt to do justice the life story, so to speak, of the McMahon empire, the family business that has entertained millions for well over half a century. This is The Complete History Of WWE. JOIN US and hit SUBSCRIBE! Support Cultaholic on Patreon: https://www.patreon.com/cultaholic Unlock Cultaholic badges & emojis on YouTube: https://www.youtube.com/cha...
The ENTIRE History of Mankind - 4k Documentary Ancient History (3600 B.C.-500 A.D.) The Middle Ages (500-1500 A.D.) Modern Age (1500-present) -------------------------------------- The history of our story began long ago, At one point in time, around three billion years ago, we were floating around as little, tiny atoms in the little Petri dish of the world. Around 6 million years ago, and we see the emergence of the first hominoids - the family of primates that includes humans. 1.9 Million years ago, Homo Erectus was the first species to leave Africa and colonize other parts of the world. They had larger brains than their primate ancestors. Around 400,000 years ago, the first evidence of the Neanderthals. Their bodies were adapted to the cold environments of Europe and Western As...
Intro 0:00 Understanding Geologic Time 2:00 The Hadean Eon 3:52 The Archean Eon 8:40 The Proterozoic Eon 21:24 The Cambrian Period 34:46 The Ordovician Period 49:27 The Silurian Period 1:03:12 The Devonian Period 1:16:47 The Carboniferous Period 1:33:30 The Early Permian Period 1:51:39 The Late Permian Period 2:09:51 The Great Dying 2:30:15 #historyoftheearth #eon #epoch #geology #PaleoAnalysis I was suffering from a bit of writers block some time ago so I decided to go to the comments section of some of my previous videos for inspiration on what to talk about. And of course I knew I could count on all of you! I started noticing a pattern in what many of you were asking for. Many people have requested that I broadly cover different time periods from Earth’s history… And that got me thinki...
The Complete History of the BIBLE As You've Never Seen It Tags: blessings from the Word, studying the Bible, reflections on scripture, teachings for daily living, exploring faith, encouragement through scripture, God's presence, living by faith, eternal truths, covenant relationships, spiritual discipline, character building, lessons from biblical characters, hope and healing, God’s plan for humanity, divine love, understanding God’s nature, Christian encouragement, embracing faith, scripture memorization, living out the Word, exploring the books of the Bible, faith-based content, inspirational Bible readings, grace-filled life, walking with God, studying biblical history, understanding the Gospel, God's calling, spiritual wisdom, building faith, faith in action, biblical revelations, Chr...
In 1939 Europe entered a war in which she would never recover. The cause of this war was a little city named Danzig at the mouth of the Vistula river. The city was almost totally German in population. They wanted to join Germany. The Poles considered the city vital to their interests. Britain felt that Germany's demands were completely justified and in fact even benevolent. Yet Britain still chose to go to war over this little city of 400,000 people. Why did the Brits take this step? Why did the Poles refuse to negotiate? Why was Germany so adamant to get the crisis solved immediately? What were their terms for Poland's return? Why did Molotov and Ribbentrop sign their now-infamous pact? Find out all the answer to all these questions and more in this video. Patreon : https://www.patr...
The Hittites (/ˈhɪtaɪts/) were an Ancient Anatolian people who established an empire centered on Hattusa in north-central Anatolia around 1600 BC. This empire reached its height during the mid-14th century BC under Suppiluliuma I, when it encompassed an area that included most of Asia Minor as well as parts of the northern Levant and Upper Mesopotamia. After c. 1180 BC, the empire came to an end during the Bronze Age collapse, splintering into several independent "Neo-Hittite" city-states, some of which survived until the 8th century BC.
The Hittite language was a distinct member of the Anatolian branch of the Indo-European language family. They referred to their native land as Hatti. The conventional name "Hittites" is due to their initial identification with the Biblical Hittites in 19th century archaeology. The Hittites became an important component of the Turkish nationalist history beginning in the 1920s with authors such as Ahmet Ağaoğlu, and the creation of institutions such as the state-owned Etibank (Hittite bank).
I've tried and tried to run and hide
To find a life that's new
But wherever I go I always know
I can't escape from you
A jug of wine to numb my mind
But what good does it do?
The jug runs dry and still I cry
I can't escape from you
These wasted years are souvenirs
Of love I thought was true
Your memory is chained to me
I can't escape from you
There is no end, I can't pretend
That dreams will soon come true
A slave too long to a heart of stone
I can't escape from you