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

Blue Monday (date)

Blue Monday is a name given to a day in January (typically the third Monday of the month) reported to be the most depressing day of the year. The concept was first publicised as part of a 2005 press release from holiday company Sky Travel which claimed to have calculated the date using an equation.

The idea is considered pseudoscience, with its formula derided by scientists as nonsensical.

History

This date was published in a press release under the name of Cliff Arnall, at the time a tutor at the Centre for Lifelong Learning, a Further Education centre attached to Cardiff University. Guardian columnist Dr. Ben Goldacre reported that the press release was delivered substantially pre-written to a number of academics by public relations agency Porter Novelli, who offered them money to put their names to it. The Guardian later printed a statement from Cardiff University distancing themselves from Arnall: "Cardiff University has asked us to point out that Cliff Arnall... was a former part-time tutor at the university but left in February."

Blue Monday

Blue Monday may refer to:

Music

  • Blue Monday (band), a Vancouver hardcore punk band
  • "Blue Monday" (Fats Domino song), a song first recorded by Smiley Lewis and popularized by Fats Domino
  • "Blue Monday" (New Order song), a song by New Order (later covered by Orgy)
  • Blue Monday (Flunk album) and Blue Monday Remixes, a album and associated single, respectively, released in 2002 by Norwegian electronic band Flunk, with additional cover versions of the New Order song
  • Blue Monday (opera), the original name of a George Gershwin one-act "jazz opera", also known as 135th Street
  • "Blue Monday" (White Lion song), an instrumental by White Lion guitarist Vito Bratta
  • Other

  • Blue Monday (comics), a comic book by Chynna Clugston-Major
  • Blue Monday (date), the date stated by Sky Travel to be the most depressing day of the year
  • Blue Monday (comics)

    Blue Monday is a comic book title by Chynna Clugston. It is published by Oni Press in the form of one-shots and several miniseries, which have also been collected into trade paperbacks, with the first four-issue mini-series being published in 2000. The series follows the adventures of Bleu L. Finnegan and her friends as they attend high school during the early 1990s, specifically between the years 1991-93.

    Plot summary

    The series follows the main characters through several scenarios, which include high school events such as dances and detention. The first volume has Bleu and Clover seeking revenge on Alan and Victor for putting them in detention over the two boys giving them cookies that had been baked for a fundraiser. Other storylines in the series include the guys filming Bleu naked while she takes a bath; masturbation; Alan trying to get Bleu to go out with him; and a murder mystery dinner gone haywire after three different attendees independently spike the punch. There is also an overlying story arc of Bleu's crush on one of her teachers and the romantic tensions of several of the other characters interacting.

    Podcasts:

    • New Order - Blue Monday

      Original song from 1983

      published: 01 Feb 2010
    • New Order - Blue Monday (Official Lyric Video)

      The official lyric video for New Order's Blue Monday. Buy Power, Corruption and Lies Definitive Edition now: https://lnk.to/NO-PCLYC Stream New Order's greatest hits here ▶https://lnk.to/StreamNewOrder Subscribe here ▶ https://www.youtube.com/channel/UCpSc... Watch New Order's other official music videos ▶ https://www.youtube.com/playlist?list... Lyrics: [Instrumental Intro] [Verse 1] How does it feel To treat me like you do? When you've laid your hands upon me And told me who you are? I thought I was mistaken I thought I heard your words Tell me how do I feel? Tell me now, how do I feel? Those who came before me Lived through their vocations From the past until completion They'll turn away no more And still, I find it so hard To say what I need to say But, I'm quite sure that you'...

      published: 15 Sep 2020
    • New Order - Blue Monday 88 (Official Music Video)

      The Official Video for 'Blue Monday '88' by New Order. Stream New Order's greatest hits here ▶https://lnk.to/StreamNewOrder Subscribe here ▶ https://www.youtube.com/channel/UCpScI40fW6rKkPPnUVDGkyw?sub_confirmation=1 Watch New Order's other official music videos ▶ https://www.youtube.com/playlist?list=PLQevjdGcwa3lPNVDgA_GWjXvKblTr1eGu The original single was released in 1983, this later version was remixed by Quincy Jones and John Potoker in 1988 for Quest Records. Lyrics How does it feel to treat me like you do? When you've laid your hands upon me and told me who you are I thought I was mistaken, I thought I heard your words Tell me how do I feel Tell me now, how do I feel Those who came before me lived through their vocations From the past until completion, they'll turn away no m...

      published: 18 Oct 2013
    • New Order - Blue Monday on BBC's Top of the Pops - 31.3.1983

      New Order perform Blue Monday live on BBC's Top of the Pops on the 31st March 1983. Buy the reissued and remastered 12" single as part of Power, Corruption and Lies Definitive Edition now: https://lnk.to/NO-PCLYC Stream New Order's greatest hits here ▶https://lnk.to/StreamNewOrder Subscribe here ▶ https://www.youtube.com/channel/UCpSc... Watch New Order's other official music videos ▶ https://www.youtube.com/playlist?list... Lyrics: [Instrumental Intro] [Verse 1] How does it feel To treat me like you do? When you've laid your hands upon me And told me who you are? I thought I was mistaken I thought I heard your words Tell me how do I feel? Tell me now, how do I feel? Those who came before me Lived through their vocations From the past until completion They'll turn away no more And ...

      published: 19 Sep 2020
    • New Order - Blue Monday (Live at Alexandra Palace)

      New Order performs Blue Monday live from Alexandra Palace in 2018. The full concert titled education entertainment recreation is available to buy now: https://lnk.to/NO-EERYC Stream New Order's greatest hits here ▶https://lnk.to/StreamNewOrder Subscribe here ▶ https://lnk.to/NO-YTSub #NewOrder #BlueMonday #LiveAtAlexandraPalace

      published: 16 Jul 2021
    • Saddest day of the Year. What is Blue Monday? When does it happen?

      Blue Monday is often considered the saddest day of the year. No, there's no scientific proof to suggest Blue Monday is real. The third Monday in January is commonly considered the saddest day of the year, but some experts say it isn't actually more depressing than any other day of the month. --- Captured a weather video or photo that you want to share? Join The Weather Network community by signing up and submitting your videos or photos. Follow the link!: https://www.theweathernetwork.com/ca/my-account/sign-in Never miss a weather alert! TWN app download page - https://www.theweathernetwork.com/weather-apps Get all your up to date local and national weather by visiting http://www.theweathernetwork.com The Weather Network is committed to delivering weather updates and information to ...

      published: 15 Jan 2018
    • Blue Monday - New Order (slowed edit) (tik tok version)

      Original: https://www.youtube.com/watch?v=FYH8DsU2WCk tags: trip, trippy videos, acid, LSD, weed, 420, rolas para tripear, canciones para el trip, trip , tripeado, canciones tripeadas, WAT, slowed reverb acidness itself Psychodelic, psicodelico, psycho DMT trip Colorful trip color trip trippy songs trippy cats Molly chill relax driving music drivin songs lofi alternative underground indie party trip songs trip music cannabis ganya ganja Ganyia 710 420 acid blutter slowed reverb reverberation slowed down aesthetic cool anime aesthetic trip background music party drink drunk friends trippin balls monchis 80s music aesthetic retro old cool

      published: 23 May 2021
    • What is Blue Monday?

      #brandfounder of Pumpkin Productivity 🥰 and yes, this notion is basically pseudoscience but I think there’s some anecdotal truth in it!

      published: 15 Jan 2023
    • Orgy - ''Blue Monday'' (Music Video) HD

      The official music video for Blue Monday from the album Candyass Copyright to Warner Bros Records How does it feel to treat me like you do When you've laid your hands upon me And told me who you are I thought I was mistaken I thought I heard your words Tell me How do I feel tell me now How do I feel How does it feel? How should I feel? Tell me how does it feel? To treat me like you do Those who came before me Lived through their vocations From the past until completion They'll turn away no more And I still find it so hard To say what I need to say But I'm quite sure that you'll tell me Just how I should feel today I see ship in the harbor I can and shall obey But if it wasn't for your misfortunes I'd be a heavenly person today And I thought I was mistak...

      published: 14 Apr 2010
    • Sebastian Böhm - Blue Monday (Official "Wonder Woman 1984" Trailer Music)

      Blue Monday - Official "New Order" Epic Cover by Sebastian Böhm. Official "Wonder Woman 1984" Trailer Music. Stream/Buy "Blue Monday": https://fanlink.to/SebastianBohmBlueMonday Connect with me: Facebook: https://www.facebook.com/SebastianBohmMusic/ Instagram: https://www.instagram.com/sebastian_bohm_music/ Twitter: https://twitter.com/SebBohmMusic Spotify: https://open.spotify.com/artist/3Y3rZzomzJnLjgCAQxN0cb YouTube: https://www.youtube.com/channel/UCCxrjU46rQIbMVLsgt4EwrA Soundcloud: https://soundcloud.com/sebastianbohm Vimeo: https://vimeo.com/sebastianbohm Original music written by "New Order". Courtesy of Factory Records. Cover arranged and produced by Sebastian Böhm. #WonderWoman #WonderWoman1984 #TrailerMusic #Official

      published: 09 Dec 2019
    developed with YouTube
    New Order - Blue Monday
    7:27

    New Order - Blue Monday

    • Order:
    • Duration: 7:27
    • Uploaded Date: 01 Feb 2010
    • views: 187329062
    Original song from 1983
    https://wn.com/New_Order_Blue_Monday
    New Order - Blue Monday (Official Lyric Video)
    7:31

    New Order - Blue Monday (Official Lyric Video)

    • Order:
    • Duration: 7:31
    • Uploaded Date: 15 Sep 2020
    • views: 74406159
    The official lyric video for New Order's Blue Monday. Buy Power, Corruption and Lies Definitive Edition now: https://lnk.to/NO-PCLYC Stream New Order's greatest hits here ▶https://lnk.to/StreamNewOrder Subscribe here ▶ https://www.youtube.com/channel/UCpSc... Watch New Order's other official music videos ▶ https://www.youtube.com/playlist?list... Lyrics: [Instrumental Intro] [Verse 1] How does it feel To treat me like you do? When you've laid your hands upon me And told me who you are? I thought I was mistaken I thought I heard your words Tell me how do I feel? Tell me now, how do I feel? Those who came before me Lived through their vocations From the past until completion They'll turn away no more And still, I find it so hard To say what I need to say But, I'm quite sure that you'll tell me Just how I should feel today [Instrumental Break] [Verse 2] I see a ship in the harbour I can and shall obey But, if it wasn't for your misfortune I'd be a heavenly person today And I thought I was mistaken And I thought I heard you speak Tell me, how do I feel? Tell me now, how should I feel? Now I stand here waiting [Verse 3] I thought I told you to leave me When I walked down to the beach Tell me how does it feel When your heart grows cold (Grows cold, grows cold, grows cold, grows cold) [Instrumental Outro] #NewOrder #BlueMonday #LyricVideo
    https://wn.com/New_Order_Blue_Monday_(Official_Lyric_Video)
    New Order - Blue Monday 88 (Official Music Video)
    4:24

    New Order - Blue Monday 88 (Official Music Video)

    • Order:
    • Duration: 4:24
    • Uploaded Date: 18 Oct 2013
    • views: 16491729
    The Official Video for 'Blue Monday '88' by New Order. Stream New Order's greatest hits here ▶https://lnk.to/StreamNewOrder Subscribe here ▶ https://www.youtube.com/channel/UCpScI40fW6rKkPPnUVDGkyw?sub_confirmation=1 Watch New Order's other official music videos ▶ https://www.youtube.com/playlist?list=PLQevjdGcwa3lPNVDgA_GWjXvKblTr1eGu The original single was released in 1983, this later version was remixed by Quincy Jones and John Potoker in 1988 for Quest Records. Lyrics How does it feel to treat me like you do? When you've laid your hands upon me and told me who you are I thought I was mistaken, I thought I heard your words Tell me how do I feel Tell me now, how do I feel Those who came before me lived through their vocations From the past until completion, they'll turn away no more And still I find it so hard to say what I need to say But I'm quite sure that you'll tell me just how I should feel today I see a ship in the harbor I can and shall obey But if it wasn't for your misfortune, I'd be a heavenly person today And I thought I was mistaken, and I thought I heard you speak Tell me, how do I feel Tell me now, how should I feel Now I stand here waiting I thought I told you to leave me when I walked down to the beach Tell me how does it feel, when your heart grows cold, grows cold, cold #NewOrder #BlueMonday #BlueMonday88
    https://wn.com/New_Order_Blue_Monday_88_(Official_Music_Video)
    New Order - Blue Monday on BBC's Top of the Pops - 31.3.1983
    4:07

    New Order - Blue Monday on BBC's Top of the Pops - 31.3.1983

    • Order:
    • Duration: 4:07
    • Uploaded Date: 19 Sep 2020
    • views: 2574030
    New Order perform Blue Monday live on BBC's Top of the Pops on the 31st March 1983. Buy the reissued and remastered 12" single as part of Power, Corruption and Lies Definitive Edition now: https://lnk.to/NO-PCLYC Stream New Order's greatest hits here ▶https://lnk.to/StreamNewOrder Subscribe here ▶ https://www.youtube.com/channel/UCpSc... Watch New Order's other official music videos ▶ https://www.youtube.com/playlist?list... Lyrics: [Instrumental Intro] [Verse 1] How does it feel To treat me like you do? When you've laid your hands upon me And told me who you are? I thought I was mistaken I thought I heard your words Tell me how do I feel? Tell me now, how do I feel? Those who came before me Lived through their vocations From the past until completion They'll turn away no more And still, I find it so hard To say what I need to say But, I'm quite sure that you'll tell me Just how I should feel today [Instrumental Break] [Verse 2] I see a ship in the harbour I can and shall obey But, if it wasn't for your misfortune I'd be a heavenly person today And I thought I was mistaken And I thought I heard you speak Tell me, how do I feel? Tell me now, how should I feel? Now I stand here waiting [Verse 3] I thought I told you to leave me When I walked down to the beach Tell me how does it feel When your heart grows cold (Grows cold, grows cold, grows cold, grows cold) [Instrumental Outro] #NewOrder #BlueMonday #TopofthePops
    https://wn.com/New_Order_Blue_Monday_On_Bbc's_Top_Of_The_Pops_31.3.1983
    New Order - Blue Monday (Live at Alexandra Palace)
    7:18

    New Order - Blue Monday (Live at Alexandra Palace)

    • Order:
    • Duration: 7:18
    • Uploaded Date: 16 Jul 2021
    • views: 14165671
    New Order performs Blue Monday live from Alexandra Palace in 2018. The full concert titled education entertainment recreation is available to buy now: https://lnk.to/NO-EERYC Stream New Order's greatest hits here ▶https://lnk.to/StreamNewOrder Subscribe here ▶ https://lnk.to/NO-YTSub #NewOrder #BlueMonday #LiveAtAlexandraPalace
    https://wn.com/New_Order_Blue_Monday_(Live_At_Alexandra_Palace)
    Saddest day of the Year. What is Blue Monday? When does it happen?
    1:07

    Saddest day of the Year. What is Blue Monday? When does it happen?

    • Order:
    • Duration: 1:07
    • Uploaded Date: 15 Jan 2018
    • views: 4146
    Blue Monday is often considered the saddest day of the year. No, there's no scientific proof to suggest Blue Monday is real. The third Monday in January is commonly considered the saddest day of the year, but some experts say it isn't actually more depressing than any other day of the month. --- Captured a weather video or photo that you want to share? Join The Weather Network community by signing up and submitting your videos or photos. Follow the link!: https://www.theweathernetwork.com/ca/my-account/sign-in Never miss a weather alert! TWN app download page - https://www.theweathernetwork.com/weather-apps Get all your up to date local and national weather by visiting http://www.theweathernetwork.com The Weather Network is committed to delivering weather updates and information to audiences 24 hours a day, 365 days a year. For over 25 years The Weather Network has been an English language weather news and information specialty channel that is owned by Pelmorex Media. #BLUEMONDAY #DEPRESSION #WINTER
    https://wn.com/Saddest_Day_Of_The_Year._What_Is_Blue_Monday_When_Does_It_Happen
    Blue Monday - New Order (slowed edit) (tik tok version)
    2:57

    Blue Monday - New Order (slowed edit) (tik tok version)

    • Order:
    • Duration: 2:57
    • Uploaded Date: 23 May 2021
    • views: 12663351
    Original: https://www.youtube.com/watch?v=FYH8DsU2WCk tags: trip, trippy videos, acid, LSD, weed, 420, rolas para tripear, canciones para el trip, trip , tripeado, canciones tripeadas, WAT, slowed reverb acidness itself Psychodelic, psicodelico, psycho DMT trip Colorful trip color trip trippy songs trippy cats Molly chill relax driving music drivin songs lofi alternative underground indie party trip songs trip music cannabis ganya ganja Ganyia 710 420 acid blutter slowed reverb reverberation slowed down aesthetic cool anime aesthetic trip background music party drink drunk friends trippin balls monchis 80s music aesthetic retro old cool
    https://wn.com/Blue_Monday_New_Order_(Slowed_Edit)_(Tik_Tok_Version)
    What is Blue Monday?
    0:45

    What is Blue Monday?

    • Order:
    • Duration: 0:45
    • Uploaded Date: 15 Jan 2023
    • views: 75517
    #brandfounder of Pumpkin Productivity 🥰 and yes, this notion is basically pseudoscience but I think there’s some anecdotal truth in it!
    https://wn.com/What_Is_Blue_Monday
    Orgy - ''Blue Monday'' (Music Video) HD
    3:48

    Orgy - ''Blue Monday'' (Music Video) HD

    • Order:
    • Duration: 3:48
    • Uploaded Date: 14 Apr 2010
    • views: 8336031
    The official music video for Blue Monday from the album Candyass Copyright to Warner Bros Records How does it feel to treat me like you do When you've laid your hands upon me And told me who you are I thought I was mistaken I thought I heard your words Tell me How do I feel tell me now How do I feel How does it feel? How should I feel? Tell me how does it feel? To treat me like you do Those who came before me Lived through their vocations From the past until completion They'll turn away no more And I still find it so hard To say what I need to say But I'm quite sure that you'll tell me Just how I should feel today I see ship in the harbor I can and shall obey But if it wasn't for your misfortunes I'd be a heavenly person today And I thought I was mistaken And I thought I heard you speak Tell me how do I feel Tell me now how should I feel Now I stand here waiting... I thought I told you to leave me While I walked down to the beach Tell me how does it feel when your heart grows cold How does it feel? How should I feel? Tell me how does it feel? To treat me like you do
    https://wn.com/Orgy_''Blue_Monday''_(Music_Video)_Hd
    Sebastian Böhm - Blue Monday (Official "Wonder Woman 1984" Trailer Music)
    3:33

    Sebastian Böhm - Blue Monday (Official "Wonder Woman 1984" Trailer Music)

    • Order:
    • Duration: 3:33
    • Uploaded Date: 09 Dec 2019
    • views: 9097890
    Blue Monday - Official "New Order" Epic Cover by Sebastian Böhm. Official "Wonder Woman 1984" Trailer Music. Stream/Buy "Blue Monday": https://fanlink.to/SebastianBohmBlueMonday Connect with me: Facebook: https://www.facebook.com/SebastianBohmMusic/ Instagram: https://www.instagram.com/sebastian_bohm_music/ Twitter: https://twitter.com/SebBohmMusic Spotify: https://open.spotify.com/artist/3Y3rZzomzJnLjgCAQxN0cb YouTube: https://www.youtube.com/channel/UCCxrjU46rQIbMVLsgt4EwrA Soundcloud: https://soundcloud.com/sebastianbohm Vimeo: https://vimeo.com/sebastianbohm Original music written by "New Order". Courtesy of Factory Records. Cover arranged and produced by Sebastian Böhm. #WonderWoman #WonderWoman1984 #TrailerMusic #Official
    https://wn.com/Sebastian_Böhm_Blue_Monday_(Official_Wonder_Woman_1984_Trailer_Music)
    • New Order - Blue Monday (Official Lyric Video)

      The official lyric video for New Order's Blue Monday. Buy Power, Corruption and Lies Definitive Edition now: https://lnk.to/NO-PCLYC Stream New Order's greatest hits here ▶https://lnk.to/StreamNewOrder Subscribe here ▶ https://www.youtube.com/channel/UCpSc... Watch New Order's other official music videos ▶ https://www.youtube.com/playlist?list... Lyrics: [Instrumental Intro] [Verse 1] How does it feel To treat me like you do? When you've laid your hands upon me And told me who you are? I thought I was mistaken I thought I heard your words Tell me how do I feel? Tell me now, how do I feel? Those who came before me Lived through their vocations From the past until completion They'll turn away no more And still, I find it so hard To say what I need to say But, I'm quite sure that you'...

      published: 15 Sep 2020
    • New Order - Blue Monday

      Original song from 1983

      published: 01 Feb 2010
    • New Order - Blue Monday 88 (Official Music Video)

      The Official Video for 'Blue Monday '88' by New Order. Stream New Order's greatest hits here ▶https://lnk.to/StreamNewOrder Subscribe here ▶ https://www.youtube.com/channel/UCpScI40fW6rKkPPnUVDGkyw?sub_confirmation=1 Watch New Order's other official music videos ▶ https://www.youtube.com/playlist?list=PLQevjdGcwa3lPNVDgA_GWjXvKblTr1eGu The original single was released in 1983, this later version was remixed by Quincy Jones and John Potoker in 1988 for Quest Records. Lyrics How does it feel to treat me like you do? When you've laid your hands upon me and told me who you are I thought I was mistaken, I thought I heard your words Tell me how do I feel Tell me now, how do I feel Those who came before me lived through their vocations From the past until completion, they'll turn away no m...

      published: 18 Oct 2013
    • Blue Monday (2016 Remaster)

      Provided to YouTube by Rhino/Warner Records Blue Monday (2016 Remaster) · New Order Singles ℗ 1983, 2016 Warner Music UK Ltd Unknown: Barry Sage Producer: Bernard Sumner Programmer, Synthesizer, Vocals: Bernard Sumner Producer: Gillian Gilbert Programmer, Synthesizer: Gillian Gilbert Unknown: Mark Boyne Engineer: Michael Johnson Bass Guitar: Peter Hook Percussion, Programmer: Peter Hook Producer: Peter Hook Drums, Programmer, Synthesizer: Stephen Morris Producer: Stephen Morris Writer: Bernard Sumner Writer: Gillian Gilbert Writer: Peter Hook Writer: Stephen Morris Auto-generated by YouTube.

      published: 11 Sep 2016
    • Blue Monday - New Order (slowed edit) (tik tok version)

      Original: https://www.youtube.com/watch?v=FYH8DsU2WCk tags: trip, trippy videos, acid, LSD, weed, 420, rolas para tripear, canciones para el trip, trip , tripeado, canciones tripeadas, WAT, slowed reverb acidness itself Psychodelic, psicodelico, psycho DMT trip Colorful trip color trip trippy songs trippy cats Molly chill relax driving music drivin songs lofi alternative underground indie party trip songs trip music cannabis ganya ganja Ganyia 710 420 acid blutter slowed reverb reverberation slowed down aesthetic cool anime aesthetic trip background music party drink drunk friends trippin balls monchis 80s music aesthetic retro old cool

      published: 23 May 2021
    • Sebastian Böhm - Blue Monday (Official "Wonder Woman 1984" Trailer Music)

      Blue Monday - Official "New Order" Epic Cover by Sebastian Böhm. Official "Wonder Woman 1984" Trailer Music. Stream/Buy "Blue Monday": https://fanlink.to/SebastianBohmBlueMonday Connect with me: Facebook: https://www.facebook.com/SebastianBohmMusic/ Instagram: https://www.instagram.com/sebastian_bohm_music/ Twitter: https://twitter.com/SebBohmMusic Spotify: https://open.spotify.com/artist/3Y3rZzomzJnLjgCAQxN0cb YouTube: https://www.youtube.com/channel/UCCxrjU46rQIbMVLsgt4EwrA Soundcloud: https://soundcloud.com/sebastianbohm Vimeo: https://vimeo.com/sebastianbohm Original music written by "New Order". Courtesy of Factory Records. Cover arranged and produced by Sebastian Böhm. #WonderWoman #WonderWoman1984 #TrailerMusic #Official

      published: 09 Dec 2019
    • Orkestra Obsolete play Blue Monday using 1930s instruments - BBC Arts

      Subscribe and 🔔 to the BBC 👉 https://bit.ly/BBCYouTubeSub Watch the BBC first on iPlayer 👉 https://bbc.in/iPlayer-Home More information: http://bbc.in/1SC6Atc New Order's Blue Monday was released on 7 March 1983, and its cutting-edge electronic groove changed pop music forever. But what would it have sounded like if it had been made 50 years earlier? In a special film, using only instruments available in the 1930s - from the theremin and musical saw to the harmonium and prepared piano - the mysterious Orkestra Obsolete present this classic track as you've never heard it before. #bbc All our TV channels and S4C are available to watch live through BBC iPlayer, although some programmes may not be available to stream online due to rights. If you would like to read more on what types of progra...

      published: 10 Mar 2016
    • 🔍 WOLVES V IPSWICH TOWN MATCH PREVIEW | Blue Monday Prematch Show | #itfc #wwfc

      We look ahead to a potentially pivotal match in the Premier League relegation race as Ipswich Town travel to Wolverhampton Wanderers. ⚽️ Blue Monday is an Ipswich Town podcast and video channel - in partnership with Attwells Solicitors: https://attwells.com/ and One Stop Badges: https://onestopbadges.co.uk/blue-monday-offer/. Our FPL feature is in partnership with Brett Vale Golf Club: https://www.brettvalegolf.co.uk/. 🔔 Please subscribe to access our weekly shows covering all things ITFC: TUE: ⏪ BM Rewind | WED: 🔮 PL Predictions | THU: 🔍 Prematch Show | SUN: 🚩 Flagship Show 💻 To find out more about us head to our website: http://BlueMondayITFC.co.uk 🎵 Editors - 'A Ton Of Love' (taken from the album 'The Weight of Your Love') is used in our intro/outro under licence with huge thanks ...

      published: 12 Dec 2024
    • La France ne s'aime pas ?

      published: 10 Dec 2024
    • New Order - Blue Monday (Switch 1983)

      Performance taken from Power, Corruption & Lies (Definitive Edition) DVD. All rights are reserved to their respective owners.

      published: 04 Feb 2022
    developed with YouTube
    New Order - Blue Monday (Official Lyric Video)
    7:31

    New Order - Blue Monday (Official Lyric Video)

    • Order:
    • Duration: 7:31
    • Uploaded Date: 15 Sep 2020
    • views: 74406159
    The official lyric video for New Order's Blue Monday. Buy Power, Corruption and Lies Definitive Edition now: https://lnk.to/NO-PCLYC Stream New Order's greatest hits here ▶https://lnk.to/StreamNewOrder Subscribe here ▶ https://www.youtube.com/channel/UCpSc... Watch New Order's other official music videos ▶ https://www.youtube.com/playlist?list... Lyrics: [Instrumental Intro] [Verse 1] How does it feel To treat me like you do? When you've laid your hands upon me And told me who you are? I thought I was mistaken I thought I heard your words Tell me how do I feel? Tell me now, how do I feel? Those who came before me Lived through their vocations From the past until completion They'll turn away no more And still, I find it so hard To say what I need to say But, I'm quite sure that you'll tell me Just how I should feel today [Instrumental Break] [Verse 2] I see a ship in the harbour I can and shall obey But, if it wasn't for your misfortune I'd be a heavenly person today And I thought I was mistaken And I thought I heard you speak Tell me, how do I feel? Tell me now, how should I feel? Now I stand here waiting [Verse 3] I thought I told you to leave me When I walked down to the beach Tell me how does it feel When your heart grows cold (Grows cold, grows cold, grows cold, grows cold) [Instrumental Outro] #NewOrder #BlueMonday #LyricVideo
    https://wn.com/New_Order_Blue_Monday_(Official_Lyric_Video)
    New Order - Blue Monday
    7:27

    New Order - Blue Monday

    • Order:
    • Duration: 7:27
    • Uploaded Date: 01 Feb 2010
    • views: 187329062
    Original song from 1983
    https://wn.com/New_Order_Blue_Monday
    New Order - Blue Monday 88 (Official Music Video)
    4:24

    New Order - Blue Monday 88 (Official Music Video)

    • Order:
    • Duration: 4:24
    • Uploaded Date: 18 Oct 2013
    • views: 16491729
    The Official Video for 'Blue Monday '88' by New Order. Stream New Order's greatest hits here ▶https://lnk.to/StreamNewOrder Subscribe here ▶ https://www.youtube.com/channel/UCpScI40fW6rKkPPnUVDGkyw?sub_confirmation=1 Watch New Order's other official music videos ▶ https://www.youtube.com/playlist?list=PLQevjdGcwa3lPNVDgA_GWjXvKblTr1eGu The original single was released in 1983, this later version was remixed by Quincy Jones and John Potoker in 1988 for Quest Records. Lyrics How does it feel to treat me like you do? When you've laid your hands upon me and told me who you are I thought I was mistaken, I thought I heard your words Tell me how do I feel Tell me now, how do I feel Those who came before me lived through their vocations From the past until completion, they'll turn away no more And still I find it so hard to say what I need to say But I'm quite sure that you'll tell me just how I should feel today I see a ship in the harbor I can and shall obey But if it wasn't for your misfortune, I'd be a heavenly person today And I thought I was mistaken, and I thought I heard you speak Tell me, how do I feel Tell me now, how should I feel Now I stand here waiting I thought I told you to leave me when I walked down to the beach Tell me how does it feel, when your heart grows cold, grows cold, cold #NewOrder #BlueMonday #BlueMonday88
    https://wn.com/New_Order_Blue_Monday_88_(Official_Music_Video)
    Blue Monday (2016 Remaster)
    7:31

    Blue Monday (2016 Remaster)

    • Order:
    • Duration: 7:31
    • Uploaded Date: 11 Sep 2016
    • views: 23644327
    Provided to YouTube by Rhino/Warner Records Blue Monday (2016 Remaster) · New Order Singles ℗ 1983, 2016 Warner Music UK Ltd Unknown: Barry Sage Producer: Bernard Sumner Programmer, Synthesizer, Vocals: Bernard Sumner Producer: Gillian Gilbert Programmer, Synthesizer: Gillian Gilbert Unknown: Mark Boyne Engineer: Michael Johnson Bass Guitar: Peter Hook Percussion, Programmer: Peter Hook Producer: Peter Hook Drums, Programmer, Synthesizer: Stephen Morris Producer: Stephen Morris Writer: Bernard Sumner Writer: Gillian Gilbert Writer: Peter Hook Writer: Stephen Morris Auto-generated by YouTube.
    https://wn.com/Blue_Monday_(2016_Remaster)
    Blue Monday - New Order (slowed edit) (tik tok version)
    2:57

    Blue Monday - New Order (slowed edit) (tik tok version)

    • Order:
    • Duration: 2:57
    • Uploaded Date: 23 May 2021
    • views: 12663351
    Original: https://www.youtube.com/watch?v=FYH8DsU2WCk tags: trip, trippy videos, acid, LSD, weed, 420, rolas para tripear, canciones para el trip, trip , tripeado, canciones tripeadas, WAT, slowed reverb acidness itself Psychodelic, psicodelico, psycho DMT trip Colorful trip color trip trippy songs trippy cats Molly chill relax driving music drivin songs lofi alternative underground indie party trip songs trip music cannabis ganya ganja Ganyia 710 420 acid blutter slowed reverb reverberation slowed down aesthetic cool anime aesthetic trip background music party drink drunk friends trippin balls monchis 80s music aesthetic retro old cool
    https://wn.com/Blue_Monday_New_Order_(Slowed_Edit)_(Tik_Tok_Version)
    Sebastian Böhm - Blue Monday (Official "Wonder Woman 1984" Trailer Music)
    3:33

    Sebastian Böhm - Blue Monday (Official "Wonder Woman 1984" Trailer Music)

    • Order:
    • Duration: 3:33
    • Uploaded Date: 09 Dec 2019
    • views: 9097890
    Blue Monday - Official "New Order" Epic Cover by Sebastian Böhm. Official "Wonder Woman 1984" Trailer Music. Stream/Buy "Blue Monday": https://fanlink.to/SebastianBohmBlueMonday Connect with me: Facebook: https://www.facebook.com/SebastianBohmMusic/ Instagram: https://www.instagram.com/sebastian_bohm_music/ Twitter: https://twitter.com/SebBohmMusic Spotify: https://open.spotify.com/artist/3Y3rZzomzJnLjgCAQxN0cb YouTube: https://www.youtube.com/channel/UCCxrjU46rQIbMVLsgt4EwrA Soundcloud: https://soundcloud.com/sebastianbohm Vimeo: https://vimeo.com/sebastianbohm Original music written by "New Order". Courtesy of Factory Records. Cover arranged and produced by Sebastian Böhm. #WonderWoman #WonderWoman1984 #TrailerMusic #Official
    https://wn.com/Sebastian_Böhm_Blue_Monday_(Official_Wonder_Woman_1984_Trailer_Music)
    Orkestra Obsolete play Blue Monday using 1930s instruments - BBC Arts
    4:00

    Orkestra Obsolete play Blue Monday using 1930s instruments - BBC Arts

    • Order:
    • Duration: 4:00
    • Uploaded Date: 10 Mar 2016
    • views: 8975434
    Subscribe and 🔔 to the BBC 👉 https://bit.ly/BBCYouTubeSub Watch the BBC first on iPlayer 👉 https://bbc.in/iPlayer-Home More information: http://bbc.in/1SC6Atc New Order's Blue Monday was released on 7 March 1983, and its cutting-edge electronic groove changed pop music forever. But what would it have sounded like if it had been made 50 years earlier? In a special film, using only instruments available in the 1930s - from the theremin and musical saw to the harmonium and prepared piano - the mysterious Orkestra Obsolete present this classic track as you've never heard it before. #bbc All our TV channels and S4C are available to watch live through BBC iPlayer, although some programmes may not be available to stream online due to rights. If you would like to read more on what types of programmes are available to watch live, check the 'Are all programmes that are broadcast available on BBC iPlayer?' FAQ 👉 https://bbc.in/2m8ks6v.
    https://wn.com/Orkestra_Obsolete_Play_Blue_Monday_Using_1930S_Instruments_BBC_Arts
    🔍 WOLVES V IPSWICH TOWN MATCH PREVIEW | Blue Monday Prematch Show | #itfc #wwfc
    56:45

    🔍 WOLVES V IPSWICH TOWN MATCH PREVIEW | Blue Monday Prematch Show | #itfc #wwfc

    • Order:
    • Duration: 56:45
    • Uploaded Date: 12 Dec 2024
    • views: 911
    We look ahead to a potentially pivotal match in the Premier League relegation race as Ipswich Town travel to Wolverhampton Wanderers. ⚽️ Blue Monday is an Ipswich Town podcast and video channel - in partnership with Attwells Solicitors: https://attwells.com/ and One Stop Badges: https://onestopbadges.co.uk/blue-monday-offer/. Our FPL feature is in partnership with Brett Vale Golf Club: https://www.brettvalegolf.co.uk/. 🔔 Please subscribe to access our weekly shows covering all things ITFC: TUE: ⏪ BM Rewind | WED: 🔮 PL Predictions | THU: 🔍 Prematch Show | SUN: 🚩 Flagship Show 💻 To find out more about us head to our website: http://BlueMondayITFC.co.uk 🎵 Editors - 'A Ton Of Love' (taken from the album 'The Weight of Your Love') is used in our intro/outro under licence with huge thanks to PIAS: https://youtu.be/jQQ2gTkV-GM Episode *867*
    https://wn.com/🔍_Wolves_V_Ipswich_Town_Match_Preview_|_Blue_Monday_Prematch_Show_|_Itfc_Wwfc
    La France ne s'aime pas ?
    0:20

    La France ne s'aime pas ?

    • Order:
    • Duration: 0:20
    • Uploaded Date: 10 Dec 2024
    • views: 521
    https://wn.com/La_France_Ne_S'Aime_Pas
    New Order - Blue Monday (Switch 1983)
    5:35

    New Order - Blue Monday (Switch 1983)

    • Order:
    • Duration: 5:35
    • Uploaded Date: 04 Feb 2022
    • views: 933695
    Performance taken from Power, Corruption & Lies (Definitive Edition) DVD. All rights are reserved to their respective owners.
    https://wn.com/New_Order_Blue_Monday_(Switch_1983)
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • New Order - Blue Monday (Official Lyric Video)
      7:31
      New Order - Blue Monday (Official Lyric Video)remove from playlist
    • New Order - Blue Monday 88 (Official Music Video)
      4:24
      New Order - Blue Monday 88 (Official Music Video)remove from playlist
    • New Order - Blue Monday on BBC's Top of the Pops - 31.3.1983
      4:07
      New Order - Blue Monday on BBC's Top of the Pops - 31.3.1983remove from playlist
    • New Order - Blue Monday (Live at Alexandra Palace)
      7:18
      New Order - Blue Monday (Live at Alexandra Palace)remove from playlist
    • Saddest day of the Year. What is Blue Monday? When does it happen?
      1:07
      Saddest day of the Year. What is Blue Monday? When does it happen?remove from playlist
    • Blue Monday - New Order (slowed edit) (tik tok version)
      2:57
      Blue Monday - New Order (slowed edit) (tik tok version)remove from playlist
    • What is Blue Monday?
      0:45
      What is Blue Monday?remove from playlist
    • Orgy - ''Blue Monday'' (Music Video) HD
      3:48
      Orgy - ''Blue Monday'' (Music Video) HDremove from playlist
    • Sebastian Böhm - Blue Monday (Official
      3:33
      Sebastian Böhm - Blue Monday (Official "Wonder Woman 1984" Trailer Music)remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    New Order - Blue Monday

    Original song from 1983
    7:27
    New Order - Blue Monday
    Original song from 1983
    published: 01 Feb 2010
    Play in Full Screen
    7:31
    New Order - Blue Monday (Official Lyric Video)
    The official lyric video for New Order's Blue Monday. Buy Power, Corruption and Lies Defi...
    published: 15 Sep 2020
    Play in Full Screen
    4:24
    New Order - Blue Monday 88 (Official Music Video)
    The Official Video for 'Blue Monday '88' by New Order. Stream New Order's greatest hits h...
    published: 18 Oct 2013
    Play in Full Screen
    4:07
    New Order - Blue Monday on BBC's Top of the Pops - 31.3.1983
    New Order perform Blue Monday live on BBC's Top of the Pops on the 31st March 1983. Buy ...
    published: 19 Sep 2020
    Play in Full Screen
    7:18
    New Order - Blue Monday (Live at Alexandra Palace)
    New Order performs Blue Monday live from Alexandra Palace in 2018. The full concert titled...
    published: 16 Jul 2021
    Play in Full Screen
    1:07
    Saddest day of the Year. What is Blue Monday? When does it happen?
    Blue Monday is often considered the saddest day of the year. No, there's no scientific pro...
    published: 15 Jan 2018
    Play in Full Screen
    2:57
    Blue Monday - New Order (slowed edit) (tik tok version)
    Original: https://www.youtube.com/watch?v=FYH8DsU2WCk tags: trip, trippy videos, acid...
    published: 23 May 2021
    Play in Full Screen
    0:45
    What is Blue Monday?
    #brandfounder of Pumpkin Productivity 🥰 and yes, this notion is basically pseudoscience bu...
    published: 15 Jan 2023
    Play in Full Screen
    3:48
    Orgy - ''Blue Monday'' (Music Video) HD
    The official music video for Blue Monday from the album Candyass Copyright to Warner Bros...
    published: 14 Apr 2010
    Play in Full Screen
    3:33
    Sebastian Böhm - Blue Monday (Official "Wonder Woman 1984" Trailer Music)
    Blue Monday - Official "New Order" Epic Cover by Sebastian Böhm. Official "Wonder Woman 19...
    published: 09 Dec 2019
    Play in Full Screen

    Blue Monday (date)

    Blue Monday is a name given to a day in January (typically the third Monday of the month) reported to be the most depressing day of the year. The concept was first publicised as part of a 2005 press release from holiday company Sky Travel which claimed to have calculated the date using an equation.

    The idea is considered pseudoscience, with its formula derided by scientists as nonsensical.

    History

    This date was published in a press release under the name of Cliff Arnall, at the time a tutor at the Centre for Lifelong Learning, a Further Education centre attached to Cardiff University. Guardian columnist Dr. Ben Goldacre reported that the press release was delivered substantially pre-written to a number of academics by public relations agency Porter Novelli, who offered them money to put their names to it. The Guardian later printed a statement from Cardiff University distancing themselves from Arnall: "Cardiff University has asked us to point out that Cliff Arnall... was a former part-time tutor at the university but left in February."

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

    New Order - Blue Monday (Official Lyric Video)

    The official lyric video for New Order's Blue Monday. Buy Power, Corruption and Lies Definitive Edition now: https://lnk.to/NO-PCLYC Stream New Order's greatest hits here ▶https://lnk.to/StreamNewOrder Subscribe here ▶ https://www.youtube.com/channel/UCpSc... Watch New Order's other official music videos ▶ https://www.youtube.com/playlist?list... Lyrics: [Instrumental Intro] [Verse 1] How does it feel To treat me like you do? When you've laid your hands upon me And told me who you are? I thought I was mistaken I thought I heard your words Tell me how do I feel? Tell me now, how do I feel? Those who came before me Lived through their vocations From the past until completion They'll turn away no more And still, I find it so hard To say what I need to say But, I'm quite sure that you'll tell me Just how I should feel today [Instrumental Break] [Verse 2] I see a ship in the harbour I can and shall obey But, if it wasn't for your misfortune I'd be a heavenly person today And I thought I was mistaken And I thought I heard you speak Tell me, how do I feel? Tell me now, how should I feel? Now I stand here waiting [Verse 3] I thought I told you to leave me When I walked down to the beach Tell me how does it feel When your heart grows cold (Grows cold, grows cold, grows cold, grows cold) [Instrumental Outro] #NewOrder #BlueMonday #LyricVideo
    7:31
    New Order - Blue Monday (Official Lyric Video)
    The official lyric video for New Order's Blue Monday. Buy Power, Corruption and Lies Defi...
    published: 15 Sep 2020
    Play in Full Screen
    7:27
    New Order - Blue Monday
    Original song from 1983
    published: 01 Feb 2010
    Play in Full Screen
    4:24
    New Order - Blue Monday 88 (Official Music Video)
    The Official Video for 'Blue Monday '88' by New Order. Stream New Order's greatest hits h...
    published: 18 Oct 2013
    Play in Full Screen
    7:31
    Blue Monday (2016 Remaster)
    Provided to YouTube by Rhino/Warner Records Blue Monday (2016 Remaster) · New Order Sing...
    published: 11 Sep 2016
    Play in Full Screen
    2:57
    Blue Monday - New Order (slowed edit) (tik tok version)
    Original: https://www.youtube.com/watch?v=FYH8DsU2WCk tags: trip, trippy videos, acid...
    published: 23 May 2021
    Play in Full Screen
    3:33
    Sebastian Böhm - Blue Monday (Official "Wonder Woman 1984" Trailer Music)
    Blue Monday - Official "New Order" Epic Cover by Sebastian Böhm. Official "Wonder Woman 19...
    published: 09 Dec 2019
    Play in Full Screen
    4:00
    Orkestra Obsolete play Blue Monday using 1930s instruments - BBC Arts
    Subscribe and 🔔 to the BBC 👉 https://bit.ly/BBCYouTubeSub Watch the BBC first on iPlayer 👉...
    published: 10 Mar 2016
    Play in Full Screen
    56:45
    🔍 WOLVES V IPSWICH TOWN MATCH PREVIEW | Blue Monday Prematch Show | #itfc #wwfc
    We look ahead to a potentially pivotal match in the Premier League relegation race as Ipsw...
    published: 12 Dec 2024
    Play in Full Screen
    0:20
    La France ne s'aime pas ?
    published: 10 Dec 2024
    Play in Full Screen
    5:35
    New Order - Blue Monday (Switch 1983)
    Performance taken from Power, Corruption & Lies (Definitive Edition) DVD. All rights are r...
    published: 04 Feb 2022
    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)); } }); }); }); // -->
    ×