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

Super Chief

The Super Chief was one of the named passenger trains and the flagship of the Atchison, Topeka and Santa Fe Railway. It claimed to be "The Train of the Stars" because of the celebrities it carried between Chicago, Illinois, and Los Angeles, California.

The Super Chief (Nos. 17 & 18) was the first Diesel-powered, all-Pullman sleeping car train in America, and it eclipsed the Chief as Santa Fe's standard bearer. The extra-fare ($10) Super Chief left Dearborn Station in Chicago for its first trip on May 12, 1936. Before starting scheduled service in May 1937, the lightweight version of the Super Chief ran 2,227 miles (3,584 km) from Los Angeles over recently upgraded tracks in 36 hours and 49 minutes, averaging 60 mph (97 km/h) overall and reaching 100 mph (160 km/h).

With one set of equipment, the train initially operated once a week from both Chicago and Los Angeles. After more cars had been delivered the Super Chief ran twice weekly beginning in 1938 and daily after 1948. Adding to the train's mystique were its gourmet meals and Hollywood clientele.

Podcasts:

  • The Navajos: A Brief History of the Navajo Nation - See U in History

    The Navajos: A Brief History of the Navajo Nation - See U in History #SeeUinHistory #History

    published: 03 Aug 2022
  • How the Navajo Nation Works (A Country Within a Country?)

    Use code WENDOVER14 for up to 14 FREE MEALS across your first 5 HelloFresh boxes plus free shipping at https://bit.ly/3cpIz8a Listen to Extremities at http://ExtremitiesPodcast.com Buy a Wendover Productions t-shirt: https://standard.tv/collections/wendover-productions/products/wendover-productions-shirt Subscribe to Half as Interesting (The other channel from Wendover Productions): https://www.youtube.com/halfasinteresting Youtube: http://www.YouTube.com/WendoverProductions Instagram: http://Instagram.com/sam.from.wendover Twitter: http://www.Twitter.com/WendoverPro Sponsorship Enquiries: wendover@standard.tv Other emails: sam@wendover.productions Reddit: http://Reddit.com/r/WendoverProductions Writing by Sam Denby Research by Sam Denby and Tristan Purdy Editing by Alexander Williar...

    published: 30 Jun 2021
  • Masego - Navajo | A COLORS SHOW

    New COLORS Merch out now! https://shop.colorsxstudios.com Virginia "Trap House Jazz" whizkid Masego combines sharp trap and smooth jazz in “Navajo”. Beat by: https://soundcloud.com/jllprod/i-love-you Follow Masego: Twitter: http://bit.ly/2pmFM4C Instagram: http://bit.ly/2oXfav5 — Follow COLORS: ▶ On Socials: https://colors.lnk.to/socials ▶ On Spotify: https://colors.lnk.to/Spotify ▶ On Apple Music: https://colors.lnk.to/applemusic ▶ On the Web: https://colorsxstudios.com ▶ Newsletter: https://colorsxstudios.com/newsletter — COLORSXSTUDIOS is a unique aesthetic music platform showcasing exceptional talent from around the globe. COLORS focuses on the most distinctive new artists and original sounds in an increasingly fragmented and saturated scene. All COLORS shows seek to provide clear,...

    published: 10 Apr 2017
  • The Navajo Nation | The Story of America's Largest Tribe

    Explore the forgotten lands of the Navajo Nation, the largest reservation on American soil. The beautiful Navajo language also happens to be the most spoken native language in the United States, meaning it has a lot of history to share. In this video, many mysteries and legends will be uncovered to discover why the Navajo are so resilient, and why it is a tribe that will not be shaken. Watch "Searching for the Navajo language in Monument Valley" https://youtu.be/HBaFwAU3V88 Locations in the video: Window Rock, Arizona Montezuma’s Castle, Arizona Gallup, New Mexico Ship Rock, New Mexico Monument Valley Mexican Hat, Utah Tuba City, Arizona Wupatki, Arizona Montezuma Castle, Arizona Follow us on Instagram The Planet Project http://tiny.cc/9vk8hz TJ Huizar http://tiny.cc/bck8hz

    published: 09 Dec 2018
  • The Navajo Water Lady

    In this corner of the Navajo Nation, just 100 miles west of Albuquerque, N.M., an estimated 40 percent of residents don't have access to running water. Their savior is Darlene Arviso, born and raised on the Reservation, who drives her precious cargo - a tanker truck filled with water - to make monthly deliveries to 250 families. Lee Cowan reports.

    published: 16 Aug 2015
  • Why Didn’t The Navajo Hero Twins Kill Poverty?

    You’ll see in the video, Navajo Historian, Wally Brown refers to the “Hero Twins” as the “Two Boys”. He does this because the two boys are not actually twins. In the stories they have different mothers. But, to help understand we have included “Hero Twins” when he says “Two Boys” so everyone knows who we are talking about. Now, back to the question. Why didn’t the Two Boys kill the Poverty Monster(s)? Or in the Language of our Diné (Navajo Language) “Té'é'į”. As you will find out in the video… the monsters were meant to help our Diné and that is why they were left alive. But today things are different and the purpose these monsters were supposed to serve is not being fulfilled. Other things are in the way. If the “Two Boys” were around today would they dispatch the poverty monster? ...

    published: 30 Mar 2021
  • Who are the Navajo?

    The Navajo Indians, also known as the Diné, are a Native American tribe that originally inhabited parts of what is now the southwestern United States, specifically in the Four Corners region, including parts of present-day Arizona, New Mexico, Colorado, and Utah. The Navajo people have a rich cultural heritage that includes a complex matrilineal kinship system, traditional arts and crafts, and spiritual beliefs centered around the natural world and the concept of hózhó, which means balance and harmony. The Navajo people have a deep connection to the land, and their traditional way of life centers around farming, sheep and goat herding, and the use of natural resources. They also have a rich history of trade, which has connected them to other tribes and cultures in the region. They have be...

    published: 17 Jan 2023
  • The Navajo Creation Story | The Four Worlds | Navajo Folklore | Native American Mythology Stories

    ✨Welcome once again to another episode of the Mythical Arcana Mythology podcast. Today we'll be starting a new arc, on Native American mythology, folklore and history. I'm trying something new, so I might bounce from culture to culture, rather than stick with just one at a time. In this video we're going to talk about the REAL Skinwalkers, from Navajo Folklore and culture. Not the typical videos and images that you see online claiming to be one. We'll talk about the Origins, their characteristics and roles, their connection to Other people and the world, and their influence on Navajo culture, and much more! Grab some popcorn and enjoy. 🍿 This is the story of the Skinwalkers, legendary creatures from Navajo Folklore that should never be talked about. Navajo Mythology Explained. Timestamp...

    published: 31 Aug 2024
  • Celebrate the Richness of the Navajo Heritage! (11/27/24)

    ►WEBSITE: http://www.wildtech.org/ FOLLOW US --------------------------------------------------- ►FACEBOOK: https://www.facebook.com/WildTechAlliance Want to help support the cause? --------------------------------------------------- ►DONATE: https://www.paypal.com/donate/?hosted_button_id=UCHC6Y6TKNKRW

    published: 10 Dec 2024
  • Secret Areas of the Navajo Nation 🇺🇸

    Far from the main roads and civilization is a part of the Navajo Nation that feels out of worldly. Here are the age-old stories from the ancestors about skinwalker caves, UFOs, and untouched petroglyphs. Join me and the Navajo locals as we adventure into some of the most stunning and secretive landscapes in the country. ► Darwin's Channel: https://www.youtube.com/channel/UC23H2XVi-OACXiISwi50MNA ► Dustin's Channel: https://www.youtube.com/channel/UCHY9QRSPnJOtthhsVxSnY8g ► Watch the Director's Cut of this video on Patreon: https://www.patreon.com/petersantenello ► Join our community: https://www.bit.ly/3HC36EH ► Video edited by: Natalia Santenello SUPPORT THIS CHANNEL ✅ ► Patreon: https://www.patreon.com/petersantenello ► Subscribe: https://bit.ly/3yVXktx FOLLOW ME 📸 ► Instagram...

    published: 15 Apr 2023
