- published: 21 May 2023
- views: 179270
'+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; })); }); -->
Anouar Hajoui better known as DJ Cut Killer or just Cut Killer (French pronunciation: [kœt kiˈlœʁ]; born 6 May 1971) is a renowned French DJ of Moroccan origin with a versatile repertoire of hip hop and rap.
He enjoys international fame and mixed in United States of America through invitations by DJ Big Dawg Pitbulls of Funkmaster Flex and Shadyville DJ's of rapper 50 Cent. For more than fifteen years, he has been one of the most emblematic DJs in French hip hop.
Killer as a young Parisian who loved music and a frenzied activist embraced wholeheartedly the emerging Parisian movement. He joined IZB, the first association to promote the hip-hop and organize concerts, and put down scratches on Original MC’s 1991 album. He performed a memorable role as himself in a scene from the cult movie La Haine. He was a DJ for MC Solaar’s concerts, scratcher on IAM member Akhenaton’s solo album, and a radio show on Radio Nova.
In the middle of the 1990s, Killer had already become a well-respected and active DJ. He adapted and consolidated New York hip-hop in France through many of his mix tapes, mixing the latest releases and freestyles of French rap, they became favorites and collectors' items. His dynamic mixes, his smartness to catch the best 12 inches before anyone, and his flair to find local rappers made his mix-tapes important. The big number of top brass of the second generation of French rap went through this: Sages Poètes de la Rue, Lunatic, 113 and many others. The Hip Hop Soul Party series, composed of double mixed CDs, started in 1996 at MCA’s. From the second volume on, exclusive tracks began to appear from Fabe, Busta Flex, among others, with one CD dedicated to hip-hop, the other to R&B. In volume three, a CD was dedicated to international hip-hop, the other to French hip-hop.
Téa is a female given name of French origin.
Téa can refer to:
TA may refer to:
Tiendas Industriales Asociadas S.A. Tía S.A. branded as Tía is a South American retailing brand founded in 1940, with separate divisions and brands in Ecuador, Uruguay and Colombia. It is the largest discount retailer in Ecuador and Uruguay operating there nearly 300 locations under the brands Tía, MAGDA, Ta-Ta and MULTI AHORRO. In Colombia Tia S.A (Colombia) operates 19 locations under the Tía brand.
Tía S.A finds its roots in the Eastern European supermarket chain Te-Ta founded by Kerel Steuer and Federico Deutsch in the 1920s in Prague, Czechoslovakia, with presence in Czechoslovakia, Yugoslavia and Romania. The Second World War and its effects forced the founders to emigrate to the Americas leaving everything behind, and beginning operations in Bogotá, Colombia in 1940 under the brand Tía, later expanding to Argentina, Peru, Uruguay and Ecuador under the Tía brand and other brands. The wave of European migrants in the 1930s brought to Colombia a dozen members of the European families Steuer and Deutsch who created a store where customers could find everything they wanted without having to go to other stores. The idea of creating a store similar to those that existed in Eastern Europe was protocolized on October 14, 1940, opening the first Tía store in South America, on Carrera Séptima, between calles 17 and 18, in the heart of Colombia, Bogotá.
關注 MUSIC IN THE AIR 訂閱頻道 ▶ bit.ly/300PChw 記得訂閱開啟鈴鐺通知唷 《TA》歌詞影片 支持歌手 QQ音樂 ▶ https://y.qq.com/n/ryqq/singer/003LABmP0dTIWp LYRICS 從前 有一個女孩 喜歡上了個男孩 她說 某天撞見他 是最美好的意外 漸漸 她對他產生依賴 他對她印像不賴 後來 兩人彼此明白 最後她們相愛 突然 距離迫使他和她分開 他和她千里開外 她站在地球的另一邊看月亮 他躺在巴厘島海灘上曬太陽 縱使我跨過大海 越過山脈 卻也只能相望 他說你喜歡去到遙遠的地方 她說沒關係我陪你去流浪 路途遙遠也罷 艱險也罷 只要你在身旁 從前有一個男孩 喜歡上了個女孩 他說 那天撞見她 心裡早計劃明白 慢慢 吸引她的青睞 幻想以後未來 終於 兩人彼此明白 最後他們相愛 突然 距離迫使他和她分開 他和她千里開外 她站在地球的另一邊看月亮 他躺在巴厘島海灘上曬太陽 縱使我跨過大海 越過山脈 卻也只能相望 他說你喜歡去到遙遠的地方 她說沒關係我陪你去流浪 路途遙遠也罷 艱險也罷 只要你在身旁 他和她 在一起又分開 多少次又重來 距離的痛 成為了阻礙 他和她 明明還相愛 卻不能依賴 他和她 漸漸放下關懷 不再有所期待 讓命運來決定他們將來 到最後才明白 只要你在 她站在地球的另一邊看月亮 他躺在巴厘島海灘上曬太陽 縱使我跨過大海 越過山脈 卻也只能相望 他說你喜歡去到遙遠的地方 她說沒關係我陪你去流浪 路途遙遠也罷 艱險也罷 只要你在身旁 #不是花火呀 #TA #記得訂閱小鈴鐺唷 *** Video Production ▶ MUSIC IN THE AIR *** 歌曲版權為相應製作/發行方所有 本頻道僅為宣傳推廣優秀音樂作品 若喜歡他們的音樂請購買歌曲支持 *** ...
Tooty Ta dance song by Jack Hartmann. Our animated A Tooty Ta song is super popular children’s song and dance. Students get some fun physical activity, while they rejuvenate their body and brain. Children everywhere love Tooty ta! Tooty Ta is a growing pattern, repeat after me song and dance. Tooty Ta can really help to re-focus student’s attention, giving them a mental and physical break from their academics. This enables them to have a better focus for learning. Tooty-Ta as a “brain break” is a win-win situation. Students learn during these “brain breaks” plus return to a task renewed and energized. Tooty Ta is a terrific brain breaks for kindergarten song. Classroom and Physical Education teachers as well as home learners can quickly and easily use Tooty Ta to give students fun a...
Subscribe and watch new videos uploaded every week. ★ YouTube Channel: http://www.youtube.com/Pinkfong Ready to move you body and dance along with Pinkfong's all new "Dance Along with Pinkfong" series? :D Let's all move and stretch our body around with Pinkfong's new dance songs! You are watching "Tooty-ta Song" a super fun & wacky dance song created by PINKFONG. Sing, dance and play to kids' favorite nursery rhymes! ---- ★ Lyrics Tooty-ta Song A~~~Tootyta song! Tooty ta ta tooty ta, tooty ta ta! Everybody Skae the body tooty ta ta! Thumbs Up Thumbs Up Tooty ta ta tooty ta, tooty ta ta! Thumbs Up Thumbs Up Elbows back Elbows back Tooty ta ta tooty ta, tooty ta ta! Thumbs Up Thumbs Up Elbows back Elbows back Feet apart! Feet apart! Tooty...
https://band.link/DBillions Lyrics: Trrr-ra-ta-ta! Brush your teeth! Clap, clap Cha-Cha-Cha, Brush your teeth. I don’t like it, No, no, no! I like candy, Om-nom-nom. Brush your teeth! Trrr-ra-ta-ta! Trrr-ra-ta-ta! Brush your teeth! Chicky, Chicky, Chicky, Brush your teeth. I don’t like it, No, no, no! I like candies, Om-nom-nom. Brush your teeth! Trrr-ra-ta-ta! Trrr-ra-ta-ta! Brush your teeth! Boom-Boom-Boom, Brush your teeth. I don’t like it, No, no, no! I like candy, Om-nom-nom. Brush your teeth! Trrr-ra-ta-ta! Trrr-ra-ta-ta! Brush your teeth! Lya-Lya-Lya, Brush your teeth. I don’t like it, No, no, no! I like cake, Om-nom-nom. Brush your teeth! Trrr-ra-ta-ta! #DBillions #trrratata #hippo #loko #monkey #forkids Copyright AWA LLC 2024. All Rights Reserved
Subscribe Tayo the Little Bus and watch new videos uploaded every day. ★ Tayo YouTube Channel:https://www.youtube.com/user/Tayo?sub_confirmation=1 ---- Could you ever imagine having TWO Tayos on the street? Because we CANNOT!! But something strange happened and there are TWO Tayos on the street. Who's the real one? Or are both of them fake? ---- Tayo season 5 episodes in English 🚌 https://www.youtube.com/playlist?list=PLkvTG4A3XyMkjEpqlLCz1Ku0Ie-CmGqgg The Tayo Movie Mission Ace 🎞 https://www.youtube.com/playlist?list=PLkvTG4A3XyMkGg6sywFB4i0nDq2CQuZCV Follow us on Facebook and Instagram. Find more Tayo toys from Amazon. ★ Tayo TV: https://tayotv.vhx.tv/ ★ Facebook: https://www.facebook.com/Tayo.officialpage/ ★ Instagram: https://www.instagram.com/tayothelittlebus_official ★ Amazon...
Hi! Do you enjoy going to a dentist?! No?! Then you should take care of your teeth! Do you know how to brush your teeth the right way? Do you know how to keep them healthy and strong? Watch the video and find out with our D Billions team and a beaver! Lyrics: Brush your teeth, Trrr-ra-ta-ta! Everyday! Trrr-ra-ta-ta! Every morning, Trrr-ra-ta-ta! Every evening! Trrr-ra-ta-ta! Trrr-ra-ta-ta! Trrr-ra-ta-ta-ta-ta #DBillions #brushyourteeth #toothbrush #dancesong Copyright AWA LLC 2022. All Rights Reserved
Suscribe a nuestro canal para ver los nuevos videos! Facebook: https://www.facebook.com/launicatropical Instagram: https://www.instagram.com/launicatropical Tik Tok: https://www.tiktok.com/@launicatropical Título: Tattoo Autores : Jimmy Jansson Jimmy Thörnfeldt Loreen Talhaoui Moa "Cazzi Opeia" Carlebecker Peter Boström Thomas G:son Orquesta: La Única Tropical #launicatropical #concierto #cumbiaenvivo #antonioflores #axelmedina #carlosburgos #giancarlochunga #saldemivida
❖关注 WCY Music Studio❖ Website ➸ https://wcymusicstudio.com Youtube➸https://www.youtube.com/wcymusicstudio Facebook➸https://www.facebook.com/wcymusicstudio Instagram➸https://www.instagram.com/wcymusicstudio Soundcloud➸https://soundcloud.com/wcymusicstudio Twitter➸https://twitter.com/wcymusicstudio TikTok➸https://www.tiktok.com/@wcymusicstudio Bilibili➸https://space.bilibili.com/380409921 Weibo➸ https://www.weibo.com/5017663723 西瓜视频➸https://www.ixigua.com/home/1807239916039406 今日头条➸https://www.toutiao.com/c/user/1807239916039406/#mid=1650183985657864 抖音➸WCYMusicStudio / https://v.douyin.com/XRurXn 网易云➸https://music.163.com/#/user/event?id=1583112131 FB群➸https://www.facebook.com/groups/wcymusicstudiogroup ❖想要打赏我们的小哥哥和小姐姐们,可以点击以下的链接哦 ➸https://www.paypal.me/wcyms ❖关注 :不是花火呀 ❖歌曲上架平台: ➸QQ音乐 ...
Army TA Bharti Exam 12 January 2025 | Army TA Maths Marathon Class 02 | Army TA Maths Question 2025 #armytabharti2025 #armystudy #armytamaths army question paper 2025,army exam question paper 2025,ta army exam 12 january 2025,ta army bharti 2025,army maths marathon class,army gd paper 2025,army bharti 2025,army exam agniveer merathon class | gk,army exam marathon class,ta army exam 2025,army ta question paper 2025,ta army question paper 2025,army agniveer new vacancy 2025,army agniveer question paper 2025,army gd maths class,army marathon class,army gk gs marathon class,army paper 2025 army ta maths,army ta maths tips,army ta maths by shobhit sir,ta army bharti 2024,maths for army exams,army maths strategy,army ta 2025,army maths preparation,army maths one liner series,maths practic...
Anouar Hajoui better known as DJ Cut Killer or just Cut Killer (French pronunciation: [kœt kiˈlœʁ]; born 6 May 1971) is a renowned French DJ of Moroccan origin with a versatile repertoire of hip hop and rap.
He enjoys international fame and mixed in United States of America through invitations by DJ Big Dawg Pitbulls of Funkmaster Flex and Shadyville DJ's of rapper 50 Cent. For more than fifteen years, he has been one of the most emblematic DJs in French hip hop.
Killer as a young Parisian who loved music and a frenzied activist embraced wholeheartedly the emerging Parisian movement. He joined IZB, the first association to promote the hip-hop and organize concerts, and put down scratches on Original MC’s 1991 album. He performed a memorable role as himself in a scene from the cult movie La Haine. He was a DJ for MC Solaar’s concerts, scratcher on IAM member Akhenaton’s solo album, and a radio show on Radio Nova.
In the middle of the 1990s, Killer had already become a well-respected and active DJ. He adapted and consolidated New York hip-hop in France through many of his mix tapes, mixing the latest releases and freestyles of French rap, they became favorites and collectors' items. His dynamic mixes, his smartness to catch the best 12 inches before anyone, and his flair to find local rappers made his mix-tapes important. The big number of top brass of the second generation of French rap went through this: Sages Poètes de la Rue, Lunatic, 113 and many others. The Hip Hop Soul Party series, composed of double mixed CDs, started in 1996 at MCA’s. From the second volume on, exclusive tracks began to appear from Fabe, Busta Flex, among others, with one CD dedicated to hip-hop, the other to R&B. In volume three, a CD was dedicated to international hip-hop, the other to French hip-hop.
Why these niggas be hating on me man?
Is it cause I get money? (Yeah)
[Hook: A-Rap]
Why these niggas hating on me? (Ay why they hating on me?)
Why these niggas hating on me? (Ay why they hating on me?)
Why these niggas hating on me? (Ay why they hating on me?)
Why these niggas hating on me?
Is it because a nigga still get money?
Is it because a nigga keep on stunting?
Is it because I get a lot of fucking paper?
Or is it because I’m still screaming fuck a hater?
[Verse 1: A-Rap]
I'm like why in the fuck these niggas hating on me
Plotting trynna come up with a way to take from me
I ain't worried 'bout shit, you ain't taking nothing
But if you think about it, than we can spray something
Fuck it. I’m ready. I got that thing its heavy
Don’t hang around nothing but O.G.’s, they say I’m ready
I pull up in a Chevy, just bought my girl a Lexus
Them Louis on my feet I hit the scene and shit get reckless
Aye I’m a young nigga, with a lot of paper try to stay from fakers
Cause they will fact-date you
Yea I’m gone club hop tonight and I’m gone do it major
Blowing money in the air screaming fuck a hater
I ain't worried 'bout shit, that's my attitude
In the VIP with bad bitches smoking passion fruit
I like my girls drinking on nothing but that goose
Give them 2 shots, guarantee them hoes get loose
(Yeah) This shit ain't nothing, cause I'm use to the money
With a check I stay running, but try to rob me I’m gunning
You ain't talking 'bout nothing ain’t had no job, Tommy
You will never jugg a nigga like me, no dummy
I’m a real ass nigga, I’m round nothing but killers
Handle my business wit dealers, R.I.P. Biggie he feel us
Probably hit the car-lot tomorrow and buy me an Audi
2012 show you fuck niggas I’m about it
Fully loaded with the wood grain interior
Pull up in Bankhead, Westside I’m so serious
I’m like Max Payne in the game, you can't stop me
The best thing for you to do, is just sit down and watch me
Been had a sack, bitch and I still got it
Don’t carry no wallet, just put it in my pocket
I ain’t trynna do no swapping, all I need is my license
Walk around wit 10 bands, and I’m feeling so priceless
Stack it up some more so I can get a Maybach
When they see me whipping in it they going to hate that
Its fucked up when you doing good and they hating on you
Mad cause you got something, and they ain't got nada
Fuck that shit where the Kodak at I want to take a pic
Send it to bad bitches only ain't dealing with no tricks
Them the main hoes first night trynna suck yo dick
And when she get done sucking ask can you lick her shit (HELL NAW
MAN)
(Got me fucked up bitch, I’m 'bout money man
Yeah M.O.B. all day man, if you ain’t getting no money, Fuck you!)