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

Trash (Firefly)

"Trash" is the eleventh episode of the science fiction television series Firefly created by Joss Whedon. It is the first of three episodes that were not broadcast in the original 2002 Fox run.

Mal's "wife" Saffron convinces him to help her steal a valuable artifact, but the crew of Serenity suspects foul play.

Synopsis

The episode opens in a desert, where a naked Mal sits on a rock, staring into the distance and saying to himself: "Yeah… that went well."

During a cargo transfer 72 hours earlier, Mal meets up with Monty, a war buddy and fellow Browncoat turned smuggler. As Monty's crew unloads cargo, he tells Mal that he's gotten married, introducing his wife Bridget. "Bridget" turns out to be Mal's nemesis Saffron, and a fight breaks out between them. Enraged to learn of Saffron's double-dealing, Monty leaves without her, stranding her on the deserted moon where Mal is waiting for a pickup. Mal orders Saffron to walk away and be left behind, but reconsiders when she tempts him with the prospect of a lucrative heist. Later, Serenity arrives to pick up Mal and the unloaded cargo. Later Mal lets Saffron out of one of the loaded crates in the cargo bay.

Trash (The Stalin album)

Trash is the first full-length album by Japanese hardcore punk group The Stalin released on December 24, 1981.

Full album released from political records that is independent music label for the first time as The Stalin. At that time, 2000 pieces were newly pressed because it sold all immediately after release, and the order poured in, and sales of the exception were recorded in the independent music label though as many as 1000 pieces were pressed at first because it was an independent production board. However, all re-release is not done, and a still hard-to-find work according to the problem in extreme content and contract of the use of the broadcasting prohibition term. A lot of bootlegs appear on the market, too and therefore, the CD board is only a bootleg and exists.

A-side are studio recording sound source and B-side are a live sound sources. The content of the album Several of collection changes the title in the work after the following majors debut, and what it tried to record is collected.

Trash (Suede song)

"Trash" is the first single from the album Coming Up by Suede, released on 29 July 1996, on Nude Records. It is the first single on which all the songs were written without guitarist Bernard Butler, since Richard Oakes had taken his place. The single is tied with "Stay Together" as the band's highest charting at number three; however, it outsold the earlier single, thus making it their biggest selling single. The song signified a dramatic change in the band's sound, as they went from gloomy and theatrical to glam-induced pop.

The single version of "Trash" charted at No. 3 on the UK Singles Chart in 1996. The song was the band's first overseas number one, hitting the top of the charts in Finland. The song proved to be a successful comeback single for Suede, receiving universal praise from critics. Melody Maker had proclaimed the song "single of the week" a fortnight prior to release. Ted Kessler of NME said: "So the scaremongers were wrong. Brett Anderson is the creative force behind Suede. Here's the proof: this week sees the release of their first post-Bernard Butler single and nobody can really admit that they thought it would sound half as good as it does."

Podcasts:

  • Firefly 1x11 Reaction | Trash

    #firefly #firsttimewatching #gonetoosoon 0:00 Opening 9:21 Trash 29:03 Ending Editing and Visual Elements: Xander What Channel Art work and Animations: Xander What SEND ME STUFF: PO Box 778372 Henderson, NV 89077 Liquid IV affiliate link: https://glnk.io/koyv/funnylilgalreacts or use code: FUNNYLILGALREACTS at check out for 15% off your order and free shipping. (I need it more than Amazon does!) ************************************************************************************** Patreon: https://www.patreon.com/funnylilgalreacts Instagram : funnylilgalreacts Email: funnylilgalreacts@gmail.com ************************************************************************************** PLAYLISTS https://www.youtube.com/playlist?list=PLv8NdzitlOKEQoYR558sNX6SAMQP-z0Ph https://www.youtube....

    published: 13 Jun 2023
  • Firefly Trash Reaction Episode 11 | First Time Watching

    Firefly Trash Reaction Episode 11 | First Time Watching ---------------------------------------------------------------- Mal has an encounter with his old friend Monty Reynolds to transfer cargo to be smuggled and Monty tells that he got married. When he introduces his wife Bridget to Mal, he learns that she is Saffron. Monty leaves the woman on the planet and Mal locks her in a trunk and brings her on board of the Serenity. Soon Saffron proposes Mal and his crew to steal the priceless antique, the laser pistol Lassiter, from Durran Haymer in his fortress in the planet Balerephon. Is Saffron trustworthy? #firefly #tvreaction #fireflyreaction Thank you so much for watching! I hope you enjoyed the video 💜 *Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is mad...

    published: 27 Dec 2022
  • A Look at Trash (Firefly) 1of2

    Saffron returns, but don't worry, it's for a heist they can help with! And that definitely won't end badly!

    published: 04 Feb 2023
  • Firefly clip: Infirmary scene from Trash

    My fave Jayne/Simon scene. Simon gets back at Jayne in a very uncharacteristic way... some might call it evil. Others might say it's very much deserved. :) I don't own them, Fox does. I wish I did though... And Joss Whedon is a genious.

    published: 22 Dec 2015
  • Reacting to FIREFLY 1x11 (Trash) | Reaction

    Thank you for joining me as I react to Firefly for the first time. I hope you enjoy the video and my reaction! Watch full, un-edited reactions or get one week early access on Patreon: https://www.patreon.com/DawnMarieAnderson Links: https://linktr.ee/dawnmariex ✉️ PO BOX Details ✉️ PO Box 18708 PETERHEAD SCOTLAND AB42 9BD --------------------------------------------------------------------------------------------------------------- A big shoutout and thanks to the following patrons: 1000thghost alonso torres CBonius Chase Baur Chris Baldwin Eric Bonham Jeff Joshua s. Jackson Jotne Lee Pitman Liam Christie MertzRocks Scott Thomas Amann Vidal (BillyG!) Gomez jr 3dbadboy1 Absolute0 Adam B Alan Jones Allen Bond Allen Stull Amadou libero Andrew Andrew Sanderson Andy Farmer Anthony Donat...

    published: 09 May 2023
  • Reacting to FIREFLY!! (Ep. 11 - TRASH)

    Hey guys! Welcome back to my channel and thanks for checking out this video! This was such a fun, light hearted episode and I hope you enjoy my reaction. So sorry about the audio quality in this one. As always, let me know your thoughts in the comments below and if you liked this video, please give it a thumbs up! Subscribe if you want to and until next time, ✨stay golden!✨ --------------------------------------------------------------------------------------------------------------------------- MY PATREON (for full length reactions + polls): https://www.patreon.com/nataliegold MY INSTA: nattiegold MY TWITTER: natstaygolden -----------------------------------------------------------GEAR I USE--------------------------------------------- (As an Amazon Associate, I earn from qualifying p...

    published: 06 Dec 2020
  • FIRST TIME WATCHING: Firefly Episode 11 (Trash) - SAFFRON!!! 🥰🥰

    Our first time watching Firefly: In this episode, we see Mal naked in the desert and Saffron is back. The crew take Saffron's offer of a job to steal a valuable antique. Things are not always so easy! Find us here : FULL REACTIONS : https://www.patreon.com/takeaticket Instagram: https://www.instagram.com/takeaticket88/ ===Timestamps=== 00:00 - Intro 01:55 - The Episode 16:11 - Outro and Thoughts ✉ Professional e-mail : takeaticket88@gmail.com Any comments inciting hatred or disrespect will be removed. We want our comment space to be positive and friendly, No spoilers please. Thank you! *Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fa...

    published: 04 May 2022
  • FIRST TIME WATCHING: Firefly Episode 10 "Trash" Reaction & Review / she's crazy & hilarious

    🚨UNCUT, EARLY ACCESS, BLOOPERS & MORE: https://www.patreon.com/marycherryofficial 🔴 subscribe & turn on notifications 🔔 http://bit.ly/MaryCherry 🔔 ⇩OPEN ME FOR MORE INFORMATION ⇩ ﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌ ❤️️ MY MERCH❤️️: https://teespring.com/stores/marycherry ✨Donate to the channel✨: https://paypal.me/marycherryofficial 💋NEW CHANNEL💋: https://www.youtube.com/channel/UC-C70aZ6Tx2MKQQx4RtgdMA ﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌ ☽ follow me☽ ✰https://www.twitch.tv/maryycherryy ✰http://instagram.com/maryycherryy ✰http://twitter.com/maryycherryy ✰https://www.fb.me/MaryCherryOfficial ﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌ Frequently asked questions (FAQs): https://docs.google.com/document/d/1_FkcwQ0vPAAk53YVyo-ChXc9AuX1pn5gbctrOkX13xA/ ﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌ music: ATAMONE - https://open.spotify.com/artist/4ewpGbPN16YHnt8CTfY9oY?si=b...

    published: 27 Jul 2021
  • First Time Watching Firefly - Trash (Episode 11) | REACTION

    The Target Audience are watching Firefly for the first time!! Join them as they react to the episode 11 the beloved tv series Trash FULL UNCUT reaction & discussion on our Patreon! Patreon: https://www.patreon.com/TargetAudience?fan_landing=true 0:00 Intro 2:29 Reaction 17:37 Discussion

    published: 08 Dec 2022
  • Firefly 1x11 REACTION!! "Trash"

    Eric and Calvin react to and discuss season 1 episode 11 of Firefly Trash Vote in our polls and see certain Blind Wave videos early!! http://www.patreon.com/blindwave Blind Wave is Sponsored on Patreon by: Keyboard Junkie and The Blind Wave Discord Family Website http://www.blindwave.net Twitter : http://www.twitter.com/blindwaveprod FaceBook : http://www.facebook.com/BlindWaveProductions Twitch: http://www.twitch.tv/blindwave Discord: https://discord.gg/blindwave Snapchat: blind_wave Subreddit: http://www.reddit.com/r/blindwave Send us Stuff at: P.O. Box 304 Marietta, OH 45750

    published: 18 Aug 2018
