- published: 11 Nov 2024
- views: 684097
'+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; })); }); -->
Lee Elwood Holdridge (born March 3, 1944) is an American composer and orchestrator.
Holdridge was born in Port-au-Prince, Haiti, of a Puerto Rican mother and an American father, the botanist and climatologist Dr. Leslie Holdridge. While living in Costa Rica, at age ten, he studied the violin with Hugo Mariani, who was at the time the conductor of the National Symphony Orchestra of Costa Rica. Holdridge then moved to Boston, where he finished high school and studied composition with Henry Lasker.
As an adult, Holdridge moved to New York City to continue his music studies and begin his career as a professional composer. There, he composed chamber works, rock pieces, songs, theater music and background scores for short films, and eventually came to Neil Diamond's notice. Diamond then brought Holdridge with him to Los Angeles to write arrangements for his forthcoming albums. After several gold and platinum hits, the two collaborated on the Grammy Award winning film score for Jonathan Livingston Seagull.
Television is a telecommunication medium used for transmitting sound with moving images in monochrome (black-and-white), or in colour, and in two or three dimensions. It can refer to a television set, a television program, or the medium of television transmission. Television is a mass medium, for entertainment, education, news and advertising.
Television became available in crude experimental forms in the late 1920s. After World War II, an improved form became popular in the United States and Britain, and television sets became commonplace in homes, businesses, and institutions. During the 1950s, television was the primary medium for influencing public opinion. In the mid-1960s, color broadcasting was introduced in the US and most other developed countries. The availability of storage media such as VHS tape (1976), DVDs (1997), and high-definition Blu-ray Discs (2006) enabled viewers to watch recorded material such as movies. At the end of the first decade of the 2000s, digital television transmissions greatly increased in popularity. Another development was the move from standard-definition television (SDTV) (576i, with 576 interlaced lines of resolution and 480i) to high-definition television (HDTV), which provides a resolution that is substantially higher. HDTV may be transmitted in various formats: 1080p, 1080i and 720p. Since 2010, with the invention of smart television, Internet television has increased the availability of television programs and movies via the Internet through services such as Netflix, iPlayer, Hulu, Roku and Chromecast.
The Simpsons shorts are a series of 48 one-minute shorts that ran on the variety television programme The Tracey Ullman Show for three seasons, before the characters spun off into The Simpsons, their own half-hour prime time show. It features Homer, Marge, Bart, Lisa, and Maggie. The series was created by Matt Groening, who designed the Simpson family and wrote many of the shorts. The shorts first aired on April 19, 1987 starting with "Good Night". The final short to air was "TV Simpsons", originally airing on May 14, 1989. The Simpsons later debuted on December 17, 1989, as an independent series with the Christmas special "Simpsons Roasting on an Open Fire".
One marketing study found that only 14 percent of Americans were familiar with the shorts, compared to 85 percent in November 1990 who were familiar with the Simpsons family, 11 months after the full-length show began airing.
Only a few of these shorts have been released on DVD. "Good Night" was included on The Simpsons Season 1 DVD. Five of these shorts were later used in the clip show episode "The Simpsons 138th Episode Spectacular" on the half-hour show, which was released on the Season 7 DVD. These five shorts were "Good Night", which was featured in its entirety, and portions of "The Perfect Crime", "Space Patrol", "World War III", and "Bathtime". In "You Kent Always Say What You Want", the short "Family Portrait" replaces the entire opening sequence in celebration of the 400th episode. In June 2013, it was reported that FXX is trying to acquire the shorts for an October Simpsons app, "Simpsons World".
Amused to Death is a concept album, and the third studio album by former Pink Floyd bassist/vocalist Roger Waters. It was released in 1992. A remastered remix for which Waters worked with James Guthrie was released in 2015, including a Blu-ray option.
Roger Waters started working on Amused to Death in 1987 when he first wrote "Perfect Sense". It was several years before the album was released and it is unknown how much the material was changed in the interim. The album's artwork features a monkey watching television in reference to Stanley Kubrick's 2001: A Space Odyssey. The image on the TV is a gigantic eyeball staring at the viewer. According to Waters, the monkey was "a symbol for anyone who's been sitting with his mouth open in front of the network and cable news for the last 10 years." The album's title was inspired by Neil Postman's book Amusing Ourselves to Death. The album is organised loosely around the idea of a monkey randomly switching channels on a television, but explores numerous political and social themes, including critiques of the First Gulf War in "The Bravery of Being Out of Range" and "Perfect Sense".
Nude photos of Melania Trump have been aired on Russia’s most watched state TV channel during a programme supposedly dedicated to celebrating Trump’s election victory. This comes after Trump allegedly urged Putin not to escalate the Ukraine war in a phone call last week. But the Kremlin denies that this phone call ever took place. Despite Trump’s repeated claims that he has a good relationship with Putin, things appear to have got off to a rocky start between the pair. Subscribe here: http://bit.ly/ODNsubs TikTok: https://www.tiktok.com/@ondemandnews Twitter: https://twitter.com/ODN Facebook: https://www.facebook.com/ODN/ If you wish to purchase any of our clips for commercial use, please visit: http://www.itnproductions.co.uk/news/
Listen to the official audio for Television / So Far So Good by Rex Orange County. Subscribe to the Rex Orange County on YouTube: https://rexorangecounty.lnk.to/youtubeYD Listen to more songs by Rex Orange County: https://rexorangecounty.lnk.to/moreYD Rex Orange County Merch: https://shop.rexorangecounty.com/ Connect with Rex Orange County: Website: https://www.rexorangecounty.com/ Instagram - https://rexorangecounty.lnk.to/InstagramYD Facebook - https://rexorangecounty.lnk.to/FacebookYD Twitter - https://rexorangecounty.lnk.to/TwitterYD Spotify - https://rexorangecounty.lnk.to/SpotifyYD Apple Music - https://rexorangecounty.lnk.to/AppleMusicYD LYRICS: Hey I'm not afraid, I can be myself and I Hope you can be yourself as well 'Cause I can make you feel alright And there was so much h...
0:50 - What about meeee 🔥 Rex Orange County - What About Me (Television / So Far So Good) (Lyrics) 🌸 Follow Cassiopeia on Spotify: https://cassiopeia.lnk.to/o-yCQ Follow Rex Orange County https://www.instagram.com/rexorangecounty/ https://twitter.com/rexorangecounty https://www.facebook.com/rexorangecounty/ What About Me Lyrics [Verse 1] Hey, I'm not afraid, I can be myself and I Hope you can be yourself as well, 'cause I can make you feel alright And there was so much happiness that we were still yet to find I said that you can call me Alex, baby, welcome to my life [Bridge] But don't you worry, don't you, don't worry girl No, I'm not sure if I'm into you The last time that you checked, I was probably so sad and confused I don't know, no, I don't know what you like But if you're lookin...
SOMOY TV LIVE | সময় টিভি লাইভ | সরাসরি সময় টিভি | LIVE TV | SOMOY TV LIVE STREAMING | BANGLA TV LIVE #somoytv #live #streaming #bdnews #tv #news #somoytvlive #somoytvnews #somoynews #bangladeshnewsupdate #banglanews #latestnews #topnews #newslive SOMOY TV OFFICIAL LIVE STREAMING COPYRIGHT : SOMOY MEDIA LIMITED Details More: https://www.somoynews.tv "SOMOY TV" is the Most Reliable News Source and Leading 24/7 News Based TV Channel in Bangladesh Fair Use Disclaimer: ================= This channel may use some copyrighted materials without specific authorization of the owner but contents used here falls under the “Fair Use” as described in The Copyright Act 2000 Law No. 28 of the year 2000 of Bangladesh under Chapter 6, Section 36 and Chapter 13 Section 72. According to that law al...
Don't forget to subscribe: https://bit.ly/2Hb8hjx Watch more interesting videos: https://bit.ly/34ogCaw Follow Channels Television On: Facebook: https://www.facebook.com/channelsforum/ Twitter: https://twitter.com/channelstv Instagram: https://www.instagram.com/channelstelevision/?hl=en Get more news on our website: https://www.channelstv.com/ #ChannelsTv #newsheadlines #ChannelsTVNews #NewsInNigeria #NewsUpdate #latestnews #todaynews #onlinenews #DailyNews #BreakingNews #TrendingNews #NewsToday #NewsNigeria #TrendingVideo #Lagos #Nigerianews #channelstelevision
Introducing YouTube TV. Finally, cable-free live TV. Try it free here: https://tv.youtube.com YouTube TV is a TV streaming service that lets you watch live TV from ABC, CBS, FOX, NBC, and popular cable networks. Enjoy local and national live sports, and must-see shows the moment they air. Record all your favorites without DVR storage space limits, and stream wherever you go. YouTube TV comes with 6 accounts per household. YouTube TV is currently available in select U.S. cities, with more coming soon! Learn where we’re launched here: https://tv.youtube.com/tv/availability. Learn about NFL Sunday Ticket: https://tv.youtube.com/learn/nflsundayticket
Television - Marquee Moon [1977]
The Simpsons shorts are an American animated TV series of 48 one-minute shorts that ran on the variety television program The Tracey Ullman Show for three seasons, before the characters spun off into The Simpsons, their own half-hour prime time show. It features Homer, Marge, Bart, Lisa, and Maggie. The series was created by Matt Groening, who designed the Simpson family and wrote many of the shorts. The shorts first aired on April 19, 1987 starting with "Good Night". The final short to air was "TV Simpsons", originally airing on May 14, 1989. The Simpsons later debuted on December 17, 1989, as an independent series with the Christmas special "Simpsons Roasting on an Open Fire". Season One Episode List: 00:00 - Intro 00:15 - Good Night 02:05 - Watching Television 03:28 - Bart Jumps 04:49 ...
The Simpsons practice for WWIII
Go to bread
All the rights goes the original creators of the show and the voice actors If i missed one or more tell me in the comments below Warning : If you notice they are a pit fast , i have to do it so i can not get copyright claims or strikes (or both) of YouTube broke copyright system
Homer takes the kids to an aquarium, however Bart gets into the tank with the sharks!
the Simpsons have a family therapy
Lisa draws Homer's face on Bart's punching bag to "give him motivation".
The Tracey Ullman Show - Simpsons Shorts The Simpsons - s00e42 - Bathtime Aired: 1989/03/19 Homer makes Bart take his "Sunday Night Bath", only to flood the bathroom. Want to see more? Check out the Playlist! https://www.youtube.com/playlist?list=PLe_vclXcHsg0bvKw_OTkKqBGdJlnAX0te
Lee Elwood Holdridge (born March 3, 1944) is an American composer and orchestrator.
Holdridge was born in Port-au-Prince, Haiti, of a Puerto Rican mother and an American father, the botanist and climatologist Dr. Leslie Holdridge. While living in Costa Rica, at age ten, he studied the violin with Hugo Mariani, who was at the time the conductor of the National Symphony Orchestra of Costa Rica. Holdridge then moved to Boston, where he finished high school and studied composition with Henry Lasker.
As an adult, Holdridge moved to New York City to continue his music studies and begin his career as a professional composer. There, he composed chamber works, rock pieces, songs, theater music and background scores for short films, and eventually came to Neil Diamond's notice. Diamond then brought Holdridge with him to Los Angeles to write arrangements for his forthcoming albums. After several gold and platinum hits, the two collaborated on the Grammy Award winning film score for Jonathan Livingston Seagull.
We were watchin' tv...watchin'tv
We were watchin' tv...watchin'tv
In tiananmen square
Lost my baby there
My yellow rose
And her bloodstained clothes
She was a short order pastry chef
In a dim sum dive on the yangtze tideway
She had shiny hair
She was the daughter of an engineer
Won't you shed a tear
For my yellow rose
My yellow rose
And her bloodstained clothes
She had perfect breasts
She had high hopes
She had almond eyes
She had yellow thighs
She was a student of philosophy
Won't you grieve with me
For my yellow rose
Shed a tear
For her bloodstained clothes
She had shiny hair
She had perfect breasts
She had high hopes
She had almond eyes
She had yellow thighs
She was the daughter of an engineer
So get out your pistols
Get out your stones
Get out your knives
Cut them to the bone
They are the lackeys of the grocer's machine
They built the dark satanic mills
That manufacture hell on earth
They bought the front row seats on calvary
They are irrelevant to me
And I grieve for my sister
People of china
Do not forget do not forget
The children who died for you
Long live the republic
Did we do anything after this
I've a feeling we did
We were watchin' tv...watchin' tv
We were watchin' tv...watchin' tv
She wore a white bandanna that said
Freedom now
She thought the great wall of china
Would come tumbling down
She was a student
Her father was an engineer
Won't you shed a tear
For my yellow rose
My yellow rose
And her bloodstained clothes
Her grandpa fought old chiang kai-shek
That no-good low-down dirty rat
Who used to order his troops
To fire on the women and children
Imagine that imagine that
And in the spring of '48
Mao tse-tung got quite irate
And he kicked that old dictator chiang
Out of the state of china
Chiang kai-shek came down in formosa
And they armed the island of quemoy
And the shells were flying across the china sea
And they turned formosa into a shoe factory
Called taiwan
And she is different from cro-magnon man
She's different from anne boleyn
She is different from the rosenbergs
And from the unknown jew
She is different from the unknown nicaraguan
Half superstar half victim
She's a victor star conceptually new
And she is different from the dodo
And from the kankanbono
She is different from the aztec
And from the cherokee
She's everybody's sister
She's symbolic of our failure
She's the one in fifty million
Who can help us to be free
Because she died on tv