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

Crystal Lane

Crystal Lane (born 13 September 1985) is a British Paralympic track and road cyclist competing in C5 events. A bronze medallist in the Road World Championships in 2011, she is part of the Great Britain team for the 2012 Summer Paralympics.

Personal history

Lane was born in 1985 in Barking, Greater London, England. Lane, who was born with an under-developed left arm, took up sport as a youth and was active in football, playing at county level. In 2008 she watched Sarah Storey compete at the 2008 Summer Paralympics in Beijing. She noticed that she had a similar disability to Storey and realised that she could classify as a Paralympic athlete. After a 2009 Great Britain campaign to find athletes for the 2012 Summer Paralympics, Lane applied and was accepted for trials. By December 2010 she was part of a three athletes selected as part of the GB Para-Cycling Team for 2011.

Lane made her international debut in 2011 competing in the Road World Championships in Roskilde, Denmark. She finished 9th in the C5 Time Trial and took the bronze medal in the C5 road race, the gold going to GB team mate Sarah Storey. In 2012 Lane entered the UCI World Cup in Rome. There she finished 4th in the Road Race and 5th in the Time Trial. Lane qualified for the 2012 Summer Paralympics in all three of her specialised events, C5 track pursuit, C5 time trial and C4-5 road race.

Gandalf

Gandalf /ˈɡændɑːlf/ is a fictional character and one of the main protagonists in J. R. R. Tolkien's novels The Hobbit and The Lord of the Rings. He is a wizard, member of the Istari order, as well as leader of the Fellowship of the Ring and the army of the West. In The Lord of the Rings, he is initially known as Gandalf the Grey, but returns from death as Gandalf the White.

Characteristics

Tolkien discusses Gandalf in his essay on the Istari, which appears in the work Unfinished Tales. He describes Gandalf as the last of the wizards to appear in Middle-earth, one who: "seemed the least, less tall than the others, and in looks more aged, grey-haired and grey-clad, and leaning on a staff". Yet the Elf Círdan who met him on arrival nevertheless considered him "the greatest spirit and the wisest" and gave him the elven Ring of power called Narya, the Ring of Fire, containing a "red" stone for his aid and comfort. Tolkien explicitly links Gandalf to the element Fire later in the same essay:

Gandalf (disambiguation)

Gandalf is a fictional wizard in J. R. R. Tolkien's book The Lord of the Rings.

Gandalf may also refer to:

In Norse mythology and legend:

  • Gandalf (mythology), a dwarf in Norse mythology
  • Gandalf Alfgeirsson, the legendary king of Vingulmark
  • In modern popular culture

  • Gandalf the Mad, a Viking king in the Thorgal comic series
  • Gandalf, used to describe lead character Saito, a character in the anime The Familiar of Zero
  • In business and technology:

  • Gandalf Airlines, an airline company
  • Gandalf Technologies, a modem and PACX manufacturer
  • Gandalf (theorem prover), a first-order automated theorem prover
  • Gandalf, a chess engine, named after the Tolkien character
  • Gandalf the Wizard Inc., a leather/clothing company based in Detroit, Michigan, USA
  • In music:

  • Gandalf (Finnish band), an early 1990s metal group
  • Gandalf (musician), Austrian New Age musician
  • Gandalf (American band), formerly Rahgoos, an influential late 1960s psychedelic rock group
  • Other:

  • GANDALF trial, the 1997 UK trial of the editors of Green Anarchist magazine
  • Duma Key

    Duma Key is a novel by American novelist Stephen King published on January 22, 2008 by Scribner. The book reached #1 on the New York Times Best Seller List. It is King's first novel to be set in Florida or Minnesota. The dust jacket features holographic lettering.

    Plot

    Edgar Freemantle, a contractor in St. Paul, Minnesota, barely survives a horrific on-site accident where his truck is crushed by a crane. Freemantle's right arm is amputated, and severe injuries to his head cause Edgar to have problems with speech, vision, and memory. As a result, Edgar also has violent mood swings and thoughts of suicide. During one of those mood swings, he attacks his wife, who later claims that as a main reason why she divorced him.

    On the advice of his psychologist, Dr. Kamen, Edgar takes "a geographical": a year long vacation meant for rest and further recovery. He decides to rent a beach house on Duma Key, a small island off the west coast of Florida, after reading about it in a travel brochure. Edgar's beach house is located on a part of the island called Salmon Point; Edgar nicknames the house "Big Pink," because of its rich pink color. On the advice of Dr. Kamen, Edgar revives his old hobby of sketching after he moves into Big Pink. He settles in with the help of Jack Cantori, a local college student.

    Podcasts:

    Gandalf

    ALBUMS

    Gandalf

    ALBUMS

    Gandolf

    ALBUMS

    Gandalf

    ALBUMS

    • The Complete Travels of Gandalf | Tolkien Explained

      Gandalf is known for his many travels far and wide in Middle-earth. Today, we cover all of the known journeys of the great wizard. From his dwelling in Aman during the first and second ages to his deeds in overthrowing Sauron and return to the Undying Lands, we will see where Gandalf goes, and explain why. Unlike Saruman, Gandalf never sets down roots, preferring to travel far and wide in his efforts to fight Sauron. Whether you call him Mithrandir, Tharkûn, or Gandalf, you'll enjoy seeing every one of his journey's during his centuries in Middle-earth. Hit subscribe - and the bell - so you never miss a video from Nerd of the Rings! -------------- All content falls under fair use: any copying of copyrighted material done for a limited and “transformative” purpose, such as to commen...

      published: 24 Oct 2020
    • The Lord of the Rings - ''You Have No Power Here'' - (HD)

      Scene from ''The Lord of the Rings: The Two Towers''. Gandalf frees Theoden. Gandalf: Théoden, Son of Théngel. Too long have you sat in the shadows. Gandalf: Harken to me! I release you from the spell. Théoden: You have no power here Gandalf the Grey. Facebook Page: https://www.facebook.com/LOTR-1426074420940338/ Youtube Channel: https://www.youtube.com/channel/UCjxMiEdrQ_sXc_7M049abBg

      published: 07 Jan 2016
    • What if Gandalf Took the Ring? | Tolkien Theory

      "Gandalf as Ring-lord would have been far worse than Sauron" - JRR Tolkien. Today, using my usual weekly level of research, I've created a plausible scenario that could to Gandalf taking the One Ring and replacing the Dark Lord. There's some safe bets in here, in addition to some longshots, but it's all in good fun! Let me know in the comments what you think would happen if the Grey wizard claimed the ring for himself! Hit subscribe - and the bell - so you never miss a video from Nerd of the Rings! Nerd of the Rings on PATREON: https://www.patreon.com/NerdoftheRings -------------- All content falls under fair use: any copying of copyrighted material done for a limited and “transformative” purpose, such as to comment upon, criticize, or parody a copyrighted work. Such uses can be do...

      published: 16 Jan 2021
    • Gandalf - Journey to an Imaginary Land (1980) Full Album

      Gandalf - Journey to an Imaginary Land (1980) Full Album Tracklist: 1. Departure 00:00 2. Foreign Landscape 05:01 3. The Peacefull Village incl. "The Dance Of Joy" 14:28 4. March Across Endless Plain incl. "The Mirage" 22:11 5. The Fruitfull Gardens 32:54 6. Sunset At The Crystal Lake incl. "Reflections" 39:05 For promotional use only.

      published: 05 Sep 2014
    • Lord of the Rings - Gandalf vs Balrog [Entire Battle HD 1080p]

      The entire battle sequence between Gandalf and the Balrog from The Fellowship of the Ring, and The Two Towers. Uploaded in the highest quality possible. 1920 x 800 at 24fps.

      published: 31 Jan 2014
    • GANDALF - Hang on to a Dream

      amerykanska psychodelia, Capitol 1967/69

      published: 15 Oct 2008
    • The Lord of the Rings: The Two Towers-Gandalf the White

      Gandalf returns as Gandalf the White, a more skilled and powerful wizard. No rights belong to me.

      published: 26 Dec 2014
    • Gandalf and Radagast in Nazgul's grave [HD]

      The Hobbit The Desolation of Smaug (2013)

      published: 28 Aug 2014
    developed with YouTube
    The Complete Travels of Gandalf | Tolkien Explained
    24:49

    The Complete Travels of Gandalf | Tolkien Explained

    • Order:
    • Duration: 24:49
    • Uploaded Date: 24 Oct 2020
    • views: 4518419
    Gandalf is known for his many travels far and wide in Middle-earth. Today, we cover all of the known journeys of the great wizard. From his dwelling in Aman during the first and second ages to his deeds in overthrowing Sauron and return to the Undying Lands, we will see where Gandalf goes, and explain why. Unlike Saruman, Gandalf never sets down roots, preferring to travel far and wide in his efforts to fight Sauron. Whether you call him Mithrandir, Tharkûn, or Gandalf, you'll enjoy seeing every one of his journey's during his centuries in Middle-earth. Hit subscribe - and the bell - so you never miss a video from Nerd of the Rings! -------------- All content falls under fair use: any copying of copyrighted material done for a limited and “transformative” purpose, such as to comment upon, criticize, or parody a copyrighted work. Such uses can be done without permission from the copyright owner. Dwarf - Gaudi Buendia G for Grand - Ink Yami Gandalf and Frodo - Anrea Piparo Gandalf Falls with the Balrog - John Howe Gandalf, A light in the Dark - Matthew Stewart Gandalf - Ethan Cunningham Gandalf in Minas Tirith - Anke Eissmann Gandalf Attacks Dol Guldur - John Howe Necromancer - FirstRingProject Gandalf vs the Balrog - Nicolas Siner Gandalf and the Balrog on Celebdil - Ted Nasmith Gandalf Returns - Ted Nasmith Gandalf and Thorin in Bree - Ted Nasmith Gandalf and the Nazgul - Ted Nasmith Nazgul at the Walls - Ted Nasmith Shadows of the Past - Donato Giancola Dol Guldur - Angus McBride The White Sapling - Darrell K Sweet Cormallen - Tolman Cotton The Last Homely House - Alan Lee The Door of Durin - Alan Lee Anger of the Mountains - Ted Nasmith At Beorn's Hall - Ted Nasmith Bilbo and the Arkenstone - Ted Nasmith Elessar marries Arwen - Brothers Hildebrandt Elessar's Coronation - Brothers Hildebrandt Gandaf, Aragorn, & Samwise - Donato Giancola The Goblin King - Alan Lee Zikakzigil - John Howe Old Friends - momofukuu Olorin Arrives - leewlundin Sam and Frodo - Ted Nasmith Winter in the Shire - Ralph Bakshi The Siege of Minas Tirith - Jesse Vandijk The Black Rider and the Gaffer - Stephen Hickman Departure at the Grey Havens - Ted Nasmith Elves in the Woody End - Ted Nasmith At the Inn of the Prancing Pony - Ted Nasmith A View of Hobbiton from the Hill - Ted Nasmith The Spiders of Mirkwood - Ted Nasmith Winter in the Shire - MintDr #gandalf #tolkien #lordoftherings
    https://wn.com/The_Complete_Travels_Of_Gandalf_|_Tolkien_Explained
    The Lord of the Rings - ''You Have No Power Here'' - (HD)
    4:59

    The Lord of the Rings - ''You Have No Power Here'' - (HD)

    • Order:
    • Duration: 4:59
    • Uploaded Date: 07 Jan 2016
    • views: 5777898
    Scene from ''The Lord of the Rings: The Two Towers''. Gandalf frees Theoden. Gandalf: Théoden, Son of Théngel. Too long have you sat in the shadows. Gandalf: Harken to me! I release you from the spell. Théoden: You have no power here Gandalf the Grey. Facebook Page: https://www.facebook.com/LOTR-1426074420940338/ Youtube Channel: https://www.youtube.com/channel/UCjxMiEdrQ_sXc_7M049abBg
    https://wn.com/The_Lord_Of_The_Rings_''You_Have_No_Power_Here''_(Hd)
    What if Gandalf Took the Ring? | Tolkien Theory
    19:22

    What if Gandalf Took the Ring? | Tolkien Theory

    • Order:
    • Duration: 19:22
    • Uploaded Date: 16 Jan 2021
    • views: 6047407
    "Gandalf as Ring-lord would have been far worse than Sauron" - JRR Tolkien. Today, using my usual weekly level of research, I've created a plausible scenario that could to Gandalf taking the One Ring and replacing the Dark Lord. There's some safe bets in here, in addition to some longshots, but it's all in good fun! Let me know in the comments what you think would happen if the Grey wizard claimed the ring for himself! Hit subscribe - and the bell - so you never miss a video from Nerd of the Rings! Nerd of the Rings on PATREON: https://www.patreon.com/NerdoftheRings -------------- All content falls under fair use: any copying of copyrighted material done for a limited and “transformative” purpose, such as to comment upon, criticize, or parody a copyrighted work. Such uses can be done without permission from the copyright owner. Gandalf, Aragorn, & Samwise - Donato Giancola Gandalf in Moria - Donato Giancola Gandalf Pensive - Donato Giancola Gandalf and Aragorn - Reacool Gandalf and Theoden - Tolman Cotton Gandalf the Grey - Matt DeMino Gandalf before Denethor - Alan Lee Theoden - Harlis Suardana Aragorn - Ian Fee Gandalf Attacks Dol Guldur - John Howe King Theoden and Wormtongue - Greg and Tim Hildebrandt Looking into the Stone - Kuliszu Rivendell - Zak Seymour Rohirrim - Gellihana Art Nazgul - Rui Goncalves The Hermit - bnolin The King of the Golden Hall - Ullakko The Riders of Rohan - Ted Nasmith Nazgul Rider - William Nunez Orthanc - Alan Lee The Ringwraiths - Anato Finnstark Nazgul on Weathertop - Anato Finnstark The Nine - Anato Finnstark Boromir Arrives to Rivendell - Joshua Cairos The Council of Elrond - Alan Lee Frodo and Gandalf in Bag End - Raul Vitale Gandalf and Frodo Examine the Ring - Donato Giancola Gandalf and Theoden - Kacik Rohanskiej Gandalf and Saruman - Angelo Montanini Gandalf in Minas Tirith - Anke Eissman Nazgul - Allrich Art Saruman and the Palantir - Greg and Tim Hildebrandt Saruman - AIMaNeGrA Saruman's Staff - Alexandr Elichev Bilbo and Gandalf - Tim Kirk Wrath of Galadriel - Zyrexthez Bag End - Wictorian Art Minas Tirith: Hall of Kings - Hayo Koekkoek The Shire - Liam Tart Minas Tirith - Ludovic Bourgeois Dol Guldur - Michael Merc Orthanc in the Second Age - Ted Nasmith Barad-dur - Steve Firchow The Shire, A View of Hobbiton - Ted Nasmith An Enemy Revealed - Laurence Andrew Page Cthumang Darth Vader Gandalf & Sauron - Joujeen Denethor Son of Ecthelion - Joshua Cairos Gandalf and Dumbledore - Rodolfo Gurreiro Check out these resources for this and more info about Smaug, the Dragons of the North, and the War of Dwarves and Dragon: The Lord of the Rings Unfinished Tales The Encyclopedia of Arda Tolkien Gateway Theonering.net “Today in Middle-earth History” Calendar #gandalf #tolkien #lordoftherings
    https://wn.com/What_If_Gandalf_Took_The_Ring_|_Tolkien_Theory
    Gandalf - Journey to an Imaginary Land (1980) Full Album
    45:17

    Gandalf - Journey to an Imaginary Land (1980) Full Album

    • Order:
    • Duration: 45:17
    • Uploaded Date: 05 Sep 2014
    • views: 115923
    Gandalf - Journey to an Imaginary Land (1980) Full Album Tracklist: 1. Departure 00:00 2. Foreign Landscape 05:01 3. The Peacefull Village incl. "The Dance Of Joy" 14:28 4. March Across Endless Plain incl. "The Mirage" 22:11 5. The Fruitfull Gardens 32:54 6. Sunset At The Crystal Lake incl. "Reflections" 39:05 For promotional use only.
    https://wn.com/Gandalf_Journey_To_An_Imaginary_Land_(1980)_Full_Album
    Lord of the Rings - Gandalf vs Balrog [Entire Battle HD 1080p]
    7:59

    Lord of the Rings - Gandalf vs Balrog [Entire Battle HD 1080p]

    • Order:
    • Duration: 7:59
    • Uploaded Date: 31 Jan 2014
    • views: 12234540
    The entire battle sequence between Gandalf and the Balrog from The Fellowship of the Ring, and The Two Towers. Uploaded in the highest quality possible. 1920 x 800 at 24fps.
    https://wn.com/Lord_Of_The_Rings_Gandalf_Vs_Balrog_Entire_Battle_Hd_1080P
    GANDALF - Hang on to a Dream
    4:20

    GANDALF - Hang on to a Dream

    • Order:
    • Duration: 4:20
    • Uploaded Date: 15 Oct 2008
    • views: 964530
    amerykanska psychodelia, Capitol 1967/69
    https://wn.com/Gandalf_Hang_On_To_A_Dream
    The Lord of the Rings: The Two Towers-Gandalf the White
    4:48

    The Lord of the Rings: The Two Towers-Gandalf the White

    • Order:
    • Duration: 4:48
    • Uploaded Date: 26 Dec 2014
    • views: 1620628
    Gandalf returns as Gandalf the White, a more skilled and powerful wizard. No rights belong to me.
    https://wn.com/The_Lord_Of_The_Rings_The_Two_Towers_Gandalf_The_White
    Gandalf and Radagast in Nazgul's grave [HD]
    3:39

    Gandalf and Radagast in Nazgul's grave [HD]

    • Order:
    • Duration: 3:39
    • Uploaded Date: 28 Aug 2014
    • views: 2017161
    The Hobbit The Desolation of Smaug (2013)
    https://wn.com/Gandalf_And_Radagast_In_Nazgul's_Grave_Hd
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • The Complete Travels of Gandalf | Tolkien Explained
      24:49
      The Complete Travels of Gandalf | Tolkien Explainedremove from playlist
    • The Lord of the Rings - ''You Have No Power Here'' - (HD)
      4:59
      The Lord of the Rings - ''You Have No Power Here'' - (HD)remove from playlist
    • What if Gandalf Took the Ring? | Tolkien Theory
      19:22
      What if Gandalf Took the Ring? | Tolkien Theoryremove from playlist
    • Gandalf - Journey to an Imaginary Land (1980) Full Album
      45:17
      Gandalf - Journey to an Imaginary Land (1980) Full Albumremove from playlist
    • Lord of the Rings - Gandalf vs Balrog [Entire Battle HD 1080p]
      7:59
      Lord of the Rings - Gandalf vs Balrog [Entire Battle HD 1080p]remove from playlist
    • The Lord of the Rings: The Two Towers-Gandalf the White
      4:48
      The Lord of the Rings: The Two Towers-Gandalf the Whiteremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    The Complete Travels of Gandalf | Tolkien Explained

    Gandalf is known for his many travels far and wide in Middle-earth. Today, we cover all of the known journeys of the great wizard. From his dwelling in Aman during the first and second ages to his deeds in overthrowing Sauron and return to the Undying Lands, we will see where Gandalf goes, and explain why. Unlike Saruman, Gandalf never sets down roots, preferring to travel far and wide in his efforts to fight Sauron. Whether you call him Mithrandir, Tharkûn, or Gandalf, you'll enjoy seeing every one of his journey's during his centuries in Middle-earth. Hit subscribe - and the bell - so you never miss a video from Nerd of the Rings! -------------- All content falls under fair use: any copying of copyrighted material done for a limited and “transformative” purpose, such as to comment upon, criticize, or parody a copyrighted work. Such uses can be done without permission from the copyright owner. Dwarf - Gaudi Buendia G for Grand - Ink Yami Gandalf and Frodo - Anrea Piparo Gandalf Falls with the Balrog - John Howe Gandalf, A light in the Dark - Matthew Stewart Gandalf - Ethan Cunningham Gandalf in Minas Tirith - Anke Eissmann Gandalf Attacks Dol Guldur - John Howe Necromancer - FirstRingProject Gandalf vs the Balrog - Nicolas Siner Gandalf and the Balrog on Celebdil - Ted Nasmith Gandalf Returns - Ted Nasmith Gandalf and Thorin in Bree - Ted Nasmith Gandalf and the Nazgul - Ted Nasmith Nazgul at the Walls - Ted Nasmith Shadows of the Past - Donato Giancola Dol Guldur - Angus McBride The White Sapling - Darrell K Sweet Cormallen - Tolman Cotton The Last Homely House - Alan Lee The Door of Durin - Alan Lee Anger of the Mountains - Ted Nasmith At Beorn's Hall - Ted Nasmith Bilbo and the Arkenstone - Ted Nasmith Elessar marries Arwen - Brothers Hildebrandt Elessar's Coronation - Brothers Hildebrandt Gandaf, Aragorn, & Samwise - Donato Giancola The Goblin King - Alan Lee Zikakzigil - John Howe Old Friends - momofukuu Olorin Arrives - leewlundin Sam and Frodo - Ted Nasmith Winter in the Shire - Ralph Bakshi The Siege of Minas Tirith - Jesse Vandijk The Black Rider and the Gaffer - Stephen Hickman Departure at the Grey Havens - Ted Nasmith Elves in the Woody End - Ted Nasmith At the Inn of the Prancing Pony - Ted Nasmith A View of Hobbiton from the Hill - Ted Nasmith The Spiders of Mirkwood - Ted Nasmith Winter in the Shire - MintDr #gandalf #tolkien #lordoftherings
    24:49
    The Complete Travels of Gandalf | Tolkien Explained
    Gandalf is known for his many travels far and wide in Middle-earth. Today, we cover all o...
    published: 24 Oct 2020
    Play in Full Screen
    4:59
    The Lord of the Rings - ''You Have No Power Here'' - (HD)
    Scene from ''The Lord of the Rings: The Two Towers''. Gandalf frees Theoden. Gandalf: Thé...
    published: 07 Jan 2016
    Play in Full Screen
    19:22
    What if Gandalf Took the Ring? | Tolkien Theory
    "Gandalf as Ring-lord would have been far worse than Sauron" - JRR Tolkien. Today, using m...
    published: 16 Jan 2021
    Play in Full Screen
    45:17
    Gandalf - Journey to an Imaginary Land (1980) Full Album
    Gandalf - Journey to an Imaginary Land (1980) Full Album Tracklist: 1. Departure 00:00 ...
    published: 05 Sep 2014
    Play in Full Screen
    7:59
    Lord of the Rings - Gandalf vs Balrog [Entire Battle HD 1080p]
    The entire battle sequence between Gandalf and the Balrog from The Fellowship of the Ring,...
    published: 31 Jan 2014
    Play in Full Screen
    4:20
    GANDALF - Hang on to a Dream
    amerykanska psychodelia, Capitol 1967/69
    published: 15 Oct 2008
    Play in Full Screen
    4:48
    The Lord of the Rings: The Two Towers-Gandalf the White
    Gandalf returns as Gandalf the White, a more skilled and powerful wizard. No rights belong...
    published: 26 Dec 2014
    Play in Full Screen
    3:39
    Gandalf and Radagast in Nazgul's grave [HD]
    The Hobbit The Desolation of Smaug (2013)
    published: 28 Aug 2014
    Play in Full Screen

    Crystal Lane

    Crystal Lane (born 13 September 1985) is a British Paralympic track and road cyclist competing in C5 events. A bronze medallist in the Road World Championships in 2011, she is part of the Great Britain team for the 2012 Summer Paralympics.

    Personal history

    Lane was born in 1985 in Barking, Greater London, England. Lane, who was born with an under-developed left arm, took up sport as a youth and was active in football, playing at county level. In 2008 she watched Sarah Storey compete at the 2008 Summer Paralympics in Beijing. She noticed that she had a similar disability to Storey and realised that she could classify as a Paralympic athlete. After a 2009 Great Britain campaign to find athletes for the 2012 Summer Paralympics, Lane applied and was accepted for trials. By December 2010 she was part of a three athletes selected as part of the GB Para-Cycling Team for 2011.

    Lane made her international debut in 2011 competing in the Road World Championships in Roskilde, Denmark. She finished 9th in the C5 Time Trial and took the bronze medal in the C5 road race, the gold going to GB team mate Sarah Storey. In 2012 Lane entered the UCI World Cup in Rome. There she finished 4th in the Road Race and 5th in the Time Trial. Lane qualified for the 2012 Summer Paralympics in all three of her specialised events, C5 track pursuit, C5 time trial and C4-5 road race.

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