developed with YouTube
Firefly 1x11 Reaction | Trash
38:24

Firefly 1x11 Reaction | Trash

  • Order:
  • Duration: 38:24
  • Uploaded Date: 13 Jun 2023
  • views: 34223
#firefly #firsttimewatching #gonetoosoon 0:00 Opening 9:21 Trash 29:03 Ending Editing and Visual Elements: Xander What Channel Art work and Animations: Xander What SEND ME STUFF: PO Box 778372 Henderson, NV 89077 Liquid IV affiliate link: https://glnk.io/koyv/funnylilgalreacts or use code: FUNNYLILGALREACTS at check out for 15% off your order and free shipping. (I need it more than Amazon does!) ************************************************************************************** Patreon: https://www.patreon.com/funnylilgalreacts Instagram : funnylilgalreacts Email: funnylilgalreacts@gmail.com ************************************************************************************** PLAYLISTS https://www.youtube.com/playlist?list=PLv8NdzitlOKEQoYR558sNX6SAMQP-z0Ph https://www.youtube.com/playlist?list=PLv8NdzitlOKGGtYEX5S82LIAWAeN0NplQ https://www.youtube.com/playlist?list=PLv8NdzitlOKF2Dp9xdFC-VM_DkDl6nXCt https://www.youtube.com/playlist?list=PLv8NdzitlOKEcAbabaIxH8dJQ8fuzgIzv https://www.youtube.com/playlist?list=PLv8NdzitlOKH-iXSu5b1fTAMj-MF2OJkd https://www.youtube.com/playlist?list=PLv8NdzitlOKE13it_gDGBZ_XL8VYrZ_90 https://www.youtube.com/playlist?list=PLv8NdzitlOKF7jaJ-a-H3cxDmzERs1QI8 https://www.youtube.com/playlist?list=PLv8NdzitlOKFwOjrLhW4MRAkY0rFZsQcf https://www.youtube.com/playlist?list=PLv8NdzitlOKFiXu5Z_zA3WXX04s-Xlp6H https://www.youtube.com/playlist?list=PLv8NdzitlOKEy-Z8zGYV6zaZVvPtjtNSA https://www.youtube.com/playlist?list=PLv8NdzitlOKHAvq7DukVz8MkUol8aKwsR https://www.youtube.com/playlist?list=PLv8NdzitlOKHV60Fi4KOLEmFgOzlfLK46 https://www.youtube.com/playlist?list=PLv8NdzitlOKGspRcJtlDAMIKni3iU7p46 https://www.youtube.com/playlist?list=PLv8NdzitlOKEUu9KGXrL3R7H5CkqdAQpl https://www.youtube.com/playlist?list=PLv8NdzitlOKH9fXysj3J9k58EPPsJLhaJ https://www.youtube.com/playlist?list=PLv8NdzitlOKFef7Es2TM0uD4VIksPgiqZ https://www.youtube.com/playlist?list=PLv8NdzitlOKF86xjJ88QgxJ83FXRiiU0y https://www.youtube.com/playlist?list=PLv8NdzitlOKExljMIeUWhqFOhsTZhxPwy https://www.youtube.com/playlist?list=PLv8NdzitlOKE8usbmgPOoReOD0rQJHnmy https://www.youtube.com/playlist?list=PLv8NdzitlOKE4ruMsjwJ9iGhQjgqrMczN https://www.youtube.com/playlist?list=PLv8NdzitlOKERFnm3_eQz0ddBD06fdsMu Copyright Disclaimer under Section 107 of the copyright act 1976, allowance is made for fair use for purposes such as criticism, comment, news reporting, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use.
https://wn.com/Firefly_1X11_Reaction_|_Trash
Firefly Trash Reaction Episode 11 | First Time Watching
24:43

Firefly Trash Reaction Episode 11 | First Time Watching

  • Order:
  • Duration: 24:43
  • Uploaded Date: 27 Dec 2022
  • views: 11398
Firefly Trash Reaction Episode 11 | First Time Watching ---------------------------------------------------------------- Mal has an encounter with his old friend Monty Reynolds to transfer cargo to be smuggled and Monty tells that he got married. When he introduces his wife Bridget to Mal, he learns that she is Saffron. Monty leaves the woman on the planet and Mal locks her in a trunk and brings her on board of the Serenity. Soon Saffron proposes Mal and his crew to steal the priceless antique, the laser pistol Lassiter, from Durran Haymer in his fortress in the planet Balerephon. Is Saffron trustworthy? #firefly #tvreaction #fireflyreaction Thank you so much for watching! I hope you enjoyed the video 💜 *Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. NO COPYRIGHT INFRINGEMENT INTENDED. All rights belong to their respective owners. I have no intent on claiming this footage as my own. I am simply providing commentary and constructive feedback.
https://wn.com/Firefly_Trash_Reaction_Episode_11_|_First_Time_Watching
A Look at Trash (Firefly) 1of2
7:35