developed with YouTube
The Navajos: A Brief History of the Navajo Nation - See U in History
5:25

The Navajos: A Brief History of the Navajo Nation - See U in History

  • Order:
  • Duration: 5:25
  • Uploaded Date: 03 Aug 2022
  • views: 111131
The Navajos: A Brief History of the Navajo Nation - See U in History #SeeUinHistory #History
https://wn.com/The_Navajos_A_Brief_History_Of_The_Navajo_Nation_See_U_In_History
How the Navajo Nation Works (A Country Within a Country?)
17:15

How the Navajo Nation Works (A Country Within a Country?)

  • Order:
  • Duration: 17:15
  • Uploaded Date: 30 Jun 2021
  • views: 1737696
Use code WENDOVER14 for up to 14 FREE MEALS across your first 5 HelloFresh boxes plus free shipping at https://bit.ly/3cpIz8a Listen to Extremities at http://ExtremitiesPodcast.com Buy a Wendover Productions t-shirt: https://standard.tv/collections/wendover-productions/products/wendover-productions-shirt Subscribe to Half as Interesting (The other channel from Wendover Productions): https://www.youtube.com/halfasinteresting Youtube: http://www.YouTube.com/WendoverProductions Instagram: http://Instagram.com/sam.from.wendover Twitter: http://www.Twitter.com/WendoverPro Sponsorship Enquiries: wendover@standard.tv Other emails: sam@wendover.productions Reddit: http://Reddit.com/r/WendoverProductions Writing by Sam Denby Research by Sam Denby and Tristan Purdy Editing by Alexander Williard Animation by Josh Sherrington Sound by Graham Haerther Thumbnail by Simon Buckmaster Select footage courtesy the AP Archive
https://wn.com/How_The_Navajo_Nation_Works_(A_Country_Within_A_Country_)
Masego - Navajo | A COLORS SHOW
3:36

