- published: 27 Oct 2011
- views: 1167853
'+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; })); }); -->
"On Top" is the second single by American rapper Twista of his seventh album Category F5. The song features R&B singer Akon and was produced by GoodWill & MGI, "On Top" was confirmed as the second official single of Twista's seventh album, after the lead single Wetter featuring singer Erika Shevon
The remix version of the song features Akon and two verses from Bulgarian R&B singer LiLana.
The song uses samples from the single “Sound of Arena” by Finnish DJ/Producer Kimmo Kauppinen.
On Top is the third studio album recorded by the Four Tops, issued by Motown Records in July 1966. It reached #32 on the US Billboard 200 chart and #9 in the UK. It contains two singles: "Loving You Is Sweeter Than Ever" and "Shake Me, Wake Me (When It's Over)". The second half of the album consists of cover songs.
Hot Fuss is the debut studio album by American rock band The Killers. It was released on June 7, 2004 in the United Kingdom and on June 15, 2004 in the United States. The album is mostly influenced by new wave music and post-punk. Hot Fuss produced several commercially and critically successful singles: "Mr. Brightside", "Somebody Told Me", "All These Things That I've Done" and "Smile Like You Mean It".
The album reached number seven on the Billboard 200 chart and number one on the UK Albums Chart. It is estimated to have sold more than seven million copies worldwide, including more than three million in the United States and more than two million in the UK, where it has been certified seven-times platinum. It has also been certified platinum or multi-platinum in Australia, Canada, Ireland, and New Zealand.
The album and its first three singles went on to garner five Grammy Award nominations. Rolling Stone ranked Hot Fuss the 43rd of its "100 Best Albums of the Decade", and it is one of the five most recent recordings listed among the 1001 Albums You Must Hear Before You Die. Gigwise readers voted it the number-one "Best Debut Album of All Time" in 2013 and Rolling Stone ranked it the 33rd of its list of "The 100 Greatest Debut Albums of All Time".
Brooklyn is a given name that has increased in popularity for girls in the United States and Canada in recent years. It has occasionally been used as a name in honor of Brooklyn, the New York City borough, but is usually regarded as simply a combination of the names Brook or Brooke, a name derived from an English surname meaning "one who lives near a brook" and the suffix -lyn, which is an element in other popular contemporary names in the United States such as Kaitlyn.
The name was the 26th most popular name for baby girls in the United States in 2014 and was the 16th most popular name for baby girls born in British Columbia, Canada in 2006. Spelling variants include, but are not limited to, Brook Lynn, Brooke Lynn, Brookelynn, Brookelynne, Brooklynn and Brooklynne.
The son of football player David Beckham and his wife Victoria, AKA "Posh Spice", was also given the name Brooklyn.
Brooklyn, also Kings County, is a borough of New York City, New York.
Brooklyn may also refer to:
"Brooklyn Go Hard" is the second promo single by rap artist Jay-Z, featuring additional vocals by alternative musician Santigold. The song was produced by Kanye West. It appears on the soundtrack to The Notorious B.I.G. biopic Notorious for which it serves as the theme song. It was released on December 1, 2008, as an exclusive download available via subscription to (RED)Wire, with a portion of the profits going towards Bono's Product Red organization. In 2013, it was used in a trailer and several television commercials for the Jackie Robinson biopic 42: The True Story of an American Legend.
Santigold first hinted at a collaboration in an interview with NME, saying she "may also do something with Jay-Z, it's kind of secret - it's not for anything, it's just 'cause we want to." The collaboration contains a sample of Santigold's track "Shove It", in the same vein as Jay-Z and T.I.'s "Swagga Like Us", which samples M.I.A.'s "Paper Planes". However, in "Brooklyn Go Hard", Santigold provides another new verse.
T.O.P 「Calvin Klein Jeans "Brooklyn Boy"」
These off the cuff moments had us in stitches. For this list, we’ll be going over the moments from the sitcom “Brooklyn Nine-Nine” which were improvised in the moment or incorporated into the show from things the cast members did on-set. Our countdown includes Yelling “Nine-Nine!”, Real Laugh, Cool Cool Cool, and more! If there’s an improvised line from the Nine-Nine that didn’t get to shine, please define the line below. Watch more great TV videos here: Top 20 Best TV Shows of the Century (So Far): https://youtu.be/XZq_zYjXe-s Top 10 TV Shows Everyone Should Watch at Least Once: https://youtu.be/umeMR2eactU Top 10 TV Shows That Lasted Too Long: https://youtu.be/EiYaRPEiqrQ Have Your Idea Become A Video! https://wmojo.com/suggest Subscribe for more great content! https://wmojo.com/...
The first 1,000 people to use this link will get a 1 month free trial of Skillshare: https://skl.sh/herebebarr07221 📝Planning Your NYC Trip? Shop Our NEW Travel Guides Here: http://http://www.thatch.co/@herebebarr We'll visit 5 INCREDIBLE NYC Pizza Slice Shops in South Brooklyn that you have to try. Special thanks to Antonio form @pizzareviewsonthego for joining us. 🎬 N.Y.C Pizza Video PLAYLIST: https://www.youtube.com/watch?v=-V7H2-vcpmQ&list=PLb_xU7RWYGbZxoRvg81SmgroVl3RbeEQR Brooklyn Pizza Spots Visited: 00:00- Intro 00:14- 5) Luigi's Pizza 686 5th Ave, Brooklyn, NY 02:33- 4) Da Vinci Pizzeria 6514 18th Ave, Brooklyn, NY 04:39- Skillshare 05:33- 3) L&B Spumoni Gardens 2725 86th St, Brooklyn, NY 07:39- 2) Lucia Pizza Of Avenue X 2201 Avenue X, Brooklyn, NY 10:22- 1) Baby Luc's 387 C...
On First Take, Jay Williams and Monica McNutt break down the Boston Celtics' huge win over the Brooklyn Nets, the concerns with Ben Simmons and the Nets roster and what moves the Nets GM Sean Marks can make before the trade deadline. 0:00 Brooklyn Nets vs. Boston Celtics reaction 1:04 Jay Williams says the Celtics are the best team in the NBA from top to bottom 2:12 JWill is extremely concerned about the Nets 4:07 Monica McNutt believes depth is an issue for the Nets 6:00 Is all the attention on Sean Marks to make a move at the trade deadline? 6:24 Who do you think is going to win the NBA championship this year? 9:17 Who is the most underrated player in the NBA? 10:41 Who is the best team to never win a championship? ✔️Subscribe to ESPN+ http://espnplus.com/youtube ✔️ Get the ESPN App: h...
Which of these solves will prove worthy of three of Captain Holt's OH DAMN's? Only one way to find out... Brooklyn Nine-Nine streaming now on Peacock: https://bit.ly/2ItKNXL Welcome to the OFFICIAL Comedy Hub Channel. With all of your favourite moments and characters from some of the worlds best comedy, including The Office US, Parks & Recreation, 30 Rock, Brooklyn Nine Nine and many many more. Subscribe here - youtube.com/channel/UCGfUuxBzB8E30XjCjOvji2w?sub_confirmation=1 Check out the official Peacock YouTube Channel: https://www.youtube.com/c/peacocktv The Office U.S.: https://www.youtube.com/c/TheOfficeUS Parks and Recreation: https://www.youtube.com/c/ParksandRecreation Brooklyn Nine-Nine: https://www.youtube.com/c/BrooklynNineNineOfficial Subscribe here - youtube.com/channe...
There is just so much going on in Brooklyn that we had to make a film dedicated to this side of the East River. In this film we profile our favourite spots to eat and drink in Brooklyn, Williamsburg, Greenpoint and Gowanus. From a Taiwenese bakery to a the best Brunch in Brooklyn, a classic New York slice shop to the famous Peter Lugers steakhouse, this film covers all bases. 🚨 TOPJAW SS23 is now live! https://tj.wtf/SS23 🚨 00:00 Intro 00:49 Devoción, 69 Grand St, $ 02:07 La Bicyclette Bakery, 136 Dekalb Ave, $ 03:10 The Four Horseman, 295 Grand St, $$$ 05:10 Win Son Bakery, 164 Graham Ave, $$ 07:00 Tørst, 615 Manhattan Ave, $$ 09:50 Peter Luger, 178 Broadway, Brooklyn, $$$$ 12:41 Finback Brewery, 545 President St, $$ 15:14 Esme, 999 Manhattan Ave, $$ 17:06 Oxomoco, 128 Greenpoint Ave,...
023, fixt sound.
Terry is in charge while Holt is on holiday and he's determined to prove himself to be a great boss. Season 6, Episode 1 "Honeymoon" - Jake and Amy go on their honeymoon, and Captain Holt finds out whether he is the new commissioner of the NYPD. #BrooklynNineNine #nbc #funny
"On Top" is the second single by American rapper Twista of his seventh album Category F5. The song features R&B singer Akon and was produced by GoodWill & MGI, "On Top" was confirmed as the second official single of Twista's seventh album, after the lead single Wetter featuring singer Erika Shevon
The remix version of the song features Akon and two verses from Bulgarian R&B singer LiLana.
The song uses samples from the single “Sound of Arena” by Finnish DJ/Producer Kimmo Kauppinen.
Somebody asked me if I wanted a ride
I said, "What do you mean?"
They said, "I know a woman that they called slip-n-slide"
They introduce me to a girly named Sally
She rides the horses down in Tennessee Valley
She stole my train, she wasn't plain
That woman's crazy and a little bit vain
She likes it on the top, that woman never stop
She's a star, she's a hero
She said my sugar for the time of your life
I'll get you on my horse so you will realize
She takes me boogie-woogie, boys out the back door
Gets 'em all high on her flesh for sure
She rode my train and then my plane
A nymphomaniac, a little insane
She likes it on the top, that woman never stops
She's a star, she's a hero, she likes it on top
She likes it on the top, that woman never stops
She's a star, she's a hero, she likes it on top
She's a hero, she likes it on top, yeah
I took a picture of her
So I would remember, yeah, yeah
She likes those dirty movies
Well, she says they're really groovy, baby, yeah, yeah
A-boogie, comatose, I couldn't boast
I noticed later, oh, my baby was a liar
Catatonic, supersonic, hot, high-heeled
Lover, lady sure is on fire
I can't believe the things I've seen
Lucky that I remember where the hell I've been
She a [Incomprehensible]
Somebody asked me if I wanted a ride
I said, "What do you mean?"
They said, "I know a woman that they called slip-n-slide"
They introduce me to a girly named Sally
Said she rides the horses down in Tennessee Valley
She stole my chain, she wasn't plain
That woman's crazy and a little bit vain
She likes it on the top, that woman never stops
She's a star, she's a hero, she likes it on top
She likes it on the top, that woman never stops
She's a star, she's a hero, she likes it on top
She's a hero, she likes it on top, yeah, yeah, yeah
It never stops, she's a star, she's a hero
She's a hero, baby, yeah yeah
She likes it on the top, that woman never stops
She's a star, she's a hero, she likes it on top
She's a hero, she likes it on top