- published: 17 Jun 2016
- views: 12865847
'+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; })); }); -->
Joseph Harry Fowler Connick, Jr., (born September 11, 1967) is an American singer, musician, and actor. He has sold over 28 million albums worldwide. Connick is ranked among the top 60 best-selling male artists in the United States by the Recording Industry Association of America, with 16 million in certified sales. He has had seven top 20 US albums, and ten number-one US jazz albums, earning more number-one albums than any other artist in US jazz chart history.
Connick's best-selling album in the United States is his 1993 Christmas album When My Heart Finds Christmas. His highest-charting album is his 2004 release Only You, which reached No. 5 in the U.S. and No. 6 in Britain. He has won three Grammy Awards and two Emmy Awards. He played Grace's husband, Leo Markus, on the TV sitcom Will & Grace from 2002 to 2006.
Connick began his acting career as a tail gunner in the World War II film Memphis Belle in 1990. He played a serial killer in Copycat in 1995, before being cast as a jet fighter pilot in the 1996 blockbuster Independence Day. Connick's first role as a leading man was in 1998's Hope Floats with Sandra Bullock. His first thriller film since Copycat came in 2003 in the film Basic with John Travolta. Additionally, he played the violent ex-husband in Bug, before two romantic comedies, 2007's P.S. I Love You, and the leading man in New in Town with Renée Zellweger in 2009. In 2011, he appeared in the family film Dolphin Tale as Dr. Clay Haskett and in the 2014 sequel, Dolphin Tale 2.
Harry Connick Jr. is an eponymous instrumental album released in 1987, and it is Harry Connick, Jr.'s first album from Columbia records. Like most of his other albums, it is dedicated to Harry's mother, Anita Connick, who died of ovarian cancer when he was 13. "Sunny Side Of The Street" is dedicated to James Booker, a singer and pianist who tutored Connick.
"One of Those Things" is a song co-written and recorded by the American country music artist Pam Tillis. It was released in April 1991 as the second single from the album Put Yourself in My Place. The song reached #6 on the Billboard Hot Country Singles & Tracks chart. Tillis wrote the song with Paul Overstreet.
The single was originally recorded for Warner Bros, in 1985, but was not released until Tillis recorded it for herfirst Arista album in 1991.
Just One of Those Things may refer to:
Just One of Those Things is a 1957 album by Nat King Cole, arranged by Billy May. The record placed at #18 on the Billboard album chart.
"Just One of Those Things" is a popular song written by Cole Porter for the 1935 musical Jubilee.
Porter had written the score for Jubilee while on an extended sea cruise in the early part of 1935: however, in September 1935 while he was visiting a friend's farm in Ohio with Jubilee's librettist Moss Hart, the latter mentioned that the play's second act required an additional song, and Porter had "Just One of Those Things" completed by the following morning (he had previously used the title for a song intended for but not featured in the 1930 musical The New Yorkers—apart from the title the two songs are distinct). Porter's original lyric lacked an adjective for the line "a trip to the moon on gossamer wings": "gossamer" would be suggested by his friend, Ed Tauch.
"Just One of Those Things" was featured in two Doris Day musical films, Lullaby of Broadway (1951) and Young at Heart (1954), and also in the film version of Can-Can (1960) in which it's performed by Maurice Chevalier.
Those Things is the second album by songwriter and music producer Miguel Migs, released in 2007. The album has gained critical praise as well as commercial success. Those Things peaked at number 15 on the US Top Electronic Albums chart. It is an album that ranges from deep house to hip house, with each being solid productions overall. Those Things features vocal performances by Migs's main vocalist on his songs, Lisa Shaw, Aya, Tim Fuller, and reggae artist Junior Reid. The album features more live instrumentation than Migs' début album and includes a guest appearance by Fred Ross of Sly and the Family Stone. The lead single, "So Far", peaked at number six on the Hot Dance Club Play chart.
Allmusic's Rick Anderson described the album as "a perfectly functional dance collection that achieves occasional greatness". Dave Hoffman of PopMatters described it as the "first great electronica album of 2007, showcasing an adventurous, world-class producer at the top of his game".
Music video by Harry Connick Jr. performing Just the Way You Are. (C) 2016 Columbia Records, a division of Sony Music Entertainment http://vevo.ly/6OOu9f
Harry Connick, Jr.'s official music video for 'Recipe For Love'. Click to listen to Harry Connick, Jr. on Spotify: http://smarturl.it/HCJrSpot?IQid=R4L As featured on Forever For Now. Click to buy the track or album via iTunes: http://smarturl.it/HCJrFFNiTunes?IQid=R4L Google Play: http://smarturl.it/HCJrRFLplay?IQid=R4L Amazon: http://smarturl.it/HCJrFFNAmz?IQid=R4L More from Harry Connick, Jr. One Last Pitch: https://youtu.be/kMAkyA_EcRo She: https://youtu.be/7vxLi2Cw8xI Let's Just Kiss: https://youtu.be/rXkUYIBuqA8 More great Ultimate 90's videos here: http://smarturl.it/Ultimate90?IQid=R4L Follow Harry Connick, Jr. Website: https://www.harryconnickjr.com Facebook: https://www.facebook.com/harryconnickjr/ Twitter: https://twitter.com/HarryConnickJr Instagram: https://instagram.com/H...
Music video by Harry Connick Jr. performing One Fine Thing. (C) 2014 Columbia Records, a Division of Sony Music Entertainment
Music video by Harry Connick Jr. performing It Had to Be You. (C) 1989 Sony BMG Music Entertainment http://vevo.ly/fLkIOr
Harry performs a special song that he wrote for his wife, Jill. It's called "One Fine Thing." Visit http://harrytv.com for showtimes. Follow Harry on social: Facebook: https://www.facebook.com/harryconnickjr Twitter: https://twitter.com/harryconnickjr Instagram: https://www.instagram.com/harryconnickjr Snapchat: https://www.snapchat.com/add/harrytvshow
Check out my new album “Alone With My Faith” now: https://HarryConnickJr.lnk.to/AloneWithMyFaith Subscribe to Harry’s YouTube Channel: https://HarryConnickJr.lnk.to/Stream/youtube Shop merch: https://shopververecordsharryconnickjr.com Follow Harry: Instagram: https://HarryConnickJr.lnk.to/Instagram Facebook: https://HarryConnickJr.lnk.to/Facebook Twitter: https://HarryConnickJr.lnk.to/Twitter Spotify: https://HarryConnickJr.lnk.to/Stream/spotify Apple Music: https://HarryConnickJr.lnk.to/Stream/applemusic Amazon: https://HarryConnickJr.lnk.to/Stream/amazonmusic Soundcloud: https://HarryConnickJr.lnk.to/Stream/soundcloud Pandora: https://HarryConnickJr.lnk.to/Stream/pandora YouTube Music: https://HarryConnickJr.lnk.to/Stream/youtubemusic Official Website: https://www.harryconn...
Listen to “Amazing Grace” and check out my new album “Alone With My Faith” now: https://HarryConnickJr.lnk.to/AloneWithMyFaith Subscribe to Harry’s YouTube Channel: https://HarryConnickJr.lnk.to/Stream/youtube Shop merch: https://shopververecordsharryconnickjr.com Follow Harry: Instagram: https://HarryConnickJr.lnk.to/Instagram Facebook: https://HarryConnickJr.lnk.to/Facebook Twitter: https://HarryConnickJr.lnk.to/Twitter Spotify: https://HarryConnickJr.lnk.to/Stream/spotify Apple Music: https://HarryConnickJr.lnk.to/Stream/applemusic Amazon: https://HarryConnickJr.lnk.to/Stream/amazonmusic Soundcloud: https://HarryConnickJr.lnk.to/Stream/soundcloud Pandora: https://HarryConnickJr.lnk.to/Stream/pandora YouTube Music: https://HarryConnickJr.lnk.to/Stream/youtubemusic Official ...
Welcome back to American Idol, Harry Connick, Jr.! From former American Idol mentor and judge, to currently performing an upbeat medley of songs from his new album, “Alone With My Faith,” Harry really knows how to get the American Idol party started! See more of American Idol 2021 on our official site: http://www.americanidol.com Like American Idol on Facebook: https://www.facebook.com/AmericanIdol Follow American Idol on Twitter: https://twitter.com/americanidol Follow American Idol on Instagram: https://www.instagram.com/americanidol/ AMERICAN IDOL, the iconic series that revolutionized the television landscape by pioneering the music competition genre, returns on ABC. American Idol 2021 Helping to determine who America will ultimately vote for to become the next singing sensation ar...
We weren’t sure how this was going to end! #TheGNShow #TheGrahamNortonShow #GrahamNorton Follow us! Facebook - https://www.facebook.com/thegrahamnortonshow/?ref=page_internal Instagram - https://www.instagram.com/thegrahamnortonshowofficial/ Twitter - https://twitter.com/TheGNShowFollow us here: Facebook: https://www.facebook.com/thegrahamnortonshow/ Instagram: https://www.instagram.com/thegrahamnortonshowofficial/ Twitter: https://twitter.com/TheGNShow TikTok: https://www.tiktok.com/@thegnshow Snapchat: https://www.snapchat.com/discover/The_Graham_Norton_Show/3773416663
Brilliant transition from 1&3 to 2&4. The audience is clapping on 1&3 but at 0:40 he throw a single bar in 5/4 and the magic is done.. The audience is now clapping on 2&4. Friends don't let friends clap on 1&3
Joseph Harry Fowler Connick, Jr., (born September 11, 1967) is an American singer, musician, and actor. He has sold over 28 million albums worldwide. Connick is ranked among the top 60 best-selling male artists in the United States by the Recording Industry Association of America, with 16 million in certified sales. He has had seven top 20 US albums, and ten number-one US jazz albums, earning more number-one albums than any other artist in US jazz chart history.
Connick's best-selling album in the United States is his 1993 Christmas album When My Heart Finds Christmas. His highest-charting album is his 2004 release Only You, which reached No. 5 in the U.S. and No. 6 in Britain. He has won three Grammy Awards and two Emmy Awards. He played Grace's husband, Leo Markus, on the TV sitcom Will & Grace from 2002 to 2006.
Connick began his acting career as a tail gunner in the World War II film Memphis Belle in 1990. He played a serial killer in Copycat in 1995, before being cast as a jet fighter pilot in the 1996 blockbuster Independence Day. Connick's first role as a leading man was in 1998's Hope Floats with Sandra Bullock. His first thriller film since Copycat came in 2003 in the film Basic with John Travolta. Additionally, he played the violent ex-husband in Bug, before two romantic comedies, 2007's P.S. I Love You, and the leading man in New in Town with Renée Zellweger in 2009. In 2011, he appeared in the family film Dolphin Tale as Dr. Clay Haskett and in the 2014 sequel, Dolphin Tale 2.
Why must you say those things? What are you thinking?
Keep your feelings inside, wait till no one's around, yeah.
I can see this is no good, all you talk about is how I should be.
I've had enough of feeling down, I think I'm going downtown.
What makes you think those things? What makes you think those things?
What makes you think those things?
What makes you think those things you do?
What makes you think those things? What makes you think those things?
What makes you think those things?
What makes you think those things you do?
What makes you think those things? What makes you think those things?
What makes you think those things? What makes you think?
What I do, what I don't, do what I want to.
What you see that I feel, that you're not used to.
What I give, how I live, who I'm close to.
What makes you think those things you do?
What I say when I'm away, how I know you.
How I look, I never took, I don't owe you.
So anything that I bring, I won't show you.
What makes you think those things you do?
What makes you think those things? What makes you think those things?
What makes you think those things?
What makes you think those things you do?
What makes you think those things? What makes you think those things?
What makes you think those things?
What makes you think those things you do?
Do what I want to do, do what I want to do.
Do what I want to do, do what I want to do.
What makes you think those things? What makes you think those things?
What makes you think those things? What makes you think those things?
What makes you think those things? What makes you think those things?
What makes you think those things? What makes you think those things?
What I do, what I won't, do what I have to.
How I feel what is real, want to show you.
By the way, I don't play, I don't want to.
What makes you think those things you do?
What makes you think those things? What makes you think those things?
What makes you think those things?
What makes you think those things you do?
What makes you think those things? What makes you think those things?
What makes you think those things?
What makes you think those things you do?
What makes you think those things? What makes you think those things?
What makes you think those things?
What makes you think those things you do?
Do what I want to do, do what I want to do.
Do what I want to do, do what I want to do.
Do what I want to do, do what I want to do.