Masego - Navajo | A COLORS SHOW

  • Order:
  • Duration: 3:36
  • Uploaded Date: 10 Apr 2017
  • views: 68758393
New COLORS Merch out now! https://shop.colorsxstudios.com Virginia "Trap House Jazz" whizkid Masego combines sharp trap and smooth jazz in “Navajo”. Beat by: https://soundcloud.com/jllprod/i-love-you Follow Masego: Twitter: http://bit.ly/2pmFM4C Instagram: http://bit.ly/2oXfav5 — Follow COLORS: ▶ On Socials: https://colors.lnk.to/socials ▶ On Spotify: https://colors.lnk.to/Spotify ▶ On Apple Music: https://colors.lnk.to/applemusic ▶ On the Web: https://colorsxstudios.com ▶ Newsletter: https://colorsxstudios.com/newsletter — COLORSXSTUDIOS is a unique aesthetic music platform showcasing exceptional talent from around the globe. COLORS focuses on the most distinctive new artists and original sounds in an increasingly fragmented and saturated scene. All COLORS shows seek to provide clear, minimalistic stage that shines a spotlight on the artists, giving them the opportunity to present their music without distraction. #colors #masego #navajo
https://wn.com/Masego_Navajo_|_A_Colors_Show
The Navajo Nation | The Story of America's Largest Tribe
8:52

The Navajo Nation | The Story of America's Largest Tribe

  • Order:
  • Duration: 8:52
  • Uploaded Date: 09 Dec 2018
  • views: 214848
Explore the forgotten lands of the Navajo Nation, the largest reservation on American soil. The beautiful Navajo language also happens to be the most spoken native language in the United States, meaning it has a lot of history to share. In this video, many mysteries and legends will be uncovered to discover why the Navajo are so resilient, and why it is a tribe that will not be shaken. Watch "Searching for the Navajo language in Monument Valley" https://youtu.be/HBaFwAU3V88 Locations in the video: Window Rock, Arizona Montezuma’s Castle, Arizona Gallup, New Mexico Ship Rock, New Mexico Monument Valley Mexican Hat, Utah Tuba City, Arizona Wupatki, Arizona Montezuma Castle, Arizona Follow us on Instagram The Planet Project http://tiny.cc/9vk8hz TJ Huizar http://tiny.cc/bck8hz
https://wn.com/The_Navajo_Nation_|_The_Story_Of_America's_Largest_Tribe
The Navajo Water Lady
8:25

The Navajo Water Lady

  • Order:
  • Duration: 8:25
  • Uploaded Date: 16 Aug 2015
  • views: 980625
In this corner of the Navajo Nation, just 100 miles west of Albuquerque, N.M., an estimated 40 percent of residents don't have access to running water. Their savior is Darlene Arviso, born and raised on the Reservation, who drives her precious cargo - a tanker truck filled with water - to make monthly deliveries to 250 families. Lee Cowan reports.
https://wn.com/The_Navajo_Water_Lady
Why Didn’t The Navajo Hero Twins Kill Poverty?
4:17

