- published: 15 Nov 2024
- views: 45561
'+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; })); }); -->
Against Me! is an American punk rock band formed in Gainesville, Florida, United States, in 1997 by singer and guitarist Laura Jane Grace. Since 2001, the band's lineup has also included guitarist James Bowman. After releasing three studio albums through independent record labels, Against Me! moved to Sire Records for 2007's New Wave, which reached no. 57 on the Billboard 200. Their fifth album, 2010's White Crosses, was their most successful, reaching no. 34. In 2011 the band launched their own record label, Total Treble Music, through which they plan to release future albums. In 2012 Grace publicly came out as transgender, beginning a transition to living as a woman and dropping her birth name. The band finished recording their sixth studio album, Transgender Dysphoria Blues, during the summer of 2013, and released it on the twenty-first of January, 2014.
Against Me!, also known as The Acoustic EP, is the second widely distributed release by the punk band Against Me!. No tracks on the album contain any electric instruments or drums, only acoustic guitars and an acoustic bass. The original vinyl version, released November 2001, had four tracks, and two extra songs were included on the CD version released in February 2003. Electric versions of several songs appeared on the band's debut full-length Against Me! Is Reinventing Axl Rose.
This EP was never officially titled. The words "Acoustic EP" do not appear anywhere on the album or in the liner notes. In a manner similar to that of The Beatles's White Album, it is technically self-titled, but is nearly always referred to as The Acoustic EP, including on the band's official website.
On this recording, Against Me! is Laura Jane Grace and Dustin Fridkin.
All songs written and composed by Laura Jane Grace.
Personnel
Backing vocals- Adam Volk, Jordan Kleeman
Design- Laura Jane Grace, James Bowman, Dustin Fridkin, Jordan Kleeman
Against Me!, more commonly known as Tom's Demo Tape, or simply the First Demo, is a demo album and the first release by Laura Jane Grace under the name Against Me! in June 1997. Physical copies of the tape are extremely rare; (likely non- existant at this point), however, all 6 tracks can easily be found circulating on YouTube.
All lyrics and music written and composed by Laura Jane Grace.
Retrieved 2015-11-08
http://www.againstme.net/music http://rateyourmusic.com/release/ep/against_me_/toms_demo_tape/ http://exclaim.ca/music/article/against_me-this_room_feels_like_its_going_to_explode
Against Me!, the self-titled 12" EP by punk band Against Me! was their first real release. There were originally 500 copies of the record printed. However, due to a mastering defect on the vinyl, only 145 copies were originally released to the public, 50 of which were sold at the record release party. Thus, actual copies of the record are extremely rare, though the tracks are widely circulated on the internet. The remaining 355 copies were eventually released through personal sales by the band.
1 "Haste Killed Creativity" – 5:04
2 "I Am Citizen" – 2:56
3 "Walking Is Still Honest" – 3:28
4 "Rock'n'Roll Bullshit" – 3:24
5 "All Or Nothing" – 4:02
Personnel
Band-
Laura Jane Grace- Guitar, Vocals, Harmonica on "I Am Citizen"
Kevin Mahon- Drums, Percussion
http://www.discogs.com/Against-Me-Against-Me/release/1187174
Somethings just can't be subverted, all who tried have failed. Here we explore why. Checkout our brand new web comic: https://www.webtoons.com/en/canvas/fractal-fables/list?title_no=999212 Check out our Substack: https://substack.com/@pilgrimspass Consider supporting us on Patreon: patreon.com/pilgrimspass Music credits: Renaissance de Audionautix é licenciada de acordo com a licença Atribuição 4.0 da Creative Commons. https://creativecommons.org/licenses/by/4.0/ Artista: http://audionautix.com/ Folk Round de Kevin MacLeod é licenciada de acordo com a licença Atribuição 4.0 da Creative Commons. https://creativecommons.org/licenses/by/4.0/ Fonte: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100357 Artista: http://incompetech.com/ Stopping By the Inn de Twin Musico...
My new album I USED TO LOVE MY BODY is out NOW and available for download or streaming: http://jonathanmann.net/body Hi there! If you're new around these parts, welcome. I'm Jonathan Mann. I write a song every single day, and I've been doing that for the last 10+ years. Through sick days, tired days, days with no inspiration, the death of my grandma, the breakup of a 5 year long relationship, the marriage to my wife and the birth of our son - I've never missed a day. This is my life's work.
Have you been told the future is automated, orchestrated, service-oriented applications built on top of dynamic, on-demand, massively scalable infrastructure—serverless, anyone? But how do you go from here to there? At Betterment, they built a platform that goes beyond “lift and shift”. In this presentation, learn how they built a platform for tomorrow, with support for today’s legacy apps. Sophia Russell shares how they designed the tooling to encourage developers to build for the future while ensuring security and reliability—going deep into how the tooling ultimately guided their path, and why the principles behind everything helped them stay the course.
For hundreds of years, the Qin family has been expanding the territory for the Great Xia Dynasty, fighting in the south and the north with loyalty. However, because the sixth prince of the dynasty fell in love with Qin Shuangyue, the saint of the Qin family, he framed Qin Shuangyue's entire family. The head of the family, Qin Lie, fought all his life and was tortured to death. The scars on his body before the execution shocked the world. The eldest son was slandered for blaspheming the princess and beheaded! The second son was slandered for criticizing Emperor Xia and was torn apart by a chariot! The five-year-old younger brother was skinned and pulled out in front of the saint, and died tragically! Saint Qin Shuangyue followed the ancestral precepts and came to the Ten Thousand Mountains ...
Is there value in reclaiming repentance? The word itself connotes different things for all of us and, in this episode, Jeff and Allen unpack the stuff it brings up for them. Is it condemnation or invitation? Transformation or challenge? After the conversation, they try to guess who said what on another edition of Famous Christians for 100. Reclaiming Repentance Conversation (01:03) Famous Christians for 100 Segment (40:31) RELEVANT LINKS From Our Conversation on Reclaiming Repentance • Kirk Cameron (https://en.wikipedia.org/wiki/Kirk_Cameron) (Actor and Christian Personality) • Connect (http://connectmovie.com/) (2018 Film) • The Way of the Master (https://en.wikipedia.org/wiki/The_Way_of_the_Master) • Romans Road (https:/...
Qin Luo traveled to another world and became the Holy Son of Taixu Holy Land who was being judged. He was accused of being a spy of the Heavenly Demon Sect by his fiancée Bai Yueguang and the protagonist. All the disciples of the Holy Land criticized him. "Qin Luo killed his fellow disciples in the sect just to practice magic skills, the legendary magic skills, the Heaven-Swallowing Magic Skills!" "Qin Luo is not an orphan. He must have joined our Holy Land with a mission to subvert our Taixu Holy Land!" "I saw it with my own eyes. Qin Luo entered the forbidden area and stole the holy weapon of our Taixu Holy Land, the Taixu Bell!" "Qin Luo sneaked into the Sutra Pavilion a year ago and stole the Four Symbols Sword Technique!" "Brother, just plead guilty. I will plead for you. I will waste...
DEFCON 19 (2011) - Weaponizing Cyberpsychology & Subverting Cybervetting by Chris Summer, Ali B, Alien http://www.blackhattish.com
The religious consensus in Jesus' day called God's followers to avoid "sinful" people. Jesus decisively rejected this false teaching and replaced it with humility and love for all people. If you are a guest and are interested in evidence for the Bible, follow the link below if you'd like a free copy of Dennis McCallum's book on the subject, "Discovering God." Free copy: https://www.dwellcc.org/freedgbook
Spoken word poet and recent graduate of the University of Toronto Wali Shah held the audience captive as he described the toxic masculinity he was exposed to as a child and his fervent ambition to change that for the next generation with his future children. Shah spoke at The Walrus Talks Success on September 20, 2018 in Toronto.
Against Me! is an American punk rock band formed in Gainesville, Florida, United States, in 1997 by singer and guitarist Laura Jane Grace. Since 2001, the band's lineup has also included guitarist James Bowman. After releasing three studio albums through independent record labels, Against Me! moved to Sire Records for 2007's New Wave, which reached no. 57 on the Billboard 200. Their fifth album, 2010's White Crosses, was their most successful, reaching no. 34. In 2011 the band launched their own record label, Total Treble Music, through which they plan to release future albums. In 2012 Grace publicly came out as transgender, beginning a transition to living as a woman and dropping her birth name. The band finished recording their sixth studio album, Transgender Dysphoria Blues, during the summer of 2013, and released it on the twenty-first of January, 2014.
Mind game after mind game for the head-trip after all the shit. One step in advancement, numb to everything. Searching for the result, striving for resolution, offering no solution just more dogma for confusion. Fill you full of promise with your back against the wall; interpret a hopeless freedom where chains liberate the soul. Answers to silent questions from the idols of the dark. First present solution then we'll see about tearing down the walls...
Health all alone you find there's nothing left to fear, with the one exception of the message they conceal. Face placed on the master you find the mirror brings disgust. From the confines of this entrapment you can justify anger as lust. Blatant disregard to the feelings within, selling your own soul condescending nature flowing within. You can hate the system search for bricks to smash the state, but what's the point of revolution when no one can relate? For the finger falls one person short, the crosshairs turned around and you cry war. First present solution then we'll see about tearing down the walls...