- published: 28 Mar 2022
- views: 1261014
'+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; })); }); -->
Interstate 81 (I-81) is an 855-mile (1,376 km) long highway. In the U.S. state of Virginia, I-81 runs for 324.92 miles (522.91 km), making it longer in Virginia than in any other state. It stretches from the Tennessee state line near Bristol to the West Virginia state line near Winchester. For most of its length, U.S. Route 11 parallels I-81.
I-81 runs concurrently with Interstate 77 in Wytheville, Virginia for about 10 miles (16 km) in a notable example of a wrong-way concurrency: both I-81 south and I-77 north share the same roadbed there. The same also happens here with Interstate 74.
Interstate 81 enters Bristol, Virginia from Tennessee and runs primarily along the mountains of western Virginia. In some areas the road actually rises above the clouds.
The state has proposed to widen its entire portion of I-81 to a minimum of three or four lanes in each direction to accommodate increased truck traffic and to toll non-passenger vehicles. Some sections of the new Virginia I-81 may completely separate car and truck traffic. Between exits 315 and 317 the state has proposed to widen it to 4 lanes for this 2 mile portion in Winchester, Virginia.
Interstate 81 (abbreviated I-81) is an Interstate Highway in the eastern part of the United States. Its southern terminus is at Interstate 40 in Dandridge, Tennessee; its northern terminus is on Wellesley Island (near Fishers Landing, New York) at the Canadian border, where the Thousand Islands Bridge connects it to Highway 401, the main Ontario freeway connecting Detroit via Toronto to Montreal.
I-81 is the longest odd-numbered (and therefore the longest north-south) Interstate highway in which the number does not end with a 5, and the third longest Interstate highway in which the number does not end with a 0 or 5 after I-94 and I-64. Interstate 81 largely traces the paths created down the length of the Appalachian Mountains by migrating animals, American Indians, and early settlers. It also follows a major corridor for troop movements during the Civil War. These trails and roadways gradually evolved into U.S. Route 11. Interstate 81 parallels much of the older Route 11. Being mostly rural, it is heavily used as a trucking corridor, often as a bypass of the busier Interstate 95 to the east.
Interstate 81 is an 854.89-mile-long (1,375.81 km) north–south Interstate Highway, stretching from Dandridge, Tennessee to Fisher's Landing, New York at the United States/Canadian border. In the state of Pennsylvania, I-81 runs for 232.63 miles (374.38 km) from the Maryland state line near Greencastle to the New York state line near Hallstead and is called the American Legion Memorial Highway.
I-81 enters Pennsylvania at the Maryland state line about 13 miles (21 km) south of Chambersburg. In Chambersburg at mile marker 16, it meets with a major highway; U.S. Route 30 (the Chambersburg Pike to Gettysburg). About a mile north of Carlisle at exit 52, it meets with U.S. Route 11, which takes passengers to the Pennsylvania Turnpike/ Interstate 76, since I-81 has no direct interchange with I-76. The stretch of US 11 connecting I-81 to I-76 is known locally as the "Miracle Mile" since it contains plenty of traveler services including restaurants, gas stations, lodging, truck stops, shops, etc. From here, I-81 travels in an almost precisely east–west direction for the next 37 miles (until exit 89). At mile marker 59, it has an interchange with the western terminus of Pennsylvania Route 581. I-81 becomes the Capital Beltway from exit 59 to exit 70. As passengers approach exit 67, a major complex interchange is seen. The interchange consists of U.S. Route 22 and U.S. Route 322; U.S. Route 322 merges with Interstate 81. Exit 70 is the eastern terminus of the US 322 concurrency and the northern terminus of Interstate 83, and is located in Colonial Park. For the entire segment between the Mason–Dixon line and Interstate 78, I-81 runs through the Great Valley. North of Harrisburg between Interstate 83/U.S. Route 322 and Interstate 78, the highway passes near Hershey and Fort Indiantown Gap.
50 Virginia /vərˈdʒɪnjə/ is a large, very dark main belt asteroid. It was discovered by American astronomer James Ferguson on October 4, 1857 from the United States Naval Observatory in Washington, D.C. German astronomer Robert Luther discovered it independently on October 19 from Düsseldorf, and his discovery was announced first.
The reason for Virginia's name is not known; it may be named after Verginia, the Roman noblewoman slain by her father, but it may alternatively have been named after the American state of Virginia, which is contiguous with Washington.
Photometric observations of this asteroid at the Organ Mesa Observatory in Las Cruces, New Mexico during 2008 gave a light curve with a period of 14.315 ± 0.001 hours and a brightness variation of 0.19 ± 0.02 in magnitude. The shape of the light curve at the maximum was found to change with phase angle.
The orbit of 50 Virginia places it in an 11:4 mean motion resonance with the planet Jupiter. The computed Lyapunov time for this asteroid is only 10,000 years, indicating that it occupies a chaotic orbit that will change randomly over time because of gravitational perturbations of the planets.
Virginia is a 1941 American drama film directed by Edward H. Griffith. It featured the onscreen debut of Sterling Hayden.
Virginia (1913) is a novel by Ellen Glasgow about a wife and mother who in vain seeks happiness by serving her family. This novel, her eleventh, marked a clear departure from Glasgow's previous work—she had written a series of bestsellers before publishing Virginia—in that it attacked, in a subtle yet unmistakable way, the very layer of society that constituted her readership. Also, as its heroine, though virtuous and god-fearing, is denied the happiness she is craving, its plot did not live up to readers' expectations as far as poetic justice is concerned and was bound to upset some of them. Today, Virginia is seen by many as an outstanding achievement in Glasgow's career, exactly because the author defied literary convention by questioning the foundations of American society around the dawn of the 20th century, be it capitalism, religion or racism.
Born in 1864 to a clergyman and his dutiful wife, Virginia grows up as a Southern belle in the town of Dinwiddie, Virginia. Her education is strictly limited to the bare minimum, with anything that might disturb her quiet and comfortable existence vigorously avoided. Thus prepared for life, Virginia falls for the first handsome young man who crosses her path—Oliver Treadwell, the black sheep of a family of capitalist entrepreneurs who, during the time of Reconstruction, brought industry and the railroad to the South. Oliver, who has been abroad and has only recently arrived in Dinwiddie, is a dreamer and an intellectual. An aspiring playwright, his literary ambitions are more important to him than money, and he refuses his uncle's offer to work in his bank. However, when Virginia falls in love with him he realizes that he must be able to support a family, and eventually accepts his uncle's offer to work for the railroad.
A deadly crash involving multiple vehicles closed part of a highway Monday morning in Pennsylvania. MORE: https://www.khou.com/article/news/local/crash-closes-part-of-i-81-in-schuylkill-county-interstate-northbound/523-64e19fed-cc65-4b33-9876-5b8dda164e34
The question is often asked, Why so many trucks on Interstate 81? In this video we answer that question and explore what Virginia plans to do to improve the roadway. More Commentary Videos: https://youtube.com/playlist?list=PLnS3Ajs4YX_y7SG4bKBuqHcBmfOaOoIn4 Cities Explored: https://www.google.com/maps/d/edit?mid=1dwX1FsVT4oOEgd0ldCs8SDA3H6-fmrq4&usp=sharing Follow on Instagram: https://instagram.com/mileagemike Make a one time donation to support the channel: https://cash.me/$milmike Equipment Used: SD Card: https://amzn.to/38ikIb6 Tripod: https://amzn.to/3vH1xQh Camera: https://amzn.to/3Kdfx9E Camera Mount: https://amzn.to/3vSX2m0 Computer: https://amzn.to/3EVZNaj External HD: https://amzn.to/3vI8zUW Glass Cleaner: https://amzn.to/3EWIQg1 Tablet: https://amzn.to/3vrLffx Tablet Acce...
Interstate 81 connects upstate New York with the Great Smokies of Tennessee and is never too far from the mountains. It's an awesome road! Control City Freak is updated weekly and covers every two digit Interstate Highway in America. I'll be showing control city signs on each 1 and 2 digit (2di) Interstate Highway in the continental United States and will strive to make as complete a record as possible. I'll also be getting into the roadgeek weeds here and there, showing downtown skylines and state border crossings, and making corny jokes. I welcome all to join my geeky tour of every primary Interstate in the country! All images of roads and signs come from Google Street View unless otherwise specified. The Interstate 81 Shield comes from Wikipedia, https://en.wikipedia.org/wiki/Intersta...
Want to drive from DC to any other North American national capital? You'll be taking Interstate 81! The back road of the East Coast sneakily connects all sorts of major city pairs. It's a beautiful drive! Control City Freak is updated weekly and covers every two digit Interstate Highway in America. I'll be showing control city signs on each 1 and 2 digit (2di) Interstate Highway in the continental United States and will strive to make as complete a record as possible. I'll also be getting into the roadgeek weeds here and there, showing downtown skylines and state border crossings, and making corny jokes. I welcome all to join my geeky tour of every primary Interstate in the country! All images of roads and signs come from Google Street View unless otherwise specified. The Interstate 81 S...
The future of I-81: New I-81 construction update
Changes could be coming to how you get tickets on the interstate.
For more than 50 years, the Interstate 81 viaduct in Syracuse has stood as an unsightly monument to the failures of top-down thinking. It cuts through the heart of the city, much of it crumbling, while the federal, state and city officials consider how to replace it. Their deliberations have left communities bordering the viaduct anxious about their futures, fueling worries that officials could repeat the same missteps as the original planners, who decimated neighborhoods to build the roadway. Whatever replaces the viaduct must be the result of community input, with a particular focus on the concerns of the people who will be most impacted by the massive, years-long construction project. Learn more at nyclu.org/i81 Film produced by the New York Civil Liberties Union Music by Julian Wi...
The whole thing, all ~854mi, recorded in 4K60 From a smoky mountain morning in Tennessee, to a bright clear day across the mid atlantic, sun sets south of Syracuse, and then we head into the heart of darkness and storms (the Canadian border). Trip took 12h45m of driving: First 9 hours of this video are in real time, last 4 hours were compressed to 3h to fit in youtube's 12 hour limit This video is lightly monetized. To give me more money, please see these alternate viewing options: State by state playlist https://www.youtube.com/playlist?list=PLVM6PmkA7zHifFU7QZXRkjfykU9EGecwO 1. Tennessee https://youtu.be/HTT-GiF4q90 2. Virginia https://youtu.be/F9hwL2IpoIc 3. West Virginia https://youtu.be/li3UMWFSXOM 4. Maryland https://youtu.be/GOrbao-iASc 5. Pennsylvania https://youtu.be/PE5rP-a7Z3s 6...
NewsChannel 9 at 5 p.m.
Common complaints about Interstate 81 range from truck traffic to crashes and safety. But there’s a multi-billion dollar plan that will make it better for everyone.
Interstate 81 (I-81) is an 855-mile (1,376 km) long highway. In the U.S. state of Virginia, I-81 runs for 324.92 miles (522.91 km), making it longer in Virginia than in any other state. It stretches from the Tennessee state line near Bristol to the West Virginia state line near Winchester. For most of its length, U.S. Route 11 parallels I-81.
I-81 runs concurrently with Interstate 77 in Wytheville, Virginia for about 10 miles (16 km) in a notable example of a wrong-way concurrency: both I-81 south and I-77 north share the same roadbed there. The same also happens here with Interstate 74.
Interstate 81 enters Bristol, Virginia from Tennessee and runs primarily along the mountains of western Virginia. In some areas the road actually rises above the clouds.
The state has proposed to widen its entire portion of I-81 to a minimum of three or four lanes in each direction to accommodate increased truck traffic and to toll non-passenger vehicles. Some sections of the new Virginia I-81 may completely separate car and truck traffic. Between exits 315 and 317 the state has proposed to widen it to 4 lanes for this 2 mile portion in Winchester, Virginia.