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

Ian Dury

Ian Robins Dury (12 May 1942 – 27 March 2000) was an English rock and roll singer-songwriter, bandleader, artist, and actor who first rose to fame during the late 1970s, during the punk and new wave era of rock music. He was the lead singer of Ian Dury and the Blockheads and before that of Kilburn and the High Roads.

Biography

Early life

Dury was born in northwest London at his parents' home at 43 Weald Rise, Harrow Weald, Harrow (though he often pretended that he had been born in Upminster, Havering, and all but one of his obituaries in the UK national press stated this as fact). His father, William George Dury (born 23 September 1905, Southborough, Kent; died 25 February 1968), was a bus driver and former boxer, while his mother Margaret (known as "Peggy", born Margaret Cuthbertson Walker, 17 April 1910, Rochdale, Lancashire; d. 1995) was a health visitor, the daughter of a Cornish doctor and the granddaughter of an Irish landowner.

William Dury trained with Rolls-Royce to be a chauffeur, and was then absent for long periods, so Peggy Dury took Ian to stay with her parents in Cornwall. After the Second World War, the family moved to Switzerland, where his father chauffeured for a millionaire and the Western European Union. In 1946 Peggy brought Ian back to England and they stayed with her sister, Mary, a physician in Cranham, a small village in Essex. Although he saw his father on visits, they never lived together again.

What a Waste

"What a Waste" is a song and single by Ian Dury and the Blockheads, originally released in 1978 on the Stiff Records single BUY 27 "What a Waste" / "Wake Up and Make Love with Me". The song has remained in The Blockheads' set following Dury's death.

Essentially a song about being in a job that makes you happy, Dury claimed in a 1984 interview with Penthouse that while not condemning 9-to-5 jobs, he had written the song to make people question their lives, echoing the sentiments of his earlier single "Sex and Drugs and Rock and Roll". The song's verses list a number of things the song's narrator could have been, from a driver, poet, teacher or soldier to an inmate in a long-term institution and the ticket man at Fulham Broadway station before the chorus reveals that instead he chose to 'play the fool in a six-piece band' highlighting some of the pitfalls of this (loneliness specifically), before deciding that 'rock and roll don't mind'.