A Look at Trash (Firefly) 1of2

  • Order:
  • Duration: 7:35
  • Uploaded Date: 04 Feb 2023
  • views: 3636
Saffron returns, but don't worry, it's for a heist they can help with! And that definitely won't end badly!
https://wn.com/A_Look_At_Trash_(Firefly)_1Of2
Firefly clip: Infirmary scene from Trash
2:49

Firefly clip: Infirmary scene from Trash

  • Order:
  • Duration: 2:49
  • Uploaded Date: 22 Dec 2015
  • views: 234776
My fave Jayne/Simon scene. Simon gets back at Jayne in a very uncharacteristic way... some might call it evil. Others might say it's very much deserved. :) I don't own them, Fox does. I wish I did though... And Joss Whedon is a genious.
https://wn.com/Firefly_Clip_Infirmary_Scene_From_Trash
Reacting to FIREFLY 1x11 (Trash) | Reaction
16:56

Reacting to FIREFLY 1x11 (Trash) | Reaction

  • Order:
  • Duration: 16:56
  • Uploaded Date: 09 May 2023
  • views: 17023
Thank you for joining me as I react to Firefly for the first time. I hope you enjoy the video and my reaction! Watch full, un-edited reactions or get one week early access on Patreon: https://www.patreon.com/DawnMarieAnderson Links: https://linktr.ee/dawnmariex ✉️ PO BOX Details ✉️ PO Box 18708 PETERHEAD SCOTLAND AB42 9BD --------------------------------------------------------------------------------------------------------------- A big shoutout and thanks to the following patrons: 1000thghost alonso torres CBonius Chase Baur Chris Baldwin Eric Bonham Jeff Joshua s. Jackson Jotne Lee Pitman Liam Christie MertzRocks Scott Thomas Amann Vidal (BillyG!) Gomez jr 3dbadboy1 Absolute0 Adam B Alan Jones Allen Bond Allen Stull Amadou libero Andrew Andrew Sanderson Andy Farmer Anthony Donato archie neil Barry Bill Bryant bjardkr Bob Bob Criswell ButtercupsTrueLove Calvin Melvin Vruwink Captain Caveman Casey Fairley chucklebuns D Scott Howard Daniel Goldberg Darrell Palmer Dave Thomas David David Bennett David Guin David Patterson Dean J Decaffin8 Dennis Shogren Des creggan Don Linton Donald Mellen Edmund Dantes Elliot Nesterman Em McG Enrico Pallazo Eric Dubs Eric Pearson Gary Mackley-Smith George Roybal Greg Kipp Grinznmore Hypnobob Ian B Ian Cano Ian Forbes Ido Gordin Jamie Mather Jason Hodge JDW2 Jeff Barnes Jeremy T Edwards Jeremy Vickers Jesse Garcia Joe Lazarus Joe Swenson Joe Wadmore John T. Williams John Walters Jon Freezin-Rain Jordan Love Josh Jul_Belton Liam Matt Chris Matthew Dunham Matthew Lange Michael Zollner Mike McLaughlin MoulinNoir Mr B Mr. Writhms Nathan Nilestex Othorious Owen Butters Pascal Friedli Patrick Armbruster Paul Dunphy Paul M PaulChristopher Pig FlibJarb Ragnar Miersch Ray Thorne resinmonkey . Retro Maven Richard Burden Rick DeBaan Robert C Robert Ferris Robert Inman Robert P Robert pate Ron Rumpus Parable Sam Spade sarCC Sharon Lathan Shawn P. Simon Fletcher stevo Ted Little theheb24 . Thexx Tim Boxall Tim Klug Tom Tyler Roth V Kobejitsu walvaterwotan84 --------------------------------------------------------------------------------------------------------------- Video Contents 0:00 Intro 0:43 Reaction 15:30 Review/Outro --------------------------------------------------------------------------------------------------------------- #firefly #firsttimewatching #reaction *Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. NO COPYRIGHT INFRINGEMENT INTENDED. All rights belong to their respective owners. --------------------------------------------------------------------------------------------------------------- Reacting to FIREFLY 1x11 (Trash) | Reaction
https://wn.com/Reacting_To_Firefly_1X11_(Trash)_|_Reaction
Reacting to FIREFLY!! (Ep. 11 - TRASH)
18:17

Reacting to FIREFLY!! (Ep. 11 - TRASH)

  • Order:
  • Duration: 18:17
  • Uploaded Date: 06 Dec 2020
  • views: 77383
Hey guys! Welcome back to my channel and thanks for checking out this video! This was such a fun, light hearted episode and I hope you enjoy my reaction. So sorry about the audio quality in this one. As always, let me know your thoughts in the comments below and if you liked this video, please give it a thumbs up! Subscribe if you want to and until next time, ✨stay golden!✨ --------------------------------------------------------------------------------------------------------------------------- MY PATREON (for full length reactions + polls): https://www.patreon.com/nataliegold MY INSTA: nattiegold MY TWITTER: natstaygolden -----------------------------------------------------------GEAR I USE--------------------------------------------- (As an Amazon Associate, I earn from qualifying purchases from using the links below.) Canon EOS Rebel: https://amzn.to/3jnwnpI Blue Yeti Nano: https://amzn.to/325O9GH SteelSeries Arctis 3 Headphones: https://amzn.to/3joKpqx Tripod: https://amzn.to/3n3eizA LED Light Panel: https://amzn.to/30ZtPq8 Clamp Lamp Light: https://amzn.to/3kXrEf0 Original Series: Firefly *Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. NO COPYRIGHT INFRINGEMENT INTENDED. All rights belong to their respective owners.
https://wn.com/Reacting_To_Firefly_(Ep._11_Trash)
FIRST TIME WATCHING: Firefly Episode 11 (Trash) - SAFFRON!!! 🥰🥰
21:39

FIRST TIME WATCHING: Firefly Episode 11 (Trash) - SAFFRON!!! 🥰🥰

  • Order:
  • Duration: 21:39
  • Uploaded Date: 04 May 2022
  • views: 8225
Our first time watching Firefly: In this episode, we see Mal naked in the desert and Saffron is back. The crew take Saffron's offer of a job to steal a valuable antique. Things are not always so easy! Find us here : FULL REACTIONS : https://www.patreon.com/takeaticket Instagram: https://www.instagram.com/takeaticket88/ ===Timestamps=== 00:00 - Intro 01:55 - The Episode 16:11 - Outro and Thoughts ✉ Professional e-mail : takeaticket88@gmail.com Any comments inciting hatred or disrespect will be removed. We want our comment space to be positive and friendly, No spoilers please. Thank you! *Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. NO COPYRIGHT INFRINGEMENT INTENDED. All rights belong to their respective owners.
https://wn.com/First_Time_Watching_Firefly_Episode_11_(Trash)_Saffron_🥰🥰
FIRST TIME WATCHING: Firefly Episode 10 "Trash" Reaction & Review / she's crazy & hilarious
17:00

FIRST TIME WATCHING: Firefly Episode 10 "Trash" Reaction & Review / she's crazy & hilarious

  • Order:
  • Duration: 17:00
  • Uploaded Date: 27 Jul 2021
  • views: 27054
