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

Podcasts:

  • Guillaume Canet, 14 ans, prêt à tout pour pécho la copine de sa mère ? | Small Talk

    Aujourd'hui, on retrouve Guillaume Canet et David Castello-Lopes pour un épisode inédit de Small Talk. Vous apprendrez que Guillaume Canet n'aime pas du tout son prénom, qu'il a appris à ses dépens que la bagarre n'était pas toujours la solution, qu'il a pensé à se faire opérer pour prendre 10 cm de plus quand il était petit, et plein d'autres doss'. Guillaume Canet est à l'affiche de Ad Vitam, disponible sur Netflix. Merci à @squarespace de soutenir cet épisode 🤝 Saisissez le code « SMALLTALK10 » lors de la validation de votre commande sur le site https://fr.squarespace.com pour bénéficier d'une remise de 10% sur l'achat d'un nouvel abonnement annuel à Squarespace. La remise est valable du 1er janvier 2025 jusqu’au 31 décembre 2025 (23h59 CET – Central European Time). La remise s'appli...

    published: 22 Jan 2025
  • why your small talk is boring

    #social #socialskills #communication Rant over. 🎥 The Art of Social Poise (Course): coming soon 👀 🧠 Behaviour Change in 90 Days (Course): coming soon 👀 💎 NOK Academy (mental flourishing & social skills): coming later 👀 Join The Big 3 Newsletter to get: - 1 mental health hack - 1 social skills tip - 1 personal realisation every Thursday straight to your inbox (It's Free!): ⬇️🔥 https://www.newelofknowledge.com/ - (Plus you'll get first hand access to all upcoming courses) Twitter: https://twitter.com/NewelOfKnow Instagram: https://www.instagram.com/newelofknow/?hl=en-gb Subscribe!: https://www.youtube.com/channel/UC5fy9izAhlANCISUdU8quDg?sub_confirmation=1 Title ideas: if you hate small talk, watch this you hate small talk because you fail to see it's purpose

    published: 06 Sep 2024
  • Never Struggle with Small Talk Again | Easy Tips for Better Conversations

    Small talk can be so awkward. You’re trying to fill the silence, but the conversation just isn’t clicking. What do you do? In this episode, I’m sharing 3 ways to make small talk feel natural, engaging, and even enjoyable. You’ll learn how to ask better questions, keep the conversation flowing, and avoid the awkward silence trap. These tips will help you turn any small talk moment—whether at a party, in line at the grocery store, or before a meeting—into a real connection. Like what you hear? Don’t forget to subscribe and leave a 5-star review! Listen and Follow on Spotify https://bit.ly/TJFP-Spotify Listen and Follow on Apple Podcasts https://bit.ly/JFP-Apple Suggest a topic or ask a question for me to answer on the next episode! https://www.jeffersonfisher.com/topic Pre-order my ...

    published: 17 Dec 2024
  • Katy Perry - Small Talk (Official Video)

    Listen to "Small Talk": http://katy.to/SmallTalkYD Watch the Making of "Small Talk": http://katy.to/SmallTalkEp1YD http://katy.to/SmallTalkEp2YD Katy Perry Complete Collection on Spotify: http://katy.to/SpotifyCompleteYD Katy Perry Essentials on Apple Music: http://katy.to/AMEssentialsYD Watch your favorite Katy videos on YouTube: http://katy.to/MusicVideosYD Director: Tanu Muino Producer: Megan Gutman, Targa Sahyoun Follow Katy Perry: Website: http://katy.to/WebsiteYD Instagram: http://katy.to/InstagramYD Twitter: http://katy.to/TwitterYD Facebook: http://katy.to/FacebookYD Weibo: http://katy.to/WeiboYD VK: http://katy.to/VKPageYD Lyrics: Isn’t it strange That you used to know me All the highs and lows and in-betweens and now you see me and just say hey Isn’t it weird That you’ve...

    published: 30 Aug 2019
  • Breaking the Habit of Smalltalk | Omid Scheybani | TEDxKish

    Smalltalk is a broken concept that disregards the vast potential that lies in these first encounters. What if we could redefine the way we meet each other and how we initiate conversations? Born in Germany to Iranian parents, Omid works with Google in charge of strategic cloud computing partnerships throughout Latin America. He is a world traveller and storyteller. This talk was given at a TEDx event using the TED conference format but independently organized by a local community. Learn more at http://ted.com/tedx

    published: 11 Jun 2015
  • Niall Horan - Small Talk (Official Visualizer)

    Get the new album 'Heartbreak Weather,' available everywhere now: http://niall.to/HeartbreakWeatherYD Follow Niall: https://niallhoran.com https://instagram.com/niallhoran https://twitter.com/niallofficial https://facebook.com/niallofficial Lyrics: She’s been looking at me all night- I’m terrified I know why baby She’s got the wrong crazy Oh, I see the moon in her eyes- I’m paralyzed She’s not my baby She’s got the wrong crazy Like wolves we’ve run wild Let passion get too much And let ourselves get burned by the fire We’re walking on wire But, nothing feels higher Then when I see that look in your eyes Tell me what you want because you know I want it too Let’s skip all the small talk and go straight up to your room I’ve been thinking what I’d do when I’m alone with you Just say nothin...

    published: 13 Mar 2020
  • 30 zwrotów po ANGIELSKU na pogawędki | 30 English Small Talk Phrases You NEED

    Poznaj 30 kluczowych zwrotów po angielsku, które przydadzą się podczas codziennych pogawędek! Idealne dla początkujących, te frazy pomogą Ci poczuć się pewniej w rozmowach o pogodzie, hobby, pracy i wielu innych. Ćwicz z nami i doskonal swoją znajomość angielskiego. ------------------------------------------------------------------------------------------------------------ 📘 Chcesz nauczyć się więcej? Sprawdź nasz Wyjątkowy Zestaw do Szybkiej Nauki Angielskiego i zacznij widzieć efekty już dziś! 👉 http://bit.ly/4fL2n3y ------------------------------------------------------------------------------------------------------------- Learn 30 essential English phrases for everyday small talk! Perfect for beginners, these phrases will help you feel confident in conversations about the weather, h...

    published: 20 Jan 2025
  • How to make SMALL TALK with ANYONE

    How to have fulfilling conversations that flows and feels good from the inside out. *BOOK ENERGY COACHING:* https://bit.ly/EnergyCoachingArielNiu *GET AN ENERGY READING:* https://bit.ly/energyreadingarielniu 0:00 Introduction 0:42 Icebreakers 1:49 Flowing into Conversations 4:11 Balance in Conversations 5:42 Keeping Conversations Going 10:09 More Resources *MORE:* Get 1:1 Coaching - https://bit.ly/EnergyCoachingArielNiu Get an Energy Reading - https://bit.ly/energyreadingarielniu Workplace Boundaries Scripts - https://bit.ly/workplaceboundariesscripts Access Livestream Replays - https://shop.arielniuviews.com/pages/memberships Sign up for my Emails - https://beacons.ai/niu.views/email Instagram - https://www.instagram.com/niu.views TikTok - https://www.tiktok.com/@niu.views Inquiries/Pa...

    published: 22 Aug 2024
