- published: 21 Nov 2009
- views: 19967571
'+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; })); }); -->
Hands Up may refer to:
Hands Up! may refer to:
Hands Up! is a 2003 Chinese historical comedy film directed and written by Feng Xiaoning, and produced by Han Sanping. The film stars Pan Changjiang, Guo Da, and Liu Wei. It based on the Second Sino-Japanese War.
The film took place in Panyan Park of Xinxiang city, Henan province.
Ręce do góry (known in its subitled English version as Hands Up!) is a Polish drama film directed by Jerzy Skolimowski. It is the fourth of a series of semi-autobiographical films in which Skolimowski himself plays his alter ego, Andrzej Leszczyc.
The film was originally made in 1967 in monochrome by pl:Zespół Filmowy Syrena studio. In a twenty-minute section (filmed in colour) added by Skolimowski in 1981 he explains how the original was withheld by Polish censors of the time, and that this was a principal cause of his leaving his country; however following liberalisation in Poland, he was invited to resuscitate it. The introduction includes, apart from some fictional apocalyptic passages, shots of Beirut ruined by the civil wars of the 1970s, where Skolimowski is working as an actor on Volker Schloendorff's German film Die Fälschung (Circle of Deceit), and also shots of London featuring demonstrations in favour of Solidarnosc, Speaker's Corner, and an exhibition of Skolimowski's own paintings. These sections include cameo roles by Bruno Ganz, David Essex, Mike Sarne and others. Some of the music in this introduction is from the 1970 choral work Kosmogonia by the Polish composer Krzysztof Penderecki.
A sun dance is a Native American ceremony. Sun dance or Sundance may also refer to:
Sundance is a puzzle arcade game using vector graphics released by Cinematronics in 1979. The game consists of two grids floating in a pseudo-3D space with small suns bouncing between them. The player scored points by capturing the suns as they made contact with the grids. The player also had a limited-use "smart bomb" button which would eliminate all of the suns currently bouncing between the grids. As the suns bounced, the grids would move closer and closer, making gameplay more difficult. The game ended when the grids fully converged.
The game itself had only a small production run and was plagued with hardware failures due to its unconventional design. According to Tim Skelly, the game's designer, Sundance used an additional daughterboard that controlled the intensity of certain vectors. This board and its connections were rather fragile and prone to failure. Also, the monitor used a defective carbon coating spray which tended to cause the monitor's tube to arc if it was left in a certain position, destroying the monitor.
The 2013 Sundance Film Festival took place from January 17, 2013 until January 27, 2013 in Park City, Utah, United States, with screenings in Salt Lake City, Utah, Ogden, Utah, and Sundance, Utah.
The festival had 1,830 volunteers.
A record 12,146 films were submitted, 429 more films than the 2012 festival. 4,044 feature films were submitted and 119 were selected (with 103 of them being world premieres). 8,102 short films were submitted and 65 were selected. The festival had films representing 32 countries, from 51 first-time filmmakers, 27 of which had films in competition.
For the first time in the festival's history, half of the films featured were made by women and half by men. In the U.S. dramatic competition, 8 directors were women and 8 were men. In the U.S. documentary competition, 8 directors were women and 8 were men. In the dramatic premieres category, however, only 3 of the 18 films were directed by women.
Cara Mertes, director of the Sundance Institute Documentary Film Program and Sundance Documentary Fund, said that of the 40 documentaries at this year's festival, 12 of them came through the Documentary Film Program, which "really came here in 2002."Linsanity, a documentary about the rise of Asian American basketball player Jeremy Lin, premiered to a sold-out screening on January 20. The Los Angeles Times wrote that it received a "rousing response, easily making it one of the most crowd-pleasing documentaries to play the festival this year."
1981
Music video by Lloyd Banks performing Hands Up. (C) 2006 G Unit/Interscope Records
“Hands Up” is out now https://umi.lnk.to/HandsUp Follow Merk & Kremont : Facebook https://www.facebook.com/merkandkremont/?ref=br_rs Twitter https://twitter.com/MerkandKremont Instagram https://www.instagram.com/merkandkremont/ Music video by Merk & Kremont performing Hands Up. © 2018 Universal Music Italia Srl http://vevo.ly/D5YUFo
2PM(투피엠) "HANDS UP" M/V Download 2PM "Hands Up" on itunes: http://itunes.apple.com/us/album/hands-up/id445176088 2PM Official Facebook: http://www.facebook.com/2pm.jype 2PM Official Twitter: http://www.twitter.com/follow_2pm 2PM Official Fan's: http://fans.jype.com/2PM 2PM Official Homepage: http://2pm.jype.com Copyrights 2011 ⓒ JYP Entertainment. All Rights Reserved.
*JETZT NEU: Englisch-Vokabellernlieder-Karten - Liederkarten zum Lernen von über 200 wichtigen Vokabeln: Ansehen, Anhören, Mitsingen, Lernen! Illustrationen mit Songtexten und Vokabellisten: https://bit.ly/3GbEcvE "Hands Up" from the Album: https://amzn.to/2QJ6C9o. Hands Up, Baby, Hands Up ... A #1 Party song from the 80´ies (from the french Discoband Ottawan). The Song becomes over the years more and more popular in miniclubs and kindergarten all around the world. Sing and dance along to! Subscribe for free our channel: http://bit.ly/KinderliederZumMitsingen Spotify Playlist: https://bit.ly/KinderliederPlaylist Website: www.tollekinderlieder.de Lyrics: Hands up, baby, hands up, Gimme your heart, gimme gimme your heart, gimme gimme Hands up, baby, hands up, Gimme your heart, gimme gimme...
Spotify: http://sptfy.com/Yk6 iTunes: https://itun.es/i67w8vK Furkan Soysal Kanalına Abone Ol: goo.gl/VKcB3q
My new single is out now - unappreciated queens - https://www.youtube.com/watch?v=oFCyIzUdHf4 My song 'hands up' is now available across all streaming platforms. Stream on Spotify https://open.spotify.com/artist/6LZb59nnEPKhNNCI5hOca5 - Follow me on Instagram https://www.instagram.com/georgioumusic - Buy Georgiou Music Merch https://georgioumusicmerch.com/ Mastered by Marchant Music Recorded and Processed by Samual Lucas Beat produced by DIA Beats.
Ascolta Hands Up qui: https://umi.lnk.to/HandsUp Hands Up Challenge here: https://www.instagram.com/merkandkremont Follow us on: 👉Merk & Kremont FB: https://www.facebook.com/merkandkremont TW: https://twitter.com/MerkandKremont Regia: Andrea Gallo Montaggio e Post Produzione Sugo Design Giulia Agatea Emiliano Neroni DOP e operatore camera: Giuseppe Bilotti Assistente alla regia: Davide Molinaro Organizzatore generale: Elisa Rho Direttore di produzione: Fabio Duilio Assistente di produzione: Giulia Vittor Vfx supervisor: Giulia Agatea, Emiliano Neroni Montaggio e Post Produzione: Sugo Design, Giulia Agatea Marionettista: Alessandro Accettella per Teatro delle marionette degli Accettella S.n.C. Make up Artist: Amanda Campana Stylist: Filippo Agostinelli BRAND WARRIORS + Tiny Idols Assiste...
Synopsis: #举起手来 #handsup #ChinaMovieChannelENGLISH #Chinesemovie 📢Watch more Chinese movies with English subtitles on China Movie Channel ENGLISH. 👉SUBSCRIBE China Movie Channel ENGLISH: https://bit.ly/3geUeID ★★★Welcome to Subscribe Movie Channel’s Other Official Channel★★★ ★The Official Chinese movies - CCTV6 China Movie Official Channel: https://bit.ly/2WQTXBv ★The hottest Chinese movies - 1905 Movie Theater: https://bit.ly/2yacTCx ★The guide to life that knows you best - 东PIN西凑凑China Live: http://bit.ly/3b6512P ★The most exciting series of movies - 电视电影Movie Series: https://bit.ly/2LnU41R ★The most authentic Chinese movie in Vietnamese - Điện Ảnh Trung Quốc: https://bit.ly/33ShCpq ★The most authentic Chinese movie in Indonesian - FILM CINA:https://bit.ly/2UR7WtE
【Chinese Name】举起手来 【Starring】郭达 Guo Da / 潘长江 Pan Changjiang / 刘小微 Liu Xiaowei #HandsUp #HandsUp2 #举起手来 #ChinaMovieChannelENGLISH #ChineseMovie #comedymovies #comedy #warmovies #dramamovies 【Movie Description】 00:00-1:27:14 Hands Up! / 举起手来! The movie tells the story of "my grandma" who accidentally entered Shiqiao Village in order to send out a piece of evidence collected by patriotic students, and cooperated with the farmers in the village to fight back with the guerrillas who returned to the village and annihilated the Japanese squad. 【Movie Description】 1:27:15-2:58:45 Hands Up 2: Track Aduowan / 举起手来2追击阿多丸 The film tells the story of a battle of wits and courage between the forces of justice and the Japanese army who smuggled my country's precious cultural relics on a freighter calle...
It tells the story of a group of Sichuan Army anti-Japanese fighters who were dispersed by Japanese soldiers in the bloody battle of Taierzhuang in Shandong during the Anti-Japanese War. Devil, the wonderful story of children going through hardships and finally growing into little heroes of the War of Resistance. -------------------------------------------------------- this channel presents best movie clips from contemporary Chinese films and TV programs. All films and videos on this channel have been properly licensed by the copyright holders. -------------------------------------------------------- #movie #movieclips #actionmovie
ကလေးဘဝကထည်းကအခုထိကြိုက်နေခဲ့တဲ့ဟာသကားလေးအရမ်းကောင်းတယ်
Funny movie scenes from Hands Up!
Synopsis: #举起手来2追击阿多丸号#ChinaMovieChannelENGLISH #chinesemovie In 1945, the Second World War was drawing to a close, the Axis powers had come to an end, and the defeat was set. Many Japanese soldiers captured in the war have been transformed and have embarked on their journeys back to China one after another, including the lower class soldiers of Luohuan Legzhong Village (played by Pan Changjiang). However, even at this dying moment, imperialist greed has not subsided. Wheelchair Taijun (played by Hu Xiaoguang) was discharged from the hospital, and was personally responsible for the important task of commanding the battleship Adomaru to transport wounded soldiers back to China, but Adomaru also had a secret mission, which was to smuggle cultural relics looted from China out of the country....
Synopsis: Female assassin tries to avenge parents' murder and navigate among criminals and authorities who all are trying to kill her at one point or another. Director: Chalerm Wongpim Writer: Homsap Chanchana Stars: Dan Chupong Sarawut Mardthong Amarin Nitipon
LEER DESCRIPCIÓN: JU QI SHOU LAI — HANDS UP (2003) (2003) [Subtitulada] Género: Acción, Comedia, Ficción Histórica. Calidad: 1080p SINOPSIS: Mi abuela, un granjero, dos niños y un gallo lucharán contra las tropas japonesas con el fin de proteger un tesoro robado: la estatua de Kim Bodhisattva. ÚNETE A NUESTRO CANAL DE TELEGRAM PARA QUE PUEDAS DISFRUTAR DE MÁS PELÍCULAS COMPLETAMENTE GRATIS. ENLACE: https://t.me/joinchat/OaWiE811FUdlMmFh
#FiLm_Lucu_COver #HandsUP
🔥SUBSCRIBE to China Movie Channel HINDI to experience the exciting world of Chinese movies🔥 https://bit.ly/46ROGMa → Movie Description ← Movie Name: Hands Up! #举起手来 Movie Name in HINDI: हैंड्स अप! Movie Genre: Comedy, War Synopsis: The film tells the story of "my grandma" who accidentally entered Shiqiao Village in order to send out a piece of evidence collected by patriotic students, and cooperated with the farmers in the village to fight back with the guerrillas in the village and annihilated the Japanese squad.. #HandsUp #ChinaMovieChannelHINDI #ChineseMovie #MovieinHindi #cdrama #wardrama #warmovies #comedymovies ⇢ SUBSCRIBE to our official channels CCTV6 China Movie Official Channel: https://bit.ly/2WQTXBv 1905 Movie Theater: https://bit.ly/2yacTCx Movie Series: https://bit.ly/2Ln...
Hands Up may refer to:
Hands Up! may refer to:
Hands up, what
Hands up, what
Hand-hands up, what
Hands up, get your hands up, what
This goes out to my ATL crew
If you feel it like I do
Do it all day, do it all night
You know how it goes [Uh, how it goes]
On and on and on and
You won't see me in it if the shoes ain't chromin'
Call me anywhere, globe phonin'
New home and, n****, we zonin'
No stress [Nah], nuttin' less [Uh-uh]
Than the black American Express [Oh]
I'm a pimp, what the f*** y'all expect
Put your hands up, this is So-So Def
Rollin' to the club, stop to get my grub on
Nothin' like those Krispy Kremes
Soon as I was done it was time to get my groove on
Find a place that's happenin' and I knew that it was
on
From the moment that I walked into the spot
It was bangin', it was swingin', oh
Till somethin' turned me off
I wasn't sure, coulda swore I saw you with someone
And then much to my surprise, oh
You were right there with your hands up in the air
You had hoochies everywhere
All on you
It's like I almost didn't know you
Tryin' to shake that a**
Player, you don't even dance
'Sup wit' you
It's like I don't even know you
You were right there with your hands up in the air
You had hoochies everywhere
All on you
It's like I almost didn't know you
Tryin' to shake that a**
Player, you don't even dance
'Sup wit' you
It's like I don't even know you
Left you at the crib 'cause I know you get your game
on
Happens every Tuesday night
You said that you was cool, your boys was comin' by
{Go baby have yourself a real good time} So I knew I
could be wrong
I was thinkin' there's no way it could be you
Not my baby, he ain't crazy, no
Then my girlfriends tipped me off
When I got closer I could tell that it was you
You was bangin', you was swingin', oh
You were right there with your hands up in the air
You had hoochies everywhere
All on you (All on you)
It's like I almost didn't know you (Didn't know you)
Tryin' to shake that a**
Player, you don't even dance
'Sup wit' you ('Sup wit' you)
It's like I don't even know you
You were right there with your hands up in the air
You had hoochies everywhere
All on you (All on you)
It's like I almost didn't know you (I didn't know)
Tryin' to shake that a**
Player, you don't even dance
'Sup wit' you ('Sup wit' you)
It's like I don't even know you
Yeah
I stay fresh to Def, you know that
Pull up in a Benz, valet, hold that
Not a scratch on my new chrome caps
Rim from my teeth, never chew gold caps
Step back, never seen throw back
No team on the front, no name on back
Need a forehead chick, got a big forehead
Charge 4 for a head, use her just for h***
I'm a young pimp, move kinda flashy wit' it
Every girl walkin' tryin' to pass me digits
Damn, there's a lot here and I just got here
The spot where we ???
I'm a stunner, got heat for the summer
Hit a club, got numbers, 21, none younger
Slim, no fronter, playtime in a Hummer
TLC Remix
You were right there with your hands up in the air
You had hoochies everywhere
All on you {All on you}
It's like I almost didn't know you (On, on you)
Tryin' to shake that a**
Player, you don't even dance
'Sup wit' you {'Sup wit' you}
It's like I don't even know you
You were right there with your hands up in the air
You had hoochies everywhere
All on you
It's like I almost didn't know you
Tryin' to shake that a**
Player, you don't even dance
'Sup wit' you {'Sup wit' you}
It's like I don't even know you