🚨UNCUT, EARLY ACCESS, BLOOPERS & MORE: https://www.patreon.com/marycherryofficial 🔴 subscribe & turn on notifications 🔔 http://bit.ly/MaryCherry 🔔 ⇩OPEN ME FOR MORE INFORMATION ⇩ ﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌ ❤️️ MY MERCH❤️️: https://teespring.com/stores/marycherry ✨Donate to the channel✨: https://paypal.me/marycherryofficial 💋NEW CHANNEL💋: https://www.youtube.com/channel/UC-C70aZ6Tx2MKQQx4RtgdMA ﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌ ☽ follow me☽ ✰https://www.twitch.tv/maryycherryy ✰http://instagram.com/maryycherryy ✰http://twitter.com/maryycherryy ✰https://www.fb.me/MaryCherryOfficial ﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌ Frequently asked questions (FAQs): https://docs.google.com/document/d/1_FkcwQ0vPAAk53YVyo-ChXc9AuX1pn5gbctrOkX13xA/ ﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌ music: ATAMONE - https://open.spotify.com/artist/4ewpGbPN16YHnt8CTfY9oY?si=bbLU95lJQq6Cb4CpHauyiQ ﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌ Thanks to my top tier patrons for their support: Ryan Ernst, Michael Sumner, Caleb Harrelson & Ordthelion ﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌
https://wn.com/First_Time_Watching_Firefly_Episode_10_Trash_Reaction_Review_She's_Crazy_Hilarious
First Time Watching Firefly - Trash (Episode 11) | REACTION
24:16

First Time Watching Firefly - Trash (Episode 11) | REACTION

  • Order:
  • Duration: 24:16
  • Uploaded Date: 08 Dec 2022
  • views: 5595
The Target Audience are watching Firefly for the first time!! Join them as they react to the episode 11 the beloved tv series Trash FULL UNCUT reaction & discussion on our Patreon! Patreon: https://www.patreon.com/TargetAudience?fan_landing=true 0:00 Intro 2:29 Reaction 17:37 Discussion
https://wn.com/First_Time_Watching_Firefly_Trash_(Episode_11)_|_Reaction
Firefly 1x11 REACTION!! "Trash"
17:17

Firefly 1x11 REACTION!! "Trash"

  • Order:
  • Duration: 17:17
  • Uploaded Date: 18 Aug 2018
  • views: 37058
Eric and Calvin react to and discuss season 1 episode 11 of Firefly Trash Vote in our polls and see certain Blind Wave videos early!! http://www.patreon.com/blindwave Blind Wave is Sponsored on Patreon by: Keyboard Junkie and The Blind Wave Discord Family Website http://www.blindwave.net Twitter : http://www.twitter.com/blindwaveprod FaceBook : http://www.facebook.com/BlindWaveProductions Twitch: http://www.twitch.tv/blindwave Discord: https://discord.gg/blindwave Snapchat: blind_wave Subreddit: http://www.reddit.com/r/blindwave Send us Stuff at: P.O. Box 304 Marietta, OH 45750
https://wn.com/Firefly_1X11_Reaction_Trash
  • The Stalin - Trash (FULL ALBUM)

    1. 解剖室 0:00 2. 冷蔵庫 2:01 3. TRASH 3:34 4. 天上ペニス 4:45 5. 革命的日常 6:28 6. 主義者 9:40 7. インテリゲンチャー 10:59 8. バキューム 12:17 9. BIRD 14:28 10. 溺愛 15:30 11. メシ喰わせろ 20:41 12. ハエ 24:20 13. ハードコア 26:03 14. 猟奇ハンター 27:39 15. 電動コケシ 29:27 16. アーチスト 32:17 17. 豚に真珠 36:02 18. GASS 37:55 19. サル 39:00 20. 撲殺 39:35 Genre: Punk Rock, Hardcore

    published: 09 Aug 2014
  • The Stalin – Trash

    The Stalin – Trash 1. 解剖室 2. 冷蔵庫 3. Trash 4. 天上ペニス 5. 革命的日常 6. 主義者 (イスト) 7. インテリゲンチャー 8. バキューム 9. Bird 10. 溺愛 11. メシ喰わせろ 12. ハエ 13. ハード・コア 14. 猟奇ハンター 15. 電動コケシ 16. アーチスト 17. ブタに真珠 18. Gass 19. サル 20. 撲殺 released on Political Records in 1981

    published: 03 Nov 2022
  • The STALIN スターリン TRASH トラッシュ LP

    ブログ完全復活、言いたいこと言わせてもらってます。 パンクおやじの魂の叫び  同世代のお父さん、お母さん、良かったらブログ読んでね https://ameblo.jp/nickey0305 The STALIN " TRASH " LP 1981 POLITICAL RECORDS スターリンのインディーズ時代のLPです。 放送禁止用語等含まれており再発やCD化されてません。 0:00 解剖室 2:01 冷蔵庫 3:36 TRASH 4:50 天上ペニス 6:33 革命的日常 9:49 主義者(イスト) 11:11 インテリゲンチャー 12:31 バキューム 14:43 Bird 15:47 溺愛

    published: 15 Jun 2014
  • The Stalin - Fish Inn (Full Album)

    Album: Fish Inn Artist: The Stalin Genre: Punk Year: 1984 Country: Japan 廃魚 0:00 M-16 (マイナー・シックスティーン) 4:49 T-Legs 9:39 バイ・バイ・”ニーチェ” 16:23 アクマデ憐レム歌 19:07 Fish Inn 25:23 Buy here: https://itunes.apple.com/us/album/fish-inn/id999403635

    published: 24 Sep 2015
  • The Stalin - 虫 (FULL ALBUM)

    published: 18 Jul 2014
  • THE STALIN TRASH スターリン トラッシュ  3 Tracks

    スターリン インディーズ時代の1st 自主制作アルバム " TRASH " より3曲 大掃除でレコード棚を整理しながらジャケット見ていてやっぱかっこいいと言う事で勝手にアップ 0:00 TRASH 1:05 天上ペニス 2:49 革命的 日常 A面のスタジオサイドより、あまりアップされないこの曲ですが、40年前の混沌としたエネルギーを感じてください。 ミチロウ、ありがとう。 パンクおやじの魂の叫び  同世代のお父さん、お母さん、良かったらブログ読んでね  と言っても数年アップしてません 笑 https://ameblo.jp/nickey0305

    published: 29 Dec 2021
  • The Stalin - Stop Jap Naked (Remastered) [Full Album]

    0:00:00 [01] Romanchisuto (ロマンチスト, Romanticist) 0:02:12 [02] STOP JAP 0:04:02 [03] Gokuraku Tonbo (極楽トンボ, Happy-Go-Lucky) 0:04:48 [04] Tama Negi Batake (玉ネギ畑, Onion Field) 0:07:19 [05] Sōsēji no Medama (ソーセージの目玉, Sausage Eyeballs) 0:08:33 [06] Gesuidō no Petenshi (下水道のペテン師, Swindler in the Sewer) 0:10:28 [07] Arerugī α (アレルギーα, Allergy A) 0:11:23 [08] Yokujō (欲情, Lust) 0:13:07 [09] MONEY 0:16:39 [10] STOP GIRL 0:20:35 [11] Bakuretsu Heddo (爆裂ヘッド, Burst Head) 0:23:15 [12] MISER 0:26:02 [13] Makeinu (負け犬, Coward) 0:28:04 [14] Arerugī β (アレルギーβ, Allergy B) 0:28:59 [15] Warushawa no Gensō (ワルシャワの幻想, Fantasy of Warsaw) 0:34:46 [16] LIGHT MY FIRE 0:36:42 [17] NO FUN 0:39:40 [18] YOU 0:43:09 [19] Nebā Maindo Za Borokkasu (ネバー・マインド・ザ・ボロッカス, Nevermind the Bollocks) Ever since I first heard the「ロマン...

    published: 02 Nov 2013
  • THE STALIN - Stop Jap (1982) Full Album

    TRACKLIST: 1.Romanchisuto (ロマンチスト Romantist) 00:00 2.Stop Jap 02:09 3.Gokuraku Tonbo (極楽トンボ Happy-Go-Lucky) 04:02 4.Tama Negi Hatake (玉ネギ畑 Onion Field) 04:49 5.Sōsēji no Medama (ソーセージの目玉 Eyeballs of Sausage) 07:17 6.Gesuidō no Petenshi (下水道のペテン師 Swindler In The Sewer) 08:34 7.Arerugī α (アレルギーα Allergy α) 10:32 8.Yokujō (欲情 Lust) 11:28 9.Money 13:13 10.Stop Girl 16:44 11.Bakuretsu Heddo (爆裂ヘッド Burst Head) 20:41 12 Miser 23:23 13.Makeinu (負け犬 Loser) 26:08 14.Arerugī β (アレルギーβ Allergy β) 28:13 15.Warushawa no Gensō (ワルシャワの幻想 Fantasy in Warsaw) 29:12 Climax Records CMC-2505S Vinyl,LP 1982. Credits: Bass -- 杉山シンタロウ Drums -- イヌイ・ジュン Guitar -- タム Vocals -- ミチロウ ----------------------------------------------------- THE STALIN The Stalin (ザ・スターリン?, stylized as THE STALIN) wer...

    published: 13 Sep 2013
  • The Stalin - Trash LP 1981 - Kakumei Tekinichi Jyou

    Posted with a love of skronk and not a whit of understanding re: the lyrics.

    published: 03 Feb 2011