Guillaume Canet, 14 ans, prêt à tout pour pécho la copine de sa mère ? | Small Talk
58:15

Guillaume Canet, 14 ans, prêt à tout pour pécho la copine de sa mère ? | Small Talk

  • Order:
  • Duration: 58:15
  • Uploaded Date: 22 Jan 2025
  • views: 41330
Aujourd'hui, on retrouve Guillaume Canet et David Castello-Lopes pour un épisode inédit de Small Talk. Vous apprendrez que Guillaume Canet n'aime pas du tout son prénom, qu'il a appris à ses dépens que la bagarre n'était pas toujours la solution, qu'il a pensé à se faire opérer pour prendre 10 cm de plus quand il était petit, et plein d'autres doss'. Guillaume Canet est à l'affiche de Ad Vitam, disponible sur Netflix. Merci à @squarespace de soutenir cet épisode 🤝 Saisissez le code « SMALLTALK10 » lors de la validation de votre commande sur le site https://fr.squarespace.com pour bénéficier d'une remise de 10% sur l'achat d'un nouvel abonnement annuel à Squarespace. La remise est valable du 1er janvier 2025 jusqu’au 31 décembre 2025 (23h59 CET – Central European Time). La remise s'applique uniquement à la première mensualité de l’abonnement annuel souscrit mais ne s'applique pas aux autres mensualités. La remise ne peut pas être appliquée à des achats antérieurs à l’entrée en vigueur de la promotion. Cette remise n’est valable que pour la souscription d’un nouvel abonnement et ne peut pas être utilisée pour la mise à niveau de l'abonnement par l'utilisateur, ni être combinée à une autre offre ou appliquée après la date d'expiration du code promotionnel à des achats effectués avant l'expiration de cette offre. Pour plus de détails, l’utilisateur est prié de consulter les conditions d’utilisation de Squarespace : https://fr.squarespace.com/conditions... It's only on Konbini ! Konbini est là depuis 2008 pour célébrer la culture, la diversité des talents et les sujets qui engagent la jeunesse. Mais le plus simple, c’est de vous montrer tout ça ! 👽👇Retrouvez tous nos reportages et toutes nos interviews 24h/24 et 7j/7 juste ici 👇💥 ► Konbini : https://www.konbini.com ► TikTok : https://www.tiktok.com/@konbini ► Instagram : https://www.instagram.com/konbini ► Snapchat : https://bitly.cx/hFmq Konbini, in pop we trust !
https://wn.com/Guillaume_Canet,_14_Ans,_Prêt_À_Tout_Pour_Pécho_La_Copine_De_Sa_Mère_|_Small_Talk
why your small talk is boring
6:10

