- published: 16 Feb 2018
- views: 585
'+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; })); }); -->
Tony Maimone is a bass player, producer, and recording engineer, who lives in Brooklyn, New York.
He was a member of Pere Ubu from the mid-1970s to the early 1990s, often playing with drummer Scott Krauss. The duo were dubbed by a critic "one of the great unheralded rhythm sections in all of rock". He is known as one of the former members of They Might Be Giants from 1993 until 1995.
Maimone also has worked with Bob Mould, Frank Black, The Mekons, They Might Be Giants, and Jon Langford.
Maimone currently resides in Brooklyn, New York, where he owns and operates Studio G Brooklyn, a recording studio with Joel Hamilton. He has produced and/or engineered/played on albums for artists including No Grave Like The Sea, The Book of Knots, Ani DiFranco, The Dixons and The Shondes, Felili, Destronauts, Laura Brennemen, Will James, Bob Kidney, Lord Ward, Peg Simone, Gachupin, Jon Langford, Cock Lorge, Sam Johnson, Steve Northeast, Shark?, Golem, Revel Switch, Mike Watt, Megan Reilly, Zigitros, Fai Baba,and CC Carana.
Wyoming i/waɪˈoʊmɪŋ/ is a state in the mountain region of the Western United States. The state is the 10th largest by area, but the least populous and the second least densely populated of the 50 United States. The western two-thirds of the state is covered mostly with the mountain ranges and rangelands in the foothills of the eastern Rocky Mountains, while the eastern third of the state is high elevation prairie known as the High Plains. Cheyenne is the capital and the most populous city in Wyoming, with a population estimate of 62,448 in 2013.
As specified in the designating legislation for the Territory of Wyoming, Wyoming's borders are lines of latitude, 41°N and 45°N, and longitude, 104°3'W and 111°3'W (27° W and 34° W of the Washington Meridian), making the shape of the state a latitude-longitude quadrangle. Wyoming is one of only three states (along with Colorado and Utah) to have borders along only straight latitudinal and longitudinal lines, rather than being defined by natural landmarks. Due to surveying inaccuracies during the 19th century, Wyoming's legal border deviates from the true latitude and longitude lines by up to half of a mile (0.8 km) in some spots, especially in the mountainous region along the 45th parallel. Wyoming is bordered on the north by Montana, on the east by South Dakota and Nebraska, on the south by Colorado, on the southwest by Utah, and on the west by Idaho. It is the tenth largest state in the United States in total area, containing 97,814 square miles (253,340 km2) and is made up of 23 counties. From the north border to the south border it is 276 miles (444 km); and from the east to the west border is 365 miles (587 km) at its south end and 342 miles (550 km) at the north end.
Wyoming was a wooden six-masted schooner, the largest wooden schooner ever built. It was built and completed in 1909 by the firm of Percy & Small in Bath, Maine.Wyoming was also one of the largest wooden ships ever built, 450 ft (140 m) from jib-boom tip to spanker boom tip, and the last six-masted schooner built on the east coast of the US.
Because of its extreme length and wood construction, Wyoming tended to flex in heavy seas, which would cause the long planks to twist and buckle, thereby allowing sea water to intrude into the hold (see hogging and sagging). Wyoming had to use pumps to keep its hold relatively free of water. In March 1924, it foundered in heavy seas and sank with the loss of all hands.
Wyoming was 329.5 feet (100.4 m) long and 50 ft 1 in (15.27 m) wide, with a draft of 30 ft 5 in (9.27 m). It had a volume of 373,054 cubic feet (10,563.7 m3), that is, a gross register tonnage (GRT) of 3730.54. After subtracting the volume consumed by the helm and crew quarters and other areas not suitable for cargo, she had a cargo capacity of 303,621 cubic feet (8,597.6 m3), or a net register tonnage of 3036.21. Its deadweight was 6,004 long tons, that is, the weight of the ship fully loaded, including the crew, cargo (6,000 tons), fuel, water and stores, less the weight of the ship when totally empty (4,000 tons), was 6,004 long tons. It could carry 6,000 long tons of coal. Wyoming was built of yellow pine with 6" planking and there were 90 diagonal iron cross-bracings on each side.
Wyoming is a 1928 American Western silent film directed by W. S. Van Dyke and written by Ruth Cummings, Madeleine Ruthven and Ross B. Wills. The film stars Tim McCoy, Dorothy Sebastian, Charles Bell, William Fairbanks and Chief John Big Tree. The film was released on March 24, 1928, by Metro-Goldwyn-Mayer.
October 2007 - Studio G (Brooklyn, NY) Brian and Leon Dewan performing on their Dual Primate Console More info: http://www.dewanatron.com/ Recording session with engineer/producer Tony Maimone Filmed by Theo Aronson
From 2010's Old Home Night at the Beachland, 15-60-75's Numbers Band performs "Suckerpunch" with Anton Fier (Golden Palominos) and Tony Maimone (Pere Ubu, Home and Garden, various).
Tony Maimone discusses mixing off tape into the B2 Bomber ADC and using the Mothership at Studio G.
[Stereo] The duo of songwriter/performers are backed by a slew of musicians, including Tony Maimone, of Pere Ubu fame; Syd Straw on accompanying vocals; and a few members of the house band, for one number. Two songs are performed on this USTV program, and an interview happens, in between.
Una breve presentazione del nostro Partner Tony Maimone Parrucchieri
Buone Feste Dal Team Tony Maimone Parrucchieri
Did you know that Wyoming is 324 times larger than the city of New York, but only has a population that is 14 times smaller than New York City? Of course I realize that Wyoming is a whole state, and NYC is just a city (the nations biggest in fact), but it's kind of astonishing that one city can have 14 times more people than a whole state that dwarfs it in size. Now you probably hardly ever hear about the state of Wyoming, but it's growing..and beautiful and affordable. So then today's video looks at why nobody lives in Wyoming, because for it's size and scale Wyoming has very very few residents, not when compared to other states, but when compared to cities. Subscribe to Something Different: https://www.youtube.com/@SomethingDifferentFilms/featured?sub_confirmation=1
Get Nebula using my link for 40% off an annual subscription: https://go.nebula.tv/wendover Watch the Logistics of X: https://nebula.tv/thelogisticsofx Youtube: http://www.YouTube.com/WendoverProductions Instagram: http://Instagram.com/sam.from.wendover Twitter: http://www.Twitter.com/WendoverPro Sponsorship Enquiries: [email protected] Other emails: [email protected] Reddit: http://Reddit.com/r/WendoverProductions Writing by Christine Benedetti, Corinne Neustadter, Sam Denby, and Tristan Purdy Editing by Alexander Williard Animation led by Max Moser Sound by Graham Haerther Thumbnail by Simon Buckmaster
Did you know that Wyoming has the smallest population of any state in the US? In this video, we'll dive into the reasons nobody lives in Wyoming and what life is like in this sparsely populated state. From its harsh climate to its lack of big cities, you'll discover why Wyoming has a unique way of life that is not for everyone. If it was more people would be living in Wyoming. Why nobody lives in Wyoming. Do you need a local Realtor for the area you want to move to? I have teamed up with HomeAndMoney.com to help you find one that suits your needs. Use this link: https://homeandmoney.com/briggs/ Join to help support this channel: https://www.youtube.com/channel/UCecPJBL6E1PVky1-gj6KH5g/join #UnitedStates
Check out all the places seen in this video: https://www.touropia.com/best-places-to-visit-in-wyoming/ With nearly half of Wyoming designated as public land, the Cowboy State is the ideal destination for anyone who wants to explore the dramatic natural beauty of the American West. The most sparsely populated state in the Union, Wyoming is filled with spectacular landscapes, ranging from the thermal geysers of Yellowstone to the jagged mountain peaks of Grand Teton. The mountainous state is rightfully proud of its Wild West heritage too. Whether watching a bronco-busting rodeo or rollicking the night away at a country-music dance hall, it’s clear that cowboy culture is alive and well in Wyoming.
But I'd still rather live here than in a place with oppressive heat or a million people. Give me the wind and wide open spaces any day. ;)
Why Wyoming is so empty? Despite being the 10th largest state in the USA, its vast landscapes remain sparsely populated. In this video, we delve into the fascinating reasons behind Wyoming's low population density. 🇺🇸 Wyoming boasts immense size, surpassing even many European countries like the United Kingdom, Romania, and Greece. Yet, with only half a million residents, it stands as the least populated state in America. Surprisingly, even Alaska, known for its rugged terrain, hosts more inhabitants. 😱 Comparing Wyoming to its neighbor, Colorado, reveals a stark contrast. While both states share similar sizes, Colorado boasts ten times the population. But what factors contribute to this stark demographic difference? Delving into history, we find clues dating back to 1858 when Colorado exp...
The Best Places to Live in Rural Wyoming after I Visited All 11 Cities in the Least Populated State! Get 20% OFF + Free International Shipping with promo code FHTH at https://manscaped.com! #manscapedpartner #fathersday Wyoming is one of the most Beautiful, and in my opinion, BEST States to Live in America in 2024... So while there are many reasons Why "Nobody" Lives in Wyoming, I went to EVERY "City" and Town with over 10,000 residents in the state... including Cheyenne, Casper, Laramie, Rock Springs, Gillette, Sheridan, Jackson, Riverton, Lander, and Cody... And Ranked them from Worst to Best! ➽ Join our OFFICIAL Discord Server!: https://discord.com/invite/r2aYWeaXeq
Hiçbir Amerikalının gitmek ve yaşamak istemediği eyalet Wyoming hakkında 11 ilginç bilgi. Amerika'nın gizemli batı ortasında yer alan bu eyaletin sıra dışı özelliklerini keşfedeceksiniz. Wyoming nasıl bir eyalet diye merak ediyorsunuz bu videoyu mutlaka izleyin. Wyoming belgeseli tarzındaki bu içerikte birbirinden ilginç bilgiler sizi bekliyor.
Si te gustó el video dale Like 👍 y suscríbete al canal para ver más videos de lugares turísticos en Estados Unidos! 🚀 😀 Suscríbete para ayudar al canal: https://www.youtube.com/channel/UCsGib0FoSy_jXxLMfEy1pbQ?sub_confirmation=1 📍 Para más información visita nuestro sitio web: https://turismoenusa.com 🗽 Turismo en USA ¡Muchas gracias!😀
Buckle up, adventurers, because we're about to take a wild ride through the rugged terrain, real estate, people, and lifestyle of Wyoming! 🌄 This ain't your average travel guide – we're diving deep into the nitty-gritty, the quirks, and the honest truths that might make you say, "Whoa, Wyoming, maybe you're not for me." 🤨 From bone-chilling winters to a pace of life that's slower than a tortoise on vacation, we're covering it ALL. ❄️🐢 But hey, don't click away just yet! This video is also a celebration of Wyoming's unique charm and the folks who call it home. ❤️ Whether you're a city slicker daydreaming of wide-open spaces or a curious soul wondering what life's like in the Cowboy State, this video is your ultimate reality check. 🤠 So grab a cup of coffee (or a shot of whiskey, if you're...
If you enjoyed this video, please consider joining my Patreon to help create more videos like this! https://www.patreon.com/PartTimeExplorer To give a one-time tip, please visit: https://www.historicalfx.com/support The monstrous coal-hauling Schooner "Wyoming", built by Percy and Small in Bath, Maine, was the biggest wooden ship to sail the seas. On a routine voyage bringing coal to Saint John, New Brunswick, she disappeared. The Maine Maritime Museum has an excellent exhibit on the vessel, showing artifacts, models, and photographs of her.
If you enjoyed this video, please consider joining my Patreon to help create more videos like this! https://www.patreon.com/PartTimeExplorer To give a one-time tip, please visit: https://www.historicalfx.com/support Though there isn't much left of her, the Cora F. Cressy's remains are of the largest wooden schooner still in existence. This 120 year old vessel is acting as a breakwater in Maine, rotting away and settling into the silt. Let's take a quick tour of her site and look back on her history while there's still something left to see of her. Special thanks to the Maine Maritime Museum for all their ongoing hard work to keep the story of these ships alive. https://www.mainemaritimemuseum.org/
Peter Nordlander captured the moment the historic schooner 'Mary E,' built in 1906, capsized Friday afternoon with 18 people on board.
Maine is home to two of the oldest schooners still in commercial use, the Lewis R. French and the Stephen Taber. Both have been sailing for 150 years.
If you enjoyed this video, please consider joining my Patreon to help create more videos like this! https://www.patreon.com/PartTimeExplorer To give a one-time tip, please visit: https://www.historicalfx.com/support By East Point Lighthouse, near Heislerville, New Jersey, sits a wreck that, despite a fairly straight-forward story, is the source of several rumors about its origins. Some say it was the tug boat "Hazel Moore", wrecked in a storm. Others say that it's a sloop from the War of 1812. The truth is a bit less glamorous, but the "Fremont" is none the less a very interesting wreckage to survey and study. Special thanks to Nelson "Captain" Klein for all of the information and some photographs, and the Maurice River Historical Society for pointing me in the right direction. Please l...
The world's oldest intact shipwreck has been discovered in the Black Sea after the most technologically advanced search ever. Carbon dated to 500 BC, the ship is among 72 found at the bottom of the sea and may have been depicted on an ancient vase. SUBSCRIBE to our YouTube channel for more videos: http://www.youtube.com/skynews Follow us on Twitter: https://twitter.com/skynews Like us on Facebook: https://www.facebook.com/skynews Follow us on Instagram: https://www.instagram.com/skynews For more content go to http://news.sky.com and download our apps: Apple: https://itunes.apple.com/gb/app/sky-news/id316391924?mt=8 Android https://play.google.com/store/apps/details?id=com.bskyb.skynews.android&hl=en_GB
Horrific Sinking of the Largest Wooden Ship in History | Schooner Wyoming 1924 The wind whispers a tune of the fateful day the Schooner Wyoming set sail, never to be seen again. On March 10, 1924, the largest wooden ship in history embarked on a treacherous journey that would end in tragedy.__ Plagued by strong winds and tumultuous waves, the Schooner Wyoming met her fate and sank beneath the churning waves. What happened? How did the Largest Wooden Schooner in history Sink? What was the design and construction of Wyoming like? What lessons can we learn from the Story? LET'S DIVE IN!! Wyoming was a six-masted schooner constructed in Bath, Maine, in 1909 out of American wood by the shipbuilding company Percy & Small. At 450 feet from jib-boom tip to spanker-boom tip, Wyoming was the long...
documentary about the American schooners sailboats,, #sailing #sailinglife #sail #sea #boat #yacht #sailboat #yachting #travel #ocean #boatlife #sailor #yachtlife #boating #sunset #summer #boats #sailingboat #sailingphotography #sailingyacht #nature #instasailing #adventure #yachts #catamaran #photography #beach #sailinginstagram #espa #bhfyp
The Wyoming class, last 12-inch battleships of the United States Navy, are todays subject. Want to support the channel? - https://www.patreon.com/Drachinifel Want to talk about ships? https://discord.gg/TYu88mt Music - https://www.youtube.com/c/NCMEpicMusic
Here is a look back at Seattle's historic tall ship Wawona, which sailed from 1897 to 1947 as a lumber carrier and fishing vessel based in Puget Sound. I created this documentary in 1999, while she was in care of the Northwest Seaport museum. Sadly, she was disassembled in 2009 and no longer graces the Seattle waterfront.
Tony Maimone is a bass player, producer, and recording engineer, who lives in Brooklyn, New York.
He was a member of Pere Ubu from the mid-1970s to the early 1990s, often playing with drummer Scott Krauss. The duo were dubbed by a critic "one of the great unheralded rhythm sections in all of rock". He is known as one of the former members of They Might Be Giants from 1993 until 1995.
Maimone also has worked with Bob Mould, Frank Black, The Mekons, They Might Be Giants, and Jon Langford.
Maimone currently resides in Brooklyn, New York, where he owns and operates Studio G Brooklyn, a recording studio with Joel Hamilton. He has produced and/or engineered/played on albums for artists including No Grave Like The Sea, The Book of Knots, Ani DiFranco, The Dixons and The Shondes, Felili, Destronauts, Laura Brennemen, Will James, Bob Kidney, Lord Ward, Peg Simone, Gachupin, Jon Langford, Cock Lorge, Sam Johnson, Steve Northeast, Shark?, Golem, Revel Switch, Mike Watt, Megan Reilly, Zigitros, Fai Baba,and CC Carana.