Why Didn’t The Navajo Hero Twins Kill Poverty?

  • Order:
  • Duration: 4:17
  • Uploaded Date: 30 Mar 2021
  • views: 12496
You’ll see in the video, Navajo Historian, Wally Brown refers to the “Hero Twins” as the “Two Boys”. He does this because the two boys are not actually twins. In the stories they have different mothers. But, to help understand we have included “Hero Twins” when he says “Two Boys” so everyone knows who we are talking about. Now, back to the question. Why didn’t the Two Boys kill the Poverty Monster(s)? Or in the Language of our Diné (Navajo Language) “Té'é'į”. As you will find out in the video… the monsters were meant to help our Diné and that is why they were left alive. But today things are different and the purpose these monsters were supposed to serve is not being fulfilled. Other things are in the way. If the “Two Boys” were around today would they dispatch the poverty monster? Producers Get your exclusive video here: https://producers.navajotraditionalteachings.com/producer-access Get your free ebook “7 Days of Navajo Traditional Teachings at https://navajotraditionalteachings.com/pages/free-ebook Our Website https://navajotraditionalteachings.com/ Join Our Email list https://navajotraditionalteachings.com/pages/subscribe Our Shop (Trading Post) https://navajotraditionalteachings.com/pages/shop-all
https://wn.com/Why_Didn’T_The_Navajo_Hero_Twins_Kill_Poverty
Who are the Navajo?
3:09

Who are the Navajo?

  • Order:
  • Duration: 3:09
  • Uploaded Date: 17 Jan 2023
  • views: 36699
The Navajo Indians, also known as the Diné, are a Native American tribe that originally inhabited parts of what is now the southwestern United States, specifically in the Four Corners region, including parts of present-day Arizona, New Mexico, Colorado, and Utah. The Navajo people have a rich cultural heritage that includes a complex matrilineal kinship system, traditional arts and crafts, and spiritual beliefs centered around the natural world and the concept of hózhó, which means balance and harmony. The Navajo people have a deep connection to the land, and their traditional way of life centers around farming, sheep and goat herding, and the use of natural resources. They also have a rich history of trade, which has connected them to other tribes and cultures in the region. They have been known to have a very sophisticated system of irrigation and dry farming, which allowed them to survive in the arid Southwest. They also have a rich tradition of storytelling, music, and art that reflects their connection to the land and their history. In the 19th century, the Navajo people faced intense pressure from the U.S. government and European settlers, who sought to take over their land and resources. In 1864, the U.S. government forced the Navajo people to move to a reservation in northeastern Arizona in a brutal and deadly forced march known as the Long Walk. Many Navajo people died during the forced relocation, which resulted in the loss of their land and the destruction of their communities. The reservation was established on the Navajo's ancestral land, but it was too small to sustain their traditional way of life, and they were forced to adapt to a new way of life. Despite this tragic history, the Navajo people have persevered and continue to maintain their cultural identity. Today, the Navajo Nation is the largest tribe in the United States, with over 300,000 enrolled tribal citizens. The Navajo Nation has its own government and laws, and they work to preserve and promote their culture, language, and traditions. They have their own constitution, and an elected government that is responsible for the administration of justice, education, and welfare of the Navajo people. The Navajo people have also made significant contributions to American society, in fields such as education, medicine, and politics. For example, the Navajo Nation has been a leader in the field of language preservation, and have developed a successful language immersion school program. They also have a strong focus on preservation of their traditional medicinal practices, and many of their traditional healers are still active today. They are also known for their traditional art forms such as Navajo textiles, jewelry, and pottery. These art forms have been passed down through generations and have become an important part of the Navajo economy. In recent years, The Navajo Nation has been working on developing their economy through various means, such as tourism and energy development. The Navajo Nation has also been actively working on preserving their environment and their sacred sites. They have also been working on addressing the issues of poverty, unemployment, and lack of access to basic necessities such as water and electricity. In summary, The Navajo Indians are a Native American tribe that has a rich cultural heritage and deep connection to their ancestral land. They have faced intense pressure and forced relocation by the US government and European settlers, but despite that they have persevered and continue to maintain their cultural identity and traditions. They have a strong government and are working towards preserving their culture, language, and traditions while also working towards improving the lives of their people. They have also made significant contributions to American society, in fields such as education, medicine, and art. #monumentvalley #gallup #1923
https://wn.com/Who_Are_The_Navajo
The Navajo Creation Story | The Four Worlds | Navajo Folklore | Native American Mythology Stories
25:27