why your small talk is boring

  • Order:
  • Duration: 6:10
  • Uploaded Date: 06 Sep 2024
  • views: 244572
#social #socialskills #communication Rant over. 🎥 The Art of Social Poise (Course): coming soon 👀 🧠 Behaviour Change in 90 Days (Course): coming soon 👀 💎 NOK Academy (mental flourishing & social skills): coming later 👀 Join The Big 3 Newsletter to get: - 1 mental health hack - 1 social skills tip - 1 personal realisation every Thursday straight to your inbox (It's Free!): ⬇️🔥 https://www.newelofknowledge.com/ - (Plus you'll get first hand access to all upcoming courses) Twitter: https://twitter.com/NewelOfKnow Instagram: https://www.instagram.com/newelofknow/?hl=en-gb Subscribe!: https://www.youtube.com/channel/UC5fy9izAhlANCISUdU8quDg?sub_confirmation=1 Title ideas: if you hate small talk, watch this you hate small talk because you fail to see it's purpose
https://wn.com/Why_Your_Small_Talk_Is_Boring
Never Struggle with Small Talk Again | Easy Tips for Better Conversations
15:12

Never Struggle with Small Talk Again | Easy Tips for Better Conversations

  • Order:
  • Duration: 15:12
  • Uploaded Date: 17 Dec 2024
  • views: 107922
