- published: 01 Feb 2010
- views: 186639410
'+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 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.
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 may refer to:
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.
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.
Original song from 1983
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'...
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...
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 ...
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
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 ...
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
#brandfounder of Pumpkin Productivity 🥰 and yes, this notion is basically pseudoscience but I think there’s some anecdotal truth in it!
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...
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
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'...
Original song from 1983
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...
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
Buy/stream: https://aboveandbeyond.ffm.to/abbm.oyd Subscribe to our channel: https://lnk.to/YTA_B Stream us on Spotify: https://Anjunabeats.lnk.to/AboveBeyondSpotifyYo Follow us on Tik Tok: https://www.tiktok.com/@aboveandbeyondofficial Join the #BlueMonday challenge on Tik Tok and Instagram reels. Few tracks capture the indie-electronic spirit that inspires Above & Beyond quite like New Order’s iconic single from 1983: ‘Blue Monday’. One of the most recognisable riffs in electronic music, ‘Blue Monday’ was a platinum selling record in the U.K., inspiring a generation of producers - Jono, Tony and Paavo included - with its innovative sound design. Debuted during Above & Beyond’s sold-out show at London’s Alexandra Palace in 2013, this full-throttle remake recreates the classic riff an...
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 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 now How should I fee...
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...
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
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
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 ...
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.
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."
So you had me pegged from day one, a worthless kid. Just
by my look I could never stand up to your expectations.
But I never cared for your fucking small talk I grew
tired of posturing too long ago. I don't want to break
the ice or be something I'm not, everyone is trying to
impress someone, and I'm just sick and tired of this
worthless game. You're self-important and I won't break
your fall you're destined to take from your pedestal that
is built on nothing but ego and lies. I'll just move
along and turn my eyes blind while you continue to sell
yourself short. I don't wanna break the ice, or be
something I'm not, everyone is trying to impress someone,
and I'm just sick and tired of this worthless game. Where
is the fucking substance in what you say? 'Cause I'm not
hearing anything, you just wear your strings and get
played. 'Cause they wanted you that way, FUCK THIS GAME.
Who you are, and who you know, do you really think I give
a shit? Wipe that fucking smile right off your face.
You're only something to yourself; your arrogance is