developed with YouTube
The Stalin - Trash (FULL ALBUM)
43:13

The Stalin - Trash (FULL ALBUM)

  • Order:
  • Duration: 43:13
  • Uploaded Date: 09 Aug 2014
  • views: 209681
1. 解剖室 0:00 2. 冷蔵庫 2:01 3. TRASH 3:34 4. 天上ペニス 4:45 5. 革命的日常 6:28 6. 主義者 9:40 7. インテリゲンチャー 10:59 8. バキューム 12:17 9. BIRD 14:28 10. 溺愛 15:30 11. メシ喰わせろ 20:41 12. ハエ 24:20 13. ハードコア 26:03 14. 猟奇ハンター 27:39 15. 電動コケシ 29:27 16. アーチスト 32:17 17. 豚に真珠 36:02 18. GASS 37:55 19. サル 39:00 20. 撲殺 39:35 Genre: Punk Rock, Hardcore
https://wn.com/The_Stalin_Trash_(Full_Album)
The Stalin – Trash
43:07

The Stalin – Trash

  • Order:
  • Duration: 43:07
  • Uploaded Date: 03 Nov 2022
  • views: 1626
The Stalin – Trash 1. 解剖室 2. 冷蔵庫 3. Trash 4. 天上ペニス 5. 革命的日常 6. 主義者 (イスト) 7. インテリゲンチャー 8. バキューム 9. Bird 10. 溺愛 11. メシ喰わせろ 12. ハエ 13. ハード・コア 14. 猟奇ハンター 15. 電動コケシ 16. アーチスト 17. ブタに真珠 18. Gass 19. サル 20. 撲殺 released on Political Records in 1981
https://wn.com/The_Stalin_–_Trash
The STALIN スターリン TRASH  トラッシュ LP
20:54

The STALIN スターリン TRASH トラッシュ LP

  • Order:
  • Duration: 20:54
  • Uploaded Date: 15 Jun 2014
  • views: 15087
ブログ完全復活、言いたいこと言わせてもらってます。 パンクおやじの魂の叫び  同世代のお父さん、お母さん、良かったらブログ読んでね https://ameblo.jp/nickey0305 The STALIN " TRASH " LP 1981 POLITICAL RECORDS スターリンのインディーズ時代のLPです。 放送禁止用語等含まれており再発やCD化されてません。 0:00 解剖室 2:01 冷蔵庫 3:36 TRASH 4:50 天上ペニス 6:33 革命的日常 9:49 主義者(イスト) 11:11 インテリゲンチャー 12:31 バキューム 14:43 Bird 15:47 溺愛
https://wn.com/The_Stalin_スターリン_Trash_トラッシュ_Lp
The Stalin - Fish Inn (Full Album)
36:09

The Stalin - Fish Inn (Full Album)

  • Order:
  • Duration: 36:09
  • Uploaded Date: 24 Sep 2015
  • views: 49275
Album: Fish Inn Artist: The Stalin Genre: Punk Year: 1984 Country: Japan 廃魚 0:00 M-16 (マイナー・シックスティーン) 4:49 T-Legs 9:39 バイ・バイ・”ニーチェ” 16:23 アクマデ憐レム歌 19:07 Fish Inn 25:23 Buy here: https://itunes.apple.com/us/album/fish-inn/id999403635
https://wn.com/The_Stalin_Fish_Inn_(Full_Album)
The Stalin - 虫 (FULL ALBUM)
32:16

The Stalin - 虫 (FULL ALBUM)

  • Order:
  • Duration: 32:16
  • Uploaded Date: 18 Jul 2014
  • views: 189612
https://wn.com/The_Stalin_虫_(Full_Album)
THE STALIN TRASH スターリン トラッシュ  3 Tracks
6:11

THE STALIN TRASH スターリン トラッシュ  3 Tracks

  • Order:
  • Duration: 6:11
  • Uploaded Date: 29 Dec 2021
  • views: 1044
スターリン インディーズ時代の1st 自主制作アルバム " TRASH " より3曲 大掃除でレコード棚を整理しながらジャケット見ていてやっぱかっこいいと言う事で勝手にアップ 0:00 TRASH 1:05 天上ペニス 2:49 革命的 日常 A面のスタジオサイドより、あまりアップされないこの曲ですが、40年前の混沌としたエネルギーを感じてください。 ミチロウ、ありがとう。 パンクおやじの魂の叫び  同世代のお父さん、お母さん、良かったらブログ読んでね  と言っても数年アップしてません 笑 https://ameblo.jp/nickey0305
https://wn.com/The_Stalin_Trash_スターリン_トラッシュ_3_Tracks
The Stalin - Stop Jap Naked (Remastered) [Full Album]
47:15

The Stalin - Stop Jap Naked (Remastered) [Full Album]

  • Order:
  • Duration: 47:15
  • Uploaded Date: 02 Nov 2013
  • views: 138843