Small talk can be so awkward. You’re trying to fill the silence, but the conversation just isn’t clicking. What do you do? In this episode, I’m sharing 3 ways to make small talk feel natural, engaging, and even enjoyable. You’ll learn how to ask better questions, keep the conversation flowing, and avoid the awkward silence trap. These tips will help you turn any small talk moment—whether at a party, in line at the grocery store, or before a meeting—into a real connection. Like what you hear? Don’t forget to subscribe and leave a 5-star review! Listen and Follow on Spotify https://bit.ly/TJFP-Spotify Listen and Follow on Apple Podcasts https://bit.ly/JFP-Apple Suggest a topic or ask a question for me to answer on the next episode! https://www.jeffersonfisher.com/topic Pre-order my new book: https://www.jeffersonfisher.com/book Subscribe to my newsletter: https://www.jeffersonfisher.com/newsl... Follow me on ⁠Instagram⁠: / jefferson_fisher Follow me on ⁠LinkedIn: / jeffersonfisher Follow me on TikTok: / justaskjefferson Follow me on X/Twitter: https://x.com/jefferson_fishr
https://wn.com/Never_Struggle_With_Small_Talk_Again_|_Easy_Tips_For_Better_Conversations
Katy Perry - Small Talk (Official Video)
2:49

Katy Perry - Small Talk (Official Video)

  • Order:
  • Duration: 2:49
  • Uploaded Date: 30 Aug 2019
  • views: 35984693
Listen to "Small Talk": http://katy.to/SmallTalkYD Watch the Making of "Small Talk": http://katy.to/SmallTalkEp1YD http://katy.to/SmallTalkEp2YD Katy Perry Complete Collection on Spotify: http://katy.to/SpotifyCompleteYD Katy Perry Essentials on Apple Music: http://katy.to/AMEssentialsYD Watch your favorite Katy videos on YouTube: http://katy.to/MusicVideosYD Director: Tanu Muino Producer: Megan Gutman, Targa Sahyoun Follow Katy Perry: Website: http://katy.to/WebsiteYD Instagram: http://katy.to/InstagramYD Twitter: http://katy.to/TwitterYD Facebook: http://katy.to/FacebookYD Weibo: http://katy.to/WeiboYD VK: http://katy.to/VKPageYD Lyrics: Isn’t it strange That you used to know me All the highs and lows and in-betweens and now you see me and just say hey Isn’t it weird That you’ve seen me naked We had conversations about forever now it’s about the weather okay I just can’t believe We went from strangers to lovers to strangers in a lifetime Now just memories We’ve gone from strangers to lovers to strangers (Yeah) Acting like we never met Faking like we’d just forget We were lovers And now there’s nothing left but small talk Had every inch of your skin There’s nowhere your hands haven’t been Ain’t it funny ‘Cause now there’s nothing left but small talk Isn’t it wild That I know your weakness And everybody at the party thinks that you’re the best since sliced bread And isn’t it awkward I got a new somebody And honestly it will probably be a while before we can just be friends I just can’t believe We went from strangers to lovers to strangers in a lifetime Now just memories We’ve gone from strangers to lovers to strangers (Small talk) Acting like we never met Faking like we’d just forget We were lovers And now there’s nothing left but small talk Had every inch of your skin There’s nowhere your hands haven’t been Ain’t it funny ‘Cause now there’s nothing left but small talk Blah blah blah blah Blah blah blah blah Blah blah blah blah Now there’s nothing left but small talk Blah blah blah blah Blah blah blah blah Blah blah blah blah Now there’s nothing left but small talk And I just can’t believe we went from strangers to lovers to strangers Acting like we never met Faking like we’d just forget We were lovers And now there’s nothing left but small talk Had every inch of your skin There’s nowhere your hands haven’t been Ain’t it funny ‘Cause now there’s nothing left but small talk Blah blah blah blah Blah blah blah blah Blah blah blah blah Now there’s nothing left but small talk Blah blah blah blah Blah blah blah blah Blah blah blah blah Now there’s nothing left but small talk #KatyPerry #SmallTalk Music video by Katy Perry performing Small Talk. © 2019 Capitol Records, LLC http://vevo.ly/DtPZSK
https://wn.com/Katy_Perry_Small_Talk_(Official_Video)
Breaking the Habit of Smalltalk | Omid Scheybani | TEDxKish
11:15