The Navajo Creation Story | The Four Worlds | Navajo Folklore | Native American Mythology Stories

  • Order:
  • Duration: 25:27
  • Uploaded Date: 31 Aug 2024
  • views: 11241
✨Welcome once again to another episode of the Mythical Arcana Mythology podcast. Today we'll be starting a new arc, on Native American mythology, folklore and history. I'm trying something new, so I might bounce from culture to culture, rather than stick with just one at a time. In this video we're going to talk about the REAL Skinwalkers, from Navajo Folklore and culture. Not the typical videos and images that you see online claiming to be one. We'll talk about the Origins, their characteristics and roles, their connection to Other people and the world, and their influence on Navajo culture, and much more! Grab some popcorn and enjoy. 🍿 This is the story of the Skinwalkers, legendary creatures from Navajo Folklore that should never be talked about. Navajo Mythology Explained. Timestamps 00:00 Intro 00:10 The Beginning 01:59 First World 07:52 Second World 11:48 Intermission 12:28 Third World 17:42 Fourth World 23:58 Conclusion 24:59 Outro Navajo Mythology Explained: The Profound Creation Story of the Navajo People 🌍 Explore the origins and profound depth of the Navajo creation story with our comprehensive series. Delve into how this sacred narrative explains the universe's origins, the Earth, and its people, not just as a historical account but as a spiritual journey emphasizing balance and interconnectedness. Navajo Mythology Stories: Unveiling the Spiritual Journey 📖 Dive into the detailed episodes of the Navajo creation story, where we explore the roles of Diyin Dine’é (Holy People), their influence on the cosmos, and how they established the principles governing Navajo life. These stories aren't mere myths; they are a foundational element of Navajo culture, reflecting in rituals and daily practices. Mythology Podcast: Voices of the Navajo Elders 🎙️ Listen to our podcast where Navajo elders and experts discuss the creation story's intricacies and its significance in modern Navajo life. These discussions provide a bridge between ancient traditions and contemporary understanding, enriching your knowledge of Native American spiritual practices. Navajo Mythology for Beginners: An Introduction to the Navajo Spiritual Universe 🌟 Perfect for those new to Navajo traditions, this series introduces the sacred Diyin Dine’é, their teachings, and how these narratives form the backbone of Navajo philosophy and daily life. Understand the history and origins of these practices through engaging storytelling and insightful commentary. ASMR Mythology for Relaxation: Soothing Tales of the Navajo 🌙 Experience the calming effect of Navajo mythology through our ASMR series. Relax to the sound of whispered Navajo creation tales and the serene narratives about their gods and heroes. Ideal for relaxation and sleep, these stories help soothe your mind while providing a spiritual journey into Navajo beliefs. Subscribe and Explore the Rich Tapestry of Navajo Mythology ✨ From documentaries to relaxing ASMR narratives, our channel offers a rich array of content designed to enlighten, educate, and soothe. Whether you're a mythology enthusiast or seeking a peaceful escape, discover the profound stories and teachings of the Navajo people. Join us on this fascinating journey through one of the most spiritually rich cultures in Native American history. Subscribe now and ensure you don't miss any episodes of our Navajo mythology series! #navajo #mythologypodcast #navajofolklore #nativeamerican #nativeamericanstories #mythologystories #folklore
https://wn.com/The_Navajo_Creation_Story_|_The_Four_Worlds_|_Navajo_Folklore_|_Native_American_Mythology_Stories
Celebrate the Richness of the Navajo Heritage! (11/27/24)
1:06:10

Celebrate the Richness of the Navajo Heritage! (11/27/24)

  • Order:
  • Duration: 1:06:10
  • Uploaded Date: 10 Dec 2024
  • views: 46
►WEBSITE: http://www.wildtech.org/ FOLLOW US --------------------------------------------------- ►FACEBOOK: https://www.facebook.com/WildTechAlliance Want to help support the cause? --------------------------------------------------- ►DONATE: https://www.paypal.com/donate/?hosted_button_id=UCHC6Y6TKNKRW
https://wn.com/Celebrate_The_Richness_Of_The_Navajo_Heritage_(11_27_24)
Secret Areas of the Navajo Nation 🇺🇸
53:12

Secret Areas of the Navajo Nation 🇺🇸

  • Order:
  • Duration: 53:12
  • Uploaded Date: 15 Apr 2023
  • views: 2053962
