'+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; })); }); -->

Shades of white

Shades of white are colors that differ only slightly from pure white. Variations of white include what are commonly termed off-white colors, which may be considered part of a neutral color scheme.

In color theory, a shade is a pure color mixed with black (or having a lower lightness). Strictly speaking, a “shade of white” would be a neutral gray. This article is also about off-white colors that vary from pure white in hue, and in chroma (also called saturation, or intensity).

Colors often considered "shades of white" include, cream, eggshell, ivory, Navajo white, and vanilla. Even the lighting of a room, however, can cause a pure white to be perceived as off-white.

Off-white colors were pervasively paired with beiges in the 1930s, and especially popular again from roughly 1955 to 1975.

Whiteness measures the degree to which a surface is white in colorimetry.

Web colors

Below is a chart showing the computer web color shades of white. An achromatic white is a white color in which the red, green, and blue codes are exactly equal. The web colors white and white smoke are achromatic colors. A chromatic shade of white is a white color in which the red, green, and blue codes are not exactly equal, but are close to each other, which is what makes it a shade of white.

Off White

Off White is a 1979 album by American no wave band James White and the Blacks.

History

In late 1978, ZE Records co-founder Michael Zilkha approached James Chance and offered Chance $10,000 to record a disco album. Zilkha gave little direction and asked the band for its own take on the genre.Anya Phillips, Chance's manager and girlfriend, came up with the idea to rename James Chance and the Contortions to James White and the Blacks for the album. An alternate name, James White and His Blacks, was rejected by Zilkha. Phillips and the band put together outfits resembling 1960s soul singers.

Chance said that he was interested in the monotonous sound of disco music because it "doesn't have beginnings and ends". His persona is an homage to soul musician James Brown. Chance was also intrigued by the shock value of a punk group embracing disco. He received disco records for free and passed time listening to a record for several seconds before throwing it out a window. Chance wrote a piece for the first issue of East Village Eye, praising disco and denouncing "outdated, cornball 'new/no wave' drivel".

Virgil

Publius Vergilius Maro (Classical Latin: [ˈpuː.blɪ.ʊs wɛrˈɡɪ.lɪ.ʊs ˈma.roː]; October 15, 70 BC – September 21, 19 BC), usually called Virgil or Vergil /ˈvɜːrl/ in English, was an ancient Roman poet of the Augustan period. He is known for three major works of Latin literature, the Eclogues (or Bucolics), the Georgics, and the epic Aeneid. A number of minor poems, collected in the Appendix Vergiliana, are sometimes attributed to him.

Virgil is traditionally ranked as one of Rome's greatest poets. His Aeneid has been considered the national epic of ancient Rome from the time of its composition to the present day. Modeled after Homer's Iliad and Odyssey, the Aeneid follows the Trojan refugee Aeneas as he struggles to fulfill his destiny and arrive on the shores of Italy—in Roman mythology the founding act of Rome. Virgil's work has had wide and deep influence on Western literature, most notably Dante's Divine Comedy, in which Virgil appears as Dante's guide through hell and purgatory.

Xenosaga

Xenosaga (ゼノサーガ Zenosāga) is a series of science fiction video games developed by Monolith Soft and published by Bandai Namco. Xenosaga's main story is in the form of a trilogy of PlayStation 2 video games. There have been three spin-off games and an anime adaptation. The Xenosaga series serves as a spiritual successor to the game Xenogears, which was released in 1998 for the PlayStation by Square. The creator of both Xenogears and Xenosaga is Tetsuya Takahashi, who left Square in 1998 along with Hirohide Sugiura. Using funds from Namco, they started MonolithSoft and the Xenosaga project.

The first game in the trilogy, Episode I: Der Wille zur Macht was released in February 2002 in Japan, and in February 2003 in North America. Xenosaga Freaks, a lighthearted game with a playable demo for Episode II, was released in April 2004 in Japan, but was not released elsewhere. Episode II: Jenseits von Gut und Böse was released in June 2004 in Japan and February 2005 in North America. Xenosaga: The Animation, an anime based on Episode I, premiered on TV Asahi in Japan on January 5, 2005. Xenosaga Pied Piper, a three chapter-long cellphone-based game depicting the history of cyborg "Ziggurat 8" 100 years before the start of Episode I, was released in Japan in July 2004. Released on July 6, 2006, Episode III: Also sprach Zarathustra is the final title in the Xenosaga series; six episodes were originally projected, but by the time Episode III was released, Namco had already established that it would be the last entry, effectively halving the series. A retelling of the first two episodes titled Xenosaga I & II was released on the Nintendo DS in March 2006 in Japan.

List of Planet of the Apes characters

The Planet of the Apes franchise features many characters that appear in one or more works.

Main characters

Caesar

Original films