Breaking the Habit of Smalltalk | Omid Scheybani | TEDxKish

  • Order:
  • Duration: 11:15
  • Uploaded Date: 11 Jun 2015
  • views: 478182
Smalltalk is a broken concept that disregards the vast potential that lies in these first encounters. What if we could redefine the way we meet each other and how we initiate conversations? Born in Germany to Iranian parents, Omid works with Google in charge of strategic cloud computing partnerships throughout Latin America. He is a world traveller and storyteller. This talk was given at a TEDx event using the TED conference format but independently organized by a local community. Learn more at http://ted.com/tedx
https://wn.com/Breaking_The_Habit_Of_Smalltalk_|_Omid_Scheybani_|_Tedxkish
Niall Horan - Small Talk (Official Visualizer)
3:19

Niall Horan - Small Talk (Official Visualizer)

  • Order:
  • Duration: 3:19
  • Uploaded Date: 13 Mar 2020
  • views: 4388776
Get the new album 'Heartbreak Weather,' available everywhere now: http://niall.to/HeartbreakWeatherYD Follow Niall: https://niallhoran.com https://instagram.com/niallhoran https://twitter.com/niallofficial https://facebook.com/niallofficial Lyrics: She’s been looking at me all night- I’m terrified I know why baby She’s got the wrong crazy Oh, I see the moon in her eyes- I’m paralyzed She’s not my baby She’s got the wrong crazy Like wolves we’ve run wild Let passion get too much And let ourselves get burned by the fire We’re walking on wire But, nothing feels higher Then when I see that look in your eyes Tell me what you want because you know I want it too Let’s skip all the small talk and go straight up to your room I’ve been thinking what I’d do when I’m alone with you Just say nothing, small talk only gets in the way Turn around she’s walking to me I can’t believe she’s not my baby Won’t someone come save me Oh you see the fool in my mind Can’t run and hide With your stare on me Look what you’re doing to me I wanna run wild Let passion get too much Let ourselves get burned by the fire We’re walking on wire But, nothing feels higher Then when I see that look in your eyes Tell me what you want because you know I want it too Let’s skip all the small talk and go straight up to your room I’ve been thinking what I’d do when I’m alone with you Just say nothing, small talk only gets in the way Just say nothing, no, no Just say nothing, no, no Like wolves we’ve run wild Let passion get too much And let ourselves get burned by the fire Tell me what you want because you know I want it too Let’s skip all the small talk and go straight up to your room I’ve been thinking what I’ll do when I’m alone with you Just say nothing, small talk only gets in the way Tell me what you want because you know I want it too Let’s skip all the small talk and go straight up to your room I’ve been thinking what I’ll do when I’m alone with you Just say nothing, small talk only gets in the way Just say nothing, no, no response I’ll just say nothing, no, no (If you want it, you can have it) Small Talk #NiallHoran #HeartbreakWeather #SmallTalk
https://wn.com/Niall_Horan_Small_Talk_(Official_Visualizer)
30 zwrotów po ANGIELSKU na pogawędki | 30 English Small Talk Phrases You NEED
2:30

30 zwrotów po ANGIELSKU na pogawędki | 30 English Small Talk Phrases You NEED

  • Order:
  • Duration: 2:30
  • Uploaded Date: 20 Jan 2025
  • views: 53
Poznaj 30 kluczowych zwrotów po angielsku, które przydadzą się podczas codziennych pogawędek! Idealne dla początkujących, te frazy pomogą Ci poczuć się pewniej w rozmowach o pogodzie, hobby, pracy i wielu innych. Ćwicz z nami i doskonal swoją znajomość angielskiego. ------------------------------------------------------------------------------------------------------------ 📘 Chcesz nauczyć się więcej? Sprawdź nasz Wyjątkowy Zestaw do Szybkiej Nauki Angielskiego i zacznij widzieć efekty już dziś! 👉 http://bit.ly/4fL2n3y ------------------------------------------------------------------------------------------------------------- Learn 30 essential English phrases for everyday small talk! Perfect for beginners, these phrases will help you feel confident in conversations about the weather, hobbies, work, and more. Practice along and improve your English fluency. Don't forget to subscribe for more easy English lessons! #angielskionline #naukaangielskiego #englishforbeginners
https://wn.com/30_Zwrotów_Po_Angielsku_Na_Pogawędki_|_30_English_Small_Talk_Phrases_You_Need
How to make SMALL TALK with ANYONE
11:29

