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

Toad's Place

Toad's Place is a concert venue and nightclub located in New Haven, Connecticut.

History

The building, located on York Street down the street from Ashley's Ice Cream and Blue State Coffee and across an alley from Mory's Temple Bar, was the original location of the Yale Co-op. During the 1960s, it was a popular restaurant called Hungry Charlie's and then the location of Caleb's Tavern. In 1974, Michael Spoerndle, formerly a student at the Culinary Institute of America, rented the building for a French and Italian restaurant, which opened in March 1975. He named it Toad's Place, after a childhood joke. He said, "When my parents were going out to dinner, they would tell me they were going to such-and-such, and I thought it would be funny if they said, 'We're going to Toad's Place.' Plus, people who didn't go out and stayed at home, we'd call them 'toads.' It was the equivalent of a couch potato." In 1976, Spoerndle turned the restaurant into a live music venue, working with a local musician named Peter Menta to bring in bands. Willie Dixon, Muddy Waters, John Lee Hooker and Koko Taylor were some of the first performers. In 1976, Brian Phelps joined as manager and eventually co-owner. Phelps took control in 1995, after Spoerndle's numerous problems with alcohol and drug addiction. Spoerndle died on May 6, 2011.

Anthony Green

Anthony Green may refer to:

  • Anthony Green (musician) (born 1982), lead vocalist of Circa Survive and ex-vocalist for Saosin
  • Anthony Green (actor) (born 1970), British actor
  • Anthony Green (painter) (born 1939), English realist painter and printmaker
  • Antony Green (born 1960), election commentator
  • Anthony Green (diplomat) -- see Representative of Saint Helena, London
  • See also

  • Tony Green (disambiguation)
  • Anthony Green (musician)

    Anthony Green (born April 15, 1982) is an American musician from Doylestown, PA. He is currently the lead singer of Circa Survive and Saosin, while also maintaining a solo career. He was previously in the bands The Sound of Animals Fighting, Audience of One, Jeer at Rome, High and Driving, and Zolof the Rock and Roll Destroyer. Green is known for his high tenor vocal range.

    Career

    Audience of One

    Anthony Green's first band formed in 1997 while he was in high school with classmate and musician Tommy Dougherty (Junction 232). The band originally had Dougherty on guitar and Green on bass and vocals. Eventually, they recruited drummer Evan Madden. Green wanted to name the band 'Saosin', but Dougherty and Madden decided against it. Before settling on the "Audience of One" name, they played a few shows under the name "Handsome Pete" in 1998 and one show under the name "The Bill Bixby Experience". Due to problems with Evan's availability to practice and play shows, they sought out a new drummer.

    Tony Green (footballer)

    Anthony "Tony" Green (born 13 October 1946) is a Scottish former professional footballer.

    Club career

    Glasgow-born Green began his career at Albion Rovers in his native Scotland.

    Blackpool

    He was transferred south of the border to Blackpool for an initial £13,500 in May 1967 on a four-year contract. Albion would receive a further £2,000 when he had played in twenty first-team games.

    Green suffered an injury that kept him out of the game for a year. His return to the fold came on 19 September 1970 for the visit of Everton to Bloomfield Road.

    Blackpool Hall of Fame

    Green was inducted into the Hall of Fame at Bloomfield Road, when it was officially opened by former Blackpool player Jimmy Armfield in April 2006. Organised by the Blackpool Supporters Association, Blackpool fans around the world voted on their all-time heroes. Five players from each decade are inducted; Green is in the 1960s.

    Newcastle United

    In 1971, after Green had put in a transfer request,Newcastle United came in for his services with an offer of £150,000, in a part-exchange deal involving Keith Dyson. Becoming Newcastle's second most expensive signing, after Malcolm Macdonald who was signed the previous summer from Luton Town for £180,000. On 2 September 1972, Green suffered a knee injury which ultimately ended his career at the age of 25, 33 games and three goals into his Magpies career; he had suffered a cartilage injury, and was never to play professionally again. Green later attributed the injury to a tackle by Crystal Palace's Mel Blyth but felt that any contact was accidental.

    Podcasts:

    • Jeff Lorber - Toad's Places #1

      Java Jazz Festival 2006 By: Java Festival Production

      published: 30 Dec 2010
    • Toad's Place | Saturday Night College Dance Party 2019

      Toad's Place, New Haven CT http://www.toadsplace.com/ DJs Action & TONNIC Follow me on Soundcloud Official Channel | https://soundcloud.com/tonnicmusic1 Edits & Bootlegs | https://soundcloud.com/tonnicbootlegs

      published: 06 Jun 2019
    • Chris Webby - 10th Annual Black Friday Show at Toad’s Place (Official Documentary)

      See alternate perspectives of Chris Webby's 10th Annual Black Friday Show at Toad's Place from 2019. The film provides a rare look at never-before-seen footage and interviews. Directed by Rook Produced by Rai Angle & Johnattan Beamonte Edited by Stephen Bisaccia Follow Chris Webby: https://www.chriswebby.com https://www.twitter.com/chriswebby https://instagram.com/chriswebby https://www.facebook.com/chriswebby https://soundcloud.com/chriswebby #ChrisWebby #BlackFriday #ToadsPlace

      published: 28 Nov 2020
    • Pop Smoke Live @ Toads Place, New Haven CT

      All Video Inquiries : finallyrichbookings@gmail.com Metro 28 Contact : metro28info@gmail.com Website : tribepending.com Instagram : https://www.instagram.com/28steppin/ Twitter : https://twitter.com/28steppin Soundcloud : https://soundcloud.com/metro28 Apple : https://itunes.apple.com/us/artist/metro-28/1336230478 Spotify: https://open.spotify.com/artist/5wJ6FYQxSdRMVPRQvp4tOK Clothing Line : https://www.instagram.com/bozotribe/?hl=en ALL PLATFORMS SEARCH : METRO 28 FOR MUSIC

      published: 15 Dec 2019
    • Jeff Lorber Fusion - Toad's Place

      from their album water sign

      published: 21 Jul 2008
    • Toad's Place tour part 1

      Scheduling bands and creating promotional material for shows About a year after this was filmed, the conference room was removed for a secondary bar and entertainment area. The art room became smaller as it transitioned from painted window posters to printing them from a computer. The following year, the back game room (in part 2) became the tropically themed "Rainforest room" with a waterfall.

      published: 11 Jan 2024
    • Toad's Place '94

      Provided to YouTube by Universal Music Group Toad's Place '94 · Jeff Lorber West Side Stories ℗ 1994 The Verve Music Group, a Division of UMG Recordings, Inc. Released on: 1994-01-01 Composer Lyricist: Jeff Lorber Auto-generated by YouTube.

      published: 30 Jul 2018
    • Toad's Place founder dies

      The founder of Toad's Place in New Haven passed away.

      published: 07 May 2011
    • 🔴LIVE- HALFWAY THROUGH PAPER MARIO

      GOD IS GREAT ALL THE TIME. AMEN #gaming #funnymoments #varietystreamer #live #livestream ——————————————————————————— New Video every Saturday! Stay Up to Date With Me on Instagram! https://www.instagram.com/logan_mkf101/ Support the stream: https://streamlabs.com/mkf101 Ratio Me on Twitter! https://mobile.twitter.com/logan_mkf101 Follow my TikTok For Funny Clips! www.tiktok.com/@mariokartfan101yt ——————————————————————————— Thanks For Watching! See you Next Saturday!

      published: 26 Jun 2024
    • Bob Dylan Toads Place New Haven Ct 1-12-1990

      Bob Dylan Toads Place New Haven Ct 1-12-1990 Set 1 Walk a Mile in My Shoes One More Cup of Coffee (Valley Below) Rainy Day Women #12 & 35 Trouble No More Been All Around This World Political World Where Teardrops Fall Tears of Rage I Dreamed I Saw St. Augustine It Takes a Lot to Laugh, It Takes a Train to Cry Everybody's Movin' Set 2 Watching the River Flow What Was It You Wanted Oh Babe, It Ain't No Lie Lenny Bruce I Believe in You Man of Peace Across the Borderline Leopard-Skin Pill-Box Hat All Along the Watchtower Set 3 Tight Connection to My Heart (Has Anybody Seen My Love) Political World What Good Am I? Wiggle Wiggle Stuck Inside of Mobile With the Memphis Blues Again Paid the Price Help Me Make It Through the Night Man in the Long Black Coat Congratulations Dancing in the Dark (I ...

      published: 27 Jun 2017
    developed with YouTube
    Jeff Lorber - Toad's Places #1
    7:34

    Jeff Lorber - Toad's Places #1

    • Order:
    • Duration: 7:34
    • Uploaded Date: 30 Dec 2010
    • views: 179736
    Java Jazz Festival 2006 By: Java Festival Production
    https://wn.com/Jeff_Lorber_Toad's_Places_1
    Toad's Place | Saturday Night College Dance Party 2019
    0:42

    Toad's Place | Saturday Night College Dance Party 2019

    • Order:
    • Duration: 0:42
    • Uploaded Date: 06 Jun 2019
    • views: 1254
    Toad's Place, New Haven CT http://www.toadsplace.com/ DJs Action & TONNIC Follow me on Soundcloud Official Channel | https://soundcloud.com/tonnicmusic1 Edits & Bootlegs | https://soundcloud.com/tonnicbootlegs
    https://wn.com/Toad's_Place_|_Saturday_Night_College_Dance_Party_2019
    Chris Webby - 10th Annual Black Friday Show at Toad’s Place (Official Documentary)
    58:26

    Chris Webby - 10th Annual Black Friday Show at Toad’s Place (Official Documentary)

    • Order:
    • Duration: 58:26
    • Uploaded Date: 28 Nov 2020
    • views: 128572
    See alternate perspectives of Chris Webby's 10th Annual Black Friday Show at Toad's Place from 2019. The film provides a rare look at never-before-seen footage and interviews. Directed by Rook Produced by Rai Angle & Johnattan Beamonte Edited by Stephen Bisaccia Follow Chris Webby: https://www.chriswebby.com https://www.twitter.com/chriswebby https://instagram.com/chriswebby https://www.facebook.com/chriswebby https://soundcloud.com/chriswebby #ChrisWebby #BlackFriday #ToadsPlace
    https://wn.com/Chris_Webby_10Th_Annual_Black_Friday_Show_At_Toad’S_Place_(Official_Documentary)
    Pop Smoke Live @ Toads Place, New Haven CT
    10:02

    Pop Smoke Live @ Toads Place, New Haven CT

    • Order:
    • Duration: 10:02
    • Uploaded Date: 15 Dec 2019
    • views: 410740
    All Video Inquiries : finallyrichbookings@gmail.com Metro 28 Contact : metro28info@gmail.com Website : tribepending.com Instagram : https://www.instagram.com/28steppin/ Twitter : https://twitter.com/28steppin Soundcloud : https://soundcloud.com/metro28 Apple : https://itunes.apple.com/us/artist/metro-28/1336230478 Spotify: https://open.spotify.com/artist/5wJ6FYQxSdRMVPRQvp4tOK Clothing Line : https://www.instagram.com/bozotribe/?hl=en ALL PLATFORMS SEARCH : METRO 28 FOR MUSIC
    https://wn.com/Pop_Smoke_Live_Toads_Place,_New_Haven_Ct
    Jeff Lorber Fusion - Toad's Place
    5:41

    Jeff Lorber Fusion - Toad's Place

    • Order:
    • Duration: 5:41
    • Uploaded Date: 21 Jul 2008
    • views: 91953
    from their album water sign
    https://wn.com/Jeff_Lorber_Fusion_Toad's_Place
    Toad's Place tour part 1
    7:49

    Toad's Place tour part 1

    • Order:
    • Duration: 7:49
    • Uploaded Date: 11 Jan 2024
    • views: 149
    Scheduling bands and creating promotional material for shows About a year after this was filmed, the conference room was removed for a secondary bar and entertainment area. The art room became smaller as it transitioned from painted window posters to printing them from a computer. The following year, the back game room (in part 2) became the tropically themed "Rainforest room" with a waterfall.
    https://wn.com/Toad's_Place_Tour_Part_1
    Toad's Place '94
    3:46

    Toad's Place '94

    • Order:
    • Duration: 3:46
    • Uploaded Date: 30 Jul 2018
    • views: 21770
    Provided to YouTube by Universal Music Group Toad's Place '94 · Jeff Lorber West Side Stories ℗ 1994 The Verve Music Group, a Division of UMG Recordings, Inc. Released on: 1994-01-01 Composer Lyricist: Jeff Lorber Auto-generated by YouTube.
    https://wn.com/Toad's_Place_'94
    Toad's Place founder dies
    2:22

    Toad's Place founder dies

    • Order:
    • Duration: 2:22
    • Uploaded Date: 07 May 2011
    • views: 2534
    The founder of Toad's Place in New Haven passed away.
    https://wn.com/Toad's_Place_Founder_Dies
    🔴LIVE- HALFWAY THROUGH PAPER MARIO
    2:35:40

    🔴LIVE- HALFWAY THROUGH PAPER MARIO

    • Order:
    • Duration: 2:35:40
    • Uploaded Date: 26 Jun 2024
    • views: 61
    GOD IS GREAT ALL THE TIME. AMEN #gaming #funnymoments #varietystreamer #live #livestream ——————————————————————————— New Video every Saturday! Stay Up to Date With Me on Instagram! https://www.instagram.com/logan_mkf101/ Support the stream: https://streamlabs.com/mkf101 Ratio Me on Twitter! https://mobile.twitter.com/logan_mkf101 Follow my TikTok For Funny Clips! www.tiktok.com/@mariokartfan101yt ——————————————————————————— Thanks For Watching! See you Next Saturday!
    https://wn.com/🔴Live_Halfway_Through_Paper_Mario
    Bob Dylan Toads Place New Haven Ct 1-12-1990
    4:02:33

    Bob Dylan Toads Place New Haven Ct 1-12-1990

    • Order:
    • Duration: 4:02:33
    • Uploaded Date: 27 Jun 2017
    • views: 26057
    Bob Dylan Toads Place New Haven Ct 1-12-1990 Set 1 Walk a Mile in My Shoes One More Cup of Coffee (Valley Below) Rainy Day Women #12 & 35 Trouble No More Been All Around This World Political World Where Teardrops Fall Tears of Rage I Dreamed I Saw St. Augustine It Takes a Lot to Laugh, It Takes a Train to Cry Everybody's Movin' Set 2 Watching the River Flow What Was It You Wanted Oh Babe, It Ain't No Lie Lenny Bruce I Believe in You Man of Peace Across the Borderline Leopard-Skin Pill-Box Hat All Along the Watchtower Set 3 Tight Connection to My Heart (Has Anybody Seen My Love) Political World What Good Am I? Wiggle Wiggle Stuck Inside of Mobile With the Memphis Blues Again Paid the Price Help Me Make It Through the Night Man in the Long Black Coat Congratulations Dancing in the Dark (I Heard That) Lonesome Whistle Confidential In the Garden Everything Is Broken Set 4 So Long, Good Luck and Goodbye Where Teardrops Fall Political World Peggy-O I'll Remember You Key to the Highway Joey Lay Lady Lay I Don't Believe You (She Acts Like We Never Have Met) When Did You Leave Heaven? Maggie's Farm Been All Around This World In the Pines Highway 61 Revisited Precious Memories Like a Rolling Stone
    https://wn.com/Bob_Dylan_Toads_Place_New_Haven_Ct_1_12_1990
    • ANTHONY GREEN - Dear Child (I've Been Dying To Reach You) [OFFICIAL MUSIC VIDEO]

      From the album AVALON - Available now: https://itunes.apple.com/us/album/avalon-deluxe-version/id284108857 Check out more of Photo Finish's releases here: https://www.youtube.com/playlist?list=PLE535ADF0209CDA0F http://anthonygreenschildren.com

      published: 18 Jul 2008
    • Anthony Green - You'll Be Fine (Official Music Video)

      Follow Anthony Green Instagram: https://www.instagram.com/anthonygreen666 Twitter: https://twitter.com/anthonygreen Facebook: https://www.facebook.com/anthonygreen Follow Memory Music Instagram: https://www.instagram.com/memorymusiclabel Twitter: https://twitter.com/memorymusic Facebook: https://www.facebook.com/memorymusiclabel Lyrics: I've gone out too far May not make it back How can I get through If you cringe at the sight And if I had something you wanted You would stay That's just the horrifying way I see it Shame Screaming like a whale from the love I've failed Dreaming of a way but you know my hands are tied Falling to the floor in a restless state Picking at my skin cause you know I can't be saved I may lose myself So you will be fine And if I had something you wanted You would ...

      published: 13 Jul 2016
    • Circa Survive's Anthony Green on Mental Health and Bipolar Disorder | Unmasked

      Circa Survive's Anthony Green opens up about managing bipolar disorder and his mental health. If you or a loved one is in need of mental health support visit https://soundmindlive.info/NAMI This is one of multiple videos in Sound Mind’s “Unmasked” mental health video portrait series. See more artists opening up about their mental health at https://www.soundmindlive.org/unmasked

      published: 26 May 2021
    • ANTHONY GREEN - She Loves Me So [OFFICIAL MUSIC VIDEO]

      The new album "Beautiful Things" is available now on iTunes: https://itunes.apple.com/us/album/beautiful-things-deluxe-version/id492495987 From the album AVALON - Available now: https://itunes.apple.com/us/album/avalon-deluxe-version/id284108857 http://anthonygreenschildren.com To get more music by Anthony Green, go here http://PFR.ec/AnthonyGreenMusic

      published: 15 Dec 2008
    • Anthony Green - 'Don't Dance' (Official Video)

      PURCHASE ANTHONY GREEN - BOOM. DONE. LP: https://anthonygreen.bandcamp.com/album/boom-done Follow Anthony Green Spotify: https://tinyurl.com/2p9hf34y Instagram: https://www.instagram.com/anthonygreen666 Facebook: https://www.facebook.com/anthonygreen Twitter: https://twitter.com/AnthonyGreen Video by Bob Sweeney Follow Born Losers Records on Instagram https://www.instagram.com/bornlosersrecords https://www.bornlosersrecords.com https://www.bornlosersrecords.bandcamp.com 2022 Born Losers Records

      published: 22 Apr 2022
    • Anthony Green - "Diamond Eyes" (Live at Studio 4)

      Anthony Green performing "Diamond Eyes" (originally by Deftones) live at Studio 4. Purchase 'Live at Studio 4': https://bit.ly/2Ge0vAz

      published: 11 Apr 2018
    • Anthony Green - Last Summer In America (Official Video)

      PURCHASE ANTHONY GREEN - LAST SUMMER IN AMERICA: https://anthonygreen.bandcamp.com/album/last-summer-in-america Follow Anthony Green Spotify: https://tinyurl.com/2p9hf34y Instagram: https://www.instagram.com/anthonygreen666 Facebook: https://www.facebook.com/anthonygreen Twitter: https://twitter.com/AnthonyGreen Video by Will Evans 2024 Born Losers Records https://www.bornlosersrecords.com https://www.instagram.com/bornlosersrecords https://www.bornlosersrecords.bandcamp.com #folk #folkmusic #folksong

      published: 15 Aug 2024
    • Keep Your Mouth Shut

      Provided to YouTube by BWSCD, Inc. Keep Your Mouth Shut · Anthony Green Would You Still Be In Love ℗ 2018 Memory Music Released on: 2018-06-01 Auto-generated by YouTube.

      published: 19 Dec 2019
    • Jum

      published: 03 Dec 2024
    • The Used - Heart-Shaped Box (Emo Nite w/ Anthony Green)

      Bert McCracken, Anthony Green & Joey Bradford (on guitar) performing "Heart-Shaped Box" by Nirvana at Emo Nite in Los Angeles on April 5, 2019. Subscribe: http://bit.ly/2uKbKMo Tour Dates: http://www.theused.net Follow: https://www.facebook.com/TheUsed/ https://twitter.com/WeAreTheUsed https://www.instagram.com/theused https://www.youtube.com/user/THEUSEDCHANNEL Listen: Spotify: https://spoti.fi/2zME6M1 iTunes: https://apple.co/2O02QmP Google Play: http://bit.ly/2L2bLGy Pandora: https://pdora.co/2LgXEfW Music: "A Box Full Of Sharp Objects" Members: Bert McCracken Jeph Howard Dan Whitesides Label: Hopeless Records

      published: 10 Apr 2019
    developed with YouTube
    ANTHONY GREEN - Dear Child (I've Been Dying To Reach You) [OFFICIAL MUSIC VIDEO]
    3:17

    ANTHONY GREEN - Dear Child (I've Been Dying To Reach You) [OFFICIAL MUSIC VIDEO]

    • Order:
    • Duration: 3:17
    • Uploaded Date: 18 Jul 2008
    • views: 1410592
    From the album AVALON - Available now: https://itunes.apple.com/us/album/avalon-deluxe-version/id284108857 Check out more of Photo Finish's releases here: https://www.youtube.com/playlist?list=PLE535ADF0209CDA0F http://anthonygreenschildren.com
    https://wn.com/Anthony_Green_Dear_Child_(I've_Been_Dying_To_Reach_You)_Official_Music_Video
    Anthony Green - You'll Be Fine (Official Music Video)
    4:38

    Anthony Green - You'll Be Fine (Official Music Video)

    • Order:
    • Duration: 4:38
    • Uploaded Date: 13 Jul 2016
    • views: 1111207
    Follow Anthony Green Instagram: https://www.instagram.com/anthonygreen666 Twitter: https://twitter.com/anthonygreen Facebook: https://www.facebook.com/anthonygreen Follow Memory Music Instagram: https://www.instagram.com/memorymusiclabel Twitter: https://twitter.com/memorymusic Facebook: https://www.facebook.com/memorymusiclabel Lyrics: I've gone out too far May not make it back How can I get through If you cringe at the sight And if I had something you wanted You would stay That's just the horrifying way I see it Shame Screaming like a whale from the love I've failed Dreaming of a way but you know my hands are tied Falling to the floor in a restless state Picking at my skin cause you know I can't be saved I may lose myself So you will be fine And if I had something you wanted You would stay That's just the horrifying way I see it If you really mean it If you really mean it You never have to go That's all I want Burning like a candle at both its ends Shining really bright but the warmth won't last the night Falling to the floor in a restless state Picking at my skin cause you know I can't be saved You say you wanted more I know you wanted more Doesn't mean a thing Mean a thing to me You said that you would change Everything's the same It takes too much for me It takes everything Shame Screaming like a whale from the love I've failed Dreaming of a way but you know my hands are tied Burning like a candle at both its ends Shining really bright but the warmth won't last the night
    https://wn.com/Anthony_Green_You'll_Be_Fine_(Official_Music_Video)
    Circa Survive's Anthony Green on Mental Health and Bipolar Disorder | Unmasked
    3:09

    Circa Survive's Anthony Green on Mental Health and Bipolar Disorder | Unmasked

    • Order:
    • Duration: 3:09
    • Uploaded Date: 26 May 2021
    • views: 46079
    Circa Survive's Anthony Green opens up about managing bipolar disorder and his mental health. If you or a loved one is in need of mental health support visit https://soundmindlive.info/NAMI This is one of multiple videos in Sound Mind’s “Unmasked” mental health video portrait series. See more artists opening up about their mental health at https://www.soundmindlive.org/unmasked
    https://wn.com/Circa_Survive's_Anthony_Green_On_Mental_Health_And_Bipolar_Disorder_|_Unmasked
    ANTHONY GREEN - She Loves Me So [OFFICIAL MUSIC VIDEO]
    4:01

    ANTHONY GREEN - She Loves Me So [OFFICIAL MUSIC VIDEO]

    • Order:
    • Duration: 4:01
    • Uploaded Date: 15 Dec 2008
    • views: 678285
    The new album "Beautiful Things" is available now on iTunes: https://itunes.apple.com/us/album/beautiful-things-deluxe-version/id492495987 From the album AVALON - Available now: https://itunes.apple.com/us/album/avalon-deluxe-version/id284108857 http://anthonygreenschildren.com To get more music by Anthony Green, go here http://PFR.ec/AnthonyGreenMusic
    https://wn.com/Anthony_Green_She_Loves_Me_So_Official_Music_Video
    Anthony Green - 'Don't Dance' (Official Video)
    2:32

    Anthony Green - 'Don't Dance' (Official Video)

    • Order:
    • Duration: 2:32
    • Uploaded Date: 22 Apr 2022
    • views: 179668
    PURCHASE ANTHONY GREEN - BOOM. DONE. LP: https://anthonygreen.bandcamp.com/album/boom-done Follow Anthony Green Spotify: https://tinyurl.com/2p9hf34y Instagram: https://www.instagram.com/anthonygreen666 Facebook: https://www.facebook.com/anthonygreen Twitter: https://twitter.com/AnthonyGreen Video by Bob Sweeney Follow Born Losers Records on Instagram https://www.instagram.com/bornlosersrecords https://www.bornlosersrecords.com https://www.bornlosersrecords.bandcamp.com 2022 Born Losers Records
    https://wn.com/Anthony_Green_'Don't_Dance'_(Official_Video)
    Anthony Green - "Diamond Eyes" (Live at Studio 4)
    3:45

    Anthony Green - "Diamond Eyes" (Live at Studio 4)

    • Order:
    • Duration: 3:45
    • Uploaded Date: 11 Apr 2018
    • views: 152762
    Anthony Green performing "Diamond Eyes" (originally by Deftones) live at Studio 4. Purchase 'Live at Studio 4': https://bit.ly/2Ge0vAz
    https://wn.com/Anthony_Green_Diamond_Eyes_(Live_At_Studio_4)
    Anthony Green - Last Summer In America (Official Video)
    4:29

    Anthony Green - Last Summer In America (Official Video)

    • Order:
    • Duration: 4:29
    • Uploaded Date: 15 Aug 2024
    • views: 7077
    PURCHASE ANTHONY GREEN - LAST SUMMER IN AMERICA: https://anthonygreen.bandcamp.com/album/last-summer-in-america Follow Anthony Green Spotify: https://tinyurl.com/2p9hf34y Instagram: https://www.instagram.com/anthonygreen666 Facebook: https://www.facebook.com/anthonygreen Twitter: https://twitter.com/AnthonyGreen Video by Will Evans 2024 Born Losers Records https://www.bornlosersrecords.com https://www.instagram.com/bornlosersrecords https://www.bornlosersrecords.bandcamp.com #folk #folkmusic #folksong
    https://wn.com/Anthony_Green_Last_Summer_In_America_(Official_Video)
    Keep Your Mouth Shut
    3:45

    Keep Your Mouth Shut

    • Order:
    • Duration: 3:45
    • Uploaded Date: 19 Dec 2019
    • views: 187882
    Provided to YouTube by BWSCD, Inc. Keep Your Mouth Shut · Anthony Green Would You Still Be In Love ℗ 2018 Memory Music Released on: 2018-06-01 Auto-generated by YouTube.
    https://wn.com/Keep_Your_Mouth_Shut
    Jum
    0:08

    Jum

    • Order:
    • Duration: 0:08
    • Uploaded Date: 03 Dec 2024
    • views: 490
    https://wn.com/Jum
    The Used - Heart-Shaped Box (Emo Nite w/ Anthony Green)
    5:50

    The Used - Heart-Shaped Box (Emo Nite w/ Anthony Green)

    • Order:
    • Duration: 5:50
    • Uploaded Date: 10 Apr 2019
    • views: 118013
    Bert McCracken, Anthony Green & Joey Bradford (on guitar) performing "Heart-Shaped Box" by Nirvana at Emo Nite in Los Angeles on April 5, 2019. Subscribe: http://bit.ly/2uKbKMo Tour Dates: http://www.theused.net Follow: https://www.facebook.com/TheUsed/ https://twitter.com/WeAreTheUsed https://www.instagram.com/theused https://www.youtube.com/user/THEUSEDCHANNEL Listen: Spotify: https://spoti.fi/2zME6M1 iTunes: https://apple.co/2O02QmP Google Play: http://bit.ly/2L2bLGy Pandora: https://pdora.co/2LgXEfW Music: "A Box Full Of Sharp Objects" Members: Bert McCracken Jeph Howard Dan Whitesides Label: Hopeless Records
    https://wn.com/The_Used_Heart_Shaped_Box_(Emo_Nite_W_Anthony_Green)
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Jeff Lorber - Toad's Places #1

    Java Jazz Festival 2006 By: Java Festival Production
    7:34
    Jeff Lorber - Toad's Places #1
    Java Jazz Festival 2006 By: Java Festival Production
    published: 30 Dec 2010
    Play in Full Screen
    0:42
    Toad's Place | Saturday Night College Dance Party 2019
    Toad's Place, New Haven CT http://www.toadsplace.com/ DJs Action & TONNIC Follow me on S...
    published: 06 Jun 2019
    Play in Full Screen
    58:26
    Chris Webby - 10th Annual Black Friday Show at Toad’s Place (Official Documentary)
    See alternate perspectives of Chris Webby's 10th Annual Black Friday Show at Toad's Place ...
    published: 28 Nov 2020
    Play in Full Screen
    10:02
    Pop Smoke Live @ Toads Place, New Haven CT
    All Video Inquiries : finallyrichbookings@gmail.com Metro 28 Contact : metro28info@gmail....
    published: 15 Dec 2019
    Play in Full Screen
    5:41
    Jeff Lorber Fusion - Toad's Place
    from their album water sign
    published: 21 Jul 2008
    Play in Full Screen
    7:49
    Toad's Place tour part 1
    Scheduling bands and creating promotional material for shows About a year after this was ...
    published: 11 Jan 2024
    Play in Full Screen
    3:46
    Toad's Place '94
    Provided to YouTube by Universal Music Group Toad's Place '94 · Jeff Lorber West Side St...
    published: 30 Jul 2018
    Play in Full Screen
    2:22
    Toad's Place founder dies
    The founder of Toad's Place in New Haven passed away.
    published: 07 May 2011
    Play in Full Screen
    2:35:40
    🔴LIVE- HALFWAY THROUGH PAPER MARIO
    GOD IS GREAT ALL THE TIME. AMEN #gaming #funnymoments #varietystreamer #live #livestream —...
    published: 26 Jun 2024
    Play in Full Screen
    4:02:33
    Bob Dylan Toads Place New Haven Ct 1-12-1990
    Bob Dylan Toads Place New Haven Ct 1-12-1990 Set 1 Walk a Mile in My Shoes One More Cup of...
    published: 27 Jun 2017
    Play in Full Screen

    Toad's Place

    Toad's Place is a concert venue and nightclub located in New Haven, Connecticut.

    History

    The building, located on York Street down the street from Ashley's Ice Cream and Blue State Coffee and across an alley from Mory's Temple Bar, was the original location of the Yale Co-op. During the 1960s, it was a popular restaurant called Hungry Charlie's and then the location of Caleb's Tavern. In 1974, Michael Spoerndle, formerly a student at the Culinary Institute of America, rented the building for a French and Italian restaurant, which opened in March 1975. He named it Toad's Place, after a childhood joke. He said, "When my parents were going out to dinner, they would tell me they were going to such-and-such, and I thought it would be funny if they said, 'We're going to Toad's Place.' Plus, people who didn't go out and stayed at home, we'd call them 'toads.' It was the equivalent of a couch potato." In 1976, Spoerndle turned the restaurant into a live music venue, working with a local musician named Peter Menta to bring in bands. Willie Dixon, Muddy Waters, John Lee Hooker and Koko Taylor were some of the first performers. In 1976, Brian Phelps joined as manager and eventually co-owner. Phelps took control in 1995, after Spoerndle's numerous problems with alcohol and drug addiction. Spoerndle died on May 6, 2011.

    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    ANTHONY GREEN - Dear Child (I've Been Dying To Reach You) [OFFICIAL MUSIC VIDEO]

    From the album AVALON - Available now: https://itunes.apple.com/us/album/avalon-deluxe-version/id284108857 Check out more of Photo Finish's releases here: https://www.youtube.com/playlist?list=PLE535ADF0209CDA0F http://anthonygreenschildren.com
    3:17
    ANTHONY GREEN - Dear Child (I've Been Dying To Reach You) [OFFICIAL MUSIC VIDEO]
    From the album AVALON - Available now: https://itunes.apple.com/us/album/avalon-deluxe-ver...
    published: 18 Jul 2008
    Play in Full Screen
    4:38
    Anthony Green - You'll Be Fine (Official Music Video)
    Follow Anthony Green Instagram: https://www.instagram.com/anthonygreen666 Twitter: https:/...
    published: 13 Jul 2016
    Play in Full Screen
    3:09
    Circa Survive's Anthony Green on Mental Health and Bipolar Disorder | Unmasked
    Circa Survive's Anthony Green opens up about managing bipolar disorder and his mental heal...
    published: 26 May 2021
    Play in Full Screen
    4:01
    ANTHONY GREEN - She Loves Me So [OFFICIAL MUSIC VIDEO]
    The new album "Beautiful Things" is available now on iTunes: https://itunes.apple.com/us/a...
    published: 15 Dec 2008
    Play in Full Screen
    2:32
    Anthony Green - 'Don't Dance' (Official Video)
    PURCHASE ANTHONY GREEN - BOOM. DONE. LP: https://anthonygreen.bandcamp.com/album/boom-done...
    published: 22 Apr 2022
    Play in Full Screen
    3:45
    Anthony Green - "Diamond Eyes" (Live at Studio 4)
    Anthony Green performing "Diamond Eyes" (originally by Deftones) live at Studio 4. Purcha...
    published: 11 Apr 2018
    Play in Full Screen
    4:29
    Anthony Green - Last Summer In America (Official Video)
    PURCHASE ANTHONY GREEN - LAST SUMMER IN AMERICA: https://anthonygreen.bandcamp.com/album/...
    published: 15 Aug 2024
    Play in Full Screen
    3:45
    Keep Your Mouth Shut
    Provided to YouTube by BWSCD, Inc. Keep Your Mouth Shut · Anthony Green Would You Still ...
    published: 19 Dec 2019
    Play in Full Screen
    0:08
    Jum
    published: 03 Dec 2024
    Play in Full Screen
    5:50
    The Used - Heart-Shaped Box (Emo Nite w/ Anthony Green)
    Bert McCracken, Anthony Green & Joey Bradford (on guitar) performing "Heart-Shaped Box" by...
    published: 10 Apr 2019
    Play in Full Screen
    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×