Far from the main roads and civilization is a part of the Navajo Nation that feels out of worldly. Here are the age-old stories from the ancestors about skinwalker caves, UFOs, and untouched petroglyphs. Join me and the Navajo locals as we adventure into some of the most stunning and secretive landscapes in the country. ► Darwin's Channel: https://www.youtube.com/channel/UC23H2XVi-OACXiISwi50MNA ► Dustin's Channel: https://www.youtube.com/channel/UCHY9QRSPnJOtthhsVxSnY8g ► Watch the Director's Cut of this video on Patreon: https://www.patreon.com/petersantenello ► Join our community: https://www.bit.ly/3HC36EH ► Video edited by: Natalia Santenello SUPPORT THIS CHANNEL ✅ ► Patreon: https://www.patreon.com/petersantenello ► Subscribe: https://bit.ly/3yVXktx FOLLOW ME 📸 ► Instagram: https://www.instagram.com/petersantenello/ ► YouTube: https://www.youtube.com/channel/UC3Vuq4Q1bKFtAiKYlwRv3oA ► Facebook: https://www.facebook.com/PeterSantenello ► Website: https://petersantenello.com/ ► Twitter: https://twitter.com/petersantenello OTHER VIDEO SERIES 🎞️ ► Native Americans🇺🇸: https://www.youtube.com/watch?v=tYTrPdLv634&list=PLEyPgwIPkHo5ogLHpfvLnJxcDMlOfHEsA ► Alaska 🇺🇸: https://www.youtube.com/playlist?list=PLEyPgwIPkHo6bssK11gim08F-s3_RLwei ► Cowboys&Ranchers 🇺🇸: https://www.youtube.com/playlist?list=PLEyPgwIPkHo7Bk3OmeXPH20pEOPPmTwkf ► Amish 🇺🇸: https://www.youtube.com/playlist?list=PLEyPgwIPkHo7lOk-72-tXJ-NjahfkNF_r ► Hoods 🔥: https://www.youtube.com/playlist?list=PLEyPgwIPkHo6u1D-VKsLsqaPIKmXY6QP0 ► Hasidic Jews 🇺🇸: https://www.youtube.com/playlist?list=PLEyPgwIPkHo77DOhpb1OBl18uLcB-IrUX ► Muslims in USA 🇺🇸: https://www.youtube.com/playlist?list=PLEyPgwIPkHo63ACFb9ze2kYCxdZywE6RO ► USA Border 🇺🇸: https://www.youtube.com/playlist?list=PLEyPgwIPkHo7oGGY1h_9iAcWeehf0lTIL ► USA 🇺🇸: https://www.youtube.com/playlist?list=PLEyPgwIPkHo72hcXzzDUCM_R7wDpY7Qdd ► Iran 🇮🇷: https://www.youtube.com/playlist?list=PLEyPgwIPkHo4MQCLjb2_amBzVA_vMAshj ► Saudi Arabia 🇸🇦: https://www.youtube.com/playlist?list=PLEyPgwIPkHo5N7q3HMQYIoVTgl8JY-I8X ► Pakistan 🇵🇰: https://www.youtube.com/playlist?list=PLEyPgwIPkHo4enGho80iAV6rLn-850xw9 ► Ukraine 🇺🇦: https://www.youtube.com/playlist?list=PLEyPgwIPkHo7gNOJUfVjKSk6sL6ZDzlhW ► Living With A Ukrainian Family Displaced From War 🇺🇦: https://www.youtube.com/playlist?list=PLEyPgwIPkHo4d7AZIZPoYUyBhqh8ORZ-1 ► India 🇮🇳: https://www.youtube.com/playlist?list=PLEyPgwIPkHo415eAm0gIBMLP_OqDEorHa ► Kyrgyzstan 🇰🇬 : https://www.youtube.com/playlist?list=PLEyPgwIPkHo4TIlJuuJ6HjH6yKR2ahhR1 ► Belarus 🇧🇾: https://www.youtube.com/playlist?list=PLEyPgwIPkHo4oknf2hDcjMHbLi1KZLlMS ► Kazakhstan 🇰🇿: https://www.youtube.com/playlist?list=PLEyPgwIPkHo6ZxmsHPRjC1B_nlNd_jhvF MY GEAR 🎥 ► GoPro 8: https://amzn.to/32d87iD ► IPhone 12 Pro (for B-Roll): https://www.apple.com/iphone-12-pro/ ► Laptop: https://amzn.to/37HRuN8 ► SD Cards: https://amzn.to/2V8Z5kY ► Tripod: https://amzn.to/2V93LHM ► Drone (I use sparingly): https://amzn.to/2HHWfeZ ► Hard drives - Fast/expensive: https://amzn.to/2PaRvCH - Slower/less expensive: https://amzn.to/328XFIS ► Backpack - Men’s: https://amzn.to/38HoMNE - Women’s: https://amzn.to/2SVX6xQ NOTE 📝 ► This description contains affiliate links for products and services that I believe you my audience might receive value from. Each purchase through an affiliate link gives me a small percentage of the sale. Thank You All!!! All rights reserved © 2023 Peter Santenello
https://wn.com/Secret_Areas_Of_The_Navajo_Nation_🇺🇸
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • How the Navajo Nation Works (A Country Within a Country?)
    17:15
    How the Navajo Nation Works (A Country Within a Country?)remove from playlist
  • Masego - Navajo | A COLORS SHOW
    3:36
    Masego - Navajo | A COLORS SHOWremove from playlist
  • The Navajo Nation | The Story of America's Largest Tribe
    8:52
    The Navajo Nation | The Story of America's Largest Triberemove from playlist
  • The Navajo Water Lady
    8:25
    The Navajo Water Ladyremove from playlist
  • Why Didn’t The Navajo Hero Twins Kill Poverty?
    4:17
    Why Didn’t The Navajo Hero Twins Kill Poverty?remove from playlist
  • Who are the Navajo?
    3:09
    Who are the Navajo?remove from playlist
  • The Navajo Creation Story | The Four Worlds | Navajo Folklore | Native American Mythology Stories
    25:27
    The Navajo Creation Story | The Four Worlds | Navajo Folklore | Native American Mythology Storiesremove from playlist
  • Celebrate the Richness of the Navajo Heritage! (11/27/24)
    1:06:10
    Celebrate the Richness of the Navajo Heritage! (11/27/24)remove from playlist
  • Secret Areas of the Navajo Nation 🇺🇸
    53:12
    Secret Areas of the Navajo Nation 🇺🇸remove from playlist