How to make SMALL TALK with ANYONE

  • Order:
  • Duration: 11:29
  • Uploaded Date: 22 Aug 2024
  • views: 21835
How to have fulfilling conversations that flows and feels good from the inside out. *BOOK ENERGY COACHING:* https://bit.ly/EnergyCoachingArielNiu *GET AN ENERGY READING:* https://bit.ly/energyreadingarielniu 0:00 Introduction 0:42 Icebreakers 1:49 Flowing into Conversations 4:11 Balance in Conversations 5:42 Keeping Conversations Going 10:09 More Resources *MORE:* Get 1:1 Coaching - https://bit.ly/EnergyCoachingArielNiu Get an Energy Reading - https://bit.ly/energyreadingarielniu Workplace Boundaries Scripts - https://bit.ly/workplaceboundariesscripts Access Livestream Replays - https://shop.arielniuviews.com/pages/memberships Sign up for my Emails - https://beacons.ai/niu.views/email Instagram - https://www.instagram.com/niu.views TikTok - https://www.tiktok.com/@niu.views Inquiries/Partnerships/Media - contact@arielniuviews.com *ABOUT:* My name is Ariel Niu @niu.views. I am a creator and coach on self and social dynamics. I help people with their self identity and social confidence in a way that feels good, intentional, and sustainable inside and out. I share views and guidance on how we influence each other through understanding our emotions, expressions, and energy. I also share concepts on how everything and everyone is connected. I love creating content on human interactions, and I am grateful and excited to help those who resonate with my messages. #selfconfidence #charisma #socialskills #conversationalskills #communicationtips #emotionalintelligence #socialskills #psychology #communicationskills #podcasts #smalltalk #confidence #peoplepleaser #selfmastery #buildingrapport #socialanxiety #niuviews
https://wn.com/How_To_Make_Small_Talk_With_Anyone
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Guillaume Canet, 14 ans, prêt à tout pour pécho la copine de sa mère ? | Small Talk
    58:15
    Guillaume Canet, 14 ans, prêt à tout pour pécho la copine de sa mère ? | Small Talkremove from playlist
  • why your small talk is boring
    6:10
    why your small talk is boringremove from playlist
  • Never Struggle with Small Talk Again | Easy Tips for Better Conversations
    15:12
    Never Struggle with Small Talk Again | Easy Tips for Better Conversationsremove from playlist
  • Katy Perry - Small Talk (Official Video)
    2:49
    Katy Perry - Small Talk (Official Video)remove from playlist
  • Breaking the Habit of Smalltalk | Omid Scheybani | TEDxKish
    11:15
    Breaking the Habit of Smalltalk | Omid Scheybani | TEDxKishremove from playlist
  • Niall Horan - Small Talk (Official Visualizer)
    3:19
    Niall Horan - Small Talk (Official Visualizer)remove from playlist
  • 30 zwrotów po ANGIELSKU na pogawędki | 30 English Small Talk Phrases You NEED
    2:30
    30 zwrotów po ANGIELSKU na pogawędki | 30 English Small Talk Phrases You NEEDremove from playlist
  • How to make SMALL TALK with ANYONE
    11:29
    How to make SMALL TALK with ANYONEremove from playlist
PLAYLIST TIME:

Guillaume Canet, 14 ans, prêt à tout pour pécho la copine de sa mère ? | Small Talk

