- published: 24 Sep 2019
- views: 37087
'+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; })); }); -->
John Lenwood "Jackie" McLean (May 17, 1931 – March 31, 2006) was an American jazz alto saxophonist, composer, bandleader, and educator, and is one of the few musicians to be elected to the DownBeat Hall of Fame in the year of their death.
McLean was born in New York City. His father, John Sr., played guitar in Tiny Bradshaw's orchestra. After his father's death in 1939, Jackie's musical education was continued by his godfather, his record-store-owning stepfather, and several noted teachers. He also received informal tutoring from neighbors Thelonious Monk, Bud Powell, and Charlie Parker. During high school he played in a band with Kenny Drew, Sonny Rollins, and Andy Kirk Jr. (the tenor saxophonist son of Andy Kirk).
Along with Rollins, he played on Miles Davis' Dig album, when he was 20 years old. As a young man McLean also recorded with Gene Ammons, Charles Mingus on the seminal Pithecanthropus Erectus, George Wallington, and as a member of Art Blakey's Jazz Messengers. McLean joined Blakey after reportedly being punched by Mingus. Fearing for his life, McLean pulled out a knife and contemplated using it against Mingus in self-defense. He later stated that he was grateful that he had not stabbed the bassist.
Dexter Gordon (February 27, 1923 – April 25, 1990) was an American jazz tenor saxophonist. He was among the earliest tenor players to adapt the bebop musical language of people such as Charlie Parker, Dizzy Gillespie, and Bud Powell to the instrument. Gordon's height was 6 feet 6 inches (198 cm), so he was also known as "Long Tall Dexter" and "Sophisticated Giant". His studio and live performance career spanned over 40 years.
Gordon's sound was commonly characterized as being "large" and spacious and he had a tendency to play behind the beat. He was famous for humorously inserting musical quotes into his solos. One of his major influences was Lester Young. Gordon, in turn, was an early influence on John Coltrane and Sonny Rollins. Rollins and Coltrane, in turn, influenced Gordon's playing as he explored hard bop and modal playing during the 1960s.
Gordon was known for his genial and humorous stage presence. He was an advocate of playing to communicate with the audience. One of his idiosyncratic rituals was to recite lyrics from each ballad before playing it.
Jackie McLean - Jacknife ( Full Album ) ................................................... John Lenwood "Jackie" McLean (May 17, 1931 – March 31, 2006)was an American jazz alto saxophonist, composer, bandleader, and educator, and is one of the few musicians to be elected to the.... .................................................... Read more : https://en.wikipedia.org/wiki/Jackie_McLean .................................................... Tracks 1–5 Jackie McLean - alto saxophone Charles Tolliver (#1, 3, 4), Lee Morgan (#2, 3, 5) - trumpet Larry Willis - piano Larry Ridley - bass Jack DeJohnette - drums ................................................... Tracks 6–10 Jackie McLean - alto saxophone Larry Willis - piano Don Moore - bass Jack DeJohnette - drums ..............................
Produced, Directed & Edited by Ken Levis
VERVE RECORD 創立50周年記念 カーネギーホール・JAZZフェスティバル Verve 50th Anniversary Concert「ジャズの先駆者たちに捧げる」1994年4月6日
Tracklist 1 Love And Hate 0:00 -Written-By – Grachan Moncur III 2 Esoteric 8:25 --Written-By – Grachan Moncur III 3 Kahlil The Prophet 17:29 -Written-By – Jackie McLean 4 Riff Raff 27:54 --Written-By – Grachan Moncur III Alto Saxophone, Liner Notes – Jackie McLean Bass – Larry Ridley Design [Cover] – Larry Miller (10) Drums – Roy Haynes Photography By [Cover Photo] – Francis Wolff Producer – Alfred Lion Recorded By – Rudy Van Gelder Trombone – Grachan Moncur III Vibraphone [Vibes] – Bobby Hutcherson Format: 4 × File, FLAC, Album, Reissue, 24bit 192kHz https://www.buymeacoffee.com/cgoroo
1. Bird Lives 2. Dance Little Mandissa 3. House Is Not A Home 4. Five 5. J. Mac's Dynasty 6. Knot The Blues 7. Third World Express 8. King Tut's Strut 9. Muti-Woman This is the Jackie Mclean Quintet. The recording is the same as the CD “Jackie Mclean Dynasty.” The musicians here are: Jackie Mclean (alto sax), Rene Mclean (tenor sax), Hotep Galeta (piano), Nat Reeves (bass), and Carl Allen (drums). I do not own anything in the video or the music. Thank you
They grew up together on the Hill.
Woody Shaw : tp Jackie McLean : as Cedar Walton : p Buster Williams : b Billy Higgins : ds Mt. Fuji Jazz Festival with Blue Note
Jazz legend Jackie McLean talks about growing up, living and playing jazz in Harlem in the fifties and later.
1 A Night in Tunisia -Dexter Gordon 2:10 2 What's New - Dexter Gordon 13:20 3 Blues Walk - Dexter Gordon 21:07 4 Second Balcony Jump - Dexter Gordon 32:15 5 You've Changed - Dexter Gordon 6 Lady Bird - Dexter Gordon 7 Body and Soul - Dexter Gordon Artist Credit Michael Cuscuna Liner Notes Phillip Galloway Liner Notes, Producer Dexter Gordon Primary Artist, Sax (Tenor) Maxine Gordon Liner Notes George Gruntz Piano Tom Gulotta Art Direction, Design, Liner Notes, Producer Daniel Humair Drums Hal Miller Consultant David Peck Liner Notes, Producer Guy Pedersen Bass Jan Persson Photography Riccardo Schwamenthal Photography Don Sickler Associate Producer, Consultant Lee Tanner Photography Francis Wolff Photography Jazz Icons: Dexter Gordon features three concerts filmed in 1963 and 1964 in Hol...
Dexter Gordon: tenor saxophone George Gruntz: piano Guy Pedersen: bass Daniel Humair: drums
This formula is how Dexter Gordon made sure all of his improvised solos sounded killer! Let's break it down into a few chunks that you can practise, to massively improve your jazz playing and soloing. Diggin' Dexter Ebook:https://bit.ly/3omRmRf Patreon: https://www.patreon.com/JoshWakeham 0:16 Hooks 2:01 Cells 7:19 Adapting Cells to Different Harmonic Contexts 9:17 Varying the Rhythm of the Cells 10:06 How to Practise the Formula Stay Connected https://www.instagram.com/joshwakeham/ https://www.tiktok.com/@josh.wakeham https://www.joshwakeham.com/
'Biting the Apple' is an album led by saxophonist Dexter Gordon recorded in 1976 and released on the Danish SteepleChase label. Track listing 00:00 - 01. "Apple Jump" (Dexter Gordon) 11:28 - 02. "I'll Remember April" (Gene DePaul / Patricia Johnston / Don Raye) 18:59 - 03. "Georgia on My Mind" (Hoagy Carmichael / Stuart Gorrell) 28:57 - 04. "Blue Bossa" (Kenny Dorham) 37:46 - 05. "Skylark" (Hoagy Carmichael / Johnny Mercer) 46:22 - 06. "A La Modal" (Dexter Gordon) Personnel Dexter Gordon – tenor saxophone Barry Harris – piano Sam Jones – bass Al Foster – drums If you want you can support the channel and help me upload more awesome jazz albums more often : https://fr.tipeee.com/my-kind-of-music
This video has been colorized, upscaled and brought up to 60 FPS using AI (artificial intelligence) The audio track has been manually cleaned up from cracks and clipping, repaired and enhanced by me. Using special plug-ins I made it sound like it was recorded at Belgium Opera Theatre of Ghent. With Colorizing AI it's a hit or miss, but still pretty impressive and makes you think what people are gonna come up with in a decade or so.
Dexter Gordon: tenor saxophone George Gruntz: piano Guy Pedersen: bass Danaiel Humair: drums
Tema 'What Is This Thing Called Love' incluido en 'The Other Side Of Round Midnight', uno de los últimos álbumes del genial saxofonista de jazz estadounidense Dexter Gordon. El LP fue editado por Blue Note Records en 1986, pero en el vídeo gira una reedición del año 2014. #vinyl #vinylcollection #vinylcommunity #vinylcollector #vinylrecords #vinyladdict #vinylporn #vinyljunkie #vinylgram #vinyloftheday #vinyllover #vinylwrap #vinyligclub #vinylcollectionpost #vinyls #vinilo #vinilos #records #recordcollection #elgiradiscos #musicaenvinilo #rhythmandbeer #miguelafgz #dextergordon #jazz
Dexter Gordon concert, Denmark, 1967 July 31 Dexter Gordon: ts Kenny Drew: p Niels-Henning Orsted Pedersen: b Albert 'Tootie' Heath: dr 1. Dear Old Stockholm 2. Soy Califa 3. The Shadow Of Your Smile 4. Society Red/Watermelon Man 5. For All We Know 6. The Blues Up And Down
John Lenwood "Jackie" McLean (May 17, 1931 – March 31, 2006) was an American jazz alto saxophonist, composer, bandleader, and educator, and is one of the few musicians to be elected to the DownBeat Hall of Fame in the year of their death.
McLean was born in New York City. His father, John Sr., played guitar in Tiny Bradshaw's orchestra. After his father's death in 1939, Jackie's musical education was continued by his godfather, his record-store-owning stepfather, and several noted teachers. He also received informal tutoring from neighbors Thelonious Monk, Bud Powell, and Charlie Parker. During high school he played in a band with Kenny Drew, Sonny Rollins, and Andy Kirk Jr. (the tenor saxophonist son of Andy Kirk).
Along with Rollins, he played on Miles Davis' Dig album, when he was 20 years old. As a young man McLean also recorded with Gene Ammons, Charles Mingus on the seminal Pithecanthropus Erectus, George Wallington, and as a member of Art Blakey's Jazz Messengers. McLean joined Blakey after reportedly being punched by Mingus. Fearing for his life, McLean pulled out a knife and contemplated using it against Mingus in self-defense. He later stated that he was grateful that he had not stabbed the bassist.
When the neon lights shine down,
and there's no one else around,
whatcha gonna do when the clock strikes two,
and all the freaks come out,
On the ave....
When the neon lights shine down,
and there's no one else around,
whatcha gonna do when the clock strikes two,
and all the freaks come out,
On the ave....
When you're on the ave...
Now I got a reason for breathin,
goodbye Hollywood and hello Cleveland.
I didn't tell my girl I was leavin,
packed my bags, jumped in the Lincoln.
Suicide doors more to the meaning,
Four on the floor, three on the tree and,
I'm doin' speed on the 405 freeway,
Officer give a white boy some leeway.
Downtown with the he-say she-say,
Dont mean nothin cause the he-she's cliche.
Downtown where your dreams just decay,
$40 for a ? $20 for a BJ
But uptown they play my CD's
Girls wanna fuck me, boys wanna be me.
Who's Mickey, she said, and smiled in a special way.
When the neon lights shine down,
and there's no one else around,
whatcha gonna do when the clock strikes two,
and all the freaks come out,
On the ave....
When you're on the ave...
Now I'm gonna keep on creepin'
Latchkey kids gettin' high all weekend.
Lookin past the hood of my Fleetwood,
Jesus on the dash and the king on the speaker.
You can find me in the back of the theater like
Pee Wee Herman, holdin my weiner.
I ain't seen her since the milk went bad
and I didn't mean to beat her is what I told her dad..
Round town it's a stone cold fact,
Avalon got a gun in his lap.
Round town you can hear the clap,
when I take the stage, and shake my ass.
Out of town you can feel the heat,
when my bus pulls up and steals your freaks.
Out of town you can feel the noise,
come on girls, rock your boys!
When the neon lights shine down,
and there's no one else around,
whatcha gonna do when the clock strikes two,
and all the freaks come out,
On the ave...
When you're on the ave...
When the neon lights shine down,
and there's no one else around,
whatcha gonna do when the clock strikes two,
and all the freaks come out,
On the ave....
When you're on the ave...
Now I'm gonna speak on freedom,
do what you like fuck other people.
They tell you what you're supposed to do,
how about your girl do me, and you do you.
Now kick rocks before you get shot,
in the back of the head all you heard was POP
Goes to weasel cause the weasel smoke rock,
Hypodermic needle paramedic on the block.
Chop your body up, drop it off the dock,
why you gotta go and call the mothafuckin cops?
It's too late babe it could've been great,
but you had to go and stab me in the back with a steak knife.
Late night, waste away,
Chain smokin' til the drapes turn grey.
Cocaine helps me face the day,
and then the pills wash the pain away.
I won't be blamed for your mistakes,
burned at the stake,
for God's sake.
When the neon lights shine down,
and there's no one else around,
whatcha gonna do when the clock strikes two,
and all the freaks come out,
On the ave....
When you're on the ave...
When the neon lights shine down,
and there's no one else around,
whatcha gonna do when the clock strikes two,
and all the freaks come out,
On the ave....