developed with YouTube
PLAYLIST TIME:

The Navajos: A Brief History of the Navajo Nation - See U in History

The Navajos: A Brief History of the Navajo Nation - See U in History #SeeUinHistory #History
5:25
The Navajos: A Brief History of the Navajo Nation - See U in History
The Navajos: A Brief History of the Navajo Nation - See U in History #SeeUinHistory #Hi...
published: 03 Aug 2022
Play in Full Screen
17:15
How the Navajo Nation Works (A Country Within a Country?)
Use code WENDOVER14 for up to 14 FREE MEALS across your first 5 HelloFresh boxes plus free...
published: 30 Jun 2021
Play in Full Screen
3:36
Masego - Navajo | A COLORS SHOW
New COLORS Merch out now! https://shop.colorsxstudios.com Virginia "Trap House Jazz" whizk...
published: 10 Apr 2017
Play in Full Screen
8:52
The Navajo Nation | The Story of America's Largest Tribe
Explore the forgotten lands of the Navajo Nation, the largest reservation on American soil...
published: 09 Dec 2018
Play in Full Screen
8:25
The Navajo Water Lady
In this corner of the Navajo Nation, just 100 miles west of Albuquerque, N.M., an estimate...
published: 16 Aug 2015
Play in Full Screen
4:17
Why Didn’t The Navajo Hero Twins Kill Poverty?
You’ll see in the video, Navajo Historian, Wally Brown refers to the “Hero Twins” as the “...
published: 30 Mar 2021
Play in Full Screen
3:09
Who are the Navajo?
The Navajo Indians, also known as the Diné, are a Native American tribe that originally in...
published: 17 Jan 2023
Play in Full Screen
25:27
The Navajo Creation Story | The Four Worlds | Navajo Folklore | Native American Mythology Stories
✨Welcome once again to another episode of the Mythical Arcana Mythology podcast. Today we'...
published: 31 Aug 2024
Play in Full Screen
1:06:10
Celebrate the Richness of the Navajo Heritage! (11/27/24)
►WEBSITE: http://www.wildtech.org/ FOLLOW US -------------------------------------------...
published: 10 Dec 2024
Play in Full Screen
53:12
Secret Areas of the Navajo Nation 🇺🇸
Far from the main roads and civilization is a part of the Navajo Nation that feels out of ...
published: 15 Apr 2023
Play in Full Screen