0:00:00 [01] Romanchisuto (ロマンチスト, Romanticist) 0:02:12 [02] STOP JAP 0:04:02 [03] Gokuraku Tonbo (極楽トンボ, Happy-Go-Lucky) 0:04:48 [04] Tama Negi Batake (玉ネギ畑, Onion Field) 0:07:19 [05] Sōsēji no Medama (ソーセージの目玉, Sausage Eyeballs) 0:08:33 [06] Gesuidō no Petenshi (下水道のペテン師, Swindler in the Sewer) 0:10:28 [07] Arerugī α (アレルギーα, Allergy A) 0:11:23 [08] Yokujō (欲情, Lust) 0:13:07 [09] MONEY 0:16:39 [10] STOP GIRL 0:20:35 [11] Bakuretsu Heddo (爆裂ヘッド, Burst Head) 0:23:15 [12] MISER 0:26:02 [13] Makeinu (負け犬, Coward) 0:28:04 [14] Arerugī β (アレルギーβ, Allergy B) 0:28:59 [15] Warushawa no Gensō (ワルシャワの幻想, Fantasy of Warsaw) 0:34:46 [16] LIGHT MY FIRE 0:36:42 [17] NO FUN 0:39:40 [18] YOU 0:43:09 [19] Nebā Maindo Za Borokkasu (ネバー・マインド・ザ・ボロッカス, Nevermind the Bollocks) Ever since I first heard the「ロマンチスト」single, I've known that The Stalin were one of the great luminaries of the hardcore and art punk movements, with an incredible sense for crafting brain-worming melodies, entropic chaos, and haunting, elegant, grotesque, exhilarating lyrics which explored in great depth "The Stalin": behind every perfect, beautiful idea that could save mankind from itself lies a horrific, disgraceful downside. Halos of spent human existence bellow out of the smokestacks of Warsaw like toasts to destitution; mama country and papa dictator betray you just as all of your fellow man in a nation of disarray, and so too your own mother and father; after the words of Nietzsche influence the world to send human beings to the gas chambers and split atoms over the heads of a million all we say is "Bye-Bye Nietzsche, but it was fun, so let's play again sometime!"; personalities and sanity draining out of the minds of subjugated people as they are sentenced to perform the same mundane routine of picking white onions in Kolkhoz until their final onion-breath is spent from their lungs; every proposed solution from the anarchist, nationalist, Stalinist, opportunist, stylist, formalist, liberalist, humanist, socialist, -ist, -ist, -ist, -ist, will only fill those who subscribe with fleeting romantic visions as they fail miserably and find reality only further wrecked for their passions; the pulsing heart at the core of the artist and the dictator are revealed as one and the same tragedy; and at the darkest depths of it, in secret, the greatest, most haunting disgrace of it all: in the intimate dead of night, in the arms of the one we call our soul mate, we have forgotten what it means to love. It's all there. This is not only one of the greatest hardcore bands, punk bands, or 80's bands, they are simply one of the greatest bands of all time, held back only by the fact that their language is often an alienating one to the western world, thus they remain consigned to their obscure place in the recesses of hardcore punk and ero-guro aficionado notoriety, with perhaps some passing interest from the rare otaku, and largely left in Japan's own hyper-modernist dust -- always seen as a bit too offensive for one extreme and a bit too artsy for the other in their native country to begin with. Stop Jap Naked doesn't solve the issue that ザ・スターリン will likely never get their due credit. It does, however, bring the sounds of the seminal classic to an entirely new level, morphing Stop Jap's greatest --「ロマンチスト」, 「STOP JAP」,「 アレルギーα」,「爆裂ヘッド」,「ワルシャワの幻想」-- into magnificent, brain-bashing sonic feats, propelling already classic songs to universal "EVERYONE MUST HEAR THIS" status, and dredging the songs in between up from the muck of fuzz and flat tones and revealing them to be each a piece de resistance in and of themselves. This is the least punk thing I've ever said, but taking this 1982 album which I already adored and blowing it up with 2007 production somehow makes the entire thing seem more "real" and visceral -- it sounds like listening to a full-on movement rather than another bizarro hardcore release; the make-up and blood and garbage and flung pig-heads that defined their infamous stage shows no longer feel gratuitous -- it all feels like culture in motion. Factor in the only successful Doors cover in existence and a rendition of The Stooges'「NO FUN」that'll keep you from putting on that Iggy vinyl for weeks and you've completely run out of excuses not to be goose-stepping down the sidewalk, pumping your fist, and shouting "STALIN! STALIN! STALIN! STALIN!"
https://wn.com/The_Stalin_Stop_Jap_Naked_(Remastered)_Full_Album
THE STALIN - Stop Jap  (1982) Full Album
34:44

THE STALIN - Stop Jap (1982) Full Album

  • Order:
  • Duration: 34:44
  • Uploaded Date: 13 Sep 2013
  • views: 322815
TRACKLIST: 1.Romanchisuto (ロマンチスト Romantist) 00:00 2.Stop Jap 02:09 3.Gokuraku Tonbo (極楽トンボ Happy-Go-Lucky) 04:02 4.Tama Negi Hatake (玉ネギ畑 Onion Field) 04:49 5.Sōsēji no Medama (ソーセージの目玉 Eyeballs of Sausage) 07:17 6.Gesuidō no Petenshi (下水道のペテン師 Swindler In The Sewer) 08:34 7.Arerugī α (アレルギーα Allergy α) 10:32 8.Yokujō (欲情 Lust) 11:28 9.Money 13:13 10.Stop Girl 16:44 11.Bakuretsu Heddo (爆裂ヘッド Burst Head) 20:41 12 Miser 23:23 13.Makeinu (負け犬 Loser) 26:08 14.Arerugī β (アレルギーβ Allergy β) 28:13 15.Warushawa no Gensō (ワルシャワの幻想 Fantasy in Warsaw) 29:12 Climax Records CMC-2505S Vinyl,LP 1982. Credits: Bass -- 杉山シンタロウ Drums -- イヌイ・ジュン Guitar -- タム Vocals -- ミチロウ ----------------------------------------------------- THE STALIN The Stalin (ザ・スターリン?, stylized as THE STALIN) were an influential Japanese punk rock band formed in June 1980, by leader and vocalist Michiro Endo. After numerous member changes, he disbanded the group in February 1985. In May 1987 Michiro formed a group called Video Stalin, which mostly made videos instead of albums, they disbanded in 1988. In 1989 Michiro created a new band named Stalin and continued to make music with them until 1993. Circa 1979, Michiro Endo, a 29 year-old socialist activist, formed a punk band called Jieitai (自衛隊?), named after Japan's Self-Defense Forces. Several of their songs would later become The Stalin songs, such as "Ideologist", "Niku" and their versions of "No Fun" and "Light My Fire". 1980--1981: Beginning In June 1980 Endo formed The Stalin. He chose the name because "Joseph Stalin is very hated by most people in Japan, so it is very good for our image."Originally a three piece with Endo on vocals and bass, Atsushi on guitar and Jun on drums. Shintaro joined as bassist later in the month, however their first single, "Dendou Kokeshi", was already recorded without him and was released on September 5, 1980. On April 7, 1981, they released the Stalinism EP. In July Tam replaced Atsushi on guitar. On November 4, at a live performance at Kanto Gakuin High School, Endo is arrested for indecent exposure. On December 24, 1981, they released their first full length album, the half studio/half live, Trash. 1982--1985: The End The Stalin were one of the bands to star in Sogo Ishii's movie Burst City, released on March 13, 1982.Their concert on June 24 was the last with drummer Jun, however he still appears on their major label debut album Stop Jap, as well as their first major label single "Romantist", both released on July 1, as they were recorded before he left. "Romantist" is a reworked version of "Ideologist" from Trash, and has become their most well-known song worldwide. Hitoshi joins as drummer in July 1982. Sogo Ishii also directed a promotional video for "Romantist", as well as "Stop Jap" and their next single "Allergy", which was released on August 25. Their concert on September 27, 1982, was the last with Hitoshi. In November Keigo joins on drums, but leaves in December along with Tam. In January 1983, Makoto joins on guitar and Tatsuya on drums. On February 10, they released their fourth single "Go Go Stalin". Their next album Mushi and single "Nothing", are both released on April 25. After a June 11 gig, Makoto and Tatsuya leave. Also in June 1983 Shintaro leaves. At a concert on September 17, Teruya and former member Jun, play as guest support on guitar and drums respectively. In early 1984, June-Bleed joins as guitarist. But on March 17, 1984, he leaves and is eventually replaced by Masahiro. Also in March, Jun rejoins the band on drums and Teruya joins as bassist. In May, their song "Chicken Farm" appeared on MRR's international Welcome to 1984 compilation.The concert on June 3 was the last with Masahiro and Teruya. Also in June Hiroshi would become support bassist, never officially joining. Masayuki joined on guitar in August 1984. Their last album Fish Inn was released on November 20. After their concert on December 29, Endo announced "This is the end of The Stalin". Although their true last concert was held on February 21, 1985 at Chofu Daiei Studio and was entitled "I was the Stalin". The show was recorded and released, on both VHS, Last Live - Zessan Kaisan Naka!!, and double LP, For Never - Last Live, on May 25, 1985. (Wikipedia)
https://wn.com/The_Stalin_Stop_Jap_(1982)_Full_Album
The Stalin - Trash LP 1981 - Kakumei Tekinichi Jyou
3:14

