- published: 26 Jul 2023
- views: 791154
'+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; })); }); -->
Robert, Rob, Bob or Bobby Taylor may refer to:
Robert Bainbridge Taylor (born 30 April 1942) is a former England rugby player and past president of the Rugby Football Union. He is from Northampton, England, and studied at King Alfred's College (now University of Winchester) from 1960 - 1963.
He was a flanker for England (between 1966 and 1971) and the British Lions, serving as England/Wales captain in the RFU centenary match in 1970 and winning 16 England caps. He captained England in one international. He was also the Northampton coach and a referee for East Midlands.
In 1995 he was appointed Hon Secretary of Northampton RFC and served as president 1993-95. He has represented Northampton and the East Midlands on numerous committees and has served on several national committees. He was appointed to serve for one year as President of the Rugby Football Union in July 2007.
Taylor was a PE and mathematics teacher at Wellingborough Grammar School from 1964 until 1975. He was PE teacher at Lings Upper School in Northampton from 1975
"Déjà Vu" is a song by Romanian disc jockey Bob Taylor which features guest vocals by Romanian dance/pop vocalist Inna. Released in summer 2009, the single appears on Taylor's sophomore studio album and on Inna's full-length record Hot (2009). The initial version of the song features Romanian singer Alessia. However, Inna recorded her own version.
"Déjà Vu" was a commercial success, reaching the top-twenty in most of the countries it peaked. A music video for the single was shot by Bob Taylor in summer 2009 and premiered mid 2009 on MTV Romania. It presents him mixing in a club. Credited also as 'Inna featuring Bob Taylor' in selected countries, "Déjà Vu" was released internationally as the third single extracted from Inna's debut album. It is featured on the British dance compilation album Clubland 18. The single sold 15,400 registered copies in France as of 2010.
Spring 2009, Inna collaborated Taylor for his still untitled sophomore studio album. After she recorded the guest vocals for "Déjà Vu", they decided to promote the song undercover. They sent it to the mainstream radio under the names of Anni (backwards to Inna) and Bob Taylor (known as Fizzy). The single quickly became a hit in Europe and subsequently, Inna and Bob Taylor officially confirmed that they are the performers of the song. Shortly after they did so, Inna posted an article on her blog, where she says that "a song must have also success if its singers aren't known."
Berlin is the name of a sculpture on the Tauentzienstraße in western Berlin, the capital of Germany.
First conceived in 1985 and unveiled by the husband-and-wife sculpting team of Brigitte Matschinsky-Denninghoff and Martin Matschinsky in 1987, the sculpture's principal motif, a "broken chain", was meant to symbolize the severed connections between West and East Berlin due to the construction of the Berlin Wall.
Even though the Wall has since been dismantled, the sculpture was bought by the city from Mrs. Matschinsky-Denninghoff to commemorate the unfortunate chapter in German history.
Berlin was one of eight sculptures designed during "Skulpturenboulevard Kurfürstendamm" (Boulevard of Sculptures: Kurfürstendamm), an event commissioned by the city of West Berlin to celebrate Berlin's 750th anniversary in 1987. Of the eight sculptures unveiled, three were allowed to remain past the anniversary year (Berlin, Pyramide, and Cadillacs in Form der nackten Maja); the city and Deutsche Bank acquired Berlin after its original lease had expired.
A Berlin (or Berline) carriage was a type of covered four-wheeled travelling carriage with two interior seats. Initially noted for using two chassis rails and having the body suspended from the rails by leather straps, the term continued in use for enclosed formal carriages with two seats after the suspension system changed from leather straps to steel springs.
The carriage was designed around 1660 or 1670 by a Piedmontese architect commissioned by the General quartermaster to Frederick William, Elector of Brandenburg. The Elector used the carriage to travel from Berlin, Brandenburg's capital, to the French capital of Paris, where his carriage created a sensation. While heavy-duty vehicles had used double-railed frames before, passenger vehicles had normally used a single rail. The elegant but durable style was widely copied and named "berline" after the city from which the carriage had come. It was more convenient than other carriages of the time, being lighter and less likely to overturn. The berline began to supplant the less practical and less comfortable state coaches and gala coaches in the 17th century.
West Berlin was a city that existed between 1949 and 1990 as a political enclave surrounded by East Berlin and East Germany. It was located some 100 miles east of the East/West German border and was accessible by land from West Germany only by a narrow rail and highway corridor. It comprised the western regions of Berlin which consisted of the American, British, and French occupation sectors, which had been established in 1945. It was politically closely affiliated with, though not part of, West Germany. It had a special and unique legal status because its administration was formally conducted by the Western Allies. East Berlin consisted of the region occupied and administered by the Soviet Union, and was claimed as its capital by East Germany. The Western Allies did not recognise this claim, as they asserted that the entire city of Berlin was legally under four-power administration. The Berlin Wall, built in 1961, physically divided East and West Berlin until it fell in 1989.
Imagine scoring this and then getting to celebrate with Messi 🤩
Robert Taylor was a true star and he deserved every bit of praise that he received. He was one of the most famous and successful leading men of the Golden Age of Hollywood. He was celebrated for his strapping good looks and his reputation for being a reliable, clean-cut actor. He was perhaps best known as 'The Man with the Perfect Profile'. ▬Contents of this video▬ 00:00 - Intro 00:47 - The Making Of A Star 02:28 - Taylor's Budding Film Career 03:45 - Taylor Served In The U.S Naval Air Corps 04:47 - Robert Taylor Turned On His Communist Colleagues 05:57 - Taylor's Career Took A Downturn After The War 07:15 - A Failed Marriage And One That Stuck 08:11 - Outro Like this content? Subscribe here: https://www.youtube.com/factsverse?sub_confirmation=1 Or, watch more videos here: https://www...
After a bitter divorce from his former wife, Barbara Stanwyck, his fear of another failure keep him away from serious commitments. He was a lonely man just looking for uncomplicated company. But when he met Ursula Thiess in April 24, 1952, he found his soulmate. Two years later this beautiful brunette and rising star in Hollywood became his wife and his inseparable companion on all his journeys, hunting and fishing trips and on distant film locations. After the birth of the couple's first child, Terry, in 1955, and although she had been voted "The most promising star of 1952" by Modern Screen Magazine along with Marilyn Monroe, she decided to give up her screen career and stardom to be a full time mother and wife. A second child, Tessa, joined the family in 1959 and they all enjoyed a quie...
Forestry worker Robert `Bob` Taylor was attacked by two metal spheres in Livingston, Scotland 1979. From Arthur C. Clarke`s Mysterious World - Discovery Channel. Norwegian subtitle. For more information about the case: http://ufoevidence.org/cases/case682.htm
Playlist: http://www.youtube.com/view_play_list?p=C094EDAA4B2BDD5E Being a war film made during the WWII you can see clearly anti-Japanese propaganda, as in many movies filmed in Hollywood at that time. In spite of the depiction of the Japanese as cold-blooded killers and the irritating expressions like "dirty Japs" and "monkeys", Bataan is a remarkable film standing out by: ...being a realistic and dramatic portrayal of men in war. The squad stands air attacks, snipers, malaria, shortages of medicine, food and potable water, besides suffering weariness, impotence and discouragement. ...featuring a fully integrated Army; there's a Jewish, a African-American, an Hispanic and two Filipinos. The characters, representing the diverse social spectrum of United States regardless of race or ...
Robert Taylor - a quick message from the greenhouse. #Longmire4 #LongLiveLongmire
To start comparing quotes and simplify insurance-buying, check out Policygenius: https://Policygenius.com/itshistory. Thanks to Policygenius for sponsoring this video! In this video, we take a deep dive into the history and legacy of the Robert Taylor Homes in Chicago, one of the largest public housing projects in the United States. Starting with an introduction to the topic, we explore what the Robert Taylor Homes were and why they were built in the first place. We then look at the man behind the project, Robert Taylor, and his transformative vision for the South Side of Chicago. From there, we examine the construction of the Robert Taylor Homes and take a tour of the interiors to see what life was like for the residents. We also explore the many challenges faced by the residents and wh...
Laura Maddalozzo ci parla di "Nosferatu", diretto da Robert Eggers con Nicholas Hoult, Lily-Rose Depp, Aaron Taylor-Johnson, Willem Dafoe e Bill Skarsgård. Il film uscirà nelle sale cinematografiche italiane il 1º gennaio distribuito da Universal Pictures. #nosferatu #roberteggers #nicholashoult #billskarsgard #billskarsgård #willemdafoe #aarontaylorjohnson #universalpictures #recensione #review #filmcritic #film #cinema #horror
. . Hey, if you hadn't had a chance to watch HERE are the best AGT 2023 auditions 👉 https://youtu.be/V55xv4zaXL8 📣 What?! Did you see these famous contestants return years later? HERE 👉 https://www.youtube.com/watch?v=BCbiJsGq8W4 @AmericanIdol on ABC | Season 3 | Auditions | Week Five #AmericanIdol #TalentRecap #TheNextIdol #Auditions For more HD videos, news, analysis and recaps of @American Idol – please subscribe & follow Talent Recap: https://talentrecap.com/ AMERICAN IDOL ON SOCIAL Watch American Idol on YouTube: https://www.youtube.com/americanidol Like American Idol on Facebook: https://www.facebook.com/AmericanIdol Follow American Idol on Twitter: https://twitter.com/americanidol Follow American Idol on Instagram: https://www.instagram.com/americanidol/ TALENT RECAP ON SO...
Bob Taylor (rugby union) Top # 6 Facts
He was born in the north-east but he made the Black Country his home, the second instalment of Legend Days brings us to a man who loves Albion so much he’s never said goodbye - the true hero of the ‘90s, it’s “Super Bob”. Head to wba.co.uk and keep an eye out across our social media channels for a whole day dedicated to Bob Taylor.
5 of the worst send offs in rugby league
Join us at a special dinner on March 15th to celebrate the induction of five more legends to the Northampton Saints Hall of Fame. To enquire, email [email protected] or call 01604 751543
About Independent Sport: The Independent is proud to bring you the latest and greatest in sport, featuring expert analysis and reliable updates from the biggest sports on the planet. Watch more from Independent TV: independent.co.uk/tv/sport Click here to subscribe to Independent Sport: https://bit.ly/3QTgWY1 About The Independent: Making Change Happen. The Independent is the world’s most free-thinking newsbrand, providing global news, commentary and analysis for the independently-minded. Connect with The Independent: Check out our full video catalog: https://www.youtube.com/c/theindependent/videos Videos, daily editorial and more: http://www.theindy.com Click here to get the best of The Independent daily: https://www.independent.co.uk/newsletters Like The Independent on Facebook: http...
25 BEST AND FUNNIEST FAN MOMENTS IN SPORTS Here are THIS FAN FORGOT THEY WERE LIVE AND DID THIS... . For those of you interested on how I make my videos, I primarily use Final Cut Pro X to edit my videos. I use different stock footages (both free and paid), clips of videos that I can find related to the video and search images to visualize the narrative and story that I’m trying to tell. All of which falls under fair use. I hire different researchers and writers for the script for each video along with my original commentary and hire different voice over actors that can properly convey the the theme of the video. Most importantly, find the best background music, usually royalty free from Incompetech and paid ones from Epidemic sounds to create an exciting atmosphere while watching the vid...
THe most incredible skill
Listen to Rihanna’s iconic hits in Spatial Audio on Apple Music: http://apple.co/RihannaSpatialYT *Subscription required. Check out our NFL Podcast Network: http://apple.co/NFLPodcasts Check out our other channels: NFL Tuesday Night Gaming https://www.youtube.com/c/NFLTNG NFL Mundo https://www.youtube.com/mundonfl NFL Brasil https://www.youtube.com/c/NFLBrasilOficial NFL UK https://www.youtube.com/channel/UCVe0dAja_vZCmvfHXjtdRQA NFL Fantasy Football https://www.youtube.com/nflfantasyfootball NFL Play Football https://www.youtube.com/playfootball NFL Throwback http://www.youtube.com/nflvault NFL Films http://www.youtube.com/nflfilms NFL Network http://www.youtube.com/nflnetwork #NFL #Football #AmericanFootball
Robert, Rob, Bob or Bobby Taylor may refer to:
(Chorus)
Sie is´n Berlin City Girl
Sie is´n Berlin City Girl
Sie is´n Berlin City Girl
Und sie weiß, dass ihr die Welt gehört
(Itchy)
Sie ist so frech so laut so cool
Haut dich sofort vom Stuhl
So kess, so dreist, so fly
So verdammt elegant und heiß
Ne Killa-Braut rattenscharf
So sagenhaft smart mit ´ner Hamma-Art
Sie sagt auch ma gern “Halt die Schnauze jetzt!”
Du bestellst 10 Drinks und sie haut sie weg
Große Klappe, viel dahinter
Schmeckt wie der Sommer, is cool wie der Winter
Wat ne Wucht, das sieht auch ´n Blinder
Du siehst sie und du weißt: “Ich will Kinder!”
(Mr Reedoo)
Sie ist die Axt im Wald
So Bombe, dass es knallt
Sie läuft durch den Kiez
Und du bist gleich verliebt
(Chorus)
Sie is´n Berlin City Girl
Sie is´n Berlin City Girl
Sie is´n Berlin City Girl
Und sie weiß, dass ihr die Welt gehört
(Johnny Strange)
Sie rockt, sie hat die Hosen an
Braucht keinen Mann mit 2 Meter Oberarm
Sie liebt Currywurst heiß und fettig
Und scheißt drauf, sind die High Heels dreckig
Feuerzeug, Bierflasche, wie du deine dann aufkriegst, ihr Latte
Und der Grund warum ich sie doppelt mag
Ist weil sie manchmal so süß “Opfer” sagt
Auf so eine Braut würde jeder warten
Bring keinen Strauß mit, schenk ihr ´n Schrebergarten
Schick gemacht, Sektpulle in der Hand
13 Uhr, so geht City Brunch
(Mr Reedoo)
Sie macht den Style zum Trend
3000 Facebook Fans
Sie läuft durch den Kiez
Und du bist gleich verliebt
(Chorus)
Sie is´n Berlin City Girl
Sie is´n Berlin City Girl
Sie is´n Berlin City Girl
Und sie weiß, dass ihr die Welt gehört
Sie is´n Berlin City Girl
Sie is´n Berlin City Girl
Und sie weiß
Und sie weiß
Und sie weiß, dass ihr die Welt gehört
(Larsito)
Ich sah so viel von dieser Welt
Ich sah so viel, was mir gefällt
Jetzt weiß ich auch, dass jede Stadt
So wunderschöne Töchter hat
Ob Ost ob West
Ob Nord ob Süd
Wir woll´n euch hörn
Alle City Girls
Wo sind die Hamburg City Girls
Wo sind die München City Girls
Wo sind uns´re Kölner City Girls
Und die Frankfurt City Girls
Wir lieben uns´re Stuttgart City Girls
Wir lieben uns´re Dortmund City Girls
Wo sind uns´re Düsseldorf City Girls
Und uns´re Essen City Girls
Bremen City Girls
Hannover City Girls
Leipzig City Girls
Dresden City Girls
Nürnberg City Girls
Duisburg City Girls
Bochum City Girls