- published: 18 Aug 2022
- views: 17241233
'+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; })); }); -->
George Riley Puckett (May 7, 1894 – July 13, 1946) was an American country music pioneer mostly known for being a member of Gid Tanner and the Skillet Lickers.
Puckett was born in Dallas, Paulding County, Georgia. An accident during infancy left him blind. He had his formal education at the Georgia School for the Blind in Macon, Georgia.
He sang and played guitar and banjo. He was first heard on the radio as a part of Clayton McMichen's Hometown Band.
His vocalizing was a regular feature at the Georgia Old-Time Fiddlers Conventions. Newspaper reporters covering these events referred to him as the "Bald Mountain Caruso" in admiration of his renditions of such songs as "When You and I Were Young, Maggie" and "Sleep, Baby, Sleep". For several years Puckett played and sang with the Home Town Boys, a string-band ensemble composed of Atlanta-area musicians. They made their debut on Atlanta's six-month-old radio station, WSB, on September 18, 1922. Until going off the air in 1926, they remained one of the station's most popular acts.
The Golden Gate is the strait connecting the Pacific Ocean to San Francisco Bay.
It can also refer to:
The Golden Gate is the North American strait that connects San Francisco Bay to the Pacific Ocean. It is defined by the headlands of the San Francisco Peninsula and the Marin Peninsula, and, since 1937, has been spanned by the Golden Gate Bridge.
During the last Ice Age, when sea level was several hundred feet lower, the waters of the glacier-fed Sacramento River and the San Joaquin River scoured a deep channel through the bedrock on their way to the ocean. The strait is well known today for its depth and powerful tidal currents from the Pacific Ocean. Many small whirlpools and eddies can form in its waters. With its strong currents, rocky reefs and fog, the Golden Gate is the site of over 100 shipwrecks.
The Golden Gate is often shrouded in fog, especially during the summer. Heat generated in the California Central Valley causes air there to rise, creating a low pressure area that pulls in cool, moist air from over the Pacific Ocean. The Golden Gate forms the largest break in the hills of the California Coast Range, allowing a persistent, dense stream of fog to enter the bay there.
The Golden Gate of Vladimir (Russian: Zolotye Vorota, Золотые ворота), constructed between 1158 and 1164, is the only (albeit partially) preserved ancient Russian city gate. A museum inside focuses on the history of the Mongol invasion of Russia in the 13th century.
The Golden Gates existed in the holiest cities of Eastern Orthodoxy: Jerusalem, Constantinople, and Kiev. On making Vladimir his capital, Andrew the Pious aspired to emulate these structures, commissioning a lofty tower over the city's main gate to be erected in limestone and lined with golden plaques. According to ancient Russian chronicles, the masons were invited from Friedrich Barbarossa. The main arch used to stand 15 meters tall. The structure was topped with a barbican church dedicated to the Deposition of the Virgin's Robe and symbolizing the Theotokos's protection of Andrew's capital.
The gate survived the Mongol destruction of Vladimir in 1237. By the late 18th century, however, the structure had so deteriorated that Catherine the Great was afraid to pass through the arch for fear of its tumbling down. In 1779, she ordered detailed measurements and drawings of the monument to be executed. In 1795, after many discussions, the vaults and barbican church were demolished. Two flanking round towers were constructed in order to reinforce the structure, and artisans then reconstructed the barbican, following the drawings made in 1779.
The design and construction of the Golden gate bridge led to revolution in Civil engineering. Let's understand all the magical engineering behind the Golden gate bridge. Hello everyone, your support is crucial to us. https://www.patreon.com/Sabins Cheers Sabin Mathew LinkedIn : https://www.linkedin.com/in/sabin-mathew/ instagram : https://www.instagram.com/sabinsmathew/ Twitter : https://twitter.com/sabinsmathew Telegram : https://t.me/sabinmathew FB : https://www.facebook.com/SabinzMathew Voice over artist : https://www.fiverr.com/flfalcon
From its Art Deco elements to its astonishing engineering, every aspect of the Golden Gate Bridge has a story to tell. Let's explore the architecture of the symbol of the city San Francisco. Subtitles available in several languages. Mira el vídeo en español: https://youtu.be/zWssw6WIaRY Like and subscribe to see more videos like this. Say hi on social: Patreon: https://www.patreon.com/manuelbravo Facebook: https://www.facebook.com/100291972038929 Instagram: manuelbravus Watch my other videos explaining architecture: https://youtube.com/playlist?list=PLLo5eX3ma82kXCJiDt_u0C5-sZ0WdDOS5
Our country's most iconic bridge stretches across one of the world's finest natural harbors. From the Show: Aerial America: California http://bit.ly/2yrnkjB
This American icon is getting ready for 'The Big One'. Skip the waitlist and invest in blue-chip art for the very first time by signing up for Masterworks - https://www.masterworks.art/theb1m This video contains paid promotion for Masterworks. Purchase shares in great masterpieces from artists like Pablo Picasso, Banksy, Andy Warhol, and more 🎨 See important Masterworks disclosures - http://masterworks.com/cd Full story here - https://theb1m.com/video/golden-gate-bridge-earthquake-upgrade For more by The B1M subscribe now - https://bit.ly/the-b1m Additional footage and images courtesy of ABC7 News Bay Area, ABC10, CBS, Columbia Pictures, Drone Snap, France24, Golden Gate Bridge Highway and Transportation District, Mario Roberto Durán Ortiz/CC BY-SA 4.0, Michael Rasmussen/CC BY-SA 3.0, ...
Explore the construction of California’s Golden Gate Bridge, and dig into the engineering innovations that made the structure possible. -- Stretching 227 meters tall, two towers were assembled to support California’s Golden Gate Bridge. They were just one of the challenges facing engineers Charles Ellis and Joseph Strauss. Even before construction began, many thought the project impossible: the strait was home to powerful winds, constant fog, and earthquakes. So how was this iconic bridge created? Alex Gendler details the feat. Lesson by Alex Gendler, directed by Anton Bogaty. Support Our Non-Profit Mission ---------------------------------------------- Support us on Patreon: http://bit.ly/TEDEdPatreon Check out our merch: http://bit.ly/TEDEDShop ---------------------------------------...
How San Francisco's iconic Golden Gate Bridge was constructed. For more by The B1M subscribe now - http://ow.ly/GxW7y Read the full story on this video, including images and useful links, here: http://www.theb1m.com/video/the-golden-gate-building-an-impossible-bridge You can learn more about the bridge and its history, and even watch a live feed of the traffic moving across here - http://goldengatebridge.org This video was kindly powered by Viewpoint - http://www.theb1m.com/advert/video-powered-by-viewpoint Images courtesy of Associated Press, AFP, Bing, Doug Atkins, Getty Images, Golden Gate Bridge Highway and Transportation District, Justin Sullivan, Moulin, OFF, Paul Sakuma, Redwood Empire Association, US Geological Survey, US Library of Congress, US National Park Service and Un...
During the construction of the Golden Gate bridge in San Francisco, the construction companies had a grim rule of thumb: one worker fatality for every million dollars spent. From the Series: America in Color: The 1930s http://bit.ly/2hwYyUR
Does anyone know why the Golden Gate Bridge is really red?
In the second episode of the California bucket list series we head to San Francisco and walk across the iconic Golden Gate Bridge. Walking across it is a great way to see the bridge up close and to have a fun adventure in the city. We also go to Fort Point after the walk and explore that as well. Let me know what you think in the comments! Follow me: Facebook: http://www.facebook.com/californiathroughmylens Instagram: http://instagram.com/californiathroughmylens Pinterest: http://www.pinterest.com/cathroughmylens Twitter: http://www.twitter.com/cathroughmylens Monthly newsletter and four day welcome series on California’s best spots: https://bit.ly/2AWSVMK Gear: See all the gear I use here https://www.amazon.com/shop/californiathroughmylens Print Shop: https://californiathroughmylens...
#shorts #lego
George Riley Puckett (May 7, 1894 – July 13, 1946) was an American country music pioneer mostly known for being a member of Gid Tanner and the Skillet Lickers.
Puckett was born in Dallas, Paulding County, Georgia. An accident during infancy left him blind. He had his formal education at the Georgia School for the Blind in Macon, Georgia.
He sang and played guitar and banjo. He was first heard on the radio as a part of Clayton McMichen's Hometown Band.
His vocalizing was a regular feature at the Georgia Old-Time Fiddlers Conventions. Newspaper reporters covering these events referred to him as the "Bald Mountain Caruso" in admiration of his renditions of such songs as "When You and I Were Young, Maggie" and "Sleep, Baby, Sleep". For several years Puckett played and sang with the Home Town Boys, a string-band ensemble composed of Atlanta-area musicians. They made their debut on Atlanta's six-month-old radio station, WSB, on September 18, 1922. Until going off the air in 1926, they remained one of the station's most popular acts.
It's an honour for a soldier
To receive the final kiss
Of blade and steel that cannot heel
For glory, fame and bliss
All my homelands are deserted
All my comrades dead
An I am bleeding at the shore
Where rivers running red
In the gentle morning sun
I see the golden gate
And my dark horse is moving on
Until I meet my fate
Doors for lovers, doors for sinners
Doors for sons of hate
And my dark horse is moving on
Until I meet my fate
All that counts in victory
For predator and prey
While faces are forgotten
And lives just fade away
I hope you will remember me
And I hold on to my name
Keep me in dear memory
Like a burning flame
In the gentle morning sun
I see the golden gate
And my dark horse is moving on
Until I meet my fate
Doors for lovers, doors for sinners
Doors for sons of hate
And my dark horse is moving on