The Stalin - Trash LP 1981 - Kakumei Tekinichi Jyou

  • Order:
  • Duration: 3:14
  • Uploaded Date: 03 Feb 2011
  • views: 989
Posted with a love of skronk and not a whit of understanding re: the lyrics.
https://wn.com/The_Stalin_Trash_Lp_1981_Kakumei_Tekinichi_Jyou
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Firefly 1x11 Reaction | Trash
    38:24
    Firefly 1x11 Reaction | Trashremove from playlist
  • Firefly Trash Reaction Episode 11 | First Time Watching
    24:43
    Firefly Trash Reaction Episode 11 | First Time Watchingremove from playlist
  • A Look at Trash (Firefly) 1of2
    7:35
    A Look at Trash (Firefly) 1of2remove from playlist
  • Firefly clip: Infirmary scene from Trash
    2:49
    Firefly clip: Infirmary scene from Trashremove from playlist
  • Reacting to FIREFLY 1x11 (Trash) | Reaction
    16:56
    Reacting to FIREFLY 1x11 (Trash) | Reactionremove from playlist
  • Reacting to FIREFLY!! (Ep. 11 - TRASH)
    18:17
    Reacting to FIREFLY!! (Ep. 11 - TRASH)remove from playlist
  • FIRST TIME WATCHING: Firefly Episode 11 (Trash) - SAFFRON!!! 🥰🥰
    21:39
    FIRST TIME WATCHING: Firefly Episode 11 (Trash) - SAFFRON!!! 🥰🥰remove from playlist
  • FIRST TIME WATCHING: Firefly Episode 10
    17:00
    FIRST TIME WATCHING: Firefly Episode 10 "Trash" Reaction & Review / she's crazy & hilariousremove from playlist
  • First Time Watching Firefly - Trash (Episode 11) | REACTION
    24:16
    First Time Watching Firefly - Trash (Episode 11) | REACTIONremove from playlist
  • Firefly 1x11 REACTION!!
    17:17
    Firefly 1x11 REACTION!! "Trash"remove from playlist
developed with YouTube
PLAYLIST TIME:

Firefly 1x11 Reaction | Trash

#firefly #firsttimewatching #gonetoosoon 0:00 Opening 9:21 Trash 29:03 Ending Editing and Visual Elements: Xander What Channel Art work and Animations: Xander What SEND ME STUFF: PO Box 778372 Henderson, NV 89077 Liquid IV affiliate link: https://glnk.io/koyv/funnylilgalreacts or use code: FUNNYLILGALREACTS at check out for 15% off your order and free shipping. (I need it more than Amazon does!) ************************************************************************************** Patreon: https://www.patreon.com/funnylilgalreacts Instagram : funnylilgalreacts Email: funnylilgalreacts@gmail.com ************************************************************************************** PLAYLISTS https://www.youtube.com/playlist?list=PLv8NdzitlOKEQoYR558sNX6SAMQP-z0Ph https://www.youtube.com/playlist?list=PLv8NdzitlOKGGtYEX5S82LIAWAeN0NplQ https://www.youtube.com/playlist?list=PLv8NdzitlOKF2Dp9xdFC-VM_DkDl6nXCt https://www.youtube.com/playlist?list=PLv8NdzitlOKEcAbabaIxH8dJQ8fuzgIzv https://www.youtube.com/playlist?list=PLv8NdzitlOKH-iXSu5b1fTAMj-MF2OJkd https://www.youtube.com/playlist?list=PLv8NdzitlOKE13it_gDGBZ_XL8VYrZ_90 https://www.youtube.com/playlist?list=PLv8NdzitlOKF7jaJ-a-H3cxDmzERs1QI8 https://www.youtube.com/playlist?list=PLv8NdzitlOKFwOjrLhW4MRAkY0rFZsQcf https://www.youtube.com/playlist?list=PLv8NdzitlOKFiXu5Z_zA3WXX04s-Xlp6H https://www.youtube.com/playlist?list=PLv8NdzitlOKEy-Z8zGYV6zaZVvPtjtNSA https://www.youtube.com/playlist?list=PLv8NdzitlOKHAvq7DukVz8MkUol8aKwsR https://www.youtube.com/playlist?list=PLv8NdzitlOKHV60Fi4KOLEmFgOzlfLK46 https://www.youtube.com/playlist?list=PLv8NdzitlOKGspRcJtlDAMIKni3iU7p46 https://www.youtube.com/playlist?list=PLv8NdzitlOKEUu9KGXrL3R7H5CkqdAQpl https://www.youtube.com/playlist?list=PLv8NdzitlOKH9fXysj3J9k58EPPsJLhaJ https://www.youtube.com/playlist?list=PLv8NdzitlOKFef7Es2TM0uD4VIksPgiqZ https://www.youtube.com/playlist?list=PLv8NdzitlOKF86xjJ88QgxJ83FXRiiU0y https://www.youtube.com/playlist?list=PLv8NdzitlOKExljMIeUWhqFOhsTZhxPwy https://www.youtube.com/playlist?list=PLv8NdzitlOKE8usbmgPOoReOD0rQJHnmy https://www.youtube.com/playlist?list=PLv8NdzitlOKE4ruMsjwJ9iGhQjgqrMczN https://www.youtube.com/playlist?list=PLv8NdzitlOKERFnm3_eQz0ddBD06fdsMu Copyright Disclaimer under Section 107 of the copyright act 1976, allowance is made for fair use for purposes such as criticism, comment, news reporting, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use.
38:24
Firefly 1x11 Reaction | Trash
#firefly #firsttimewatching #gonetoosoon 0:00 Opening 9:21 Trash 29:03 Ending Editing a...
published: 13 Jun 2023
Play in Full Screen
24:43
Firefly Trash Reaction Episode 11 | First Time Watching
Firefly Trash Reaction Episode 11 | First Time Watching ----------------------------------...
published: 27 Dec 2022
Play in Full Screen
7:35
A Look at Trash (Firefly) 1of2
Saffron returns, but don't worry, it's for a heist they can help with! And that definitely...
published: 04 Feb 2023
Play in Full Screen
2:49
Firefly clip: Infirmary scene from Trash
My fave Jayne/Simon scene. Simon gets back at Jayne in a very uncharacteristic way... some...
published: 22 Dec 2015
Play in Full Screen
16:56
Reacting to FIREFLY 1x11 (Trash) | Reaction
Thank you for joining me as I react to Firefly for the first time. I hope you enjoy the vi...
published: 09 May 2023
Play in Full Screen
18:17
Reacting to FIREFLY!! (Ep. 11 - TRASH)
Hey guys! Welcome back to my channel and thanks for checking out this video! This was su...
published: 06 Dec 2020
Play in Full Screen
21:39
FIRST TIME WATCHING: Firefly Episode 11 (Trash) - SAFFRON!!! 🥰🥰
Our first time watching Firefly: In this episode, we see Mal naked in the desert and Saffr...
published: 04 May 2022
Play in Full Screen
17:00
FIRST TIME WATCHING: Firefly Episode 10 "Trash" Reaction & Review / she's crazy & hilarious
🚨UNCUT, EARLY ACCESS, BLOOPERS & MORE: https://www.patreon.com/marycherryofficial 🔴 subscr...
published: 27 Jul 2021
Play in Full Screen
24:16
First Time Watching Firefly - Trash (Episode 11) | REACTION
The Target Audience are watching Firefly for the first time!! Join them as they react to t...
published: 08 Dec 2022
Play in Full Screen
17:17
Firefly 1x11 REACTION!! "Trash"
Eric and Calvin react to and discuss season 1 episode 11 of Firefly Trash Vote in our pol...
published: 18 Aug 2018
Play in Full Screen

