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

The Idea

The Idea may refer to:

  • The Idea (book), a 1920 wordless novel by Frans Masereel
  • The Idea (1932 film), an animated film by Berthold Bartosch based on the Masereel novel
  • "The Idea", a 1976 short story by Raymond Carver from Will You Please Be Quiet, Please?
  • The Idea (musical)

    The Idea is a musical with words and music by Joseph Hart.

    The original production, featuring Frederick Hallen and Joseph Hart, was produced by Hallen in Boston in the fall 1892. It then opened in New York City at the Fourteenth Street Theatre on April 9, 1893 and was still playing there in October.

    In 1894, a revival played in Chicago.

    Roles and New York cast

    The opening night cast in New York was as follows:

  • Peach Blow: Fannie Bloodgood
  • Mrs. Morton Howes/Johnny Get: Mollie Fuller
  • Nellie Dogood: Margueritte De Mar
  • Mary B. Quiet: Carrie De Mar
  • Gedney Howes: Loretta Morgan
  • Victoria Howes: Edith Murray
  • Marlborough Howes: Jennie Grovini
  • Morton Howes: J. Aldrich Libbey
  • Gilsey Howes: Charles B. Lawlor
  • Carl Pretzel: Al. Wilson
  • Reed Wallpaper: Albert Hawthorne
  • Saunders: Larry Dooley
  • Wells Fargo: Richard Reab
  • Policeman: Charles Kettler
  • Hoffman Howes: Frederick Hallen
  • Olean Bradford: Joseph Hart
  • Songs

    Based on the sheet music, the songs included:

  • When the Man in the Moon Goes To Sleep
  • The Idea (wordless novel)

    The Idea (French: Idée, sa naisance, sa vie, sa mort, "Idea, her birth, her life, her death") is a 1920 wordless novel by Flemish artist Frans Masereel (1889–1972). In eighty-three woodcut prints, the book tells an allegory of a man's idea, which takes the form of a naked woman who goes out into the world; the authorities try to suppress her nakedness, and execute a man who stands up for her. Her image is spread through the mass media, inciting a disruption of the social order. Filmmaker Berthold Bartosch made an animated adaptation in 1932.

    Overview

    An artist is struck with an idea, which manifests itself as a naked woman with long, black hair. He displays her to the public, but the authorities, offended by her nudity, chase her around the city in order to cover up her body. A man who is not offended by her nudity takes to the woman's side, and the two fight injustice together; the man is caught and executed. The authorities destroy all books published with the woman's image, but she finds new outlets in the mass media, and succeeds in disrupting the social order. The woman returns to the artist, who has a new idea—a white-haired woman. He frames and hangs the black-haired woman on the wall, and releases the white-haired woman to the public.

    Podcasts:

    • blackbear - the idea (Official Video)

      Official Video for "the idea” by blackbear   Listen & Download “the idea” out now: https://bb.lnk.to/theidea   Amazon Music: https://bb.lnk.to/theidea/AmazonMusic Apple Music: https://bb.lnk.to/theidea/AppleMusic iTunes: https://bb.lnk.to/theidea/iTunes Pandora: https://bb.lnk.to/theidea/Pandora Soundcloud: https://bb.lnk.to/theidea/Soundcloud Spotify:  https://bb.lnk.to/theidea/Spotify YouTube Music: https://bb.lnk.to/theidea/YouTubeMusic YouTube: https://bb.lnk.to/theidea/YouTube   follow bear:  http://instagram.com/bear https://tiktok.com/@bear http://twitter.com/iamblackbear https://www.facebook.com/blackbear http://www.beartrap.la   DIRECTOR: Emil Nava  EXECUTIVE PRODUCER: Kirsten Arongino  HEAD OF PRODUCTION: Ali Goldstone PRODUCER: Seth Levin BLACKBEAR CREATIVE DIRECTOR: Tyler Sereb...

      published: 08 Jul 2022
    • The Idea of You | Official Trailer | Prime Video

      Feel... everything. #TheIdeaofYou, starring Anne Hathaway and Nicholas Galitzine, streams May 2nd. » SUBSCRIBE: http://www.youtube.com/channel/UCwSIJCMWZC5GDM59wj7pMsg?sub_confirmation=1 Get More Prime Video: Watch More: http://bit.ly/WatchPrimeVideoUKNow TikTok: https://www.tiktok.com/@primevideouk Instagram: http://bit.ly/PrimeVideoUKInstagram Twitter: http://bit.ly/PrimeVideoUKTwitter Facebook: http://bit.ly/PrimeVideoUKFacebook Prime Video has thousands of popular movies and TV shows, including award-winning Amazon Originals, plus live sport and more. All included with Prime! #NicholasGalitzine #AnneHathaway

      published: 06 Mar 2024
    • Thx for the idea @HHHamstertime

      published: 12 Jan 2025
    • Hayes and Solène’s Fated Meet Cute | The Idea of You | Prime Video

      Starring Anne Hathaway and Nicholas Galitzine, The Idea of You is now streaming only on Prime Video. » Watch The Idea of You on Prime Video: https://amzn.to/44jf5Cq » SUBSCRIBE: http://bit.ly/PrimeVideoSubscribe About The Idea of You: Based on the acclaimed, contemporary love story of the same name, The Idea of You centers on Solène (Anne Hathaway), a 40-year-old single mom who begins an unexpected romance with 24-year-old Hayes Campbell (Nicholas Galitzine), the lead singer of August Moon, the hottest boy band on the planet. About Prime Video: Want to watch it now? We've got it. This week's newest movies, last night's TV shows, classic favorites, and more are available to stream instantly, plus all your videos are stored in Your Video Library. Get More Prime Video: Stream Now: h...

      published: 03 May 2024
    • Movie Couple Therapy: THE IDEA OF YOU

      PDS Debt is offering a free debt analysis. It only takes thirty seconds. Get yours at https://PDSDebt.com/cinema. How do you find common ground in a relationship with a lot of differences? Licensed therapist Jonathan Decker and filmmaker Alan Seawright are reacting to the May-December romcom, The Idea of You. They’re taking a look at how Hayes’s youthful optimism clashes with Solène’s seasoned cynicism. Jonathan reveals how their age gap actually has the potential for success and what it would take to make the relationship last. Alan explains how the dialogue and production of the film make this sort of unrealistic premise realistic and charming. And he discusses how great actors, like Anne Hathaway, get into a scene and feel the emotions. Support us! Patreon: https://patreon.com/Cinem...

      published: 14 Jan 2025
    • Ending Scene | THE IDEA OF YOU (2024) Movie CLIP HD

      Ending Scene | THE IDEA OF YOU (2024) Movie CLIP HD Watch The Idea of You on Prime Video: https://amzn.to/44jf5Cq Starring Anne Hathaway and Nicholas Galitzine, The Idea of You is now streaming only on Prime Video. About The Idea of You: Based on the acclaimed, contemporary love story of the same name, The Idea of You centers on Solène (Anne Hathaway), a 40-year-old single mom who begins an unexpected romance with 24-year-old Hayes Campbell (Nicholas Galitzine), the lead singer of August Moon, the hottest boy band on the planet. Most Popular Movie Clips -- https://bit.ly/3aqFfcg Wanna support us? Get your JoBlo Merch right here! https://joblo-merch.creator-spring.com/ SUBSCRIBE for more all the latest Movie Clips here: https://bit.ly/31ByDAf #theideaofyou #annehathaway

      published: 11 Jul 2024
    • The Idea: Trump vs Biden Debate

      Some of Joe Biden's highlights from the Donald Trump and Joe Biden Debate

      published: 28 Jun 2024
    • blackbear - the idea (Official Lyric Video)

      Official Lyric Video for "the idea” by blackbear   Listen & Download “the idea” out now: https://bb.lnk.to/theidea   Amazon Music: https://bb.lnk.to/theidea/AmazonMusic Apple Music: https://bb.lnk.to/theidea/AppleMusic iTunes: https://bb.lnk.to/theidea/iTunes Pandora: https://bb.lnk.to/theidea/Pandora Soundcloud: https://bb.lnk.to/theidea/Soundcloud Spotify:  https://bb.lnk.to/theidea/Spotify YouTube Music: https://bb.lnk.to/theidea/YouTubeMusic YouTube: https://bb.lnk.to/theidea/YouTube   follow bear:  http://instagram.com/bear https://tiktok.com/@bear http://twitter.com/iamblackbear https://www.facebook.com/blackbear http://www.beartrap.la   Lyrics: How do you fall asleep without me here? I see right through you, you I see you so clear  Wake up my demons and my biggest fears  Are you in ...

      published: 12 Jul 2022
    • "The idea of a single eureka moment is a dangerous lie"💡#shorts #trending #news #shortsfeed #duet

      The idea of a single eureka moment is a dangerous lie"💡 #QuotelyNest @QuotelyNest

      published: 15 Jan 2025
    • Survival Skills: SMART idea and USEFUL #bushcraft #camping #outdoors #useful

      published: 26 Dec 2024
    blackbear - the idea (Official Video)
    3:25

    blackbear - the idea (Official Video)

    • Order:
    • Duration: 3:25
    • Uploaded Date: 08 Jul 2022
    • views: 3096150
    Official Video for "the idea” by blackbear   Listen & Download “the idea” out now: https://bb.lnk.to/theidea   Amazon Music: https://bb.lnk.to/theidea/AmazonMusic Apple Music: https://bb.lnk.to/theidea/AppleMusic iTunes: https://bb.lnk.to/theidea/iTunes Pandora: https://bb.lnk.to/theidea/Pandora Soundcloud: https://bb.lnk.to/theidea/Soundcloud Spotify:  https://bb.lnk.to/theidea/Spotify YouTube Music: https://bb.lnk.to/theidea/YouTubeMusic YouTube: https://bb.lnk.to/theidea/YouTube   follow bear:  http://instagram.com/bear https://tiktok.com/@bear http://twitter.com/iamblackbear https://www.facebook.com/blackbear http://www.beartrap.la   DIRECTOR: Emil Nava  EXECUTIVE PRODUCER: Kirsten Arongino  HEAD OF PRODUCTION: Ali Goldstone PRODUCER: Seth Levin BLACKBEAR CREATIVE DIRECTOR: Tyler Serebreni PRODUCTION SUPERVISOR: Matt Zaal ASST PRODUCTION SUPERVISOR: Denise Nuqui 1ST AD: Ron Polk   DP: Trevor Wineman  1ST AC: Ajiri Akpolo 2nd AC: Daniel Asmelash MEDIA MANAGER: Sam Akinyele   GAFFER: Skott Khuu BB ELECTRIC: Amber Jones   KEY GRIP: Dennis Pires BEST BOY GRIP: Luis Rubio GRIP: JQ Da Silva   PRODUCTION DESIGNER: Cody Fusina   DRUMS: Travis Barker GUITAR: Dan Graham   FATHER: Jonathan Peacy MOTHER: Krista Fatka SON: Kevin Jiminez DAUGHTER: Savahna Deleon FRIEND: Mickey Pistols   BEARTRAP SOUND: Samantha Maners BEARTRAP SOUND: TJ Musto BLACKBEAR GUITAR TECH: Justin Trotta BLACKBEAR STYLIST: Mitch Modes BLACKBEAR GROOMER: Arlen Jeremy                                                 TRAVIS BARKER LEGAL: Lisa E Socransky Austin, Esq TRAVIS BARKER DRUM TECH: Clemente Ruiz TRAVIS BARKER STYLIST: Christopher Kim TRAVIS BARKER ASST: Sam Bettencourt   CAST STYLIST: Kendall Spina  CAST MAKE-UP: Zenna Hodge    MEDIA/CCO: Joey Silva PLAYBACK: Rom Osorio PRODUCTION BTS: Tyler Borchardt   ARTIST BTS: Isabelle Lesh ARTIST STILLS: Jason Landis   PA – TRUCK: Allison Nguyen PA: Nick Hagelin PA: Dusan Brown PA: Maggie Curwin PA: Ines Sawiris PA: Terrel Carr   EDITOR/COLORIST: Alex Russek    ALAMO GM: Tiara Hargrave COLUMBIA VIDEO COMMISSIONER: Jill Kaplan  COLUMBIA VIDEO ASSISTANT: Zoe Johnson-Cherry COLUMBIA MARKETING: Hannah Friedland COLUMBIA DIGITAL MARKETING: Sarah Flanagan COLUMBIA DIGITAL MARKETING: Drew Schieffelin   DIRECTOR’S REP: Tommy LaBuda   PRODUCTION COMPANY: Short Medium Lyrics: How do you fall asleep without me here? I see right through you, you I see you so clear  Wake up my demons and my biggest fears  Are you in love with me or the idea?   Too many skeletons in my closet  God if you listening, you need to call me  Drunk off a feeling, I don’t wanna stop it What is then meaning? Swear the drugs don’t help me, its a problem  This aint love, i don’t know what to call it  Run and tell your girlfriends that you hate me  I think we’re too far from saving  Same old story -  Hollywood’s on fire  3 nights in a row doing blow are you tired? Tell me… How do you fall asleep without me here? I see right through you, I see you so clear  Wake up my demons and my biggest fears  Are you in love with me or the idea?   Are you in love with me or the idea?   Too many bridges, I I done burned up  Why you only hittin me when you’re turnt up? Hearts made of plastic, it aint real love  What is the meaning? Swear that you don’t really need me, just the moment  Go head crop me from the photos Run and tell your girlfriends that you hate me I know we’re too far from saving  Are you in love with the heartbreak? It’s tough cause when I saw you last week, you were looking pretty rough  And it’s the same old story -  Hollywood’s on fire  3 nights in a row doing blow are you tired? Tell me… How do you fall asleep without me here? I see right through you, you I see you so clear  Wake up my demons and my biggest fears  Are you in love with me or the idea?   Look at this mess all around me You should have left how you found me  Death is easy, life is hard I hate how this ending is sounding  You left your cigarette burning on top of the pictures You hurt me  Death is easy, life is hard and living without you is worse for me, so…   #blackbear #theidea #inlovingmemory 
    https://wn.com/Blackbear_The_Idea_(Official_Video)
    The Idea of You | Official Trailer | Prime Video
    2:21

    The Idea of You | Official Trailer | Prime Video

    • Order:
    • Duration: 2:21
    • Uploaded Date: 06 Mar 2024
    • views: 2333983
    Feel... everything. #TheIdeaofYou, starring Anne Hathaway and Nicholas Galitzine, streams May 2nd. » SUBSCRIBE: http://www.youtube.com/channel/UCwSIJCMWZC5GDM59wj7pMsg?sub_confirmation=1 Get More Prime Video: Watch More: http://bit.ly/WatchPrimeVideoUKNow TikTok: https://www.tiktok.com/@primevideouk Instagram: http://bit.ly/PrimeVideoUKInstagram Twitter: http://bit.ly/PrimeVideoUKTwitter Facebook: http://bit.ly/PrimeVideoUKFacebook Prime Video has thousands of popular movies and TV shows, including award-winning Amazon Originals, plus live sport and more. All included with Prime! #NicholasGalitzine #AnneHathaway
    https://wn.com/The_Idea_Of_You_|_Official_Trailer_|_Prime_Video
    Thx for the idea @HHHamstertime
    0:06

    Thx for the idea @HHHamstertime

    • Order:
    • Duration: 0:06
    • Uploaded Date: 12 Jan 2025
    • views: 11
    https://wn.com/Thx_For_The_Idea_Hhhamstertime
    Hayes and Solène’s Fated Meet Cute | The Idea of You | Prime Video
    4:51

    Hayes and Solène’s Fated Meet Cute | The Idea of You | Prime Video

    • Order:
    • Duration: 4:51
    • Uploaded Date: 03 May 2024
    • views: 1186065
    Starring Anne Hathaway and Nicholas Galitzine, The Idea of You is now streaming only on Prime Video. » Watch The Idea of You on Prime Video: https://amzn.to/44jf5Cq » SUBSCRIBE: http://bit.ly/PrimeVideoSubscribe About The Idea of You: Based on the acclaimed, contemporary love story of the same name, The Idea of You centers on Solène (Anne Hathaway), a 40-year-old single mom who begins an unexpected romance with 24-year-old Hayes Campbell (Nicholas Galitzine), the lead singer of August Moon, the hottest boy band on the planet. About Prime Video: Want to watch it now? We've got it. This week's newest movies, last night's TV shows, classic favorites, and more are available to stream instantly, plus all your videos are stored in Your Video Library. Get More Prime Video: Stream Now: http://bit.ly/WatchMorePrimeVideo Facebook: http://bit.ly/PrimeVideoFB X: http://bit.ly/PrimeVideoTW Instagram: http://bit.ly/primevideoIG Hayes and Solène’s Fated Meet Cute | The Idea of You | Prime Video https://youtu.be/nQQCKyJkIwA Prime Video https://www.youtube.com/PrimeVideo #PrimeVideo #TheIdeaofYou #NicholasGalitzine
    https://wn.com/Hayes_And_Solène’S_Fated_Meet_Cute_|_The_Idea_Of_You_|_Prime_Video
    Movie Couple Therapy: THE IDEA OF YOU
    27:38

    Movie Couple Therapy: THE IDEA OF YOU

    • Order:
    • Duration: 27:38
    • Uploaded Date: 14 Jan 2025
    • views: 83209
    PDS Debt is offering a free debt analysis. It only takes thirty seconds. Get yours at https://PDSDebt.com/cinema. How do you find common ground in a relationship with a lot of differences? Licensed therapist Jonathan Decker and filmmaker Alan Seawright are reacting to the May-December romcom, The Idea of You. They’re taking a look at how Hayes’s youthful optimism clashes with Solène’s seasoned cynicism. Jonathan reveals how their age gap actually has the potential for success and what it would take to make the relationship last. Alan explains how the dialogue and production of the film make this sort of unrealistic premise realistic and charming. And he discusses how great actors, like Anne Hathaway, get into a scene and feel the emotions. Support us! Patreon: https://patreon.com/CinemaTherapy Merch: https://store.dftba.com/collections/cinema-therapy Internet Dads Popcorn: http://ctpopcorn.com Cinema Therapy Reviews: https://www.youtube.com/@CinemaTherapyReviews Cinema Therapy is: Written by: Megan Seawright, Jonathan Decker, and Alan Seawright Produced by: Jonathan Decker, Megan Seawright, Alan Seawright, and Corinne Demyanovich Edited by: Emily Colton Director of Photography: Bradley Olsen English Transcription by: Anna Preis Connect with us! Website: https://www.thecinematherapy.com Discord: https://discord.gg/NmbFhr8tfu Instagram: https://www.instagram.com/therapy_cinema Threads: https://www.threads.net/@therapy_cinema TikTok: https://www.tiktok.com/@therapy_cinema Twitter: https://twitter.com/therapy_cinema Facebook: https://www.facebook.com/therapycinema Code: 34GKRMWXUMAJJMBP
    https://wn.com/Movie_Couple_Therapy_The_Idea_Of_You
    Ending Scene | THE IDEA OF YOU (2024) Movie CLIP HD
    4:59

    Ending Scene | THE IDEA OF YOU (2024) Movie CLIP HD

    • Order:
    • Duration: 4:59
    • Uploaded Date: 11 Jul 2024
    • views: 501721
    Ending Scene | THE IDEA OF YOU (2024) Movie CLIP HD Watch The Idea of You on Prime Video: https://amzn.to/44jf5Cq Starring Anne Hathaway and Nicholas Galitzine, The Idea of You is now streaming only on Prime Video. About The Idea of You: Based on the acclaimed, contemporary love story of the same name, The Idea of You centers on Solène (Anne Hathaway), a 40-year-old single mom who begins an unexpected romance with 24-year-old Hayes Campbell (Nicholas Galitzine), the lead singer of August Moon, the hottest boy band on the planet. Most Popular Movie Clips -- https://bit.ly/3aqFfcg Wanna support us? Get your JoBlo Merch right here! https://joblo-merch.creator-spring.com/ SUBSCRIBE for more all the latest Movie Clips here: https://bit.ly/31ByDAf #theideaofyou #annehathaway
    https://wn.com/Ending_Scene_|_The_Idea_Of_You_(2024)_Movie_Clip_Hd
    The Idea: Trump vs Biden Debate
    0:36

    The Idea: Trump vs Biden Debate

    • Order:
    • Duration: 0:36
    • Uploaded Date: 28 Jun 2024
    • views: 9623
    Some of Joe Biden's highlights from the Donald Trump and Joe Biden Debate
    https://wn.com/The_Idea_Trump_Vs_Biden_Debate
    blackbear - the idea (Official Lyric Video)
    3:25

    blackbear - the idea (Official Lyric Video)

    • Order:
    • Duration: 3:25
    • Uploaded Date: 12 Jul 2022
    • views: 134877
    Official Lyric Video for "the idea” by blackbear   Listen & Download “the idea” out now: https://bb.lnk.to/theidea   Amazon Music: https://bb.lnk.to/theidea/AmazonMusic Apple Music: https://bb.lnk.to/theidea/AppleMusic iTunes: https://bb.lnk.to/theidea/iTunes Pandora: https://bb.lnk.to/theidea/Pandora Soundcloud: https://bb.lnk.to/theidea/Soundcloud Spotify:  https://bb.lnk.to/theidea/Spotify YouTube Music: https://bb.lnk.to/theidea/YouTubeMusic YouTube: https://bb.lnk.to/theidea/YouTube   follow bear:  http://instagram.com/bear https://tiktok.com/@bear http://twitter.com/iamblackbear https://www.facebook.com/blackbear http://www.beartrap.la   Lyrics: How do you fall asleep without me here? I see right through you, you I see you so clear  Wake up my demons and my biggest fears  Are you in love with me or the idea?   Too many skeletons in my closet  God if you listening, you need to call me  Drunk off a feeling, I don’t wanna stop it What is then meaning? Swear the drugs don’t help me, its a problem  This aint love, i don’t know what to call it  Run and tell your girlfriends that you hate me  I think we’re too far from saving  Same old story -  Hollywood’s on fire  3 nights in a row doing blow are you tired? Tell me… How do you fall asleep without me here? I see right through you, I see you so clear  Wake up my demons and my biggest fears  Are you in love with me or the idea?   Are you in love with me or the idea?   Too many bridges, I I done burned up  Why you only hittin me when you’re turnt up? Hearts made of plastic, it aint real love  What is the meaning? Swear that you don’t really need me, just the moment  Go head crop me from the photos Run and tell your girlfriends that you hate me I know we’re too far from saving  Are you in love with the heartbreak? It’s tough cause when I saw you last week, you were looking pretty rough  And it’s the same old story -  Hollywood’s on fire  3 nights in a row doing blow are you tired? Tell me… How do you fall asleep without me here? I see right through you, you I see you so clear  Wake up my demons and my biggest fears  Are you in love with me or the idea?   Look at this mess all around me You should have left how you found me  Death is easy, life is hard I hate how this ending is sounding  You left your cigarette burning on top of the pictures You hurt me  Death is easy, life is hard and living without you is worse for me, so…   #blackbear #theidea #inlovingmemory 
    https://wn.com/Blackbear_The_Idea_(Official_Lyric_Video)
    "The idea of a single eureka moment is a dangerous lie"💡#shorts #trending #news #shortsfeed #duet
    0:49

    "The idea of a single eureka moment is a dangerous lie"💡#shorts #trending #news #shortsfeed #duet

    • Order:
    • Duration: 0:49
    • Uploaded Date: 15 Jan 2025
    • views: 9
    The idea of a single eureka moment is a dangerous lie"💡 #QuotelyNest @QuotelyNest
    https://wn.com/The_Idea_Of_A_Single_Eureka_Moment_Is_A_Dangerous_Lie_💡_Shorts_Trending_News_Shortsfeed_Duet
    Survival Skills: SMART idea and USEFUL #bushcraft #camping #outdoors #useful
    1:00

    Survival Skills: SMART idea and USEFUL #bushcraft #camping #outdoors #useful

    • Order:
    • Duration: 1:00
    • Uploaded Date: 26 Dec 2024
    • views: 13371619
    https://wn.com/Survival_Skills_Smart_Idea_And_Useful_Bushcraft_Camping_Outdoors_Useful
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • blackbear - the idea (Official Video)
      3:25
      blackbear - the idea (Official Video)remove from playlist
    • The Idea of You | Official Trailer | Prime Video
      2:21
      The Idea of You | Official Trailer | Prime Videoremove from playlist
    • Hayes and Solène’s Fated Meet Cute | The Idea of You | Prime Video
      4:51
      Hayes and Solène’s Fated Meet Cute | The Idea of You | Prime Videoremove from playlist
    • Movie Couple Therapy: THE IDEA OF YOU
      27:38
      Movie Couple Therapy: THE IDEA OF YOUremove from playlist
    • Ending Scene | THE IDEA OF YOU (2024) Movie CLIP HD
      4:59
      Ending Scene | THE IDEA OF YOU (2024) Movie CLIP HDremove from playlist
    • The Idea: Trump vs Biden Debate
      0:36
      The Idea: Trump vs Biden Debateremove from playlist
    • blackbear - the idea (Official Lyric Video)
      3:25
      blackbear - the idea (Official Lyric Video)remove from playlist
    PLAYLIST TIME: 0:00 / 49:10

    blackbear - the idea (Official Video)

    Official Video for "the idea” by blackbear   Listen & Download “the idea” out now: https://bb.lnk.to/theidea   Amazon Music: https://bb.lnk.to/theidea/AmazonMusic Apple Music: https://bb.lnk.to/theidea/AppleMusic iTunes: https://bb.lnk.to/theidea/iTunes Pandora: https://bb.lnk.to/theidea/Pandora Soundcloud: https://bb.lnk.to/theidea/Soundcloud Spotify:  https://bb.lnk.to/theidea/Spotify YouTube Music: https://bb.lnk.to/theidea/YouTubeMusic YouTube: https://bb.lnk.to/theidea/YouTube   follow bear:  http://instagram.com/bear https://tiktok.com/@bear http://twitter.com/iamblackbear https://www.facebook.com/blackbear http://www.beartrap.la   DIRECTOR: Emil Nava  EXECUTIVE PRODUCER: Kirsten Arongino  HEAD OF PRODUCTION: Ali Goldstone PRODUCER: Seth Levin BLACKBEAR CREATIVE DIRECTOR: Tyler Serebreni PRODUCTION SUPERVISOR: Matt Zaal ASST PRODUCTION SUPERVISOR: Denise Nuqui 1ST AD: Ron Polk   DP: Trevor Wineman  1ST AC: Ajiri Akpolo 2nd AC: Daniel Asmelash MEDIA MANAGER: Sam Akinyele   GAFFER: Skott Khuu BB ELECTRIC: Amber Jones   KEY GRIP: Dennis Pires BEST BOY GRIP: Luis Rubio GRIP: JQ Da Silva   PRODUCTION DESIGNER: Cody Fusina   DRUMS: Travis Barker GUITAR: Dan Graham   FATHER: Jonathan Peacy MOTHER: Krista Fatka SON: Kevin Jiminez DAUGHTER: Savahna Deleon FRIEND: Mickey Pistols   BEARTRAP SOUND: Samantha Maners BEARTRAP SOUND: TJ Musto BLACKBEAR GUITAR TECH: Justin Trotta BLACKBEAR STYLIST: Mitch Modes BLACKBEAR GROOMER: Arlen Jeremy                                                 TRAVIS BARKER LEGAL: Lisa E Socransky Austin, Esq TRAVIS BARKER DRUM TECH: Clemente Ruiz TRAVIS BARKER STYLIST: Christopher Kim TRAVIS BARKER ASST: Sam Bettencourt   CAST STYLIST: Kendall Spina  CAST MAKE-UP: Zenna Hodge    MEDIA/CCO: Joey Silva PLAYBACK: Rom Osorio PRODUCTION BTS: Tyler Borchardt   ARTIST BTS: Isabelle Lesh ARTIST STILLS: Jason Landis   PA – TRUCK: Allison Nguyen PA: Nick Hagelin PA: Dusan Brown PA: Maggie Curwin PA: Ines Sawiris PA: Terrel Carr   EDITOR/COLORIST: Alex Russek    ALAMO GM: Tiara Hargrave COLUMBIA VIDEO COMMISSIONER: Jill Kaplan  COLUMBIA VIDEO ASSISTANT: Zoe Johnson-Cherry COLUMBIA MARKETING: Hannah Friedland COLUMBIA DIGITAL MARKETING: Sarah Flanagan COLUMBIA DIGITAL MARKETING: Drew Schieffelin   DIRECTOR’S REP: Tommy LaBuda   PRODUCTION COMPANY: Short Medium Lyrics: How do you fall asleep without me here? I see right through you, you I see you so clear  Wake up my demons and my biggest fears  Are you in love with me or the idea?   Too many skeletons in my closet  God if you listening, you need to call me  Drunk off a feeling, I don’t wanna stop it What is then meaning? Swear the drugs don’t help me, its a problem  This aint love, i don’t know what to call it  Run and tell your girlfriends that you hate me  I think we’re too far from saving  Same old story -  Hollywood’s on fire  3 nights in a row doing blow are you tired? Tell me… How do you fall asleep without me here? I see right through you, I see you so clear  Wake up my demons and my biggest fears  Are you in love with me or the idea?   Are you in love with me or the idea?   Too many bridges, I I done burned up  Why you only hittin me when you’re turnt up? Hearts made of plastic, it aint real love  What is the meaning? Swear that you don’t really need me, just the moment  Go head crop me from the photos Run and tell your girlfriends that you hate me I know we’re too far from saving  Are you in love with the heartbreak? It’s tough cause when I saw you last week, you were looking pretty rough  And it’s the same old story -  Hollywood’s on fire  3 nights in a row doing blow are you tired? Tell me… How do you fall asleep without me here? I see right through you, you I see you so clear  Wake up my demons and my biggest fears  Are you in love with me or the idea?   Look at this mess all around me You should have left how you found me  Death is easy, life is hard I hate how this ending is sounding  You left your cigarette burning on top of the pictures You hurt me  Death is easy, life is hard and living without you is worse for me, so…   #blackbear #theidea #inlovingmemory 
    3:25
    blackbear - the idea (Official Video)
    Official Video for "the idea” by blackbear   Listen & Download “the idea” out now: https:/...
    published: 08 Jul 2022
    Play in Full Screen
    2:21
    The Idea of You | Official Trailer | Prime Video
    Feel... everything. #TheIdeaofYou, starring Anne Hathaway and Nicholas Galitzine, streams ...
    published: 06 Mar 2024
    Play in Full Screen
    0:06
    Thx for the idea @HHHamstertime
    published: 12 Jan 2025
    Play in Full Screen
    4:51
    Hayes and Solène’s Fated Meet Cute | The Idea of You | Prime Video
    Starring Anne Hathaway and Nicholas Galitzine, The Idea of You is now streaming only on Pr...
    published: 03 May 2024
    Play in Full Screen
    27:38
    Movie Couple Therapy: THE IDEA OF YOU
    PDS Debt is offering a free debt analysis. It only takes thirty seconds. Get yours at http...
    published: 14 Jan 2025
    Play in Full Screen
    4:59
    Ending Scene | THE IDEA OF YOU (2024) Movie CLIP HD
    Ending Scene | THE IDEA OF YOU (2024) Movie CLIP HD Watch The Idea of You on Prime Video:...
    published: 11 Jul 2024
    Play in Full Screen
    0:36
    The Idea: Trump vs Biden Debate
    Some of Joe Biden's highlights from the Donald Trump and Joe Biden Debate
    published: 28 Jun 2024
    Play in Full Screen
    3:25
    blackbear - the idea (Official Lyric Video)
    Official Lyric Video for "the idea” by blackbear   Listen & Download “the idea” out now: h...
    published: 12 Jul 2022
    Play in Full Screen
    0:49
    "The idea of a single eureka moment is a dangerous lie"💡#shorts #trending #news #shortsfeed #duet
    The idea of a single eureka moment is a dangerous lie"💡 #QuotelyNest @QuotelyNest
    published: 15 Jan 2025
    Play in Full Screen
    1:00
    Survival Skills: SMART idea and USEFUL #bushcraft #camping #outdoors #useful
    published: 26 Dec 2024
    Play in Full Screen

    The Idea

    The Idea may refer to:

  • The Idea (book), a 1920 wordless novel by Frans Masereel
  • The Idea (1932 film), an animated film by Berthold Bartosch based on the Masereel novel
  • "The Idea", a 1976 short story by Raymond Carver from Will You Please Be Quiet, Please?
  • '); } 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)); } }); }); }); // -->

    Latest News for: the idea

    Edit

    I laughed at the idea of Snoop Dogg making gin — until I tried it

    Metro UK 06 Apr 2025
    Snoop Dogg and Dr. Dre have teamed up to create something rather unexpected ....
    Edit

    Opinion | Manoj Kumar: An Actor Who Didn’t Just Play The Idea Of India — ...

    News18 05 Apr 2025
    As we bid farewell to Manoj Kumar, he leaves behind a cinematic legacy that transcended mere entertainment to become a cultural touchstone for millions ... .
    Edit

    'Love the idea of him being with someone with a degenerating brain. Hilarious': What Earl ...

    The Daily Mail 05 Apr 2025
    Love the idea that her [Professor Jarman’s] MS is starting to kick in. Love the idea of him being with someone with a degenerating brain that makes her not adhere to normal societal norms ... ‘Love the ...
    Edit

    The Atlantic's Derek Thompson: 'Completely reject' the idea that tariffs will lead to abundance

    CNBC 04 Apr 2025
    Derek Thompson, The Atlantic staff writer, joins CNBC's 'Power Lunch' to discuss newly announced tariffs, how the American public feels about them, and more ... .
    Edit

    Barbara Corcoran’s unconventional financial advice rejects the idea of ‘saving for the future’

    Fast Company 04 Apr 2025
    Rather than letting her money sit idly in a bank account, Corcoran immediately identifies the best way to spend anything she earns, often investing it into something with the potential to grow her wealth ... But consider the root of Corcoran’s advice.
    Edit

    Trump breaks with Mike Johnson over proxy voting for new parents: 'I like the idea'

    Star Gazette 04 Apr 2025
    “I’m going to let the speaker make the decision, but I like the idea of being able to - if you’re having a baby, I think you should be able to call in and vote,” he said ... The founders did not include that,” he said at the Capitol.
    Edit

    Trump has abandoned the idea of diplomacy in the Middle East | Jo-Ann Mort

    The Guardian 03 Apr 2025
    The administration has proposed no realistic settlement, leaving a void for Netanyahu ... When I wrote an opinion piece for the Guardian a few months ...
    Edit

    Arkane's founder is open to the idea of making Dishonored 3, just don't place any ...

    Rock, Paper, Shotgun 03 Apr 2025
    But is there any possibility of one happening all the same? Well, still no, probably, but Arkane ...
    Edit

    Bollywood: Kareena Kapoor Khan dismisses the idea of botox

    Khaleejtimes 03 Apr 2025
    While many actresses have gone under the knife to enhance their looks, Bollywood star Kareena Kapoor Khan prefers to stay away from cosmetic surgeries ... It's not about the way I look, it's about the way I feel and that's what for me, aging and life is.
    Edit

    Arne Slot responds to PGMOL red card admission and David Moyes unhappiness - 'I got the idea'

    Yahoo Daily News 03 Apr 2025
    But I don't like the rule." ... I got the idea that David Moyes was not happy after the game yesterday but he was smarter than me and went inside rather than staying on the pitch, which was probably due to his experience.
    Edit

    Don’t reinforce the idea that grown men don’t cry | Brief letters

    The Guardian 02 Apr 2025
    Since the release of Adolescence on Netflix, there has been a lot of discussion about what it is to be male and toxic masculinity, which the Guardian has participated in ... Surely we are all seeing the ...
    Edit

    Dwarf Fortress creator toys with the idea of an Elf Fortress

    Rock, Paper, Shotgun 01 Apr 2025
    Dwarf Fortress co-creator and programmer Tarn Adams has made fleeting, whimsical allusion to the possibility of an Elf Fortress game in a new interview - a ... Elves? They don't work the same way.
    ×