- published: 04 Feb 2008
- views: 157186
'+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; })); }); -->
F.M. Cornog is an American songwriter, singer, self-taught musician, and home-recordist who records under the name East River Pipe. The New York Times describes Cornog as "the Brian Wilson of home recording."
Cornog was born in Norfolk, Virginia, and raised in Summit, New Jersey. After high school, Cornog worked a series of menial jobs before succumbing to alcoholism, drug abuse, mental illness, and eventual homelessness, ending up in the Hoboken train station.
During this time he met Astoria, Queens-resident Barbara Powers, and with Powers' support and label (Hell Gate), Cornog released some home-recorded cassettes and 7" singles under the name East River Pipe, which he chose after observing a sewage pipe spewing out raw waste into the East River. These initial 7" singles attracted the attention of UK-based Sarah Records who released his records from 1993 to 1996, making Cornog one of the few American artists ever signed to the label.
In the U.S., Cornog released his first LP, Shining Hours In A Can, on the Chicago-based micro-indie Ajax Records in 1994. A year later, he found a more permanent home on Merge Records, the Chapel Hill-based indie run by Mac McCaughan and Laura Ballance. Merge released Poor Fricky (1995), Mel (1996), The Gasoline Age (1999), Shining Hours In A Can (2002;reissue), Garbageheads On Endless Stun (2003), What Are You On? (2006), and We Live In Rented Rooms (2011).
The East River is a salt water tidal strait in New York City. The waterway, which is actually not a river despite its name, connects Upper New York Bay on its south end to Long Island Sound on its north end. It separates Long Island – including the boroughs of Queens and Brooklyn – from the Bronx on the North American mainland, and the island of Manhattan. Because of its connection to Long Island Sound, it was once also known as the Sound River. The tidal strait changes its flow direction frequently.
The strait was formed approximately 11,000 years ago at the end of the Wisconsin glaciation. The distinct change in the shape of the strait between the lower and upper portions is evidence of this glacial activity. The upper portion (from Long Island Sound to Hell Gate), running largely perpendicular to the glacial motion, is wide, meandering, and has deep narrow bays on both banks, scoured out by the glacier's movement. The lower portion (from Hell Gate to New York Bay) runs north-south, parallel to the glacial motion. It is much narrower, with straight banks. The bays that exist (or existed before being filled in by human activity), are largely wide and shallow.
The East River is a tributary of the New River, 24 miles (39 km) long, in southern West Virginia and southwestern Virginia in the United States. Via the New, Kanawha and Ohio rivers, it is part of the watershed of the Mississippi River, draining an area of 76.4 square miles (198 km2) in the Ridge-and-Valley Appalachians.
The East River rises from East River Mountain in Mercer County, West Virginia, in the eastern part of the city of Bluefield, and flows generally east-northeastward through southern Mercer County, generally in parallel to East River Mountain to its south, through the unincorporated communities of Ada, Ingleside, and Hardy; the town of Oakvale; and the unincorporated communities of Kellysville and Willowton. It flows into the New River soon after entering Virginia, in the town of Glen Lyn in Giles County. The stream is paralleled for much of its course upstream of Oakvale by West Virginia Route 112, and downstream of Oakvale by U.S. Route 460.
East River is a 38.3-mile-long (61.6 km)stream in central Colorado. It flows south from Emerald Lake in the Maroon Bells Wilderness to a confluence with the Taylor River that forms the Gunnison River.
East River Pipe - Make A Deal With The City
Provided to YouTube by Merge Media Ltd Hell Is an Open Door · East River Pipe The Gasoline Age ℗ 1999 Merge Records Released on: 1999-08-10 Composer: F.M. Cornog Auto-generated by YouTube.
Provided to YouTube by Merge Media Ltd Make a Deal With the City · East River Pipe Shining Hours in a Can ℗ 2002 Merge Records Released on: 2002-03-19 Composer: F.M. Cornog Auto-generated by YouTube.
Provided to YouTube by Ingrooves Miracleland · East River Pipe Red Hot + Bothered ℗ 1994 Hell Gate Productions Released on: 1995-11-01 Composer, Writer: Frederick Cornog Auto-generated by YouTube.
Provided to YouTube by Merge Media Ltd My Life Is Wrong · East River Pipe Shining Hours in a Can ℗ 2002 Merge Records Released on: 2002-03-19 Composer: F.M. Cornog Auto-generated by YouTube.
Provided to YouTube by Merge Media Ltd Druglife · East River Pipe What Are You On? ℗ 2006 Merge Records Released on: 2006-01-24 Composer: F.M. Cornog Auto-generated by YouTube.
Provided to YouTube by Merge Media Ltd Shiny, Shiny Pimpmobile · East River Pipe The Gasoline Age ℗ 1999 Merge Records Released on: 1999-08-10 Composer: F.M. Cornog Auto-generated by YouTube.
Provided to YouTube by Merge Media Ltd Where Does All the Money Go? · East River Pipe Garbageheads on Endless Stun ℗ 2003 Merge Records Released on: 2003-09-09 Composer: F.M. Cornog Auto-generated by YouTube.
Provided to YouTube by Merge Media Ltd Let's Kill the Matador · East River Pipe The Gasoline Age (Deluxe Reissue) ℗ 2014 Merge Records Released on: 2014-10-07 Composer: F.M. Cornog Lyricist: F.M. Cornog Music Publisher: Hawk Be Out Music (BMI) Auto-generated by YouTube.
http://www.leonidandfriends.band/tour.html https://itunes.apple.com/us/artist/leonid-friends/1190819756 https://play.google.com/store/search?q=Leonid%20%26%20Friends&c=music&hl=en https://www.amazon.com/s?k=Leonid+%26+Friends&i=digital-music&ref=nb_sb_noss https://store.cdbaby.com/cd/leonidfriends2 https://www.facebook.com/Leonidandfriends/ https://www.facebook.com/leonid.vorobyev http://vk.com/lvandfriends «Восточная река» - в знак признательности одной из величайших групп на Земле! Leonid Vorobyev – transcript of the musical source, bass, producing, mixing, mastering, video-montage Igor Dzhavad-Zade – drums Sergey Kashirin – guitar, lead vocal Vlad Senchillo – synthesizers, backing vocal Andrey Zyl – trumpet Maxim Likhachev - trombone Oleg Kudryavtcev – tenor sax Serge Tiagnyriadno (K...
Here are some alternatives to using fresh bait to fish in the East River NYC. Some people only have a short amount of time while on vacation in NYC or you don't want to wait for the bait shop to open up. These baits work great. Gear links below earn a commission and directly support the channel. Power Pro Braid 10lb - https://amzn.to/3yrz3zy Daiwa Fluorocarbon 25lb - https://amzn.to/3A8Or4m G Loomis GCX Rod - https://amzn.to/3WweLgm Gerber Saltwater Scissors - https://amzn.to/3WxNlqj Penn Clash II Spinning Reel 2000 - https://amzn.to/3WTsGyA Berkley Gulp! Swimming Mullet Chartreuse - https://amzn.to/3Wu5QMt Berkley Gulp! Sandworm - https://amzn.to/4fx0Nn9 Berkley Gulp! Shrimp - https://amzn.to/4cfErUb Firetiger Gulp! Jerk Shad - https://amzn.to/3T2iyRN VMC Inline Single 4X Coast...
For years following World War II, it was unthinkable to swim in New York City’s harbor. Today, though, decades of effort and hard work have made a big difference – and the water regularly tests clean. But… is it safe to swim in? Further reading: UrbanSwim https://urbanswim.org/ New York Open Water https://www.nyopenwater.org/ InsideHook https://www.insidehook.com/daily_brief/science/new-york-harbor-cleanest-civil-war Riverkeeper https://www.riverkeeper.org/water-quality/testing/what/ Outside https://www.outsideonline.com/outdoor-adventure/water-activities/swimming-new-york-city-survival-guide/ Curbed https://ny.curbed.com/2020/2/3/21120114/east-river-swimming-two-trees-bjarke-ingels-group https://ny.curbed.com/2019/12/12/21012785/river-street-williamsburg-waterfront-park-two-trees-m...
Artist: The Brecker Brothers Title: East River Broadcast date: 6-1-1979 TV program: TopPop Video rights: AVRO http://www.avro.tv gives you easy access to unique footage. . TopPop was the first regular dedicated pop music TV show in the Dutch language area. Dutch broadcaster AVRO aired the programme weekly, from 1970 to 1988. Presenter Ad Visser hosted the show for its first fifteen years. World famous music artists performed on TopPop: ABBA, 10CC, Bee Gees, The Jacksons, David Bowie, Earth & Fire, Boney M, Smokie, KC & The Sunshine Band, Chick, Donna Summer, Rod Stewart, and many many more. Watch our great music videos ❯ https://goo.gl/1mU5Ns More TopPop? Subscribe here ❯ https://goo.gl/GggHDi More info on Wikipedia ❯ http://goo.gl/RO1s74 Great images ❯ https://goo.gl/HuIwTy PLEASE NO...
Provided to YouTube by Arista East River · The Brecker Brothers Heavy Metal Be-Bop ℗ 1978 Arista Records LLC Released on: 1978-09-01 Arranger, Composer, Lyricist, Producer: Neil Jason Arranger, Composer, Lyricist, Producer: Kash Monet Composer, Lyricist: Mark Mazur Engineer: Bob Clearmountain Auto-generated by YouTube.
A real-life treasure hunt is underway in New York City, but not for gold or silver. Dive teams are searching for something even rarer - the priceless bones of some prehistoric creatures. Nancy Chen reports. #news #nyc #eastriver "CBS Saturday Morning" co-hosts Jeff Glor, Michelle Miller and Dana Jacobson deliver two hours of original reporting and breaking news, as well as profiles of leading figures in culture and the arts. Watch "CBS Saturday Morning" at 7 a.m. ET on CBS and 8 a.m. ET on the CBS News app. Subscribe to "CBS Mornings" on YouTube: https://www.youtube.com/CBSMornings Watch CBS News live: https://cbsn.ws/1PlLpZ7c Download the CBS News app: https://cbsn.ws/1Xb1WC8 Follow "CBS Mornings" on Instagram: https://bit.ly/3A13OqA Like "CBS Mornings" on Facebook: https://bit.ly/...
Prod by Homunculu$ & Nova D/DOP:Riki Yasuno(FINDOUT) PM:Rikuto Yoshikawa(FINDOUT) PA:Ryuji Kainuma P : Riki Yasuno(FINDOUT) Production:FINDOUT ------------------------------------------------- Lyrics (Eric.B.Jr) 俺怒らすな ヘイターに伝えろ シートベルトなし 飛ばすぜ 生意気 LVベルト かかってこいよ 探す 夢のありかとアイツ 探す 無くしたチェーンと愛情 比べんな猫耳の奴らと びびらしちゃうぞガチ 気分悪い しゃべんなビッチ 俺が負けて欲しいらしい 気に入ってる女を呼ぶ胸に金かけてる奴が良い かっさらおう今年をついで奴の女達も ブサイクを抱いてるコレは薬のせいなんだ 本当に やりすぎ遊び ニュースに友達 俺はいつか mステだな でも未だにファンですら敵に見えたりしちゃうんだガチ あの女が煽るが奴は潰さず今はラップに夢中 oh.oh.oh 逃げんなよチキン 向かわせるダチ あのトラブルは 必然らしい 下手に名前出すな 最近も色々あったよ ラッパーだから何? お前のことなんて知らないけど 聞けよ俺の事Siri あとはお前の女にも かましすぎたかも フットでも oh.oh 寝取ってしまった奴のビッチも (Lil Gori) jungleから来た俺がlilgoliだ 聞けよこのflow Highになったせいか 灰に変わっちまったパイセン カッコつけの兄貴もツケが回って 金あっても flexさえほらできねぇ East jungle シノギはBlack アイツらはぐる 気持ちならBlue 心押し殺す 俺はanimal 野生のように生きてる ほ...
Provided to YouTube by Elektra Asylum East River Drive · Grover Washington Jr. Come Morning ℗ 1981 Elektra/Asylum Records Unknown: Anthony MacDonald Unknown: Eddie Heath Guitar: Eric Gale Mixer, Producer, Saxophone: Grover Washington Unknown: Kendall Brown Unknown: Lamont Moreno Bassoon: Marcus Miller Synthesiser: Paul Griffin Mixer, Percussion, Producer: Ralph Macdonald Engineer, Mixer: Richard Alderson Drums: Steve Gadd Conductor: William Eaton Composer: Grover Washington Arranger: William Eaton Auto-generated by YouTube.
Thank you for joining us! Our prayer is that you would fall more in love with Jesus today! If you'd like to hear more sermons, or learn more about East River, visit: http://www.deeperlives.com
Hundreds of ships had sunk in this treacherous tidal strait on the East River separating Astoria, Queens from the area from Randall's Island and Wards Island - a section of land made up of two separate islands that are how joined by a landfill. Many New Yorkers refer to Hell Gate as Hell's Gate and believed it was so named because of the extremely choppy water that results from the collision of the tide coming in the and flow going out on the East River and the Harlem River. Actually though, the name "Hell Gate" is a corruption of the Dutch phrase Hellegat, which could mean either "hell's hole" or "bright gate/passage". The name was originally applied to the entirety of the East River. The strait was described in the journals of Dutch explorer Adriaen Block, who is the first European k...
F.M. Cornog is an American songwriter, singer, self-taught musician, and home-recordist who records under the name East River Pipe. The New York Times describes Cornog as "the Brian Wilson of home recording."
Cornog was born in Norfolk, Virginia, and raised in Summit, New Jersey. After high school, Cornog worked a series of menial jobs before succumbing to alcoholism, drug abuse, mental illness, and eventual homelessness, ending up in the Hoboken train station.
During this time he met Astoria, Queens-resident Barbara Powers, and with Powers' support and label (Hell Gate), Cornog released some home-recorded cassettes and 7" singles under the name East River Pipe, which he chose after observing a sewage pipe spewing out raw waste into the East River. These initial 7" singles attracted the attention of UK-based Sarah Records who released his records from 1993 to 1996, making Cornog one of the few American artists ever signed to the label.
In the U.S., Cornog released his first LP, Shining Hours In A Can, on the Chicago-based micro-indie Ajax Records in 1994. A year later, he found a more permanent home on Merge Records, the Chapel Hill-based indie run by Mac McCaughan and Laura Ballance. Merge released Poor Fricky (1995), Mel (1996), The Gasoline Age (1999), Shining Hours In A Can (2002;reissue), Garbageheads On Endless Stun (2003), What Are You On? (2006), and We Live In Rented Rooms (2011).
Let's go sit down by the river
Me and my best friend
I see tents and smoke in the distance
I see acres of lands between me and fear
We're walking down towards the river
Me and my best friend
And as I dip myself into the water
Free myself of all that is tense
For these moments, I digress
You know
You know
You know just where to find me
You know
You know