- published: 03 Aug 2018
- views: 113771
'+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; })); }); -->
Benin City is a city (2006 est. pop. 1,147,188) and the capital of Edo State in southern Nigeria. It is a city approximately 40 kilometres (25 mi) north of the Benin River. It is situated 320 kilometres (200 mi) by road east of Lagos. Benin is the centre of Nigeria's rubber industry, but processing palm nuts for oil is also an important traditional industry.
The original people and founders of the Benin Empire, the Edo people, were initially ruled by the Ogiso (Kings of the Sky) dynasty who called their land Igodomigodo. The rulers or kings were commonly known as Ogiso. Igodo, the first Ogiso, wielded much influence and gained popularity as a good ruler. He died after a long reign and was succeeded by Ere, his eldest son. In the 12th century, a great palace intrigue and battle for power erupted between the warrior crown prince Ekaladerhan son of the last Ogiso and his young paternal uncle. In anger over an oracle, Prince Ekaladerhan left the royal court with his warriors. When his old father the Ogiso died, the Ogiso dynasty was ended as the people and royal kingmakers preferred their king's son as natural next in line to rule.
The Benin Empire was a pre-colonial empire located in what is now southern Nigeria. Its capital was Edo, now known as Benin City, Edo. It should not be confused with the modern-day country called Benin, formerly called Dahomey. The Benin Empire was "one of the oldest and most highly developed states in the coastal hinterland of West Africa, dating perhaps to the eleventh century CE", until it was annexed by the British Empire in 1897.
The original people and founders of the Benin Empire, the Edo people, were initially ruled by the Ogiso (Kings of the Sky) dynasty who called their land Igodomigodo. The rulers or kings were commonly known as Ogiso. Igodo, the first Ogiso, wielded much influence and gained popularity as a good ruler. He died after a long reign and was succeeded by Ere, his eldest son. In the 12th century, a great palace intrigue and battle for power erupted between the warrior crown prince Ekaladerhan son of the last Ogiso and his young paternal uncle. In anger over an oracle, Prince Ekaladerhan left the royal court with his warriors. When his old father the Ogiso died, the Ogiso dynasty was ended as the people and royal kingmakers preferred their king's son as natural next in line to rule.
Benin is a modern country in Africa, the former colony of French Dahomey.
Benin can also mean:
For more information log on to http://www.channelstv.com
Don't forget to subscribe: https://bit.ly/2Hb8hjx Watch more interesting videos: https://bit.ly/34ogCaw Follow Channels Television On: Facebook: https://www.facebook.com/channelsforum/ Twitter: https://twitter.com/channelstv Instagram: https://www.instagram.com/channelstelevision/?hl=en Get more news on our website: https://www.channelstv.com/ #ChannelsTv
La salle de conférence du ministère des affaires étrangères a servi de cadre à la Conférence de presse du ministre de la communication. La présidentielle du 11 avril prochain était au menu de cette rencontre avec la presse. Pour Alain Orounla, le processus électoral depuis quelques semaines nourrit autant de polémiques qu’il est important de clarifier certaines situations. C’est l’objectif de sa rencontre de ce Mardi 16 février avec les professionnels des médias pour mieux les éclairer. Le ministre souligne que, « La commission a rendu public la liste des duos de candidature et conformément à la constitution, la CENA a retenu la candidature de trois duos. Aujourd’hui le calendrier est constitutionnalisé et le gouvernement n’a comme rôle que de rappeler les dates. En attendant la décision ...
A joint patrol of the Nigerian Army and Police Force today killed a member of a gang of kidnappers, who abducted a middle aged woman on TV road Benin City. Kingsley Uchegbu reports that some business premises in the area hurriedly closed shops in the aftermath of the incident. Some pictures in this report may be disturbing, viewer discretion is advised. www.itvradionigeria.com www.youtube.com/itvradiong www.facebook.com/itvradiong Twitter: @itvradiong Instagram: @itvng
#Clashes between #Aiye and #Vikings #cult groups have persisted in Benin City, the Edo State capital, with many killed. As of Saturday, different witnesses said at least 18 persons might have died in the last one week. The body of an unidentified youth was discovered in the early hours of Saturday along the Uselu-Lagos road by Uselu Motor Park/Edaiken junction in #Egor Local #Government Area of the state. Also, at Oni street junction, off Abaligbe Street, and elsewhere at Oghuru junction in Iguosa along Benin-Lagos expressway, two other bodies were found on Saturday morning after the hoodlums struck in the area late Friday. No reason has been given for the bloody encounters, but sources claim it was an issue of supremacy between the two groups. On Friday, an Assistant Commissioner of ...
#endsars #djmtv #Nigeriagovernment DJM TV is an online TV station that specialises in breaking news AS HE DEY HOT and entertainment. DJM TV has been setting up brands in all areas of entertainment since 2017. DJM TV is registered under (CAC) Corporate Affairs Commission in Nigeria RC1490897 We have Main News, Pidgin English News, Entertainment News, Music Promotion, street zoom & Comedy. https://youtube.com/c/DJMTVnewsmusic https://djmtv.news/ Follow us on Facebook, Twitter and Instagram - DJM TV Do you like watching people answering tricky questions in the street interviews? Are you interested in gossip news? Do you want to know more about public and personal lives of Nigerian music artists, actors, and other famous people discussed in Pidgin English? Do you like hilarious comedy vide...
Edo State Police Command has recovered the body of an America-based Nigeria, Chief Dennis Abuda who was kidnapped last Saturday with four others along Benin/Lagos Ahor By-pass in Edo State. Crime Correspondent Welling Akodeja reports that Chief Abuda was returning to Lagos to catch a flight to the U.S. when he was kidnapped by some gunmen. www.itvradionigeria.com www.youtube.com/itvradiong www.facebook.com/itvradiong Twitter: @itvradiong Instagram: @itvng
A suspected armed robber was today killed by men of Edo State Police Command after a gun duel with suspected criminals during a robbery incident at Ugbowo in Egor Local Government area, Edo State. Crime correspondent Wellington Akodeja reports that other suspects escaped with gunshot injuries. www.itvradionigeria.com www.youtube.com/itvradiong www.facebook.com/itvradiong Twitter: @itvradiong Instagram: @itvng
A young man was shot dead in the early hours of today at Isihor near Oluku in Benin City. Pius Nsogho reports that residents of the area who were alarmed by the incident said the atrocity of such magnitude is becoming rampant. www.itvradionigeria.com www.youtube.com/itvradiong www.facebook.com/itvradiong Twitter: @itvradiong Instagram: @itvng
Don't forget to subscribe: https://bit.ly/2Hb8hjx Watch more interesting videos: https://bit.ly/34ogCaw Follow Channels Television On: Facebook: https://www.facebook.com/channelsforum/ Twitter: https://twitter.com/channelstv Instagram: https://www.instagram.com/channelstelevision/?hl=en Get more news on our website: https://www.channelstv.com/ #ChannelsTv
Officers and men of Edo State Police Command have continued to register their presence in the public space as a way of reclaiming the crime rate in the state. Kingsley Uchegbu reports that the Police presence in the streets have gradually started to boost the confidence of residents as they go about their activities. www.itvradionigeria.com www.youtube.com/itvradiong www.facebook.com/itvradiong Twitter: @itvradiong Instagram: @itvng
The Esama of Benin and Honorary Romanian Consul to Edo and Delta States, His Excellency, Sir, Chief, Doctor Gabriel Osawaru Igbinedion has urged Police Officers to emulate the sterling leadership qualities of Assistant Inspector-General of Police, Zone Five, AIG Shola David, retired. The Esama of Benin made the remark when he organised a special luncheon in honour of former AIG Shola David in Benin City. Pius Nsogho has details. www.itvradionigeria.com www.youtube.com/itvradiong www.facebook.com/itvradiong Twitter: @itvradiong Instagram: @itvng
Benin, officially the Republic of Benin formerly known as Dahomey, is a country in West Africa. It is bordered by Togo to the west, Nigeria to the east, Burkina Faso to the north-west, and Niger to the north-east. The majority of its population lives on the small southern coastline of the Bight of Benin, part of the Gulf of Guinea in the northernmost tropical portion of the Atlantic Ocean. The capital of Benin is Porto-Novo, but the seat of government is in Cotonou, the country's largest city and economic capital. Benin covers an area of 114,763 square kilometers and its population in 2018 was estimated to be approximately 11.49 million. Benin is a tropical nation, highly dependent on agriculture, and is a large exporter of cotton and palm oil. Substantial employment and income arise from ...
THANKS, GUYS FOR VISITING OUR CHANNEL. OUR TODAY'S VIDEO IS TO ENTERTAIN AND TO GIVE YOU AWARENESS OF WHAT IS GOING ON AROUND YOU. PLEASE SUBSCRIBE TO NAIJA WATCH. https://www.youtube.com/channel/UCAbQrTeCeJnx_7CxCc0djYw/videos PLEASE LIKE, SHARE, COMMENTS. PLEASE CLICK THE NOTIFICATION BUTTON. FOLLOW US ON OUR FACEBOOK: https://www.facebook.com/naijawatch.nw.7 FOLLOW US ON OUR FACEBOOK PAGE: https://www.facebook.com/NAIJAWATCHYOUTUBE/ FOLLOW US IN OUR INSTAGRAM: https://www.instagram.com/naijawatchblog/?hl=en NAIJA WATCH BRING YOU NEWS UPDATES DAILY, WE TALK ABOUT VARIETIES OF VIDEOS, WE BRING BREAKING NEWS, ENTERTAINMENT, POLITICS MATTERS, AND MORE ILLUSTRATING NEWS TO YOUR SCREEN ACROSS NIGERIA AND NIGERIAN COMMUNITIES ACROSS THE WORLD. WE HAVE A SHOW WHERE WE TALK ABOUT (LIFE ...
#Bénin, #benin, #business, #top #des #top #Elite #toplist "Bonjour à tous les entrepreneurs en herbe et aux esprits innovants ! Aujourd'hui, nous allons explorer ensemble 10 des business les plus rentables et prometteurs au Bénin. Que vous cherchiez à lancer votre propre entreprise ou que vous souhaitiez développer votre activité existante, cette vidéo est faite pour vous. Nous allons plonger dans un éventail de possibilités passionnantes, allant de l'agro-industrie, en passant par l'énergie solaire et renouvelable, jusqu'au secteur du tourisme et de l'écotourisme. Vous découvrirez également des opportunités dans le secteur en plein essor de l'e-commerce, ainsi que dans les domaines de l'éducation et de la formation en ligne. Mais ce n'est pas tout ! Nous explorerons également les secte...
Doing Business in Benin | Top Reasons why to Start an Industry in Benin If you’re interested in starting a business but don’t know where to start, Benin could be the place to put down roots and build your future. The country has all the makings of an excellent place to open your doors and begin your journey as an entrepreneur: great education systems, thriving manufacturing centers, and plenty of local talent who are already prepared to work at the highest levels of their respective fields. Before deciding if Benin is the place for you, make sure you check out these reasons why you should start a business in Benin first! Niir Project Consultancy Services (NPCS) has prepared project report. The report covers- Manufacturing Plant, Detailed Project Report, Profile, Business Plan, Industry T...
💹 Success can be achieved by sticking to the time schedule, being religious towards duties and responsibilities, following the latest technologies, effective marketing and branding techniques, positive mindset and broad outlook. 👉 Get Ready to Watch Opesh Singh's Videos and Learn about Different Businesses that you can start in the International / Overseas Market. 𝐀𝐛𝐨𝐮𝐭 𝐃𝐫. 𝐎𝐩𝐞𝐬𝐡 𝐒𝐢𝐧𝐠𝐡: Opesh Singh is a Businessman, Author, Investor, and a Global Business Mentor/Coach. He helps his clients make big profits by making complicated business topics easy to understand and apply in the current economic environment. He is most famous for teaching overseas businesses. He has written 8 Bestselling Books and 10 Business Programs. 𝗕𝘂𝘀𝗶𝗻𝗲𝘀𝘀 𝗦𝗲𝗴𝗺𝗲𝗻𝘁𝘀: Import-Export, Mineral Trading, Consultancy Servi...
1. Agriculture sector In Benin, the agricultural sector contributes around a third to the GDP, a quarter to the export earnings and 15% to government revenues, and generates employment for about 70% of the people (Ministry of Agriculture, Animal Husbandry and Fisheries (MAEP), 2015). The agricultural production sector is characterized by the predominance of smallholder farming, which is vulnerable to climate change and extreme climate events. ---------------------------------------------------------------------------------------------------- Are you an Investor looking forward to invest in Africa..? DO you have a copy of this investment tool already..? IF NOT THEN GO RIGHT NOW ON AMAZON KINDLE AND DOWNLOAD...CLICK ON THE LINKS BELOW 1) UNIQUE BUSINESS IDEAS FOR EVERY AFRICAN COUNTRY cli...
𝐓𝐢𝐭𝐥𝐞: Is it safe to start a business in Benin, Africa? | Why Benin is Best Place to do Business in 2023 👉 Get Ready to Watch Megha Nath's Videos and Learn about Different Businesses that you can start in the International / Overseas Market. 𝐀𝐛𝐨𝐮𝐭 𝗠𝘀. 𝗠𝗲𝗴𝗵𝗮 𝗡𝗮𝘁𝗵: Ms. Megha Nath is an entrepreneur, investor, business coach and business women working in many different countries and as well managing director of Opesh Group. She is helping lot of people for their overseas business expansion. 𝐀𝐛𝐨𝐮𝐭 𝐃𝐫. 𝐎𝐩𝐞𝐬𝐡 𝐒𝐢𝐧𝐠𝐡: Opesh Singh is a Businessman, Author, Investor, and a Global Business Mentor/Coach. He helps his clients make big profits by making complicated business topics easy to understand and apply in the current economic environment. He is most famous for teaching overseas businesses. H...
Tivona Supermarket, an affiliate of Tivona Hotels and Shopping Mall, has been inaugurated in Benin City. Amenze Obarisiagbon who captured highlights of the ceremony has details. www.itvradionigeria.com www.youtube.com/itvradiong www.facebook.com/itvradiong Twitter: @itvradiong Instagram: @itvng
Dans cette vidéo, je présente le Bénin, les facteurs favorables et défavorables à l'entrepreneuriat et investissement dans ce pays et les business porteurs et rentables qu'on peut y développer. Suivez jusqu’à la fin. Abonnez-vous en cliquant ici: https://www.youtube.com/channel/UCJg-TB0lrwI68_hu-eUn-KA?sub_confirmation=1 Suivez-nous sur notre page Facebook: https://www.facebook.com/afriqentrepreneur Contactez-nous par: email: [email protected] ou WhatsApp: +1 646 358 2309 La révolution entrepreneuriale en Afrique, c'est maintenant.
After a a tête-à-tête with Mr. Talon at the Marina Palace in Cotonou, Mr. Macron is expected to visit the exhibition of royal treasures returned to Benin by the French government last November. READ MORE : https://www.africanews.com/2022/07/27/benin-macron-in-cotonou-for-a-business-visit Subscribe on our Youtube channel https://www.youtube.com/c/africanews?sub_confirmation=1 and receive all the latest news from the continent. Africanews is available in English and French. Website : www.africanews.com Facebook : https://www.facebook.com/africanews.channel/ Twitter : https://twitter.com/africanews #AfNews
Lady Golfers Association of Nigeria, South Zone, has commenced its 2024 Championship Tournament in Benin. Donald Ehimiyein reports that the opening ceremony performed at the Golf Section of the Benin Club 1931, was graced by several dignitaries including the Executive Director, Business Services, NNPCL, Engineer Isokariari Telema. www.itvradiong.com/live www.youtube.com/itvradiong www.facebook.com/itvradiong www.twitter.com/itvradiong www.instagram.com/itvradiong www.tiktok.com/@itvradiong
This video discusses three businesses that can never fail in Nigeria. ___________________________________________________Powered by Fortreal Rei Ltd. Your most trusted real estate company/partner. To get lands/properties in Nigeria or generally invest in real estate in Nigeria, contact (Call/WhatsApp) us via the following numbers: +2347062589557, +2347059030343 or send an email to [email protected]. You can also reach us directly on WhatsApp by clicking this link: https://wa.me/message/NRPCHMV7O64BH1 Fortreal website: www.fortrealrei.com.ng To purchase our real estate books, click this link https://selar.co/m/Raymondijeomah1 Check out my content on property law: where I discuss legal issues concerning property law in Nigeria with focus on helping the audience avoid issues...
So I tried trying every street food in Cotonou Benin Republic 🇧🇯... n here’s is a video of how it went Hope you watch and enjoy . THANKS FOR WATCHING! Watch more Benin Republic vlogs here : https://www.youtube.com/playlist?list=PLAxrxfvqOinyrzdF6r2dmV4iS8Tsss7Db Watch exciting vlogs here : https://www.youtube.com/playlist?list=PLAxrxfvqOinzoqvhoDtGQFqtb9HRHS9FW ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ SUPPORT MY CHANNEL (Donate) PATREON : https://www.patreon.com/Mirasworld PAYPAL : [email protected] For business enquiries contact : [email protected] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Connect with me on Social media: IG: https://www.instagram.com/bb__mira/ FB: https://www.facebook.com/Hair-by-mira... Music in this video : Song: inside your eyes - DizaroXDaloka(Vlog No...
Mrs Else shows you how to make a mouldable material so that you can make your own Benin Bronze!
In Benin, painful cutting and scarring of the skin leaves interesting patterns that signify adulthood. ➡ Subscribe: http://bit.ly/NatGeoSubscribe #NationalGeographic #Scarification #Adulthood About National Geographic: National Geographic is the world's premium destination for science, exploration, and adventure. Through their world-class scientists, photographers, journalists, and filmmakers, Nat Geo gets you closer to the stories that matter and past the edge of what's possible. Get More National Geographic: Official Site: http://bit.ly/NatGeoOfficialSite Facebook: http://bit.ly/FBNatGeo Twitter: http://bit.ly/NatGeoTwitter Instagram: http://bit.ly/NatGeoInsta Scarification | National Geographic https://youtu.be/Lfhot7tQcWs National Geographic https://www.youtube.com/natgeo
Voyez la série sur TV5Unis.ca : https://www.tv5unis.ca/marches-sur-terre Le pagne évoque souvent l’Afrique. Vêtement traditionnel des Africains de l’Ouest, il se décline en une multitude de motifs, aussi colorés que variés, et chaque pays se l’approprie à sa manière. L’un des plus grands marchés du continent, le marché Dantokpa, se trouve à Cotonou, au Bénin, et offre un choix infini de pagnes. Sur la quinzaine d’hectares qu’occupe sa surface s’entassent chaque jour un million de visiteurs ! À l’abri du soleil sous de grands parasols, les 5 000 hangars du marché Dantokpa offrent bijoux, vêtements, nourritures et boissons. Et c’est à l’intérieur du bâtiment principal, qualifié de temple du wax hollandais, que s’empilent les pagnes. Tirant cette appellation de la technique de fabrication d...
Emotan was a market woman who used to trade in food stuffs around the 15th century at the Oba Market in the Ancient Benin Kingdom during the reign of Oba Uwaifiokun and Prince Ogun –who later took the name "Oba Ewuare the Great" after becoming the Oba of Benin.
► SUBSCRIBE for daily travel videos: http://bit.ly/2hyQnZ1 ► INSTAGRAM? Join me: https://www.instagram.com/drewbinsky/ No matter where you go on the African continent, you can see women carrying heavy loads of goods on the top of their heads and it's fascinating! Many of them can carry up to 70% of their body weight, which is nearly impossible to do with just your two hands. I'm here in Guinea-Bissau, the tiny Portuguese-speaking West African nation, and I wanted to dedicate this video entirely to these strong women who have an impressive sense of balance. I tried to walk 5 steps with 30 kilos of rice on my head, and it's a LOT harder than I thought... Follow @DrewBinsky on IG Stories for behind the scenes of my trip in West Africa: https://instagram.com/drewbinsky FIND ME ON S...
Food Diplomatie H.E Omar Arouna Ambassador of the small west african republic of Benin is showcasing the country's culinary art.
Hello all. We are learning about the British Museum at the moment, and that includes a lot of world cultures that were unfamiliar to me, such as that of the Kingdom of Benin. As such, I'm sure there are a lot of good sources out there that are inaccessible to me or that I did not find here in my London lockdown. I've given my sources below, but if you have others that give a different perspective, please let me know. On a related note, there are several words in this one that I've only ever seen written down, so if you know better than me on the pronounciations, let me know in the comments. I'm already pretty sure I got Erediauwa wrong. In this video, we look at stolen African artworks in the British Museum commonly called the "Benin Bronzes". In each episode of The London History Sh...
Osarodion Marvis is a sculptor from the University of Benin. He is our guest on this special edition of Business Insider & pulse36 feature. Osarodion Marvis considers sculpture as the best way to express himself. He loves the feelings he get from figures in the round. Marvis believes other works of art are flat because they are 2-dimensional. But the multi-dimensional perspectives of sculpture makes it fascinating to him. The texture, strength and life in sculpture also inspires Osarodion Marvis, as an artist. Osarodion Marvis says every sculptural piece has a life in it. Sculpture is a 3-dimendional or 2-dimensional representation of forms, with wood, clay, metal of fiber glass. -Osarodion Marvis Marvis appreciates the 'ruggedity' in sculptural forms. He sees human skin as pla...
Early 2018 we travelled to Benin for the Hunger Project. They celebrated their 10 year anniversary in this beautiful country, working hand in hand with locals towards a sustainable end of world hunger. At the end of our trip we got 2 days of to see a bit of the country. Visiting Ganvie in lake Nokoue, and walking the route of the slaves. Which is very impressive! Of course we missed out on a lot as well, not being able to see some of the wildlife in the north. There is much more to explore! Benin is a stunning country with amazing people, I can only recommend visiting if you ever get the chance. --THE HUNGER PROJECT-- ►Watch the video's we made (in Fon, French and Dutch): https://www.facebook.com/THPNederland/ ►Follow them on Facebook: https://www.facebook.com/THPNederland/ --DE ...
Patreon: https://www.patreon.com/HomeTeamHistory Afrographics: http://afrographics.com Hometeam Merchandise: https://teespring.com/stores/hometeam-history Keywords: Yoruba people
Associate Professor of Art History at Cleveland State University, Dr. Kathy Curnow speaks on "Courtly Intrigues: Jostling for Chiefly Power in the Art and Life of Nigeria's Benin Kingdom" at a Penn Museum Lecture in May 2008.
Founded in 1870, the Metropolitan Museum of Art in New York City is a three dimensional encyclopedia of art history. Produced for Public Television by Great Museums TV. For more information, visit http://greatmuseums.org.
UNICEF correspondent Suzanne Beukes reports on health extension workers bringing vital health services to families in Ketou, Benin. For more information, please visit: http://www.unicef.org
Benin has made free surgical missions to outlying hospitals a central part of its Universal Health Coverage (UHC) strategy, with the aim of improving access to quality care for vulnerable populations. With support from WHO and the French Muskoka Fund, more than 3000 people have benefited.
Don't forget to subscribe: https://bit.ly/2Hb8hjx Watch more interesting videos: https://bit.ly/34ogCaw Follow Channels Television On: Facebook: https://www.facebook.com/channelsforum/ Twitter: https://twitter.com/channelstv Instagram: https://www.instagram.com/channelstelevision/?hl=en Get more news on our website: https://www.channelstv.com/ #ChannelsTv
Don't forget to subscribe: https://bit.ly/2Hb8hjx Watch more interesting videos: https://bit.ly/34ogCaw Follow Channels Television On: Facebook: https://www.facebook.com/channelsforum/ Twitter: https://twitter.com/channelstv Instagram: https://www.instagram.com/channelstelevision/?hl=en Get more news on our website: https://www.channelstv.com/ #ChannelsTv
"Music is nothing without an audience." UNICEF Goodwill Ambassador Angélique Kidjo called her home country of Benin to speak with Annick, a health worker, about COVID-19 vaccines, misinformation and the joys of live music. Subscribe to UNICEF here: http://bit.ly/1ltTE3m The official UNICEF YouTube channel is your primary destination for the latest news updates from the frontline, documentaries, celebrity appeals, and more about our work to realize the rights of every child. Click here to see all of our latest trending videos: http://smarturl.it/TrendingAtUNICEF For more about UNICEF's work, visit: http://www.unicef.org Follow UNICEF here: Instagram: http://instagram.com/UNICEF Twitter: https://twitter.com/unicef Facebook: https://www.facebook.com/unicef UNICEF Connect blog: http://blo...
http://preparetoserve.com/BENIN Health and sickness in the Benin Cotonou LDS Mission. How common malaria is, etc.
Edo state government has launched telemedicine hub in the state state to help improve the quality of healthcare delivery . #Telemedicine #EdoHealthcare #apcpresidentalprimaries #2023presidency #PDPPrimaries #2023Elections #DeborahEmmanuel #ObaLamidiAdeyemiIII #AlaafinOfOyo #DeathOfAlaafinOfOyo #NnamdiKanu #IPOB #2023Presidency #Russia #Ukraine #UkraineCrisis #RussiaInvadesUkraine #TVCNews #TVC #News #NaijaNews #NewsNow #NaijaGist #Entertainment #DailyTrend #NaijaWriter #NewsUpdate #BreakingNews #NewsInNigeria #DailyNews #NewsInNigeria #YouTube #Video #TodaysNews #TodaysVideo #NigeriaNews #Gossip #TrendingGists #DailyGist #YouTube #TrendingVideo #mcoluomo #abbakiyari #abbakiyaricase #PresidentBiden #VladmirPutin #TVCNews #NewsUpdate #BabjideKoladeOtitoju #2023Presidency #2023Elections #Ekit...
A look at how an anti-malaria drug treatment which has hit the markets in Benin, Burkina Faso, Chad and the Central African Republic (CAR) is changing the lives of locals. The drug is made from natural plant extract and is significantly cheaper than anti-malarial drugs currently on the market under Beninese doctor Valentin Agon.… READ MORE : http://www.africanews.com/2017/01/17/benin-malaria-drug-innovation-changing-lives-the-grand-angle Africanews is a new pan-African media pioneering multilingual and independent news telling expertise in Sub-Saharan Africa. Subscribe on ourYoutube channel : https://www.youtube.com/c/africanews Africanews is available in English and French. Website : www.africanews.com Facebook : https://www.facebook.com/africanews.channel/ Twitter : https://twitter.com...
Iduriase Educational Centre, Eyaen on Benin Auchi road Benin City has organized a health day for its pupils. The Programme is to inculcate modern Dynamics of the health sector in the children Efosa uwangue completes the report. www.itvradionigeria.com www.youtube.com/itvradiong www.facebook.com/itvradiong Twitter: @itvradiong Instagram: @itvng
SATMED is a satellite based communication solution aimed to improve public health in emerging and developing countries. Find out more: http://www.ses.com/20513923/SATMED-ehealth-platform
The rivalry between the two notorious cult groups in Benin city seems not to be dwindling as fresh reports on social media shows the brawl between the two group rival cult is not ceasing anytime soon.
Broda shaggi welcome to Benin | broda shaggi meets with ini Edo broda shaggi, broda shaggi latest comedy, broda shaggi comedy, broda shaggi palava, broda shaggi the robbery, broda shaggi song, broda shaggi and charles okocha, broda shaggi 2020, broda shaggi end sars, broda shaggi in big brother house ini edo movies, ini edo, ini edo movies 2020, ini edo old movies, ini edo old love movies, ini edo latest movies 2020, ini edo village movies 2019, ini edo royal movies, ini edo and ken erics movies, ini edo children
#mceedr.tv #europeanidare #emweneurope #ifemi #ENDSARS #vbationa DEVILS INTERNETS PART 3&4 Is a must watch Nigerian Indigenous movie (Benin Movie) that will entertain and enlighten you this is a true life story. EMWEN EUROPE SEASON 1 https://youtu.be/j4AWh-Hrzi4 #Beninmovies #edomovies #mceedrtvmovies #Tunde Ednut #istablog #christian movies #NewNigeriaMovies, #Ayefele #Wizkid #Davido #kingsunnyAde #tiwasavage #femikuti #tundeking #lagbaja #nice #simi #Adekunle #Gold #Banky W. D' banj #wandecoal #rema #Africatopartists #Americaartists @omobalance tv @Homeoflafta comedy @AvieleleKelvintwinko #MceeTwinko @MarkAngelComedy @YAWA SKITS @SIRBALO CLINIC @OFFICER WOOS @official BRODA SHAGGI SUBSCRIBE TO A TRUE LIFE STORY WITH, Mc Ighogho, Kevin Cool, young Elder, Mcee Twingo A.K.A...
Meet Nigerian Woman Ehizogie Ogbebor, the boss lady and CEO of Sayaveth Interiors. She is richer Than Wizkid, Davido, Dangote, Regina Daniels and Burna Boy Combined. #nigeria #richestnigerianwoman #wizkid #davido #reginadaniels #dangote
Click the "Caption" button to activate subtitle! My Neighbor, Charles Ep 164 - Daniel, a dancer who used to be a law student came from Benin, which is a first for My Neighbor, Charles. A lot of fun and sweat overflow wherever Daniel has been as a number one African dance teacher. Female warriors from the movie, "Black Panther," were taken after the pride of Benin, female army. Their female warriors' dance was dedicated to their king. Let's dive into the female warriors' dance class! ▶Subscribe KBS World Official Pages Youtube Subscribe:https://www.youtube.com/kbsworld Homepage: http://www.kbsworld.co.kr Facebook: http://www.facebook.com/kbsworld Twitter: http://twitter.com/kbsworldtv Instagram: https://www.instagram.com/kbsworldtv/ Line: https://goo.gl/g5iRQV Android Download : http://...
Please don't forget to subscribe to Kumasi Celebrity Barber TV Official YouTube Channel and turn on NOTIFICATION: Comment, Like and Share this Video Follow Us On: INSTAGRAM: shorturl.at/vIR16 FACEBOOK: shorturl.at/cDEOR GOD BLESS YOU, WE LOVE YOU. Enjoy! #GhComedy #GhanaComedy #Kumasicelebritybarber #Funnyafricanvideos #Weezyempire #LilwinVideos #MarkAngel #MarkAngelComedy #Emanuella #AuntySuccess #Success #DenilsonIgwe #NigerianComedy #NigerianComedy2019
See the celebrity i met in kada plaza/Benin city Heyyyyyyyyyyy Today's video is about me meeting with other celebrities, hope you enjoy this video! C O N N E C T W I T H M E: instagram: @Yemiee TV facebook: otobo grace B U S I N E S S: For business inquiries please contact [email protected] Y E M I E E T V This is Yemiee TV and I am a Benin based youtuber/vlogger. I make Educative video ,showing you a bit more of life(Eye opener) I hope you enjoy my channel and I also look forward to all your suggestions. Welcome to the FAMILY 😘😘 See the celebrity i met in kada plaza/Benin city
During the mass prayer, as the Man of God was praying for everyone in the church the power of God was seen mightily as many began to manifest and where delivered. Watch what happened
#StayHome #WithMe please guys don't forget to hit the subscribe button Thank you
From the smooth-talking to the not so subtle bragging, here is what you can expect if you date that Nigerian man. Behind the scenes, dating tips and Google Hangouts HERE: https://bit.ly/2PG9h0H Check out and support what you can -- we need your help in continuing to make quality videos. Dating Beyond Borders is a Youtube channel that focuses on highlighting the cultural differences that come into play while dating people from other countries. Videos out every Thursday - hit the bell button to receive notifications! Follow us on Social Media! Facebook: https://bit.ly/2K6uezQ Instagram: https://bit.ly/313MSO9 Twitter: https://bit.ly/2LPFHpk Visit our website at https://datingbeyondborders.net to learn more about us. Follow us on Social Media! Actors: James: https://www.instagram.co...
Don't forget to subscribe to my channel [PRIVILEGED COMEDY]
In today’s episode, I DM the most famous celebrities in countries starting with “B”. My mission is to travel to all countries, meet and learn what it’s like being an influencer all over the world. Will Gery Nikol from Bulgaria respond and teach me how to sing...? Watch and find out! Follow me on IG @erictabach so that I can get verified and get more famous people to respond. Countries/Territories included: Bahamas, Bahrain, Bangladesh, Barbados, Belarus, Belgium, Belize, Benin, Bermuda, Bhutan, Bolivia, Bosnia and Herzegovina, Botswana, Bouvet Island, Brazil, British Indian Ocean Territory, Brunei, Bulgaria, Burkina Faso, Burundi. LIKE AND SHARE ON IG STORY OR RETWEET ON TWITTER AND TAG ME FOR A SHOUT-OUT IN NEXT WEEKS VIDEO! NEW VIDEOS every Wednesday & Sunday, 4pm EST / 1pm PST! ●...
Benin City is a city (2006 est. pop. 1,147,188) and the capital of Edo State in southern Nigeria. It is a city approximately 40 kilometres (25 mi) north of the Benin River. It is situated 320 kilometres (200 mi) by road east of Lagos. Benin is the centre of Nigeria's rubber industry, but processing palm nuts for oil is also an important traditional industry.
The original people and founders of the Benin Empire, the Edo people, were initially ruled by the Ogiso (Kings of the Sky) dynasty who called their land Igodomigodo. The rulers or kings were commonly known as Ogiso. Igodo, the first Ogiso, wielded much influence and gained popularity as a good ruler. He died after a long reign and was succeeded by Ere, his eldest son. In the 12th century, a great palace intrigue and battle for power erupted between the warrior crown prince Ekaladerhan son of the last Ogiso and his young paternal uncle. In anger over an oracle, Prince Ekaladerhan left the royal court with his warriors. When his old father the Ogiso died, the Ogiso dynasty was ended as the people and royal kingmakers preferred their king's son as natural next in line to rule.
Heyyyy Boys and girls! And all you dirty heads out there!
Let's take a trip to the world of D-12
The hardest boy band in the world!
Ha Ha Ha, Straight From... Detroit Michigan
Come on Follow Us, Come on!
If I could just, take you through
One thing with, me and you
You'll see what, I can do
When I do, what I do
Then I bet, you will not, bother me
Like you do, cuz youll find
You would rather, spend your time B.N.U
(Kon Artis)
You think you know it all don't you dawg all about my life and all
Why I'm poppin this vicodin and drinkin all this alcohol
All up in these clubs throwin up like I ain't got them all
But that's just what you see when you see me hangin wit bringin 'em
It's Funny when I'm bustin my ass for this money and
You ain't never round helpin out but shows you come to them
Run to them wantin in, 30 Niggaz long when you called me to the door
I totally ignore your friends and then they talk behind my back again
I'm back to doin smack again, I have another baby cuz safe sex I ain't practicin
Blazey Bla to squeezey squee, bein fake and Bein me is just your misconception of perception are you're seein me?
If I could just, take you through
One thing with, me and you
You'll see what, I can do
When I do, what I do
Then I bet, you will not, bother me
Like you do, cuz youll find
You would rather, spend your time B.N.U
(Proof)
I ain't gotta like you dude, plenty of time to fight you thru
Arrogant this might be true, smack your bitch slightly boo
Runnin from the white and blue for blowin up a bible school
Lemme show what this rifle do, to ill I got a license too
Nice of you to think I'm not, but I'm ill this true poppin pills shootin guns
Goin to jail (I'll shit on you), yes I'm lotto touched the wire, fuckin bust a nut in Myers
Kelly didn't touch that girl, then again I'm such a liar, this is me all day
You rubbin me the wrong way, listen what the song say and past the fuckin Bombay
Andele' on the over play for the under play Andre is more swift with gun play
One day I'm Proof, next I'm Harry, teks I carry on the run way its necessary that my sex is very nun gay
Hey D-12 we don't play with them gays blame it on our mama's this the way we was raised
If I could just, take you through
One thing with, me and you
You'll see what, I can do
When I do, what I do
Then I bet, you will not, bother me
Like you do, cuz youll find
You would rather, spend your time B.N.U
(Swifty)
They like to know what I can do they ain't got the slightest clue
Question my integrity, I mean it Nigga who is you
You better be prepared for beef we don't need a new recruit
Blow a hole inside of Niggaz bigger than a hoola hoop
See I know the Business, who the hell you talkin stupid too?
Fuck you up have your face lookin like a rubix cube
You can walk the good with me, we can take an acid break
All you gotta do is chew, tablet Nigga have a drink, gamble
Wit us, rob a bank (Man this shit ain't new to you)
What the fuck you Niggaz think, I can shoot at Muslims too
Nigga hey what about that pretty bitch you call your wife, I'ma hit it Nigga
I been suckin titties all my life, stealin shit and startin fights
Pissin on your lawns at night, we hard to get along wit
Stay honor it like dolomite, Nigga you can be polite, I don't talk to people right
And so does the rest of us, you hatin us cuz we alike
If I could just, take you through
One thing with, me and you
You'll see what, I can do
When I do, what I do
Then I bet, you will not, bother me
Like you do, cuz youll find
You would rather, spend your time B.N.U
(Bizarre)
Hey boys and girls, takin drugs is real cool, hangin out in the nude
Actin like a damn fool, its the big guy with the shower cap, kickin sick raps
Talkin bout fuckin kids in the ass crack, never mind Bizarre, you know he's on medication
Smokin weed, drinkin brew, third grade education, all in your house, blunt in my mouth
Call you a bitch and pee on your spouse
(Kuniva)
Look I don't like the chitter chatter, ask the faggots if it matters
Then I'd have to splatter rappers just for actin target practice
Time for action, I'm Kuniva, (Punk) the wet vagina finder, (Punk) so never mind your rhymin
Chumps you might see me behind a pump and yes it damages
And puts Niggaz in bandages and yes I love my pistol like Bizarre loves all his sandwiches
Business is strenuous you fuckin wit some geniuses so many people on my nutz
I wonder how my penis is, girls are prudent wit bodies like Venus and Serena's is
I turn 'em down my wife'll kill me if she every seen this shit, I mean this shit
I'm silly man, I'm smart I'm really ignorant I'm innocence and guilty at the same time
Go and figure it
If I could just, take you through
One thing with, me and you
You'll see what, I can do
When I do, what I do
Then I bet, you will not, bother me
Like you do, cuz youll find