Milo, better known as Caesar, is a fictional character in the Planet of the Apes franchise. He is named after Julius Caesar.

  • He appeared as a baby in Escape from the Planet of the Apes, voiced by Walker Edmiston.
  • He is the leader (and chief instigator) of the ape revolution in the fourth installment, Conquest of the Planet of the Apes.
  • He is the ruler of Ape City in the fifth film, Battle for the Planet of the Apes. He was portrayed in both movies by the late actor Roddy McDowall, who had also played his father Cornelius in both Planet of the Apes and Escape from the Planet of the Apes.
  • He does not appear in the 2001 remake, Planet of the Apes.
  • The character of Caesar has had major participation in original film series and the reboot film series.

    In Escape from the Planet of the Apes

    He is the son of talking chimpanzees Cornelius and Zira. Originally named Milo after Dr. Milo, who travelled back in time with Cornelius and Zira to the Earth of Taylor's era, he was reared by his human foster father Armando, a traveling circus owner who gave Cornelius and Zira sanctuary when Zira went into labor in the final act of Escape from the Planet of the Apes. Before departing, Zira switched the infant Milo with a young chimpanzee recently born to Armando's primitive chimpanzee, Heloise. Heloise's baby was killed, along with Zira, by the human Dr. Otto Hasslein. After Cornelius kills Hasslein, he is shot by a Marine Corps sniper. Milo speaks his first word, "Mama", at the very end of the film. His false identity secure, Milo grew up as a mute acrobat.

    Podcasts:

    • Beton.Hofi - OFFWHITE ft. Lil Frakk, Krúbi

      A dal a frissen megjelent comic sins MIXTAPE-n hallható. comic sins: https://lnk.to/comicsins Rendezte: Miki357 https://www.instagram.com/miki357/?hl=en Beton Hofi https://www.instagram.com/beton.hofi/ https://www.facebook.com/beton.hofi/ Lil Frakk https://www.instagram.com/lilfrakk/ https://www.facebook.com/kicsifrakk Krúbi https://www.facebook.com/azigazikrubi https://www.instagram.com/krubiofficial/ EXTRA KÜLÖN KÖSZÖNET: FOOTSHOP www.footshop.hu https://www.instagram.com/footshop_budapest/ Rendező: Miki 357 Operatőr: Miki 357 Gyártásvezető: Tóth Claudia Focus puller : Surin Ádám Camera asszisztens: Szabó Viktor Berendezés: DEPARTMENT Set Decor: Kovács Koppány , Világosító: Dollinger László Smink / haj : Kovács Viktória Stylist: Kuslits Máté vágó: Érdi Zsófi fényelés: Köz Bél...

      published: 11 Jun 2021
    • ΑΓΟΡΑΣΑ ΤΟ ΠΙΟ ΦΘΗΝΟ ΠΡΑΓΜΑ ΑΠΟ DIOR,OFF-WHITE,STONE ISLAND

      Κάνε ΕΓΓΡΑΦΗ εδώ : http://bit.ly/2NCj88P​​​​ Το Brand μου: https://www.instagram.com/damaged.cloth/ Το Instagram μου : http://bit.ly/2vRIEiD Business Email: giorgoskavvalos98@gmail.com CloutPlug [Resell Page]: https://bit.ly/2NvGwk1​​ Video Filmed By Manos Makrakis Video Edited by Bill Gidopoulos Giorgos Kavvalos 2021 © All rights reserved

      published: 15 Dec 2021
    • Off-White c/o Virgil Abloh™ Spaceship Earth, an "Imaginary Experience"

      Off-White c/o Virgil Abloh™ presents Spaceship Earth, an "Imaginary Experience". A manifesto for his democratic and inclusive fashion revolution, this disruptive debut “high fashion” collection conceived and designed by Virgil takes the establishment’s most sacred symbols and turns them on their head.

      published: 28 Feb 2022
    • CAMPEON x MACO - "OFF WHITE" Official Music Video (prod. by Dimitris Koufoudakis)

      #Campeon #Maco #OffWhite Stream now https://open.spotify.com/track/7g6srgHDkUjiJnQXKym8Vy?si=afc8648b2b1643e8 Lyrics by Campeon, Maco Prod. by Dimitris Koufoudakis Directed/Edited by El Shorty Mix/Master by Dimitris Koufoudakis Digital Cover Artwork by DrinkDaMilk Follow Campeon https://www.instagram.com/campeonloco Follow Maco https://www.instagram.com/_maco99_ Follow Dimitris Koufoudakis https://www.instagram.com/dimitris_koufoudakis Follow El Shorty https://www.instagram.com/el_shorty__ Special thanks to OG Market https://www.instagram.com/ogmarket_

      published: 14 Apr 2022
    • Off-White | Fall Winter 2019/2020 Full Fashion Show | Exclusive

      Off White | Fall Winter 2019/2020 by Virgil Abloh | Full Fashion Show in High Definition. (Widescreen - Exclusive Video - PFW/ Paris Fashion Week) #FFLikedalot Joe Milburn - Fairytale Ending/Swear To God Clement Marfo - Greatest Joshua Alan Barlow - Just Relax

      published: 01 Mar 2019
    • NGeeYL - Off-White (feat. Lil Uzi Vert) [Official Video]

      The official video for NGeeYL's "Off-White" featuring Lil Uzi Vert - Out Now! Directed by Qasquiat Stream "Off-White" on all platforms: https://ngeeyl.ffm.to/offwhite Produced by Akachi Follow NGeeYL: https://twitter.com/bigbagLegend https://www.facebook.com/Bigbaglegend https://www.instagram.com/ngeeyl https://soundcloud.com/yunglegend93 LYRICS SSET [Chorus] Off white this not beige Chrome heart this not bape, but I’m still gon’ act a ape Damn I miss my n*****, hope they free ‘em out that cage Fuck around and spin yo block day after day Off white this not beige Chrome heart this not bape, but I’m still gon’ act a ape Damn I miss my n*****, hope they free ‘em out that cage Fuck around and spin yo block day after day [NGeeYL] Ice on me it’s chillin Ima givenchy villain I got all t...

      published: 07 Jul 2021
    developed with YouTube
    Beton.Hofi - OFFWHITE ft. Lil Frakk, Krúbi
    3:46

    Beton.Hofi - OFFWHITE ft. Lil Frakk, Krúbi

    • Order:
    • Duration: 3:46
    • Uploaded Date: 11 Jun 2021
    • views: 3099146
    A dal a frissen megjelent comic sins MIXTAPE-n hallható. comic sins: https://lnk.to/comicsins Rendezte: Miki357 https://www.instagram.com/miki357/?hl=en Beton Hofi https://www.instagram.com/beton.hofi/ https://www.facebook.com/beton.hofi/ Lil Frakk https://www.instagram.com/lilfrakk/ https://www.facebook.com/kicsifrakk Krúbi https://www.facebook.com/azigazikrubi https://www.instagram.com/krubiofficial/ EXTRA KÜLÖN KÖSZÖNET: FOOTSHOP www.footshop.hu https://www.instagram.com/footshop_budapest/ Rendező: Miki 357 Operatőr: Miki 357 Gyártásvezető: Tóth Claudia Focus puller : Surin Ádám Camera asszisztens: Szabó Viktor Berendezés: DEPARTMENT Set Decor: Kovács Koppány , Világosító: Dollinger László Smink / haj : Kovács Viktória Stylist: Kuslits Máté vágó: Érdi Zsófi fényelés: Köz Béla Köszönjük a supportot: PICTURE POOL STUDIO https://www.picturepoolstudios.com/ https://www.instagram.com/picturepoolstudios/ 2.8 aladdin film equipment rental https://2point8rental.com/ ---------------------- Beton.Hofi Szarok én az Off-White-ra, mindig ugatnak, ez dogfight beszakad a dobhártya neked fapados a flowd, ez meg topflight Szarok én az Off-White-ra mindig ugatnak, ez dogfight minek ez a sok hype tudod magad ellen küzdesz, ez bossfight fedezék fel, fel, fel a kéz, fel fényt keresel, de rossz fele nézel elmegyek a vásárba felepénzel amíg téged a család mindkét fele pénzel nyugati, bajcsy, andrássy kokain, pénzek, tartásdíj leszakad a szív, mint a kantárszíj nem értek haza pedig van házi ez nem a palotanegyed döngnek a falon a legyek de tudod ahova megyek ott nagy a zaj a hangom alanyi jogon de végül hallani fogod de várjá valaki kopog nagy a baj férges a fátoknak a gyümölcse mindened ami van, anyu merche Nietczhe a caption, te falu bölcse engedd az egódnak hadd üvöltse Szarok én az Off-White-ra, mindig ugatnak, ez dogfight beszakad a dobhártya neked fapados a flowd, ez meg topflight Szarok én az Off-White-ra mindig ugatnak, ez dogfight (jah jah) minek ez a sok hype tudod magad ellen küzdesz, ez bossfight Lil Frakk: piros a szem, ide pilóta kell nehézsúlyú lettem, mindenki kilóra vesz a vérnyomásom is fent, fullos ha nude-os a szett ebédre készül a faszi, de uzsonna lesz hova tünhettem, tele a táska buli Brüsszelben habizhatsz, az igazságnál tüsszentek jól haladsz mostanában rükvercben keserédes nyeremények, amiket ti bebeszéltek ez egy ezeréves hagyomány nem indulsz a tetejére, sor kerül a szemezésre akkor megy a hebe-habogás kereshetsz majd fedezéket, a csukám az pengeéles figyelj apa, lil frakk szamuráj láttalak a sornál, mehet is a bossfight gurulj tovább te kis bakugan Beton.Hofi: Szarok én az Off-White-ra, mindig ugatnak, ez dogfight beszakad a dobhártya neked fapados a flowd, ez meg topflight Szarok én az Off-White-ra mindig ugatnak, ez dogfight (jah jah) minek ez a sok hype tudod magad ellen küzdesz, ez bossfight Krúbi: Áruld el, hogy ezzel magadról mit árulsz el magad a csapatomtól válaszd el, ne fárassz csak vállald fel Áruld el, hogy ezzel magadról mit árulsz el miért van, hogy a gáréd, ha nálad van száraz míg engem csak úgy áraszt el? Music video by Beton.Hofi, Lil Frakk, Krúbi performing OFFWHITE © 2021 Banana Records, a Division of Universal Music Hungary
    https://wn.com/Beton.Hofi_Offwhite_Ft._Lil_Frakk,_Krúbi
    ΑΓΟΡΑΣΑ ΤΟ ΠΙΟ ΦΘΗΝΟ ΠΡΑΓΜΑ ΑΠΟ DIOR,OFF-WHITE,STONE ISLAND
    16:11

    ΑΓΟΡΑΣΑ ΤΟ ΠΙΟ ΦΘΗΝΟ ΠΡΑΓΜΑ ΑΠΟ DIOR,OFF-WHITE,STONE ISLAND

    • Order:
    • Duration: 16:11
    • Uploaded Date: 15 Dec 2021
    • views: 138518
    Κάνε ΕΓΓΡΑΦΗ εδώ : http://bit.ly/2NCj88P​​​​ Το Brand μου: https://www.instagram.com/damaged.cloth/ Το Instagram μου : http://bit.ly/2vRIEiD Business Email: giorgoskavvalos98@gmail.com CloutPlug [Resell Page]: https://bit.ly/2NvGwk1​​ Video Filmed By Manos Makrakis Video Edited by Bill Gidopoulos Giorgos Kavvalos 2021 © All rights reserved
    https://wn.com/Αγορασα_Το_Πιο_Φθηνο_Πραγμα_Απο_Dior,Off_White,Stone_Island
    Off-White c/o Virgil Abloh™ Spaceship Earth, an "Imaginary Experience"
    25:24

    Off-White c/o Virgil Abloh™ Spaceship Earth, an "Imaginary Experience"

    • Order:
    • Duration: 25:24
    • Uploaded Date: 28 Feb 2022
    • views: 600055
    Off-White c/o Virgil Abloh™ presents Spaceship Earth, an "Imaginary Experience". A manifesto for his democratic and inclusive fashion revolution, this disruptive debut “high fashion” collection conceived and designed by Virgil takes the establishment’s most sacred symbols and turns them on their head.
    https://wn.com/Off_White_C_O_Virgil_Abloh™_Spaceship_Earth,_An_Imaginary_Experience
    CAMPEON x MACO - "OFF WHITE"  Official Music Video (prod. by Dimitris Koufoudakis)
    2:40

    CAMPEON x MACO - "OFF WHITE" Official Music Video (prod. by Dimitris Koufoudakis)

    • Order:
    • Duration: 2:40
    • Uploaded Date: 14 Apr 2022
    • views: 8397
    #Campeon #Maco #OffWhite Stream now https://open.spotify.com/track/7g6srgHDkUjiJnQXKym8Vy?si=afc8648b2b1643e8 Lyrics by Campeon, Maco Prod. by Dimitris Koufoudakis Directed/Edited by El Shorty Mix/Master by Dimitris Koufoudakis Digital Cover Artwork by DrinkDaMilk Follow Campeon https://www.instagram.com/campeonloco Follow Maco https://www.instagram.com/_maco99_ Follow Dimitris Koufoudakis https://www.instagram.com/dimitris_koufoudakis Follow El Shorty https://www.instagram.com/el_shorty__ Special thanks to OG Market https://www.instagram.com/ogmarket_
    https://wn.com/Campeon_X_Maco_Off_White_Official_Music_Video_(Prod._By_Dimitris_Koufoudakis)
    Off-White | Fall Winter 2019/2020 Full Fashion Show | Exclusive
    9:31

    Off-White | Fall Winter 2019/2020 Full Fashion Show | Exclusive

    • Order:
    • Duration: 9:31
    • Uploaded Date: 01 Mar 2019
    • views: 354850
    Off White | Fall Winter 2019/2020 by Virgil Abloh | Full Fashion Show in High Definition. (Widescreen - Exclusive Video - PFW/ Paris Fashion Week) #FFLikedalot Joe Milburn - Fairytale Ending/Swear To God Clement Marfo - Greatest Joshua Alan Barlow - Just Relax
    https://wn.com/Off_White_|_Fall_Winter_2019_2020_Full_Fashion_Show_|_Exclusive
    NGeeYL - Off-White (feat. Lil Uzi Vert) [Official Video]
    2:45

    NGeeYL - Off-White (feat. Lil Uzi Vert) [Official Video]

    • Order:
    • Duration: 2:45
    • Uploaded Date: 07 Jul 2021
    • views: 3263124
    The official video for NGeeYL's "Off-White" featuring Lil Uzi Vert - Out Now! Directed by Qasquiat Stream "Off-White" on all platforms: https://ngeeyl.ffm.to/offwhite Produced by Akachi Follow NGeeYL: https://twitter.com/bigbagLegend https://www.facebook.com/Bigbaglegend https://www.instagram.com/ngeeyl https://soundcloud.com/yunglegend93 LYRICS SSET [Chorus] Off white this not beige Chrome heart this not bape, but I’m still gon’ act a ape Damn I miss my n*****, hope they free ‘em out that cage Fuck around and spin yo block day after day Off white this not beige Chrome heart this not bape, but I’m still gon’ act a ape Damn I miss my n*****, hope they free ‘em out that cage Fuck around and spin yo block day after day [NGeeYL] Ice on me it’s chillin Ima givenchy villain I got all these rods on me but I ain’t goin fishin I got nana clips, ima fuck around and peel em So I think they don’t really like the way I’m livin Come my way we like to shoot sticks and we efficient I’m outta shape but I like to run around w killas Y’all like to drop diss songs we like to drop niggas Y’all lil niggas lil boys boy we done got bigga Pssh pssh psh RUN Belt BB Simon Them CZs he dumb VV VS1 Poppin all these Percocets got me feeling numb Keep a chopstick like I’m out in vietnam [Lil Uzi Vert] He he he haw Bitch I beat da odds Wash the dirty money with some fuckin Tide I don’t trust these niggas, I don’t have no ties My bitch wearing lace but my shoes not tied I’m not picking sides 16 til I die SS on my face try committing suixide Double down on my waist I’m gone stay alive My bitch she so thick but she look Asian from a tribe Tattoos on my face but I still got a job I done got to rich I don’t walk bitch I jus glide Listen I got different kinds I got different bitches, butter pecan on the side Christian Dior on my suit but Gucci on my tie I told yo bitch my name was James cause we had a bond And she got a man but tattoo my name on her thigh Why these bitches frauding why these bitches always lying I don’t want that little bitch cause that hoe is not mine Off white this not beige My bitch say I’m evil she keep burning sage I’m back on that (LIL UZI) this that luv is rage Droptop coupe the brains, I be geeked up, outer space, yeah [Chorus] Off white this not beige Chrome heart this not bape, but I’m still gon’ act a ape Damn I miss my n*****, hope they free ‘em out that cage Fuck around and spin yo block day after day Off white this not beige Chrome heart this not bape, but I’m still gon’ act a ape Damn I miss my n*****, hope they free ‘em out that cage Fuck around and spin yo block day after day #NGeeYL #LilUziVert #OffWhite #SSETILIAN #OfficialVideo ℗ 300 Entertainment
    https://wn.com/Ngeeyl_Off_White_(Feat._Lil_Uzi_Vert)_Official_Video
    • Lil Durk - What Happened to Virgil ft. Gunna (Official Music Video)

      Lyrical Lemonade Presents Lil Durk - What Happened to Virgil (ft. Gunna) In Loving Memory of: D Thang, King Von & Virgil Abloh Directed & Edited by Cole Bennett Song Produced by Chopsquad DJ DP: Franklin Ricart Editor: Cole Bennett VFX: Dzign Light & Cameo FX Colorist: Josh Bohoskey Steadicam: Thor Wixom 1st AC: Matthew DiNelson 2nd AC: Dale Pilus DIT: Khiy Morgan Lead Techno Tech: Craig Vaughn 1st AD: Kelo 2nd AD: Kenny Kasmir Production Design: Magnolia House Production Designer: Taylor Wynn Art Director: Eliza Chance Construction Coordinator: Dorian Triga Master Carpenter: Dan Stone Carpenter: Connor Shirley Carpenter: Stavros Tsakos Carpenter: Collin Murray Carpenter: Trevor McGlynn Carpenter Assistant: Luke Miller Carpenter Assistant: Alex Gilliam Set Decorator: Joseph Myles Set ...

      published: 12 Apr 2022
    • Virgil (feat. OT7 Quanny)

      Provided to YouTube by Venice Innovation Labs Virgil (feat. OT7 Quanny) · Manny Laurenko · OT7 Quanny · Manny Laurenko · OT7 Quanny Storm Coming ℗ 2021 1 OF NONE Auto-generated by YouTube.

      published: 29 Jul 2021
    • Ot7QUANNY - Virgil (Official Music Video) prod.by MANNY LAURENKO

      OFFICIAL MUSIC VIDEO FOR "VIRGIL" ANY WEAPONS YOU SEE USED IN THIS VIDEO IS A PROP* THIS VIDEO WAS SHOT BY @Reallyxclusive directed by @ot7quanny INSTAGRAM : https://www.instagram.com/ot7quanny/ #OT7

      published: 05 Dec 2020
    • Quality Control, Quavo - Virgil

      The official music video for Quavo - "Virgil" Quality Control: Control The Streets Volume 2 OUT NOW!! Stream/Download: https://QualityControl.lnk.to/CTS2 Shop QC Merch: www.qualitycontrolmusic.com QC Instagram: https://www.instagram.com/qualitycontrolmusic #Quavo #CTS2 #Virgil Follow Quavo on socials: https://www.instagram.com/quavohuncho/?hl=en https://www.facebook.com/migos.quavoyrn https://twitter.com/quavostuntin Follow Migos on socials: https://instagram.com/migos https://facebook.com/THEMigosAtl https://twitter.com/migos Music video by Quality Control, Quavo performing Virgil. © 2019 Quality Control Music, LLC, under exclusive license to UMG Recordings, Inc. http://vevo.ly/et2Wrg

      published: 21 Aug 2019
    • Bury the Light - Vergil's battle theme from Devil May Cry 5 Special Edition

      Bury the Light is Vergil's battle theme from Devil May Cry 5 Special Edition Written and performed by the amazing Casey Edwards http://www.youtube.com/user/CaseyEdwardsMusic?sub_confirmation=1 and the powerful Victor Borba https://www.youtube.com/c/VictorBorbaMusic?sub_confirmation=1 Listen to more of the MOTIVATING Devil May Cry 5 OST https://www.youtube.com/watch?v=j-OmIVg42S0&list=PLN_ISN--vzwJCGP9fei2IkRNdjfUQFWrk&index=2 Plz subscribe for more music https://www.youtube.com/c/devilhuntermusic?sub_confirmation=1 Credits (as found from the DMC Fandom Wiki - plz tell me if wrong!): Written By: Casey Edwards Drums: Anup Sastry Mixing: Adam “Nolly” Getgood Vocals: Victor Borba (C) & (P) 2020 Capcom Co., Ltd

      published: 20 Sep 2020
    • The Insane True Story of Virgil Abloh

      🌠 http://volksgeist.store/products/spirit 🌌 Cop The Spirit of Creativity today - order now and get $10 off & free shipping. Follow Spirit World on Instagram: http://instagram.com/spiritworld.us Watch completely ad-free on Nebula: http://nebula.tv/volksgeist More here: http://discord.gg/Ew6avqhQfT http://instagram.com/volks.geist http://twitter.com/volksgeist_ http://tiktok.com/@volks.geist philip@volksgeist.org for business 00:00 Intro 02:00 Virgil's Early Life 04:19 Early Work With Kanye 09:25 Album Cover Work 10:54 Pyrex Vision Era 16:15 Off-White Era 20:38 The Ten Nike Collab 25:44 Louis Vuitton Era 28:07 Virgil's Legacy/Conclusion Virgil bio for SEO: Virgil Abloh (/ˈæbloʊ/; September 30, 1980 – November 28, 2021) was an American fashion designer and entrepreneur. He began his o...

      published: 29 Nov 2023
    • Virgil van Dijk’s Hardest Opponents, Winning A Champions League & The Klopp Effect | EP 103

      The Liverpool captain joins Gary and Micah on The Rest is Football. He discusses the Klopp Factor, that Champions League Triumph & how Liverpool can win the league. What makes Jurgen Klopp so special? And how did Virgil and his teammates celebrate winning the Champions League in 2019. Plus what do Liverpool need to do to win the Premier League this year? Virgil van Dijk was speaking exclusively to The Rest Is Football at the launch of this year’s McDonald’s Fun Football programme, which aims to encourage participation in the sport through free coaching sessions for children. #specialguest #podcast #vandijk ------------------------------------------------------------------------------------------------------------------------ ✅ Subscribe Here: https://www.youtube.com/@therestisfootball...

      published: 05 Apr 2024
    • What's Virgil doing in the WWE warehouse?: WWE Network

      Edge and Christian encounter Virgil in the WWE warehouse on The Edge and Christian Show That Totally Reeks of Awesomeness: Courtesy of the award-winning WWE Network. More ACTION on WWE NETWORK : http://bit.ly/MobQRl Subscribe to WWE on YouTube: http://bit.ly/1i64OdT Visit the all-new WWE.com: http://bit.ly/visitwwe

      published: 18 Apr 2016
    • Lil Durk - What Happened To Virgil Ft. Gunna (Official Audio)

      7220, the new album from Lil Durk. Available now: https://lildurk.lnk.to/7220 Follow Lil Durk: LilDurk.lnk.to/instagram LilDurk.lnk.to/twitter LilDurk.lnk.to/TikTok LilDurk.lnk.to/Facebook Listen To Lil Durk: LilDurk.lnk.to/spotify LilDurk.lnk.to/applemusic LilDurk.lnk.to/soundcloud Shop: https://otfgear.com/ Subscribe: http://lildurk.lnk.to/YouTube #LilDurk #7220

      published: 11 Mar 2022
    • Why should you read Virgil's "Aeneid"? - Mark Robinson

      Check out our Patreon page: https://www.patreon.com/teded View full lesson: https://ed.ted.com/lessons/why-should-you-read-virgil-s-aeneid-mark-robinson In 19 BC, the Roman poet Virgil suffered heatstroke and died on his journey back to Italy. On his deathbed, he thought about the manuscript he had been working on for over ten years, an epic poem called the "Aeneid." Unsatisfied with the final edit, he asked his friends to burn it. But they refused, and soon after Virgil’s death, Augustus ordered it to be published. Why? Mark Robinson explains. Lesson by Mark Robinson, directed by TED-Ed. Thank you so much to our patrons for your support! Without you this video would not be possible. Ricardo Rendon Cepeda, Mauro Pellegrini, Jose Mamattah, Aleksandar Srbinovski, Javier Martinez Lorenzo...

      published: 19 Oct 2017
    developed with YouTube
    Lil Durk - What Happened to Virgil ft. Gunna (Official Music Video)
    3:15

    Lil Durk - What Happened to Virgil ft. Gunna (Official Music Video)

    • Order:
    • Duration: 3:15
    • Uploaded Date: 12 Apr 2022
    • views: 78923419
    Lyrical Lemonade Presents Lil Durk - What Happened to Virgil (ft. Gunna) In Loving Memory of: D Thang, King Von & Virgil Abloh Directed & Edited by Cole Bennett Song Produced by Chopsquad DJ DP: Franklin Ricart Editor: Cole Bennett VFX: Dzign Light & Cameo FX Colorist: Josh Bohoskey Steadicam: Thor Wixom 1st AC: Matthew DiNelson 2nd AC: Dale Pilus DIT: Khiy Morgan Lead Techno Tech: Craig Vaughn 1st AD: Kelo 2nd AD: Kenny Kasmir Production Design: Magnolia House Production Designer: Taylor Wynn Art Director: Eliza Chance Construction Coordinator: Dorian Triga Master Carpenter: Dan Stone Carpenter: Connor Shirley Carpenter: Stavros Tsakos Carpenter: Collin Murray Carpenter: Trevor McGlynn Carpenter Assistant: Luke Miller Carpenter Assistant: Alex Gilliam Set Decorator: Joseph Myles Set Dresser: Sophia Kotowski Set Dresser Asst: Alexander Sampson Set Dresser Asst: Dalton Morris Set Dresser Asst: Elorm Srignoh Art Truck: Jay Malone Key Wardrobe: Tadria Allen Wardrobe Asst: Brianca Simone Key Makeup: Renee Tucker Gaffer: Luan Agostinho BBE: Rodrick Gaskin Electric : Andy Johnson Electric: Jordan Gonzalez Electric: Shane Humphries Electric: Eric Nelson Electric: Allison Crowley Key Grip: Lonnie Pool BBG: Alexander Therrien Crane Grip: Troy Wade Grip/Airport G&E Truckdriver: Joe Hernandez Grip: Matthew Beecher Grip: Elise Williams Grip: Saviel Castillo Grip: Aaron Thomas Bozo PA: Shaquille Kokumo PA: Roslyn Younger PA: Enoc Guzman PA: Justin Phillip PA: Elorm Srigboh PA: Chris Phero PA: Diamond Freeman PA: Roderick McReynolds PA: Justin Stewart EP: Sal Tarantino Producer: Jermaine Anglin Producer: Jake Millan Supervising Producer: Susan Bennett Production Manager: DaVaughn Dawson Production Coordinator: Alyx Walker Location Manager: Locazia Production Services Location Coordinator: Chicago Chris -- Official Channel of Lyrical Lemonade Subscribe for updates on music videos, interviews, performance videos, etc. Lyrical Lemonade's Hot 25 Spotify Playlist: https://open.spotify.com/user/gh3vdz775oy18ah1wp9ucxsj5/playlist/5UuPeWDR2I8a8pORvW9vmr Lyrical Lemonade Socials: http://www.twitter.com/lyricalemonade http://www.instagram.com/lyricalemonade http://www.facebook.com/lyricalemonade http://www.lyricallemonade.com Cole Bennett Socials: http://www.twitter.com/_colebennett_ http://www.instagram.com/_colebennett_ LENNY ~ a hidden character representing happiness & good energy http://instagram.com/lenny
    https://wn.com/Lil_Durk_What_Happened_To_Virgil_Ft._Gunna_(Official_Music_Video)
    Virgil (feat. OT7 Quanny)
    1:09

    Virgil (feat. OT7 Quanny)

    • Order:
    • Duration: 1:09
    • Uploaded Date: 29 Jul 2021
    • views: 155875
    Provided to YouTube by Venice Innovation Labs Virgil (feat. OT7 Quanny) · Manny Laurenko · OT7 Quanny · Manny Laurenko · OT7 Quanny Storm Coming ℗ 2021 1 OF NONE Auto-generated by YouTube.
    https://wn.com/Virgil_(Feat._Ot7_Quanny)
    Ot7QUANNY - Virgil (Official Music Video) prod.by MANNY LAURENKO
    1:23

    Ot7QUANNY - Virgil (Official Music Video) prod.by MANNY LAURENKO

    • Order:
    • Duration: 1:23
    • Uploaded Date: 05 Dec 2020
    • views: 1113026
    OFFICIAL MUSIC VIDEO FOR "VIRGIL" ANY WEAPONS YOU SEE USED IN THIS VIDEO IS A PROP* THIS VIDEO WAS SHOT BY @Reallyxclusive directed by @ot7quanny INSTAGRAM : https://www.instagram.com/ot7quanny/ #OT7
    https://wn.com/Ot7Quanny_Virgil_(Official_Music_Video)_Prod.By_Manny_Laurenko
    Quality Control, Quavo - Virgil
    2:53

    Quality Control, Quavo - Virgil

    • Order:
    • Duration: 2:53
    • Uploaded Date: 21 Aug 2019
    • views: 9445079
    The official music video for Quavo - "Virgil" Quality Control: Control The Streets Volume 2 OUT NOW!! Stream/Download: https://QualityControl.lnk.to/CTS2 Shop QC Merch: www.qualitycontrolmusic.com QC Instagram: https://www.instagram.com/qualitycontrolmusic #Quavo #CTS2 #Virgil Follow Quavo on socials: https://www.instagram.com/quavohuncho/?hl=en https://www.facebook.com/migos.quavoyrn https://twitter.com/quavostuntin Follow Migos on socials: https://instagram.com/migos https://facebook.com/THEMigosAtl https://twitter.com/migos Music video by Quality Control, Quavo performing Virgil. © 2019 Quality Control Music, LLC, under exclusive license to UMG Recordings, Inc. http://vevo.ly/et2Wrg
    https://wn.com/Quality_Control,_Quavo_Virgil
    Bury the Light - Vergil's battle theme from Devil May Cry 5 Special Edition
    9:43

    Bury the Light - Vergil's battle theme from Devil May Cry 5 Special Edition

    • Order:
    • Duration: 9:43
    • Uploaded Date: 20 Sep 2020
    • views: 139725773
    Bury the Light is Vergil's battle theme from Devil May Cry 5 Special Edition Written and performed by the amazing Casey Edwards http://www.youtube.com/user/CaseyEdwardsMusic?sub_confirmation=1 and the powerful Victor Borba https://www.youtube.com/c/VictorBorbaMusic?sub_confirmation=1 Listen to more of the MOTIVATING Devil May Cry 5 OST https://www.youtube.com/watch?v=j-OmIVg42S0&list=PLN_ISN--vzwJCGP9fei2IkRNdjfUQFWrk&index=2 Plz subscribe for more music https://www.youtube.com/c/devilhuntermusic?sub_confirmation=1 Credits (as found from the DMC Fandom Wiki - plz tell me if wrong!): Written By: Casey Edwards Drums: Anup Sastry Mixing: Adam “Nolly” Getgood Vocals: Victor Borba (C) & (P) 2020 Capcom Co., Ltd
    https://wn.com/Bury_The_Light_Vergil's_Battle_Theme_From_Devil_May_Cry_5_Special_Edition
    The Insane True Story of Virgil Abloh
    33:22

    The Insane True Story of Virgil Abloh

    • Order:
    • Duration: 33:22
    • Uploaded Date: 29 Nov 2023
    • views: 299217
    🌠 http://volksgeist.store/products/spirit 🌌 Cop The Spirit of Creativity today - order now and get $10 off & free shipping. Follow Spirit World on Instagram: http://instagram.com/spiritworld.us Watch completely ad-free on Nebula: http://nebula.tv/volksgeist More here: http://discord.gg/Ew6avqhQfT http://instagram.com/volks.geist http://twitter.com/volksgeist_ http://tiktok.com/@volks.geist philip@volksgeist.org for business 00:00 Intro 02:00 Virgil's Early Life 04:19 Early Work With Kanye 09:25 Album Cover Work 10:54 Pyrex Vision Era 16:15 Off-White Era 20:38 The Ten Nike Collab 25:44 Louis Vuitton Era 28:07 Virgil's Legacy/Conclusion Virgil bio for SEO: Virgil Abloh (/ˈæbloʊ/; September 30, 1980 – November 28, 2021) was an American fashion designer and entrepreneur. He began his own line of luxury streetwear clothing, Pyrex Vision, in 2012, and became the chief executive officer of the Milan-based label Off-White, a fashion house he founded in 2013. Abloh was also the artistic director of Louis Vuitton's menswear collection beginning in 2018, and was given increased creative responsibilities across the LVMH brand in early 2021. A trained architect, Abloh, who also worked in Chicago street fashion, entered the world of international fashion with an internship at Fendi in 2009, alongside American rapper Kanye West. Abloh assumed the role of Creative Director at Donda, West's creative agency in 2010. The first African-American to be artistic director at a French luxury fashion house when he joined LVMH in 2018, Abloh was named by Time magazine as one of the 100 most influential people in the world that year. Abloh's design aesthetic which bridged streetwear and luxury clothing was described as transformative by The New York Times. According to The Wall Street Journal, he reached a level of global fame unusual for a designer, and as an inspirational figure, according to the BBC. By the end of 2018, an index of sales and consumer sentiment ranked Off-White as the hottest label in the world, surpassing Gucci. Virgil also partnered up with the Swedish furniture company IKEA to design furniture for apartments and houses as well as easy to carry tote bags with the word sculpture imprinted in the middle. The collection was named Markerad, which is a Swedish word meaning "clear-cut; crisp; pronounced", and was released in 2019. Virgil envisioned that the collection would include practical furniture featuring contemporary designs. In 2017, he was asked to design a new collection in conjunction with Nike entitled "The Ten" and he re-designed a variety of the company's best-selling shoes. Abloh worked towards fulfilling his vision for the IKEA collection by sketching out drafts of generic pieces of furniture, while adding his own aesthetics to the designs by using a doorstop to level out furniture items. Abloh worked on designs for chairs, coffee tables, beds, storage cabinets, mirrors, and carpets as part of his collaboration with IKEA. Abloh used quotation marks to convey detachment from society and social norms. During the rise in neo-nationalism in 2017 Abloh worked with conceptual artist Jenny Holzer to create a line emphasizing the positive aspects of immigration, cultural integration, and globalization. In December 2017, he worked with Holzer again to design T-shirts for Planned Parenthood in response to the Women's March on Washington. #volksgeist #virgilabloh #offwhite
    https://wn.com/The_Insane_True_Story_Of_Virgil_Abloh
    Virgil van Dijk’s Hardest Opponents, Winning A Champions League & The Klopp Effect | EP 103
    46:04

    Virgil van Dijk’s Hardest Opponents, Winning A Champions League & The Klopp Effect | EP 103

    • Order:
    • Duration: 46:04
    • Uploaded Date: 05 Apr 2024
    • views: 279840
    The Liverpool captain joins Gary and Micah on The Rest is Football. He discusses the Klopp Factor, that Champions League Triumph & how Liverpool can win the league. What makes Jurgen Klopp so special? And how did Virgil and his teammates celebrate winning the Champions League in 2019. Plus what do Liverpool need to do to win the Premier League this year? Virgil van Dijk was speaking exclusively to The Rest Is Football at the launch of this year’s McDonald’s Fun Football programme, which aims to encourage participation in the sport through free coaching sessions for children. #specialguest #podcast #vandijk ------------------------------------------------------------------------------------------------------------------------ ✅ Subscribe Here: https://www.youtube.com/@therestisfootball?sub_confirmation=1 ------------------------------------------------------------------------------------------------------------------------ 🎙️ Listen To The Podcast: https://linktr.ee/therestisfootball ------------------------------------------------------------------------------------------------------------------------ 🗞️ Sign Up To The Newsletter Here: https://mailchi.mp/therestisfootball/trif ------------------------------------------------------------------------------------------------------------------------ 📱 Follow Us On Socials: Facebook: https://www.facebook.com/TheRestIsFootball Instagram: https://www.instagram.com/therestisfootball/ Snapchat: https://story.snapchat.com/p/8c729650-9d54-407d-8c62-c658546eee44 TikTok: https://www.tiktok.com/@restisfootball Twitter: https://twitter.com/RestIsFootball ------------------------------------------------------------------------------------------------------------------------ 00:00 - Intro 00:32 - McDonald’s Fun Football 02:55 - Virgil’s Career Start 04:45 - Appendix Issues 05:27 - Moving To Celtic 09:45 - English v Scotland Football 13:00 - Moving To Liverpool 15:25 - The Pressure Of The Pricetag 19:00 - Winning The CL & PL 24:23 - VVD’s ‘Hero’ 25:55 - Different Coaches 26:55 - Koeman’s Influence 28:30 - What Makes Klopp So Special? 31:00 - Best Player Played With? 32:55 - The High Line & Defending 36:40 - Difficult Opponents 40:27 - Coming Back From Injury 43:50 - EURO 2024
    https://wn.com/Virgil_Van_Dijk’S_Hardest_Opponents,_Winning_A_Champions_League_The_Klopp_Effect_|_Ep_103
    What's Virgil doing in the WWE warehouse?: WWE Network
    1:00

    What's Virgil doing in the WWE warehouse?: WWE Network

    • Order:
    • Duration: 1:00
    • Uploaded Date: 18 Apr 2016
    • views: 1717635
    Edge and Christian encounter Virgil in the WWE warehouse on The Edge and Christian Show That Totally Reeks of Awesomeness: Courtesy of the award-winning WWE Network. More ACTION on WWE NETWORK : http://bit.ly/MobQRl Subscribe to WWE on YouTube: http://bit.ly/1i64OdT Visit the all-new WWE.com: http://bit.ly/visitwwe
    https://wn.com/What's_Virgil_Doing_In_The_Wwe_Warehouse_Wwe_Network
    Lil Durk - What Happened To Virgil Ft. Gunna (Official Audio)
    3:02

    Lil Durk - What Happened To Virgil Ft. Gunna (Official Audio)

    • Order:
    • Duration: 3:02
    • Uploaded Date: 11 Mar 2022
    • views: 21146704
    7220, the new album from Lil Durk. Available now: https://lildurk.lnk.to/7220 Follow Lil Durk: LilDurk.lnk.to/instagram LilDurk.lnk.to/twitter LilDurk.lnk.to/TikTok LilDurk.lnk.to/Facebook Listen To Lil Durk: LilDurk.lnk.to/spotify LilDurk.lnk.to/applemusic LilDurk.lnk.to/soundcloud Shop: https://otfgear.com/ Subscribe: http://lildurk.lnk.to/YouTube #LilDurk #7220
    https://wn.com/Lil_Durk_What_Happened_To_Virgil_Ft._Gunna_(Official_Audio)
    Why should you read Virgil's "Aeneid"? - Mark Robinson
    5:36

    Why should you read Virgil's "Aeneid"? - Mark Robinson

    • Order:
    • Duration: 5:36
    • Uploaded Date: 19 Oct 2017
    • views: 1016634
    Check out our Patreon page: https://www.patreon.com/teded View full lesson: https://ed.ted.com/lessons/why-should-you-read-virgil-s-aeneid-mark-robinson In 19 BC, the Roman poet Virgil suffered heatstroke and died on his journey back to Italy. On his deathbed, he thought about the manuscript he had been working on for over ten years, an epic poem called the "Aeneid." Unsatisfied with the final edit, he asked his friends to burn it. But they refused, and soon after Virgil’s death, Augustus ordered it to be published. Why? Mark Robinson explains. Lesson by Mark Robinson, directed by TED-Ed. Thank you so much to our patrons for your support! Without you this video would not be possible. Ricardo Rendon Cepeda, Mauro Pellegrini, Jose Mamattah, Aleksandar Srbinovski, Javier Martinez Lorenzo, Maya Toll, Ka-Hei Law, Zayed Al Maktoum, Julie Cummings-Debrot, Michal Salman, Hiroshi Uchiyama, Peter Liu, Adi V, Tamás Drávai, Mark Morris, Robert Sukosd, Nik Maier, Catherine Sverko, Shooteram, Andrew Bosco.
    https://wn.com/Why_Should_You_Read_Virgil's_Aeneid_Mark_Robinson
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Beton.Hofi - OFFWHITE ft. Lil Frakk, Krúbi
      3:46
      Beton.Hofi - OFFWHITE ft. Lil Frakk, Krúbiremove from playlist
    • ΑΓΟΡΑΣΑ ΤΟ ΠΙΟ ΦΘΗΝΟ ΠΡΑΓΜΑ ΑΠΟ DIOR,OFF-WHITE,STONE ISLAND
      16:11
      ΑΓΟΡΑΣΑ ΤΟ ΠΙΟ ΦΘΗΝΟ ΠΡΑΓΜΑ ΑΠΟ DIOR,OFF-WHITE,STONE ISLANDremove from playlist
    • Off-White c/o Virgil Abloh™ Spaceship Earth, an
      25:24
      Off-White c/o Virgil Abloh™ Spaceship Earth, an "Imaginary Experience"remove from playlist
    • CAMPEON x MACO -
      2:40
      CAMPEON x MACO - "OFF WHITE" Official Music Video (prod. by Dimitris Koufoudakis)remove from playlist
    • Off-White | Fall Winter 2019/2020 Full Fashion Show | Exclusive
      9:31
      Off-White | Fall Winter 2019/2020 Full Fashion Show | Exclusiveremove from playlist
    • NGeeYL - Off-White (feat. Lil Uzi Vert) [Official Video]
      2:45
      NGeeYL - Off-White (feat. Lil Uzi Vert) [Official Video]remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Beton.Hofi - OFFWHITE ft. Lil Frakk, Krúbi

    A dal a frissen megjelent comic sins MIXTAPE-n hallható. comic sins: https://lnk.to/comicsins Rendezte: Miki357 https://www.instagram.com/miki357/?hl=en Beton Hofi https://www.instagram.com/beton.hofi/ https://www.facebook.com/beton.hofi/ Lil Frakk https://www.instagram.com/lilfrakk/ https://www.facebook.com/kicsifrakk Krúbi https://www.facebook.com/azigazikrubi https://www.instagram.com/krubiofficial/ EXTRA KÜLÖN KÖSZÖNET: FOOTSHOP www.footshop.hu https://www.instagram.com/footshop_budapest/ Rendező: Miki 357 Operatőr: Miki 357 Gyártásvezető: Tóth Claudia Focus puller : Surin Ádám Camera asszisztens: Szabó Viktor Berendezés: DEPARTMENT Set Decor: Kovács Koppány , Világosító: Dollinger László Smink / haj : Kovács Viktória Stylist: Kuslits Máté vágó: Érdi Zsófi fényelés: Köz Béla Köszönjük a supportot: PICTURE POOL STUDIO https://www.picturepoolstudios.com/ https://www.instagram.com/picturepoolstudios/ 2.8 aladdin film equipment rental https://2point8rental.com/ ---------------------- Beton.Hofi Szarok én az Off-White-ra, mindig ugatnak, ez dogfight beszakad a dobhártya neked fapados a flowd, ez meg topflight Szarok én az Off-White-ra mindig ugatnak, ez dogfight minek ez a sok hype tudod magad ellen küzdesz, ez bossfight fedezék fel, fel, fel a kéz, fel fényt keresel, de rossz fele nézel elmegyek a vásárba felepénzel amíg téged a család mindkét fele pénzel nyugati, bajcsy, andrássy kokain, pénzek, tartásdíj leszakad a szív, mint a kantárszíj nem értek haza pedig van házi ez nem a palotanegyed döngnek a falon a legyek de tudod ahova megyek ott nagy a zaj a hangom alanyi jogon de végül hallani fogod de várjá valaki kopog nagy a baj férges a fátoknak a gyümölcse mindened ami van, anyu merche Nietczhe a caption, te falu bölcse engedd az egódnak hadd üvöltse Szarok én az Off-White-ra, mindig ugatnak, ez dogfight beszakad a dobhártya neked fapados a flowd, ez meg topflight Szarok én az Off-White-ra mindig ugatnak, ez dogfight (jah jah) minek ez a sok hype tudod magad ellen küzdesz, ez bossfight Lil Frakk: piros a szem, ide pilóta kell nehézsúlyú lettem, mindenki kilóra vesz a vérnyomásom is fent, fullos ha nude-os a szett ebédre készül a faszi, de uzsonna lesz hova tünhettem, tele a táska buli Brüsszelben habizhatsz, az igazságnál tüsszentek jól haladsz mostanában rükvercben keserédes nyeremények, amiket ti bebeszéltek ez egy ezeréves hagyomány nem indulsz a tetejére, sor kerül a szemezésre akkor megy a hebe-habogás kereshetsz majd fedezéket, a csukám az pengeéles figyelj apa, lil frakk szamuráj láttalak a sornál, mehet is a bossfight gurulj tovább te kis bakugan Beton.Hofi: Szarok én az Off-White-ra, mindig ugatnak, ez dogfight beszakad a dobhártya neked fapados a flowd, ez meg topflight Szarok én az Off-White-ra mindig ugatnak, ez dogfight (jah jah) minek ez a sok hype tudod magad ellen küzdesz, ez bossfight Krúbi: Áruld el, hogy ezzel magadról mit árulsz el magad a csapatomtól válaszd el, ne fárassz csak vállald fel Áruld el, hogy ezzel magadról mit árulsz el miért van, hogy a gáréd, ha nálad van száraz míg engem csak úgy áraszt el? Music video by Beton.Hofi, Lil Frakk, Krúbi performing OFFWHITE © 2021 Banana Records, a Division of Universal Music Hungary
    3:46
    Beton.Hofi - OFFWHITE ft. Lil Frakk, Krúbi
    A dal a frissen megjelent comic sins MIXTAPE-n hallható. comic sins: https://lnk.to/comic...
    published: 11 Jun 2021
    Play in Full Screen
    16:11
    ΑΓΟΡΑΣΑ ΤΟ ΠΙΟ ΦΘΗΝΟ ΠΡΑΓΜΑ ΑΠΟ DIOR,OFF-WHITE,STONE ISLAND
    Κάνε ΕΓΓΡΑΦΗ εδώ : http://bit.ly/2NCj88P​​​​ Το Brand μου: https://www.instagram.com/dam...
    published: 15 Dec 2021
    Play in Full Screen
    25:24
    Off-White c/o Virgil Abloh™ Spaceship Earth, an "Imaginary Experience"
    Off-White c/o Virgil Abloh™ presents Spaceship Earth, an "Imaginary Experience". A manife...
    published: 28 Feb 2022
    Play in Full Screen
    2:40
    CAMPEON x MACO - "OFF WHITE" Official Music Video (prod. by Dimitris Koufoudakis)
    #Campeon #Maco #OffWhite Stream now https://open.spotify.com/track/7g6srgHDkUjiJnQXKym8Vy...
    published: 14 Apr 2022
    Play in Full Screen
    9:31
    Off-White | Fall Winter 2019/2020 Full Fashion Show | Exclusive
    Off White | Fall Winter 2019/2020 by Virgil Abloh | Full Fashion Show in High Definition. ...
    published: 01 Mar 2019
    Play in Full Screen
    2:45
    NGeeYL - Off-White (feat. Lil Uzi Vert) [Official Video]
    The official video for NGeeYL's "Off-White" featuring Lil Uzi Vert - Out Now! Directed by ...
    published: 07 Jul 2021
    Play in Full Screen

    Shades of white

    Shades of white are colors that differ only slightly from pure white. Variations of white include what are commonly termed off-white colors, which may be considered part of a neutral color scheme.

    In color theory, a shade is a pure color mixed with black (or having a lower lightness). Strictly speaking, a “shade of white” would be a neutral gray. This article is also about off-white colors that vary from pure white in hue, and in chroma (also called saturation, or intensity).

    Colors often considered "shades of white" include, cream, eggshell, ivory, Navajo white, and vanilla. Even the lighting of a room, however, can cause a pure white to be perceived as off-white.

    Off-white colors were pervasively paired with beiges in the 1930s, and especially popular again from roughly 1955 to 1975.

    Whiteness measures the degree to which a surface is white in colorimetry.

    Web colors

    Below is a chart showing the computer web color shades of white. An achromatic white is a white color in which the red, green, and blue codes are exactly equal. The web colors white and white smoke are achromatic colors. A chromatic shade of white is a white color in which the red, green, and blue codes are not exactly equal, but are close to each other, which is what makes it a shade of white.

    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Lil Durk - What Happened to Virgil ft. Gunna (Official Music Video)
      3:15
      Lil Durk - What Happened to Virgil ft. Gunna (Official Music Video)remove from playlist
    • Virgil (feat. OT7 Quanny)
      1:09
      Virgil (feat. OT7 Quanny)remove from playlist
    • Ot7QUANNY - Virgil (Official Music Video) prod.by MANNY LAURENKO
      1:23
      Ot7QUANNY - Virgil (Official Music Video) prod.by MANNY LAURENKOremove from playlist
    • Quality Control, Quavo - Virgil
      2:53
      Quality Control, Quavo - Virgilremove from playlist
    • Bury the Light - Vergil's battle theme from Devil May Cry 5 Special Edition
      9:43
      Bury the Light - Vergil's battle theme from Devil May Cry 5 Special Editionremove from playlist
    • The Insane True Story of Virgil Abloh
      33:22
      The Insane True Story of Virgil Ablohremove from playlist
    • Virgil van Dijk’s Hardest Opponents, Winning A Champions League & The Klopp Effect | EP 103
      46:04
      Virgil van Dijk’s Hardest Opponents, Winning A Champions League & The Klopp Effect | EP 103remove from playlist
    • What's Virgil doing in the WWE warehouse?: WWE Network
      1:00
      What's Virgil doing in the WWE warehouse?: WWE Networkremove from playlist
    • Lil Durk - What Happened To Virgil Ft. Gunna (Official Audio)
      3:02
      Lil Durk - What Happened To Virgil Ft. Gunna (Official Audio)remove from playlist
    • Why should you read Virgil's
      5:36
      Why should you read Virgil's "Aeneid"? - Mark Robinsonremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Lil Durk - What Happened to Virgil ft. Gunna (Official Music Video)

    Lyrical Lemonade Presents Lil Durk - What Happened to Virgil (ft. Gunna) In Loving Memory of: D Thang, King Von & Virgil Abloh Directed & Edited by Cole Bennett Song Produced by Chopsquad DJ DP: Franklin Ricart Editor: Cole Bennett VFX: Dzign Light & Cameo FX Colorist: Josh Bohoskey Steadicam: Thor Wixom 1st AC: Matthew DiNelson 2nd AC: Dale Pilus DIT: Khiy Morgan Lead Techno Tech: Craig Vaughn 1st AD: Kelo 2nd AD: Kenny Kasmir Production Design: Magnolia House Production Designer: Taylor Wynn Art Director: Eliza Chance Construction Coordinator: Dorian Triga Master Carpenter: Dan Stone Carpenter: Connor Shirley Carpenter: Stavros Tsakos Carpenter: Collin Murray Carpenter: Trevor McGlynn Carpenter Assistant: Luke Miller Carpenter Assistant: Alex Gilliam Set Decorator: Joseph Myles Set Dresser: Sophia Kotowski Set Dresser Asst: Alexander Sampson Set Dresser Asst: Dalton Morris Set Dresser Asst: Elorm Srignoh Art Truck: Jay Malone Key Wardrobe: Tadria Allen Wardrobe Asst: Brianca Simone Key Makeup: Renee Tucker Gaffer: Luan Agostinho BBE: Rodrick Gaskin Electric : Andy Johnson Electric: Jordan Gonzalez Electric: Shane Humphries Electric: Eric Nelson Electric: Allison Crowley Key Grip: Lonnie Pool BBG: Alexander Therrien Crane Grip: Troy Wade Grip/Airport G&E Truckdriver: Joe Hernandez Grip: Matthew Beecher Grip: Elise Williams Grip: Saviel Castillo Grip: Aaron Thomas Bozo PA: Shaquille Kokumo PA: Roslyn Younger PA: Enoc Guzman PA: Justin Phillip PA: Elorm Srigboh PA: Chris Phero PA: Diamond Freeman PA: Roderick McReynolds PA: Justin Stewart EP: Sal Tarantino Producer: Jermaine Anglin Producer: Jake Millan Supervising Producer: Susan Bennett Production Manager: DaVaughn Dawson Production Coordinator: Alyx Walker Location Manager: Locazia Production Services Location Coordinator: Chicago Chris -- Official Channel of Lyrical Lemonade Subscribe for updates on music videos, interviews, performance videos, etc. Lyrical Lemonade's Hot 25 Spotify Playlist: https://open.spotify.com/user/gh3vdz775oy18ah1wp9ucxsj5/playlist/5UuPeWDR2I8a8pORvW9vmr Lyrical Lemonade Socials: http://www.twitter.com/lyricalemonade http://www.instagram.com/lyricalemonade http://www.facebook.com/lyricalemonade http://www.lyricallemonade.com Cole Bennett Socials: http://www.twitter.com/_colebennett_ http://www.instagram.com/_colebennett_ LENNY ~ a hidden character representing happiness & good energy http://instagram.com/lenny
    3:15
    Lil Durk - What Happened to Virgil ft. Gunna (Official Music Video)
    Lyrical Lemonade Presents Lil Durk - What Happened to Virgil (ft. Gunna) In Loving Memory...
    published: 12 Apr 2022
    Play in Full Screen
    1:09
    Virgil (feat. OT7 Quanny)
    Provided to YouTube by Venice Innovation Labs Virgil (feat. OT7 Quanny) · Manny Laurenko ...
    published: 29 Jul 2021
    Play in Full Screen
    1:23
    Ot7QUANNY - Virgil (Official Music Video) prod.by MANNY LAURENKO
    OFFICIAL MUSIC VIDEO FOR "VIRGIL" ANY WEAPONS YOU SEE USED IN THIS VIDEO IS A PROP* THIS V...
    published: 05 Dec 2020
    Play in Full Screen
    2:53
    Quality Control, Quavo - Virgil
    The official music video for Quavo - "Virgil" Quality Control: Control The Streets Volume ...
    published: 21 Aug 2019
    Play in Full Screen
    9:43
    Bury the Light - Vergil's battle theme from Devil May Cry 5 Special Edition
    Bury the Light is Vergil's battle theme from Devil May Cry 5 Special Edition Written and p...
    published: 20 Sep 2020
    Play in Full Screen
    33:22
    The Insane True Story of Virgil Abloh
    🌠 http://volksgeist.store/products/spirit 🌌 Cop The Spirit of Creativity today - order now...
    published: 29 Nov 2023
    Play in Full Screen
    46:04
    Virgil van Dijk’s Hardest Opponents, Winning A Champions League & The Klopp Effect | EP 103
    The Liverpool captain joins Gary and Micah on The Rest is Football. He discusses the Klop...
    published: 05 Apr 2024
    Play in Full Screen
    1:00
    What's Virgil doing in the WWE warehouse?: WWE Network
    Edge and Christian encounter Virgil in the WWE warehouse on The Edge and Christian Show Th...
    published: 18 Apr 2016
    Play in Full Screen
    3:02
    Lil Durk - What Happened To Virgil Ft. Gunna (Official Audio)
    7220, the new album from Lil Durk. Available now: https://lildurk.lnk.to/7220 Follow Lil ...
    published: 11 Mar 2022
    Play in Full Screen
    5:36
    Why should you read Virgil's "Aeneid"? - Mark Robinson
    Check out our Patreon page: https://www.patreon.com/teded View full lesson: https://ed.te...
    published: 19 Oct 2017
    Play in Full Screen
    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×