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

Ein

Ein is German for a and an and one (masculine/neuter). Ein can also stand for:

  • Ein, a character in the anime series Cowboy Bebop
  • Ein, see Hayate (Dead or Alive), a character in the video game Dead or Alive
  • Ein, the protagonist of the Game Boy Advance game Riviera: The Promised Land
  • Ein (Hebrew, אין) means Nothing, Null. See also Ein Sof.
  • EIN can stand for:

  • Endometrial intraepithelial neoplasia, a precancerous condition in women
  • Employer Identification Number, a number assigned by the United States Internal Revenue Service to all employers
  • Eindhoven Airport, an airport with IATA code EIN
  • Aer Lingus, an airline whose ICAO code is EIN
  • Equivalent Input Noise, a measure of noise in a microphone preamp, see Equivalent input
  • This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/Ein

    Hayate

    Hayate (疾風) is a Japanese word which can mean "fresh breeze", although in that sense, it is usually pronounced as shippū (しっぷう). Hayate can also refer to:

  • Hayate (train), the name of a train service in Japan
  • Nakajima Ki-84, a World War II era fighter
  • Ninja Hayate, a 1984 laserdisc arcade game by Taito. Known outside Japan as Revenge of the Ninja.
  • Japanese destroyer Hayate (1925), a destroyer built for the Imperial Japanese Navy
  • Hayate the Combat Butler (Hayate no Gotoku), a manga by Kenjiro Hata
  • Hayate X Blade, a manga by Shizuru Hayashiya
  • Forward Racing formerly Hayate Racing Team, the Kawasaki team in the 2009 MotoGP season
  • Characters

  • Hayate Ayasaki, main character in the anime series Hayate The Combat Butler
  • Hayate (Dead or Alive), a fighter in the Dead or Alive video game series
  • Hayate, a character in Street Fighter EX2
  • Black Hayate, a dog in Fullmetal Alchemist
  • Hayate Gekko, the examiner for the preliminaries of the Chuunin Exams in Naruto
  • Hayate Kirino, a character in Igano Kabamaru
  • List of Latin-script trigraphs

    A number of trigraphs are found in the Latin script, most of these used especially in Irish orthography.

  • A
  • B
  • C
  • D
  • E
  • F
  • G
  • H
  • I
  • J–L
  • M
  • N
  • O
  • P–R
  • S
  • T
  • U–W
  • X–Z
  • other
  • See also
  • A

    aai is used in Dutch to write the sound /aːi̯/.

    abh is used in Irish to write the sound /əu̯/, or in Donegal, /oː/, between broad consonants.

    adh is used in Irish to write the sound /əi̯/, or in Donegal, /eː/, between broad consonants, or an unstressed /ə/ at the end of a word.

    aei is used in Irish to write the sound /eː/ between a broad and a slender consonant.

    agh is used in Irish to write the sound /əi̯/, or in Donegal, /eː/, between broad consonants.

    aim is used in French to write the sound /ɛ̃/ (/ɛm/ before a vowel).

    ain is used in French to write the sound /ɛ̃/ (/ɛn/ before a vowel). It also represents /ɛ̃/ in Tibetan Pinyin, where it is alternatively written än.

    aío is used in Irish to write the sound /iː/ between broad consonants.

    amh is used in Irish to write the sound /əu̯/, or in Donegal, /oː/, between broad consonants.

    Uniregistry

    Uniregistry is a Cayman Islands-based domain name registry that administers the generic top-level domains .audio, .auto, .blackfriday, .car, .cars, .christmas, .click, .diet, .flowers, .game, .gift, .guitars, .help, .hiphop, .hiv, .hosting, .juegos, .link, .lol, .mom, .photo, .pics, .property, .sexy, and .tattoo. In February 2012, the related company Uniregistrar Corporation became an ICANN-accredited registrar and launched under the licensed Uniregistry brand name in 2014.

    History

    Uniregistry Corporation was officially founded in 2012 by Frank Schilling, one of the largest private domain name portfolio owners in the world, and registered in the Cayman Islands. However, the domain Uniregistry.com was registered six years earlier and the company filed an intent to use the name in the Cayman Islands in 2010. Trademark applications for the "Uniregistry" mark and its stylized "U" logo were filed in 2012. That year, Schilling invested $60 million and applied for 54 new top-level domains. Uniregistrar Corporation became an ICANN-accredited registrar in February 2013. In January 2014, Uniregistry Inc. became a subsidiary in Newport Beach, California to house a West Coast service and support team. The registrar began operating under the licensed Uniregistry brand name in 2014. Uniregistry's registry infrastructure was designed by Internet Systems Consortium (ISC) and Uniregistry subsequently purchased its infrastructure in 2013.

    Audio (musician)

    Gareth Greenall, better known by his stage name Audio, is a British DJ and producer from Redhill, UK. Currently signed to RAM Records, he has released four album on Virus Recordings. Greenall is also part of the record production group Pixel Fist.

    Biography

    Attending the "Dance Kiss FM" events in London as a teenager, Audio became familiar with the jungle and Drum and bass scene and soon booked his own party with DJs Ed Rush & Optical. He was hired as studio engineer at the UK hard house label "Alphamagic" and later became an A&R. In 2002, he founded "Resonant Evil" along with Colin Worth and Jason Bull, for which he released several records until 2005. His debut album To the Edge Of Reason, released in 2008 on Tech Freak Recordings, received praises throughout the scene and also caught the attention of Virus Recordings executives Ed Rush & Optical (DJ) where he subsequently was signed to. His follow-up albums Genesis Device and Soul Magnet saw further successful singles such as "Vacuum" and "Headroom". In 2013, his final album with Virus Recordings came out after his successful "Sabretooth" remix by Optiv & BTK.

    Audio (album)

    Audio is the debut album by Blue Man Group, released in 1999 by Virgin Records. The album was nominated for the Grammy Award for Best Pop Instrumental Performance.

    This album was released in two versions: The DVD had 5.1-channel versions of the music in both DVD-Video (using Dolby Digital) and DVD-Audio formats (one on each side) and a CD that had a 2-channel stereo mix of each track.

    A behind the scenes video of the album is viewable on a promotional 2000 VHS known as Audio Video. This video is also included as a bonus on the Audio 5.1 Surround Sound DVD.

    Track listing

  • "TV Song" – 2:08
  • "Opening Mandelbrot" – 3:13
  • "Synaesthetic" – 5:31
  • "Utne Wire Man" – 3:18
  • "Rods and Cones" – 5:57
  • "Tension 2" – 2:05
  • "Mandelgroove" – 5:49
  • "PVC IV" – 4:23
  • "Club Nowhere" – 4:50
  • "Drumbone" – 2:44
  • "Shadows" – 2:06
  • "Cat Video" – 2:20
  • "Klein Mandelbrot" – 8:03
  • "Endless Column" – 5:02
  • Reception

    Heather Phares of Allmusic.com rated Audio three out of five stars. She explained that it "reflects over a decade's worth of musical and theatrical innovation." Although she stated that "the spectacle of the group playing its sculptural, surreal-looking instruments is absent from the album," she concluded her review by calling it "an album that proves the Blue Man Group is as innovative in the studio as it is onstage."

    Official

    An official is someone who holds an office (function or mandate, regardless whether it carries an actual working space with it) in an organization or government and participates in the exercise of authority (either his own or that of his superior and/or employer, public or legally private).

    A government official or functionary is an official who is involved in public administration or government, through either election, appointment, selection, or employment. A bureaucrat or civil servant is a member of the bureaucracy. An elected official is a person who is an official by virtue of an election. Officials may also be appointed ex officio (by virtue of another office, often in a specified capacity, such as presiding, advisory, secretary). Some official positions may be inherited. A person who currently holds an office is referred to as an incumbent.

    The word official as a noun has been recorded since the Middle English period, first seen in 1314. It comes from the Old French official (12th century), from the Latin officialis ("attendant to a magistrate, public official"), the noun use of the original adjective officialis ("of or belonging to duty, service, or office") from officium ("office"). The meaning "person in charge of some public work or duty" was first recorded in 1555. The adjective is first attested in English in 1533, via the Old French oficial.

    Podcasts:

    • Who REPLACED Ein in Minecraft?

      Someone STOLE Ein’s gold! And Aphmau is going to find out who. 💜 Come take a look at my merch! 💜 https://aphmeow.com/ ► Instagram: https://www.instagram.com/aphmau_ ====. * ・ 。゚☆ [Friends!] ☆。゚・* .==== ★ Zane: https://www.youtube.com/KestinTheVoice ★ Ein: https://www.youtube.com/ChristopherEscalante ★ KC: https://www.youtube.com/c/MegaMoeka ★ Kim: https://youtube.com/user/Megami36 ★ Noi: https://beacons.ai/michaelazekas ★ Pierce: https://beacons.ai/shado_temple #Minecraft #Aphmau

      published: 24 Jan 2023
    • || Slap! || Gacha meme/Trend || (+10) || Aphmau & Friends || Ein & Pierce ||

      Inspo:​⁠​⁠​⁠​⁠ ​ @jaqx_xoxo

      published: 06 Jun 2024
    • Ein is... DEAD?

      WHAT?! 💜 Come take a look at my merch! 💜 https://aphmeow.com/ ► Instagram: https://www.instagram.com/aphmau_ ====. * ・ 。゚☆ [Friends!] ☆。゚・* .==== ★ Aaron: https://www.youtube.com/c/JasonBravura/ ★ Zane: https://www.youtube.com/KestinTheVoice ★ Ein: https://www.youtube.com/ChristopherEscalante ★ KC: https://www.youtube.com/c/MegaMoeka ★ Kim: https://youtube.com/user/Megami36 ★ Noi: https://beacons.ai/michaelazekas ★ Pierce: https://beacons.ai/shado_temple ★ MacNcheeseP1z: https://www.youtube.com/macncheesep1z #Minecraft #Aphmau

      published: 16 Mar 2023
    • 🔪🩸💙Ein Killed Aphmau💜

      published: 29 Oct 2022
    • 💙Ein & Pierce🩵 | Aphmau | Requested✨

      published: 18 Apr 2023
    • Aphmau Needs To Be NICER To Ein!

      Yes! This is Aphmau and totally not Ein. So yes Aphmau, I mean I will start being nicer to Me…I mean Ein. 💜 Come take a look at my merch! 💜 https://aphmeow.com/ ► Instagram: https://www.instagram.com/aphmau_ NOT an official Roblox Product. Not Approved by or associated with the Roblox Corporation. #Roblox #Shuki #Aphmau #shorts

      published: 10 Dec 2024
    • Pierce and ein are crying?!

      published: 09 Oct 2022
    • Can't believe it's already been a week since #vidcon2024 #Aphmau #ein #MeeMeow #VidCon

      published: 07 Jul 2024
    • What if EIN was SMART?

      A perfect after homework treat! 💜 Come take a look at my merch! 💜 https://aphmeow.com/ ► Instagram: https://www.instagram.com/aphmau_ ====. * ・ 。゚☆ [Friends!] ☆。゚・* .==== ★ Ein: Chris Escalante #Aphmau

      published: 18 Oct 2023
    • Everyone LOVES EIN in Minecraft!

      Everyone is in love with Ein!? 💜 Come take a look at my merch! 💜 https://aphmeow.com/ ► Instagram: https://www.instagram.com/aphmau_ ====. * ・ 。゚☆ [Friends!] ☆。゚・* .==== ★ Zane: https://www.youtube.com/KestinTheVoice ★ Ein: https://www.youtube.com/ChristopherEscalante ★ Kim: https://youtube.com/user/Megami36 ★ Noi: https://beacons.ai/michaelazekas ★ Pierce: https://beacons.ai/shado_temple #Minecraft #Aphmau

      published: 18 Dec 2022
    developed with YouTube
    Who REPLACED Ein in Minecraft?
    18:55

    Who REPLACED Ein in Minecraft?

    • Order:
    • Duration: 18:55
    • Uploaded Date: 24 Jan 2023
    • views: 6344823
    Someone STOLE Ein’s gold! And Aphmau is going to find out who. 💜 Come take a look at my merch! 💜 https://aphmeow.com/ ► Instagram: https://www.instagram.com/aphmau_ ====. * ・ 。゚☆ [Friends!] ☆。゚・* .==== ★ Zane: https://www.youtube.com/KestinTheVoice ★ Ein: https://www.youtube.com/ChristopherEscalante ★ KC: https://www.youtube.com/c/MegaMoeka ★ Kim: https://youtube.com/user/Megami36 ★ Noi: https://beacons.ai/michaelazekas ★ Pierce: https://beacons.ai/shado_temple #Minecraft #Aphmau
    https://wn.com/Who_Replaced_Ein_In_Minecraft
    || Slap! || Gacha meme/Trend || (+10) || Aphmau & Friends || Ein & Pierce ||
    0:20

    || Slap! || Gacha meme/Trend || (+10) || Aphmau & Friends || Ein & Pierce ||

    • Order:
    • Duration: 0:20
    • Uploaded Date: 06 Jun 2024
    • views: 44959
    Inspo:​⁠​⁠​⁠​⁠ ​ @jaqx_xoxo
    https://wn.com/||_Slap_||_Gacha_Meme_Trend_||_(_10)_||_Aphmau_Friends_||_Ein_Pierce_||
    Ein is... DEAD?
    0:37

    Ein is... DEAD?

    • Order:
    • Duration: 0:37
    • Uploaded Date: 16 Mar 2023
    • views: 19970341
    WHAT?! 💜 Come take a look at my merch! 💜 https://aphmeow.com/ ► Instagram: https://www.instagram.com/aphmau_ ====. * ・ 。゚☆ [Friends!] ☆。゚・* .==== ★ Aaron: https://www.youtube.com/c/JasonBravura/ ★ Zane: https://www.youtube.com/KestinTheVoice ★ Ein: https://www.youtube.com/ChristopherEscalante ★ KC: https://www.youtube.com/c/MegaMoeka ★ Kim: https://youtube.com/user/Megami36 ★ Noi: https://beacons.ai/michaelazekas ★ Pierce: https://beacons.ai/shado_temple ★ MacNcheeseP1z: https://www.youtube.com/macncheesep1z #Minecraft #Aphmau
    https://wn.com/Ein_Is..._Dead
    🔪🩸💙Ein Killed Aphmau💜
    0:17

    🔪🩸💙Ein Killed Aphmau💜

    • Order:
    • Duration: 0:17
    • Uploaded Date: 29 Oct 2022
    • views: 10639282
    https://wn.com/🔪🩸💙Ein_Killed_Aphmau💜
    💙Ein & Pierce🩵 | Aphmau | Requested✨
    0:12

    💙Ein & Pierce🩵 | Aphmau | Requested✨

    • Order:
    • Duration: 0:12
    • Uploaded Date: 18 Apr 2023
    • views: 2004578
    https://wn.com/💙Ein_Pierce🩵_|_Aphmau_|_Requested✨
    Aphmau Needs To Be NICER To Ein!
    0:08

    Aphmau Needs To Be NICER To Ein!

    • Order:
    • Duration: 0:08
    • Uploaded Date: 10 Dec 2024
    • views: 47332
    Yes! This is Aphmau and totally not Ein. So yes Aphmau, I mean I will start being nicer to Me…I mean Ein. 💜 Come take a look at my merch! 💜 https://aphmeow.com/ ► Instagram: https://www.instagram.com/aphmau_ NOT an official Roblox Product. Not Approved by or associated with the Roblox Corporation. #Roblox #Shuki #Aphmau #shorts
    https://wn.com/Aphmau_Needs_To_Be_Nicer_To_Ein
    Pierce and ein are crying?!
    0:16

    Pierce and ein are crying?!

    • Order:
    • Duration: 0:16
    • Uploaded Date: 09 Oct 2022
    • views: 3799104
    https://wn.com/Pierce_And_Ein_Are_Crying
    Can't believe it's already been a week since #vidcon2024 #Aphmau #ein #MeeMeow #VidCon
    0:09

    Can't believe it's already been a week since #vidcon2024 #Aphmau #ein #MeeMeow #VidCon

    • Order:
    • Duration: 0:09
    • Uploaded Date: 07 Jul 2024
    • views: 774851
    https://wn.com/Can't_Believe_It's_Already_Been_A_Week_Since_Vidcon2024_Aphmau_Ein_Meemeow_Vidcon
    What if EIN was SMART?
    0:19

    What if EIN was SMART?

    • Order:
    • Duration: 0:19
    • Uploaded Date: 18 Oct 2023
    • views: 4604290
    A perfect after homework treat! 💜 Come take a look at my merch! 💜 https://aphmeow.com/ ► Instagram: https://www.instagram.com/aphmau_ ====. * ・ 。゚☆ [Friends!] ☆。゚・* .==== ★ Ein: Chris Escalante #Aphmau
    https://wn.com/What_If_Ein_Was_Smart
    Everyone LOVES EIN in Minecraft!
    19:19

    Everyone LOVES EIN in Minecraft!

    • Order:
    • Duration: 19:19
    • Uploaded Date: 18 Dec 2022
    • views: 8940487
    Everyone is in love with Ein!? 💜 Come take a look at my merch! 💜 https://aphmeow.com/ ► Instagram: https://www.instagram.com/aphmau_ ====. * ・ 。゚☆ [Friends!] ☆。゚・* .==== ★ Zane: https://www.youtube.com/KestinTheVoice ★ Ein: https://www.youtube.com/ChristopherEscalante ★ Kim: https://youtube.com/user/Megami36 ★ Noi: https://beacons.ai/michaelazekas ★ Pierce: https://beacons.ai/shado_temple #Minecraft #Aphmau
    https://wn.com/Everyone_Loves_Ein_In_Minecraft
    • Latin script

      Latin script, or Roman script, is an alphabet based on the letters of the classical Latin alphabet. It is used as the standard method of writing in most Western and Central European languages, as well as many languages from other parts of the world. Latin script is the basis for the largest number of alphabets of any writing system and is the most widely adopted writing system in the world (commonly used by about 70% of the world's population). It is also the basis of the International Phonetic Alphabet. The 26 most widespread letters are the letters contained in the ISO basic Latin alphabet. This video is targeted to blind users. Attribution: Article text available under CC-BY-SA Creative Commons image source in video

      published: 16 Nov 2014
    • Latin script | Wikipedia audio article

      This is an audio version of the Wikipedia Article: Latin script Listening is a more natural way of learning, when compared to reading. Written language only began at around 3200 BC, but spoken language has existed long ago. Learning by listening is a great way to: - increases imagination and understanding - improves your listening skills - improves your own spoken accent - learn while on the move - reduce eye strain Now learn the vast amount of general knowledge available on Wikipedia through audio (audio article). You could even learn subconsciously by playing the audio while you are sleeping! If you are planning to listen a lot, you could try using a bone conduction headphone, or a standard speaker instead of an earphone. You can find other Wikipedia audio articles too ...

      published: 27 Nov 2018
    • SIGTYP Lecture: Maria Ryskina (Part 1)

      Title: Informal Romanization across Languages and Scripts Abstract: Informal romanization is an idiosyncratic way of typing non-Latin-script languages in Latin alphabet, commonly used in online communication. Although the character substitution choices vary between users, they are typically grounded in shared notions of visual and phonetic similarity between characters. In this talk, I will focus on the task of converting such romanized text into its native orthography and present experimental results for Russian, Arabic, and Kannada, highlighting the differences specific to writing systems. I will also show how similarity-encoding inductive bias helps in the absence of parallel data, present comparative error analysis for unsupervised finite-state and seq2seq models for this task, and ex...

      published: 18 Jun 2021
    • Digraph (orthography)

      Digraph (orthography) A digraph or digram from the Greek: δίς dís, "double" and γράφω gráphō, "to write" is a pair of characters used in the orthography of a language to write either a single phoneme distinct sound, or a sequence of phonemes that does not correspond to the normal values of the two characters combined Digraphs are often used for phonemes that cannot be represented using a single character, like the English sh in ship and fish In other cases they may be relics from an earlier period of the language when they had a different pronunciation, or represent a distinction which is made only in certain dialects, like English wh They may also be used for purely etymological reasons, like rh in English Digraphs are used in some Romanization schemes, like the zh often used to represent...

      published: 23 Mar 2019
    • Vietnamese alphabet | Wikipedia audio article

      This is an audio version of the Wikipedia Article: Vietnamese alphabet Listening is a more natural way of learning, when compared to reading. Written language only began at around 3200 BC, but spoken language has existed long ago. Learning by listening is a great way to: - increases imagination and understanding - improves your listening skills - improves your own spoken accent - learn while on the move - reduce eye strain Now learn the vast amount of general knowledge available on Wikipedia through audio (audio article). You could even learn subconsciously by playing the audio while you are sleeping! If you are planning to listen a lot, you could try using a bone conduction headphone, or a standard speaker instead of an earphone. You can find other Wikipedia audio ...

      published: 08 Nov 2018
    • Intro to Speaking & Pronunciation: Video 3-Consonant Digraphs and Trigraphs

      In the 3rd video of this series, we explore the concept of CONSONANT DIGRAPHS and TRIGRAPHS, which are graphemes that use two or three letters to produce one sound or IPA symbol. (By the end of this video, you will have studied 24 phonemes, leaving 22 phonemes remaining to learn in English.) We also continue our discussion of the origins of English and look at how different languages influenced some of the spelling patterns we see in English. Helpful Links: Kenton ESL's Online Document Archive for this video series: https://docs.google.com/a/kentonesl.org/folder/d/0B4Z33cXjnd1bY2Z6Xy13X2c1c0k/edit Foreign Influences in English: http://en.wikipedia.org/wiki/Foreign_language_influences_in_English Loan words (borrowed words) in English: http://en.wikipedia.org/wiki/Lists_of_English_word...

      published: 05 Jun 2013
    • Introduction to Orthography

      Introduction to orthography

      published: 08 Mar 2013
    developed with YouTube
    Latin script
    13:30

    Latin script

    • Order:
    • Duration: 13:30
    • Uploaded Date: 16 Nov 2014
    • views: 4952
    Latin script, or Roman script, is an alphabet based on the letters of the classical Latin alphabet. It is used as the standard method of writing in most Western and Central European languages, as well as many languages from other parts of the world. Latin script is the basis for the largest number of alphabets of any writing system and is the most widely adopted writing system in the world (commonly used by about 70% of the world's population). It is also the basis of the International Phonetic Alphabet. The 26 most widespread letters are the letters contained in the ISO basic Latin alphabet. This video is targeted to blind users. Attribution: Article text available under CC-BY-SA Creative Commons image source in video
    https://wn.com/Latin_Script
    Latin script | Wikipedia audio article
    18:53

    Latin script | Wikipedia audio article

    • Order:
    • Duration: 18:53
    • Uploaded Date: 27 Nov 2018
    • views: 34
    This is an audio version of the Wikipedia Article: Latin script Listening is a more natural way of learning, when compared to reading. Written language only began at around 3200 BC, but spoken language has existed long ago. Learning by listening is a great way to: - increases imagination and understanding - improves your listening skills - improves your own spoken accent - learn while on the move - reduce eye strain Now learn the vast amount of general knowledge available on Wikipedia through audio (audio article). You could even learn subconsciously by playing the audio while you are sleeping! If you are planning to listen a lot, you could try using a bone conduction headphone, or a standard speaker instead of an earphone. You can find other Wikipedia audio articles too at: https://www.youtube.com/channel/UCuKfABj2eGyjH3ntPxp4YeQ You can upload your own Wikipedia articles through: https://github.com/nodef/wikipedia-tts "The only true wisdom is in knowing you know nothing." - Socrates SUMMARY ======= Latin or Roman script is a set of graphic signs (script) based on the letters of the classical Latin alphabet. This is derived from a form of the Cumaean Greek version of the Greek alphabet used by the Etruscans. Several Latin-script alphabets exist, which differ in graphemes, collation, and phonetic values from the classical Latin alphabet. The Latin script is the basis of the International Phonetic Alphabet, and the 26 most widespread letters are the letters contained in the ISO basic Latin alphabet. Latin script is the basis for the largest number of alphabets of any writing system and is the most widely adopted writing system in the world (commonly used by about 70 per cent of the world's population). Latin script is used as the standard method of writing in most Western, Central, as well as in some Eastern European languages, as well as in many languages in other parts of the world.
    https://wn.com/Latin_Script_|_Wikipedia_Audio_Article
    SIGTYP Lecture: Maria Ryskina (Part 1)
    12:18

    SIGTYP Lecture: Maria Ryskina (Part 1)

    • Order:
    • Duration: 12:18
    • Uploaded Date: 18 Jun 2021
    • views: 190
    Title: Informal Romanization across Languages and Scripts Abstract: Informal romanization is an idiosyncratic way of typing non-Latin-script languages in Latin alphabet, commonly used in online communication. Although the character substitution choices vary between users, they are typically grounded in shared notions of visual and phonetic similarity between characters. In this talk, I will focus on the task of converting such romanized text into its native orthography and present experimental results for Russian, Arabic, and Kannada, highlighting the differences specific to writing systems. I will also show how similarity-encoding inductive bias helps in the absence of parallel data, present comparative error analysis for unsupervised finite-state and seq2seq models for this task, and explore how the combinations of the two model classes can leverage their different strengths.
    https://wn.com/Sigtyp_Lecture_Maria_Ryskina_(Part_1)
    Digraph (orthography)
    23:58

    Digraph (orthography)

    • Order:
    • Duration: 23:58
    • Uploaded Date: 23 Mar 2019
    • views: 11
    Digraph (orthography) A digraph or digram from the Greek: δίς dís, "double" and γράφω gráphō, "to write" is a pair of characters used in the orthography of a language to write either a single phoneme distinct sound, or a sequence of phonemes that does not correspond to the normal values of the two characters combined Digraphs are often used for phonemes that cannot be represented using a single character, like the English sh in ship and fish In other cases they may be relics from an earlier period of the language when they had a different pronunciation, or represent a distinction which is made only in certain dialects, like English wh They may also be used for purely etymological reasons, like rh in English Digraphs are used in some Romanization schemes, like the zh often used to represent the Russian letter ж As an alternative to digraphs, orthographies and Romanization schemes sometimes use letters with diacritics, like the Czech š, which has the same function as the English digraph sh In some languages orthographies, digraphs and occasionally trigraphs are considered individual letters, meaning that tdigraph orthography meaning, digraph definition, digraph ch, digraph worksheets Digraph (orthography)
    https://wn.com/Digraph_(Orthography)
    Vietnamese alphabet | Wikipedia audio article
    23:31

    Vietnamese alphabet | Wikipedia audio article

    • Order:
    • Duration: 23:31
    • Uploaded Date: 08 Nov 2018
    • views: 57
    This is an audio version of the Wikipedia Article: Vietnamese alphabet Listening is a more natural way of learning, when compared to reading. Written language only began at around 3200 BC, but spoken language has existed long ago. Learning by listening is a great way to: - increases imagination and understanding - improves your listening skills - improves your own spoken accent - learn while on the move - reduce eye strain Now learn the vast amount of general knowledge available on Wikipedia through audio (audio article). You could even learn subconsciously by playing the audio while you are sleeping! If you are planning to listen a lot, you could try using a bone conduction headphone, or a standard speaker instead of an earphone. You can find other Wikipedia audio articles too at: https://www.youtube.com/channel/UCuKfABj2eGyjH3ntPxp4YeQ In case you don't find one that you were looking for, put a comment. This video uses Google TTS en-US-Standard-D voice. SUMMARY ======= The Vietnamese alphabet (Vietnamese: chữ Quốc ngữ; literally "national language script") is the modern writing system for the Vietnamese language. It uses the Latin script, based on its employment in the alphabets of Romance languages, in particular the Portuguese alphabet, with some digraphs and the addition of nine accent marks or diacritics – four of them to create additional sounds, and the other five to indicate the tone of each word. The many diacritics, often two on the same vowel, make written Vietnamese easily recognizable.
    https://wn.com/Vietnamese_Alphabet_|_Wikipedia_Audio_Article
    Intro to Speaking & Pronunciation: Video 3-Consonant Digraphs and Trigraphs
    15:04

    Intro to Speaking & Pronunciation: Video 3-Consonant Digraphs and Trigraphs

    • Order:
    • Duration: 15:04
    • Uploaded Date: 05 Jun 2013
    • views: 19193
    In the 3rd video of this series, we explore the concept of CONSONANT DIGRAPHS and TRIGRAPHS, which are graphemes that use two or three letters to produce one sound or IPA symbol. (By the end of this video, you will have studied 24 phonemes, leaving 22 phonemes remaining to learn in English.) We also continue our discussion of the origins of English and look at how different languages influenced some of the spelling patterns we see in English. Helpful Links: Kenton ESL's Online Document Archive for this video series: https://docs.google.com/a/kentonesl.org/folder/d/0B4Z33cXjnd1bY2Z6Xy13X2c1c0k/edit Foreign Influences in English: http://en.wikipedia.org/wiki/Foreign_language_influences_in_English Loan words (borrowed words) in English: http://en.wikipedia.org/wiki/Lists_of_English_words_by_country_or_language_of_origin Speaking & Pronunciation website: https://sites.google.com/a/kentonesl.org/speaking-pronunciation/ This course is designed to accompany our Summer 2013, Session 1 Intro to Speaking & Pronunciation course. It is designed for strictly educational purposes only.
    https://wn.com/Intro_To_Speaking_Pronunciation_Video_3_Consonant_Digraphs_And_Trigraphs
    Introduction to Orthography
    29:03

    Introduction to Orthography

    • Order:
    • Duration: 29:03
    • Uploaded Date: 08 Mar 2013
    • views: 10863
    Introduction to orthography
    https://wn.com/Introduction_To_Orthography
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Who REPLACED Ein in Minecraft?

    Someone STOLE Ein’s gold! And Aphmau is going to find out who. 💜 Come take a look at my merch! 💜 https://aphmeow.com/ ► Instagram: https://www.instagram.com/aphmau_ ====. * ・ 。゚☆ [Friends!] ☆。゚・* .==== ★ Zane: https://www.youtube.com/KestinTheVoice ★ Ein: https://www.youtube.com/ChristopherEscalante ★ KC: https://www.youtube.com/c/MegaMoeka ★ Kim: https://youtube.com/user/Megami36 ★ Noi: https://beacons.ai/michaelazekas ★ Pierce: https://beacons.ai/shado_temple #Minecraft #Aphmau
    18:55
    Who REPLACED Ein in Minecraft?
    Someone STOLE Ein’s gold! And Aphmau is going to find out who. 💜 Come take a look at my me...
    published: 24 Jan 2023
    Play in Full Screen
    0:20
    || Slap! || Gacha meme/Trend || (+10) || Aphmau & Friends || Ein & Pierce ||
    Inspo:​⁠​⁠​⁠​⁠ ​ @jaqx_xoxo
    published: 06 Jun 2024
    Play in Full Screen
    0:37
    Ein is... DEAD?
    WHAT?! 💜 Come take a look at my merch! 💜 https://aphmeow.com/ ► Instagram: https://www.ins...
    published: 16 Mar 2023
    Play in Full Screen
    0:17
    🔪🩸💙Ein Killed Aphmau💜
    published: 29 Oct 2022
    Play in Full Screen
    0:12
    💙Ein & Pierce🩵 | Aphmau | Requested✨
    published: 18 Apr 2023
    Play in Full Screen
    0:08
    Aphmau Needs To Be NICER To Ein!
    Yes! This is Aphmau and totally not Ein. So yes Aphmau, I mean I will start being nicer t...
    published: 10 Dec 2024
    Play in Full Screen
    0:16
    Pierce and ein are crying?!
    published: 09 Oct 2022
    Play in Full Screen
    0:09
    Can't believe it's already been a week since #vidcon2024 #Aphmau #ein #MeeMeow #VidCon
    published: 07 Jul 2024
    Play in Full Screen
    0:19
    What if EIN was SMART?
    A perfect after homework treat! 💜 Come take a look at my merch! 💜 https://aphmeow.com/ ► I...
    published: 18 Oct 2023
    Play in Full Screen
    19:19
    Everyone LOVES EIN in Minecraft!
    Everyone is in love with Ein!? 💜 Come take a look at my merch! 💜 https://aphmeow.com/ ► I...
    published: 18 Dec 2022
    Play in Full Screen

    Ein

    Ein is German for a and an and one (masculine/neuter). Ein can also stand for:

  • Ein, a character in the anime series Cowboy Bebop
  • Ein, see Hayate (Dead or Alive), a character in the video game Dead or Alive
  • Ein, the protagonist of the Game Boy Advance game Riviera: The Promised Land
  • Ein (Hebrew, אין) means Nothing, Null. See also Ein Sof.
  • EIN can stand for:

  • Endometrial intraepithelial neoplasia, a precancerous condition in women
  • Employer Identification Number, a number assigned by the United States Internal Revenue Service to all employers
  • Eindhoven Airport, an airport with IATA code EIN
  • Aer Lingus, an airline whose ICAO code is EIN
  • Equivalent Input Noise, a measure of noise in a microphone preamp, see Equivalent input
  • This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/Ein
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Latin script
      13:30
      Latin scriptremove from playlist
    • Latin script | Wikipedia audio article
      18:53
      Latin script | Wikipedia audio articleremove from playlist
    • SIGTYP Lecture: Maria Ryskina (Part 1)
      12:18
      SIGTYP Lecture: Maria Ryskina (Part 1)remove from playlist
    • Digraph (orthography)
      23:58
      Digraph (orthography)remove from playlist
    • Vietnamese alphabet | Wikipedia audio article
      23:31
      Vietnamese alphabet | Wikipedia audio articleremove from playlist
    • Intro to Speaking & Pronunciation: Video 3-Consonant Digraphs and Trigraphs
      15:04
      Intro to Speaking & Pronunciation: Video 3-Consonant Digraphs and Trigraphsremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Latin script

    Latin script, or Roman script, is an alphabet based on the letters of the classical Latin alphabet. It is used as the standard method of writing in most Western and Central European languages, as well as many languages from other parts of the world. Latin script is the basis for the largest number of alphabets of any writing system and is the most widely adopted writing system in the world (commonly used by about 70% of the world's population). It is also the basis of the International Phonetic Alphabet. The 26 most widespread letters are the letters contained in the ISO basic Latin alphabet. This video is targeted to blind users. Attribution: Article text available under CC-BY-SA Creative Commons image source in video
    13:30
    Latin script
    Latin script, or Roman script, is an alphabet based on the letters of the classical Latin ...
    published: 16 Nov 2014
    Play in Full Screen
    18:53
    Latin script | Wikipedia audio article
    This is an audio version of the Wikipedia Article: Latin script Listening is a more na...
    published: 27 Nov 2018
    Play in Full Screen
    12:18
    SIGTYP Lecture: Maria Ryskina (Part 1)
    Title: Informal Romanization across Languages and Scripts Abstract: Informal romanization...
    published: 18 Jun 2021
    Play in Full Screen
    23:58
    Digraph (orthography)
    Digraph (orthography) A digraph or digram from the Greek: δίς dís, "double" and γράφω gráp...
    published: 23 Mar 2019
    Play in Full Screen
    23:31
    Vietnamese alphabet | Wikipedia audio article
    This is an audio version of the Wikipedia Article: Vietnamese alphabet Listening is a ...
    published: 08 Nov 2018
    Play in Full Screen
    15:04
    Intro to Speaking & Pronunciation: Video 3-Consonant Digraphs and Trigraphs
    In the 3rd video of this series, we explore the concept of CONSONANT DIGRAPHS and TRIGRAPH...
    published: 05 Jun 2013
    Play in Full Screen
    29:03
    Introduction to Orthography
    Introduction to orthography
    published: 08 Mar 2013
    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)); } }); }); }); // -->
    ×