The song was written following the break-up of Kilburn and the Highroads in a lull between the formation of Ian Dury & the Kilburns and was written with Rod Melvin in mid-1975, two years before it was released. Originally a third writing credit was given to Chaz Jankel (Dury's long-term songwriting companion): this third writing credit has gradually been phased out and the 2004 Edsel Records re-issue of Do it Yourself credits the song to Dury/Melvin solely. However, in Ian Dury & The Blockheads: Song By Song, John Turnbull (guitarist with the Blockheads) claims that the middle instrumental section was brought over from one of the songs four of the The Blockheads had written while they were in their previous band, Loving Awareness.

Podcasts:

Ian Dury

Born: 1942-05-12

Died: 2000-03-27

Ian Dury & The Blockheads

  • GRACEY - What A Waste (Official Video)

    GRACEY - What A Waste (Official Video) Listen to 'What A Waste' now: https://GRACEY.lnk.to/WhatAWaste Follow GRACEY https://GRACEY.lnk.to/InstagramVD https://GRACEY.lnk.to/TwitterVD https://GRACEY.lnk.to/FacebookVD https://GRACEY.lnk.to/TikTokVD Sign Up To GRACEY's Newsletter https://GRACEY.lnk.to/NewsletterSignUpID GRACEY - What A Waste (Lyrics) I took the jacket I was leaving at yours My last excuse for turning up at your door And I can’t go back even if I’d like to I told my brothers Now they wanna fight you Said you loved me But I guess you loved her more I was hoping for the best But I guess hoping ain’t enough I was giving more while you were giving up What a waste Two years of my twenties gone down the drain Now I gotta go and fall in love again In love again yeah And how c...

    published: 20 Aug 2021
  • ciscaux x 1nonly x wassup rocker x shady moon - what a waste (prod. dustin)

    GOT MY FIRST CHECK SPENT IT ALL ON A CHAIN THOUGHT IT CAME WITH THE FAME. soundcloud link : https://soundcloud.com/ciscaux/whatawaste FOLLOW ME ! insta: https://www.instagram.com/ciscaux/ twitter: https://twitter.com/thankyoucisco 1NONLY insta: https://www.instagram.com/1nonly ROCKER https://www.instagram.com/wasuprocker SHADY https://www.instagram.com/shadyasfc DUSTIN https://www.instagram.com/dustincavazos COVER SHOT BY @ CERTIFIES ON INSTAGRAM

    published: 26 Jun 2022
  • Ian Dury and The Blockheads - What A Waste (Official HD Video)

    Order “Hit Me! The Best Of” by Ian Dury here: https://iandury.lnk.to/HitMeBestOfyv “What A Waste” was released by Stiff Records in 1978 and reached number 9 in the UK singles chart. It was omitted from “Do It Yourself” because of Dury’s policy of not including singles on albums. Follow Ian Dury and the Blockheads Facebook: https://www.facebook.com/IanDuryandtheBlockheads Twitter: https://twitter.com/ianduryofficial Instagram: https://www.instagram.com/ianduryofficial/ #IanDury #TheBlockheads #WhatAWaste

    published: 15 Jan 2010
  • 💢"What A Waste.."💢[] BkDk Angst🧡💚 [] Part 2/? [] KrBk❤️🧡 [] Bnha/Mha [] Hero Ducky🐤

    published: 10 Apr 2022
  • magical boy | what a waste meme

    the song is "i duckinf hatw you" yes its spelled like that as for the character, this ones mine

    published: 09 Jul 2022
  • GRACEY - What A Waste (Acoustic)

    GRACEY - What A Waste (Acoustic) Listen to 'What A Waste (Acoustic)' now: FOLLOW https://GRACEY.lnk.to/InstagramVD https://GRACEY.lnk.to/TwitterVD https://GRACEY.lnk.to/FacebookVD https://GRACEY.lnk.to/TikTokVD Sign Up To GRACEY's Newsletter https://GRACEY.lnk.to/NewsletterSignUpID GRACEY - What A Waste (Lyrics) I took the jacket I was leaving at yours My last excuse for turning up at your door And I can’t go back even if I’d like to I told my brothers Now they wanna fight you Said you loved me But I guess you loved her more I was hoping for the best But I guess hoping ain’t enough I was giving more while you were giving up What a waste Two years of my twenties gone down the drain Now I gotta go and fall in love again In love again yeah And how come you’re okay And I’m still feel...

    published: 17 Sep 2021
  • What a waste Meme GCMV

    Shawns channel https://youtube.com/channel/UCBOw15CzyZclFRJ4B7MsQvg My child's channel aka Apple Cherry Blossom https://youtube.com/channel/UCktCahQ_L94k3zi7puYU1bA Addys Channel https://youtube.com/channel/UCg5nPpAvJFMgqoVfmfuOZtA

    published: 30 May 2021
  • Gracey - What A Waste (Lyrics)

    Welcome to Lost Panda 🐼 “Gracey - What A Waste” Lyrics / Lyric Video by Lost Panda ⏬ Stream “Gracey - What A Waste” here https://GRACEY.lnk.to/whatawaste 🎧 Follow our Spotify playlist: https://spoti.fi/2WFX5B1 🔔 Turn on notifications to stay updated with new Lyrics / Lyric Videos by Lost Panda 👉 Lost Panda: https://www.instagram.com/lostpandamu... https://www.facebook.com/lostpandamusic/ https://twitter.com/lostpandamusic Lostpandamusic.com/socials 👉 Gracey: https://GRACEY.lnk.to/InstagramVD https://GRACEY.lnk.to/TwitterVD https://GRACEY.lnk.to/FacebookVD “Gracey - What A Waste” Lyrics [Verse 1] I took the jacket I was leaving at yours My last excuse for turning up at your door, oh And I can't go back even if I'd like to I told my brothers now they wanna fight you Said you loved me...

    published: 23 Aug 2021
  • Stop Making ART, It's a Waste of TIME |#thatskygame #animation #blendercommunity #blender3d #viral

    "Stop making Art, it's a waste of time". Your own family and friends might be telling you that. Pretty sure mine did at some point because they couldn't see what I saw or feel what I felt before making that piece. Even if posting your art on social media might feels like shouting into a void due to algorithm complications, remember that this is a place you actually have power. A place where you can do or be whatever or whomever you want and nobody else can take that from you because it's who you are. A place you can actually be a god of your own world. If it makes you happy and it keeps your mind at ease, do it. It's healthy and don't forget you only live once. Don't live trying to please someone else. It is your life. Live it how you see fit because the moment you start feeling like your ...

    published: 24 Dec 2023
  • What a Waste by Jess French

    Unsure of what to read next? Youth & Teen Services Staff have prepared a super selection of booktalks from the 2022 Bluestem Award Master List for grades 3-5!

    published: 18 May 2021
developed with YouTube
GRACEY - What A Waste (Official Video)
3:18

GRACEY - What A Waste (Official Video)

  • Order:
  • Duration: 3:18
  • Uploaded Date: 20 Aug 2021
  • views: 415744
GRACEY - What A Waste (Official Video) Listen to 'What A Waste' now: https://GRACEY.lnk.to/WhatAWaste Follow GRACEY https://GRACEY.lnk.to/InstagramVD https://GRACEY.lnk.to/TwitterVD https://GRACEY.lnk.to/FacebookVD https://GRACEY.lnk.to/TikTokVD Sign Up To GRACEY's Newsletter https://GRACEY.lnk.to/NewsletterSignUpID GRACEY - What A Waste (Lyrics) I took the jacket I was leaving at yours My last excuse for turning up at your door And I can’t go back even if I’d like to I told my brothers Now they wanna fight you Said you loved me But I guess you loved her more I was hoping for the best But I guess hoping ain’t enough I was giving more while you were giving up What a waste Two years of my twenties gone down the drain Now I gotta go and fall in love again In love again yeah And how come you’re okay And I’m still feeling bitter 'bout your mistakes Now I gotta go and fall in love again In love again yeah And I still see you all occasionally And I turn away so that you never see me Don’t wanna talk I don’t know what the use is I’ll only fall for all of your excuses The ones I always used to choose to believe What a waste Two years of my twenties gone down the drain Now I gotta go and fall in love again In love again yeah And how come you’re okay And I’m still feeling bitter 'bout your mistakes Now I gotta go and fall in love again In love again yeah I don’t really wanna fall Try and go redo it all When you’re the one I wanna love What a waste Two years of my twenties gone down the drain Now I gotta go and fall in love again In love again yeah And how come you’re okay And I’m still feeling bitter 'bout your mistakes Now I gotta go and fall in love again In love again yeah #GRACEY Music video by GRACEY performing What A Waste. A Polydor Records recording; © 2021 Universal Music Operations Limited http://vevo.ly/Q1JIEM
https://wn.com/Gracey_What_A_Waste_(Official_Video)
ciscaux x 1nonly x wassup rocker x shady moon - what a waste (prod. dustin)
2:15

ciscaux x 1nonly x wassup rocker x shady moon - what a waste (prod. dustin)

  • Order:
  • Duration: 2:15
  • Uploaded Date: 26 Jun 2022
  • views: 128367
GOT MY FIRST CHECK SPENT IT ALL ON A CHAIN THOUGHT IT CAME WITH THE FAME. soundcloud link : https://soundcloud.com/ciscaux/whatawaste FOLLOW ME ! insta: https://www.instagram.com/ciscaux/ twitter: https://twitter.com/thankyoucisco 1NONLY insta: https://www.instagram.com/1nonly ROCKER https://www.instagram.com/wasuprocker SHADY https://www.instagram.com/shadyasfc DUSTIN https://www.instagram.com/dustincavazos COVER SHOT BY @ CERTIFIES ON INSTAGRAM
https://wn.com/Ciscaux_X_1Nonly_X_Wassup_Rocker_X_Shady_Moon_What_A_Waste_(Prod._Dustin)
Ian Dury and The Blockheads - What A Waste (Official HD Video)
3:28

Ian Dury and The Blockheads - What A Waste (Official HD Video)

  • Order:
  • Duration: 3:28
  • Uploaded Date: 15 Jan 2010
  • views: 1744594
Order “Hit Me! The Best Of” by Ian Dury here: https://iandury.lnk.to/HitMeBestOfyv “What A Waste” was released by Stiff Records in 1978 and reached number 9 in the UK singles chart. It was omitted from “Do It Yourself” because of Dury’s policy of not including singles on albums. Follow Ian Dury and the Blockheads Facebook: https://www.facebook.com/IanDuryandtheBlockheads Twitter: https://twitter.com/ianduryofficial Instagram: https://www.instagram.com/ianduryofficial/ #IanDury #TheBlockheads #WhatAWaste
https://wn.com/Ian_Dury_And_The_Blockheads_What_A_Waste_(Official_Hd_Video)
💢"What A Waste.."💢[] BkDk Angst🧡💚 [] Part 2/? [] KrBk❤️🧡 [] Bnha/Mha [] Hero Ducky🐤
0:39

💢"What A Waste.."💢[] BkDk Angst🧡💚 [] Part 2/? [] KrBk❤️🧡 [] Bnha/Mha [] Hero Ducky🐤

  • Order:
  • Duration: 0:39
  • Uploaded Date: 10 Apr 2022
  • views: 69661
https://wn.com/💢_What_A_Waste.._💢_Bkdk_Angst🧡💚_Part_2_Krbk❤️🧡_Bnha_Mha_Hero_Ducky🐤
magical boy | what a waste meme
0:35

magical boy | what a waste meme

  • Order:
  • Duration: 0:35
  • Uploaded Date: 09 Jul 2022
  • views: 58750
the song is "i duckinf hatw you" yes its spelled like that as for the character, this ones mine
https://wn.com/Magical_Boy_|_What_A_Waste_Meme
GRACEY - What A Waste (Acoustic)
3:34

GRACEY - What A Waste (Acoustic)

  • Order:
  • Duration: 3:34
  • Uploaded Date: 17 Sep 2021
  • views: 20061
GRACEY - What A Waste (Acoustic) Listen to 'What A Waste (Acoustic)' now: FOLLOW https://GRACEY.lnk.to/InstagramVD https://GRACEY.lnk.to/TwitterVD https://GRACEY.lnk.to/FacebookVD https://GRACEY.lnk.to/TikTokVD Sign Up To GRACEY's Newsletter https://GRACEY.lnk.to/NewsletterSignUpID GRACEY - What A Waste (Lyrics) I took the jacket I was leaving at yours My last excuse for turning up at your door And I can’t go back even if I’d like to I told my brothers Now they wanna fight you Said you loved me But I guess you loved her more I was hoping for the best But I guess hoping ain’t enough I was giving more while you were giving up What a waste Two years of my twenties gone down the drain Now I gotta go and fall in love again In love again yeah And how come you’re okay And I’m still feeling bitter 'bout your mistakes Now I gotta go and fall in love again In love again yeah And I still see you all occasionally And I turn away so that you never see me Don’t wanna talk I don’t know what the use is I’ll only fall for all of your excuses The ones I always used to choose to believe What a waste Two years of my twenties gone down the drain Now I gotta go and fall in love again In love again yeah And how come you’re okay And I’m still feeling bitter 'bout your mistakes Now I gotta go and fall in love again In love again yeah I don’t really wanna fall Try and go redo it all When you’re the one I wanna love What a waste Two years of my twenties gone down the drain Now I gotta go and fall in love again In love again yeah And how come you’re okay And I’m still feeling bitter 'bout your mistakes Now I gotta go and fall in love again In love again yeah #GRACEY Music video by GRACEY performing What A Waste (Acoustic). A Polydor Records recording; © 2021 Universal Music Operations Limited http://vevo.ly/hcD05t
https://wn.com/Gracey_What_A_Waste_(Acoustic)
What a waste Meme GCMV
1:06

What a waste Meme GCMV

  • Order:
  • Duration: 1:06
  • Uploaded Date: 30 May 2021
  • views: 10476
Shawns channel https://youtube.com/channel/UCBOw15CzyZclFRJ4B7MsQvg My child's channel aka Apple Cherry Blossom https://youtube.com/channel/UCktCahQ_L94k3zi7puYU1bA Addys Channel https://youtube.com/channel/UCg5nPpAvJFMgqoVfmfuOZtA
https://wn.com/What_A_Waste_Meme_Gcmv
Gracey - What A Waste (Lyrics)
3:13

Gracey - What A Waste (Lyrics)

  • Order:
  • Duration: 3:13
  • Uploaded Date: 23 Aug 2021
  • views: 12851
Welcome to Lost Panda 🐼 “Gracey - What A Waste” Lyrics / Lyric Video by Lost Panda ⏬ Stream “Gracey - What A Waste” here https://GRACEY.lnk.to/whatawaste 🎧 Follow our Spotify playlist: https://spoti.fi/2WFX5B1 🔔 Turn on notifications to stay updated with new Lyrics / Lyric Videos by Lost Panda 👉 Lost Panda: https://www.instagram.com/lostpandamu... https://www.facebook.com/lostpandamusic/ https://twitter.com/lostpandamusic Lostpandamusic.com/socials 👉 Gracey: https://GRACEY.lnk.to/InstagramVD https://GRACEY.lnk.to/TwitterVD https://GRACEY.lnk.to/FacebookVD “Gracey - What A Waste” Lyrics [Verse 1] I took the jacket I was leaving at yours My last excuse for turning up at your door, oh And I can't go back even if I'd like to I told my brothers now they wanna fight you Said you loved me but I guess you loved her more, o-oh [Pre-Chorus] I was hoping for the best but I guess hoping ain't enough I was giving more while you were giving up [Chorus] What a waste, two years of my 20s gone down the drain Now I gotta go and fall in love again, in love again, yeah Oh And how come you're okay and I'm still feeling bitter about your mistakes Now I gotta go and fall in love again, in love again, yeah Oh, oh [Verse 2] And I still see you all occasionally And I turn away so that you never see me, ooh yeah Don't wanna talk I don't know what thе use is I'll only fall for all of your excuses Thе ones I always used to choose to believe, oh, oh [Chorus] What a waste, two years of my 20s gone down the drain Now I gotta go and fall in love again, in love again, yeah Oh And how come you're okay and I'm still feeling bitter about your mistakes Now I gotta go and fall in love again, in love again, yeah Oh, oh [Post-Chorus] Ah, ah, ah Uuuuh Ah, ah, ah Uuuuh Ah, ah, ah Uuuuh, uuuuh, yeah [Bridge] And I don't really wanna fall Try and go redo it all When you're the one I wanna love, oh [Chorus] What a waste, two years of my 20s gone down the drain Now I gotta go and fall in love again, in love again, yeah Oh How come you're okay, I'm still feeling bitter about your mistakes Now I gotta go and fall in love again, in love again, yeah Oh, oh ......... 📷 Wallpaper: Mo 👩‍💻 Share “Gracey - What A Waste” Lyrics with your friends! https://youtu.be/dUtkcb_I4QY ......... If you like “Gracey - What A Waste” Subscribe here: https://lostpandamusic.com/subscribe Comment a 🐼 if you got this far #Gracey #WhatAWaste #Lostpanda #Lyrics #lyricvideo #Rap #urban #pop #music #vocals #lostpandamusic
https://wn.com/Gracey_What_A_Waste_(Lyrics)
Stop Making ART, It's a Waste of TIME |#thatskygame #animation  #blendercommunity #blender3d #viral
0:44

Stop Making ART, It's a Waste of TIME |#thatskygame #animation #blendercommunity #blender3d #viral

  • Order:
  • Duration: 0:44
  • Uploaded Date: 24 Dec 2023
  • views: 671
"Stop making Art, it's a waste of time". Your own family and friends might be telling you that. Pretty sure mine did at some point because they couldn't see what I saw or feel what I felt before making that piece. Even if posting your art on social media might feels like shouting into a void due to algorithm complications, remember that this is a place you actually have power. A place where you can do or be whatever or whomever you want and nobody else can take that from you because it's who you are. A place you can actually be a god of your own world. If it makes you happy and it keeps your mind at ease, do it. It's healthy and don't forget you only live once. Don't live trying to please someone else. It is your life. Live it how you see fit because the moment you start feeling like your life is not even yours based on the decisions you're having to make for yourself influenced by people or family, then it might be time to really retrace your steps. You're an amazing artist and your art is beautiful. Music: Dirty Paws @monstersandmen #3dartist #blender #b3d #blender3d #animated #animation #digitalart #cgiart #cgianimation #3dmodeling #artistsupportartists #artistsupportpost #artistsupport
https://wn.com/Stop_Making_Art,_It's_A_Waste_Of_Time_|_Thatskygame_Animation_Blendercommunity_Blender3D_Viral
What a Waste by Jess French
1:26

What a Waste by Jess French

  • Order:
  • Duration: 1:26
  • Uploaded Date: 18 May 2021
  • views: 12121
Unsure of what to read next? Youth & Teen Services Staff have prepared a super selection of booktalks from the 2022 Bluestem Award Master List for grades 3-5!
https://wn.com/What_A_Waste_By_Jess_French
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • GRACEY - What A Waste (Official Video)
    3:18
    GRACEY - What A Waste (Official Video)remove from playlist
  • ciscaux x 1nonly x wassup rocker x shady moon - what a waste (prod. dustin)
    2:15
    ciscaux x 1nonly x wassup rocker x shady moon - what a waste (prod. dustin)remove from playlist
  • Ian Dury and The Blockheads - What A Waste (Official HD Video)
    3:28
    Ian Dury and The Blockheads - What A Waste (Official HD Video)remove from playlist
  • magical boy | what a waste meme
    0:35
    magical boy | what a waste memeremove from playlist
  • GRACEY - What A Waste (Acoustic)
    3:34
    GRACEY - What A Waste (Acoustic)remove from playlist
  • What a waste Meme GCMV
    1:06
    What a waste Meme GCMVremove from playlist
  • Gracey - What A Waste (Lyrics)
    3:13
    Gracey - What A Waste (Lyrics)remove from playlist
  • Stop Making ART, It's a Waste of TIME |#thatskygame #animation  #blendercommunity #blender3d #viral
    0:44
    Stop Making ART, It's a Waste of TIME |#thatskygame #animation #blendercommunity #blender3d #viralremove from playlist
  • What a Waste by Jess French
    1:26
    What a Waste by Jess Frenchremove from playlist
developed with YouTube
PLAYLIST TIME:

GRACEY - What A Waste (Official Video)

GRACEY - What A Waste (Official Video) Listen to 'What A Waste' now: https://GRACEY.lnk.to/WhatAWaste Follow GRACEY https://GRACEY.lnk.to/InstagramVD https://GRACEY.lnk.to/TwitterVD https://GRACEY.lnk.to/FacebookVD https://GRACEY.lnk.to/TikTokVD Sign Up To GRACEY's Newsletter https://GRACEY.lnk.to/NewsletterSignUpID GRACEY - What A Waste (Lyrics) I took the jacket I was leaving at yours My last excuse for turning up at your door And I can’t go back even if I’d like to I told my brothers Now they wanna fight you Said you loved me But I guess you loved her more I was hoping for the best But I guess hoping ain’t enough I was giving more while you were giving up What a waste Two years of my twenties gone down the drain Now I gotta go and fall in love again In love again yeah And how come you’re okay And I’m still feeling bitter 'bout your mistakes Now I gotta go and fall in love again In love again yeah And I still see you all occasionally And I turn away so that you never see me Don’t wanna talk I don’t know what the use is I’ll only fall for all of your excuses The ones I always used to choose to believe What a waste Two years of my twenties gone down the drain Now I gotta go and fall in love again In love again yeah And how come you’re okay And I’m still feeling bitter 'bout your mistakes Now I gotta go and fall in love again In love again yeah I don’t really wanna fall Try and go redo it all When you’re the one I wanna love What a waste Two years of my twenties gone down the drain Now I gotta go and fall in love again In love again yeah And how come you’re okay And I’m still feeling bitter 'bout your mistakes Now I gotta go and fall in love again In love again yeah #GRACEY Music video by GRACEY performing What A Waste. A Polydor Records recording; © 2021 Universal Music Operations Limited http://vevo.ly/Q1JIEM
3:18
GRACEY - What A Waste (Official Video)
GRACEY - What A Waste (Official Video) Listen to 'What A Waste' now: https://GRACEY.lnk.to...
published: 20 Aug 2021
Play in Full Screen
2:15
ciscaux x 1nonly x wassup rocker x shady moon - what a waste (prod. dustin)
GOT MY FIRST CHECK SPENT IT ALL ON A CHAIN THOUGHT IT CAME WITH THE FAME. soundcloud link...
published: 26 Jun 2022
Play in Full Screen
3:28
Ian Dury and The Blockheads - What A Waste (Official HD Video)
Order “Hit Me! The Best Of” by Ian Dury here: https://iandury.lnk.to/HitMeBestOfyv “What...
published: 15 Jan 2010
Play in Full Screen
0:39
💢"What A Waste.."💢[] BkDk Angst🧡💚 [] Part 2/? [] KrBk❤️🧡 [] Bnha/Mha [] Hero Ducky🐤
published: 10 Apr 2022
Play in Full Screen
0:35
magical boy | what a waste meme
the song is "i duckinf hatw you" yes its spelled like that as for the character, this one...
published: 09 Jul 2022
Play in Full Screen
3:34
GRACEY - What A Waste (Acoustic)
GRACEY - What A Waste (Acoustic) Listen to 'What A Waste (Acoustic)' now: FOLLOW https:/...
published: 17 Sep 2021
Play in Full Screen
1:06
What a waste Meme GCMV
Shawns channel https://youtube.com/channel/UCBOw15CzyZclFRJ4B7MsQvg My child's channel ak...
published: 30 May 2021
Play in Full Screen
3:13
Gracey - What A Waste (Lyrics)
Welcome to Lost Panda 🐼 “Gracey - What A Waste” Lyrics / Lyric Video by Lost Panda ⏬ Str...
published: 23 Aug 2021
Play in Full Screen
0:44
Stop Making ART, It's a Waste of TIME |#thatskygame #animation #blendercommunity #blender3d #viral
"Stop making Art, it's a waste of time". Your own family and friends might be telling you ...
published: 24 Dec 2023
Play in Full Screen
1:26
What a Waste by Jess French
Unsure of what to read next? Youth & Teen Services Staff have prepared a super selection o...
published: 18 May 2021
Play in Full Screen

Ian Dury

Ian Robins Dury (12 May 1942 – 27 March 2000) was an English rock and roll singer-songwriter, bandleader, artist, and actor who first rose to fame during the late 1970s, during the punk and new wave era of rock music. He was the lead singer of Ian Dury and the Blockheads and before that of Kilburn and the High Roads.

Biography

Early life

Dury was born in northwest London at his parents' home at 43 Weald Rise, Harrow Weald, Harrow (though he often pretended that he had been born in Upminster, Havering, and all but one of his obituaries in the UK national press stated this as fact). His father, William George Dury (born 23 September 1905, Southborough, Kent; died 25 February 1968), was a bus driver and former boxer, while his mother Margaret (known as "Peggy", born Margaret Cuthbertson Walker, 17 April 1910, Rochdale, Lancashire; d. 1995) was a health visitor, the daughter of a Cornish doctor and the granddaughter of an Irish landowner.

William Dury trained with Rolls-Royce to be a chauffeur, and was then absent for long periods, so Peggy Dury took Ian to stay with her parents in Cornwall. After the Second World War, the family moved to Switzerland, where his father chauffeured for a millionaire and the Western European Union. In 1946 Peggy brought Ian back to England and they stayed with her sister, Mary, a physician in Cranham, a small village in Essex. Although he saw his father on visits, they never lived together again.

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