Aujourd'hui, on retrouve Guillaume Canet et David Castello-Lopes pour un épisode inédit de Small Talk. Vous apprendrez que Guillaume Canet n'aime pas du tout son prénom, qu'il a appris à ses dépens que la bagarre n'était pas toujours la solution, qu'il a pensé à se faire opérer pour prendre 10 cm de plus quand il était petit, et plein d'autres doss'. Guillaume Canet est à l'affiche de Ad Vitam, disponible sur Netflix. Merci à @squarespace de soutenir cet épisode 🤝 Saisissez le code « SMALLTALK10 » lors de la validation de votre commande sur le site https://fr.squarespace.com pour bénéficier d'une remise de 10% sur l'achat d'un nouvel abonnement annuel à Squarespace. La remise est valable du 1er janvier 2025 jusqu’au 31 décembre 2025 (23h59 CET – Central European Time). La remise s'applique uniquement à la première mensualité de l’abonnement annuel souscrit mais ne s'applique pas aux autres mensualités. La remise ne peut pas être appliquée à des achats antérieurs à l’entrée en vigueur de la promotion. Cette remise n’est valable que pour la souscription d’un nouvel abonnement et ne peut pas être utilisée pour la mise à niveau de l'abonnement par l'utilisateur, ni être combinée à une autre offre ou appliquée après la date d'expiration du code promotionnel à des achats effectués avant l'expiration de cette offre. Pour plus de détails, l’utilisateur est prié de consulter les conditions d’utilisation de Squarespace : https://fr.squarespace.com/conditions... It's only on Konbini ! Konbini est là depuis 2008 pour célébrer la culture, la diversité des talents et les sujets qui engagent la jeunesse. Mais le plus simple, c’est de vous montrer tout ça ! 👽👇Retrouvez tous nos reportages et toutes nos interviews 24h/24 et 7j/7 juste ici 👇💥 ► Konbini : https://www.konbini.com ► TikTok : https://www.tiktok.com/@konbini ► Instagram : https://www.instagram.com/konbini ► Snapchat : https://bitly.cx/hFmq Konbini, in pop we trust !
58:15
Guillaume Canet, 14 ans, prêt à tout pour pécho la copine de sa mère ? | Small Talk
Aujourd'hui, on retrouve Guillaume Canet et David Castello-Lopes pour un épisode inédit de...
published: 22 Jan 2025
Play in Full Screen
6:10
why your small talk is boring
#social #socialskills #communication Rant over. 🎥 The Art of Social Poise (Course): co...
published: 06 Sep 2024
Play in Full Screen
15:12
Never Struggle with Small Talk Again | Easy Tips for Better Conversations
Small talk can be so awkward. You’re trying to fill the silence, but the conversation jus...
published: 17 Dec 2024
Play in Full Screen
2:49
Katy Perry - Small Talk (Official Video)
Listen to "Small Talk": http://katy.to/SmallTalkYD Watch the Making of "Small Talk": http...
published: 30 Aug 2019
Play in Full Screen
11:15
Breaking the Habit of Smalltalk | Omid Scheybani | TEDxKish
Smalltalk is a broken concept that disregards the vast potential that lies in these first ...
published: 11 Jun 2015
Play in Full Screen
3:19
Niall Horan - Small Talk (Official Visualizer)
Get the new album 'Heartbreak Weather,' available everywhere now: http://niall.to/Heartbre...
published: 13 Mar 2020
Play in Full Screen
2:30
30 zwrotów po ANGIELSKU na pogawędki | 30 English Small Talk Phrases You NEED
Poznaj 30 kluczowych zwrotów po angielsku, które przydadzą się podczas codziennych pogawęd...
published: 20 Jan 2025
Play in Full Screen
11:29
How to make SMALL TALK with ANYONE
How to have fulfilling conversations that flows and feels good from the inside out. *BOOK...
published: 22 Aug 2024
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)); } }); }); }); // -->
×