Super Chief

The Super Chief was one of the named passenger trains and the flagship of the Atchison, Topeka and Santa Fe Railway. It claimed to be "The Train of the Stars" because of the celebrities it carried between Chicago, Illinois, and Los Angeles, California.

The Super Chief (Nos. 17 & 18) was the first Diesel-powered, all-Pullman sleeping car train in America, and it eclipsed the Chief as Santa Fe's standard bearer. The extra-fare ($10) Super Chief left Dearborn Station in Chicago for its first trip on May 12, 1936. Before starting scheduled service in May 1937, the lightweight version of the Super Chief ran 2,227 miles (3,584 km) from Los Angeles over recently upgraded tracks in 36 hours and 49 minutes, averaging 60 mph (97 km/h) overall and reaching 100 mph (160 km/h).

With one set of equipment, the train initially operated once a week from both Chicago and Los Angeles. After more cars had been delivered the Super Chief ran twice weekly beginning in 1938 and daily after 1948. Adding to the train's mystique were its gourmet meals and Hollywood clientele.

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

Edit

The unique slang of the Navajo language

Albuquerque Journal 06 Jan 2025
Jaa’ii! Are you listening?. Despite literally meaning “ears” in the Navajo language, jaa’ii refers to someone who hears but isn’t actively listening. × This page requires Javascript ... Please enable it in your browser settings ... kAm“%@ >6k^Am ... ....
Edit

Man accused in terror spree on the Navajo Nation

Albuquerque Journal 11 May 2024
A man is accused of killing one man — laughing and shooting as the victim begged for his life — injuring another and terrorizing a family road trip during a shooting spree in April in western New Mexico.
Edit

Reclamation continues to safeguard the Navajo-Gallup Water Supply Project’s drinking water (Bureau of Reclamation)

Public Technologies 06 May 2024
"The Navajo Nation through the Navajo Department of Water Resources has taken numerous positions before and after the Gold King Mine Spill to have the project planned, designed and constructed to ...
Edit

Kelly, Sinema Announce Up To $7.6 Million from Bipartisan Infrastructure Law to Expand Electricity, Clean Energy Access on the Navajo Nation (Mark Kelly)

Public Technologies 30 Apr 2024
Arizona Senators Mark Kelly and Kyrsten Sinema today announced up to $7.6 million to expand electricity and clean energy access to hundreds of off-grid homes on the Navajo Nation from the bipartisan ...
Edit

Dr. Buu Nygren President of the Navajo Nation Discusses the White House Tribal Nations Summit

Bitchute 18 Apr 2024
Go to the source via the article link to view the video or lcik the video icon ....
Edit

Why did it take so long for the Navajo Nation to secure a Superfund designation?

The Journal Durango 02 Apr 2024
COVE, Ariz.James Benally has been waiting a long time. He is the president of the Cove Chapter on the Navajo Nation, a local government subdivision that sits along the state line, just over the bo... .
Edit

Feds reject a private company's plan to build hydropower projects on the Navajo Nation

Azcentral 23 Feb 2024
... and Threatened wildlife and plants including federally listed species under the Endangered Species Act, and cultural resources of the Navajo Nation,” the Navajo Nation argued in its submission.
Edit

The Navajo Nation Preached by Bro. Corbin Ressl

Bitchute 13 Feb 2024
Go to the source via the article link to view the video or lcik the video icon ....
Edit

Can native speakers change health care in the Navajo Nation (University of California)

Public Technologies 08 Feb 2024
If you are in crisis, call or text 988 to connect with the 988 Suicide & Crisis Lifeline ... This is an abstract of the document.
Edit

Letters to the Editor: The Navajo language saved American lives — after the U.S. tried to ...

The Los Angeles Times 02 Feb 2024
The very Navajo language central to this story was targeted by the U.S ... Fortunately, the Navajo language survived ... Marine Corps says that the Navajo code was the only military code never broken by an enemy in modern history.
Edit

Boulder-area events for Friday, Jan. 26: The Navajo Night Sky presentation

Daily Camera 26 Jan 2024
The Navajo Night Sky ... Enjoy a special presentation by Ravis Henry, a member of the Diné/Navajo Tribe, for an evening of storytelling and observations of the night sky. Henry will share Navajo winter ...

Most Viewed

×