Trash (Firefly)

"Trash" is the eleventh episode of the science fiction television series Firefly created by Joss Whedon. It is the first of three episodes that were not broadcast in the original 2002 Fox run.

Mal's "wife" Saffron convinces him to help her steal a valuable artifact, but the crew of Serenity suspects foul play.

Synopsis

The episode opens in a desert, where a naked Mal sits on a rock, staring into the distance and saying to himself: "Yeah… that went well."

During a cargo transfer 72 hours earlier, Mal meets up with Monty, a war buddy and fellow Browncoat turned smuggler. As Monty's crew unloads cargo, he tells Mal that he's gotten married, introducing his wife Bridget. "Bridget" turns out to be Mal's nemesis Saffron, and a fight breaks out between them. Enraged to learn of Saffron's double-dealing, Monty leaves without her, stranding her on the deserted moon where Mal is waiting for a pickup. Mal orders Saffron to walk away and be left behind, but reconsiders when she tempts him with the prospect of a lucrative heist. Later, Serenity arrives to pick up Mal and the unloaded cargo. Later Mal lets Saffron out of one of the loaded crates in the cargo bay.

  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • The Stalin - Trash (FULL ALBUM)
    43:13
    The Stalin - Trash (FULL ALBUM)remove from playlist
  • The Stalin – Trash
    43:07
    The Stalin – Trashremove from playlist
  • The STALIN スターリン TRASH  トラッシュ LP
    20:54
    The STALIN スターリン TRASH トラッシュ LPremove from playlist
  • The Stalin - Fish Inn (Full Album)
    36:09
    The Stalin - Fish Inn (Full Album)remove from playlist
  • THE STALIN TRASH スターリン トラッシュ  3 Tracks
    6:11
    THE STALIN TRASH スターリン トラッシュ  3 Tracksremove from playlist
  • The Stalin - Stop Jap Naked (Remastered) [Full Album]
    47:15
    The Stalin - Stop Jap Naked (Remastered) [Full Album]remove from playlist
  • THE STALIN - Stop Jap  (1982) Full Album
    34:44
    THE STALIN - Stop Jap (1982) Full Albumremove from playlist
developed with YouTube
PLAYLIST TIME:

The Stalin - Trash (FULL ALBUM)

1. 解剖室 0:00 2. 冷蔵庫 2:01 3. TRASH 3:34 4. 天上ペニス 4:45 5. 革命的日常 6:28 6. 主義者 9:40 7. インテリゲンチャー 10:59 8. バキューム 12:17 9. BIRD 14:28 10. 溺愛 15:30 11. メシ喰わせろ 20:41 12. ハエ 24:20 13. ハードコア 26:03 14. 猟奇ハンター 27:39 15. 電動コケシ 29:27 16. アーチスト 32:17 17. 豚に真珠 36:02 18. GASS 37:55 19. サル 39:00 20. 撲殺 39:35 Genre: Punk Rock, Hardcore
43:13
The Stalin - Trash (FULL ALBUM)
1. 解剖室 0:00 2. 冷蔵庫 2:01 3. TRASH 3:34 4. 天上ペニス 4:45 5. 革命的日常 6:28 6. 主義者 9:40 7. インテ...
published: 09 Aug 2014
Play in Full Screen
43:07
The Stalin – Trash
The Stalin – Trash 1. 解剖室 2. 冷蔵庫 3. Trash 4. 天上ペニス 5. 革命的日常 6. 主義者 (イスト) 7. インテリゲンチャ...
published: 03 Nov 2022
Play in Full Screen
20:54
The STALIN スターリン TRASH トラッシュ LP
ブログ完全復活、言いたいこと言わせてもらってます。 パンクおやじの魂の叫び  同世代のお父さん、お母さん、良かったらブログ読んでね https://ameblo.jp/nickey...
published: 15 Jun 2014
Play in Full Screen
36:09
The Stalin - Fish Inn (Full Album)
Album: Fish Inn Artist: The Stalin Genre: Punk Year: 1984 Country: Japan 廃魚 0:00 M-16 (マイ...
published: 24 Sep 2015
Play in Full Screen
32:16
The Stalin - 虫 (FULL ALBUM)
published: 18 Jul 2014
Play in Full Screen
6:11
THE STALIN TRASH スターリン トラッシュ  3 Tracks
スターリン インディーズ時代の1st 自主制作アルバム " TRASH " より3曲 大掃除でレコード棚を整理しながらジャケット見ていてやっぱかっこいいと言う事で勝手にアップ 0...
published: 29 Dec 2021
Play in Full Screen
47:15
The Stalin - Stop Jap Naked (Remastered) [Full Album]
0:00:00 [01] Romanchisuto (ロマンチスト, Romanticist) 0:02:12 [02] STOP JAP 0:04:02 [03] Gokurak...
published: 02 Nov 2013
Play in Full Screen
34:44
THE STALIN - Stop Jap (1982) Full Album
TRACKLIST: 1.Romanchisuto (ロマンチスト Romantist) 00:00 2.Stop Jap 02:09 3.Gokuraku Tonbo (極...
published: 13 Sep 2013
Play in Full Screen
3:14
The Stalin - Trash LP 1981 - Kakumei Tekinichi Jyou
Posted with a love of skronk and not a whit of understanding re: the lyrics.
published: 03 Feb 2011
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)); } }); }); }); // -->
×