- published: 03 Mar 2011
- views: 4039018
'+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; })); }); -->
HIDDEN ERROR: Usage of "spouse" is not recognized
Amanda MacKinnon Gaiman Palmer (born April 30, 1976), sometimes known as Amanda Fucking Palmer, is an American singer-songwriter who first rose to prominence as the lead singer, pianist, and lyricist/composer of the duo The Dresden Dolls. She has had a successful solo career, is also one-half of the duo Evelyn Evelyn, and is the lead singer and songwriter of Amanda Palmer and the Grand Theft Orchestra.
Palmer was born Amanda MacKinnon Palmer in New York City's Mount Sinai Hospital, and grew up in Lexington, Massachusetts. She attended Lexington High School, where she was involved in the drama department, and attended Wesleyan University where she was a member of the Eclectic Society. She staged performances based on work by the Legendary Pink Dots, an early influence, and was involved in the Legendary Pink Dots electronic mailing list, Cloud Zero. She then formed the Shadowbox Collective, devoted to street theatre and putting on theatrical shows (such as the 2002 play, Hotel Blanc, which she directed). Another early influence is Judy Blume, an author of children books.
Amanda Palmer is an Australian-English global media and film executive and international journalist, whose 18-year-career in film and media entertainment, content creation and entertainment platforms has spanned Australia, Britain, United States and the Middle East.
Palmer served as the Executive Director of Doha Film Institute (DFI), an organisation she set up on behalf of Qatar’s Sheikha Al-Mayassa bint Hamad bin Khalifa Al-Thani, as well as running the Doha Tribeca Film Festival (DTFF) from 2009 to 2012.
At DFI, Palmer oversaw three TEDx events, the most significant being TEDxSummit in April 2011 in Qatar, the first event of its kind.
Palmer resigned from DFI as Executive Director to set up her own company while consulting in multi-media, film, content and entertainment.
From 2006 to 2011 Palmer was also Head of Entertainment at Al Jazeera English and created, produced and presented flagship programs, including the cultural travel series “48” and flagship specialist film program, The Fabulous Picture Show, which was still broadcast in 2012 to global audiences.
A Problem is an obstacle which hinders the achievement of a particular goal, objective or purpose.
Problem(s) or The Problem may also refer to:
The Problem is an album by Wu-Tang Clan DJ Mathematics, released on 28 June 2005 by Nature Sounds. Most tracks have cameos by members of the Wu-Tang Clan. The Problem is Mathematics' second solo album.
The Problem is a one-act play by A. R. Gurney. It was originally performed in 1968 in Boston by a theatre group Gurney helped to organize called "The Theatre For Now". The reception was quiet but the play later opened to enthusiastic reviews at a popular playhouse in London, England and went on to be broadcast on BBC. Like many other of Gurney's other plays The Problem concerns WASPs of the American northeast.
The unnamed husband and wife do not share any feelings of love, closeness or even awareness. As the wife walks into the study of their home, she immediately reveals her hugely pregnant stomach to her husband who seems to not have noticed that she was ever pregnant. The Husband is completely unfazed and uninterested and almost leaves, until the Wife presents him with the possibility that the baby may not be his. The husband stays, remarkably and comically, calm . He only becomes slightly surprised when the Wife states that they have not had sex in five years; he does not realize it has been so long. While the Husband becomes apologetic for this lack of intimacy, the Wife assures him not to worry as she understands that his attention is always rightfully focused on his work. Without a care in the world they both over sympathize and let each other get away with anything and everything.
I love you. It's gonna be okay. I am a fully patron-supported artist. Please join our awesome, intelligent, weird and compassionate community (and support my ability to make non-commercial, ad-free art!) over here: https://www.patreon.com/amandapalmer. You can do it as little as $1/month and it means the world to me. AND, because I'm patron-supported, YAY, you can download this song for FREE (it's from the Australia-New-Zealand-themed album "Amanda Palmer Goes Down Under"), here: https://amandapalmer.bandcamp.com/track/in-my-mind-feat-brian-viglione ................................ Words, Music & Ukulele - Amanda Palmer ....and featuring the amazing Brian Viglione (of The Dresden Dolls) on Percussion -VIDEO- This video was made for practically no money, on practically no no...
Don't make people pay for music, says Amanda Palmer. Let them. In a passionate talk that begins in her days as a street performer (drop a dollar in the hat for the Eight-Foot Bride!), she examines the new relationship between artist and fan. TEDTalks is a daily video podcast of the best talks and performances from the TED Conference, where the world's leading thinkers and doers give the talk of their lives in 18 minutes (or less). Look for talks on Technology, Entertainment and Design -- plus science, business, global issues, the arts and much more. Find closed captions and translated subtitles in many languages at http://www.ted.com/translate Follow TED news on Twitter: http://www.twitter.com/tednews Like TED on Facebook: https://www.facebook.com/TED Subscribe to our channel: http://ww...
hi, i love you. this is the official patron-funded video for "drowning in the sound", directed by long-time art-brother michael pope & choreographed by coco karol. dancers: effy grey, alexi transparent, yeman brown, miguel angel guzman. to read more about the backstory & creation of this video, go here: https://www.patreon.com/posts/28477634 i am going to be TOURING sept-december 2019 in the U.K., Ireland & Europe. http://amandapalmer.net/shows “drowning in the sound” is from my second solo album There Will Be No Intermission, which came out march 2019. produced by john congelto, feat. musicians jherek bischoff, max henry & joey waronker. the album is here on bandcamp for $1: https://amandapalmer.bandcamp.com/album/there-will-be-no-intermission, or you can join my patreon for as littl...
Amanda Palmer's video for 'Astronaut' off the album Who Killed Amanda Palmer - available now on Roadrunner Records. Download now on iTunes: http://smarturl.it/whokilled LYRICS Is it enough to have some love small enough to slip inside a book small enough to cover with your hands because everyone around you wants to look is it enough to have some love small enough to fit inside the cracks the pieces dont fit together so good with all the breaking and all the gluing back and i am still not getting what i want i want to touch the back of your right arm i wish you could remind me who i was because every day Im a little further off but you are, my love, the astronaut flying in the face of science i will gladly stay an afterthought just bring back some nice reminders and is it getting har...
"Leeds United" From the debut solo album "Who Killed Amanda Palmer", produced by Ben Folds - Available now at http://music.amandapalmer.net For info on new videos and songs coming ALL year long, please visit myspace.com/whokilledamandapalmer Directed by Alex de Campi Choreography by Steven Mitchell Wright, featuring the Whoopee Beaux Belles Director of Photography: Joe Dyer Produced by Irresistible Films Art Direction: Jenny Ray Voiceover: Des O'Connor
Video shows what disambiguation means. The removal of ambiguity.. disambiguation synonyms: clarification, enlightenment, illumination. disambiguation pronunciation. How to pronounce, definition by Wiktionary dictionary. disambiguation meaning. Powered by MaryTTS
Discover how AI and ORCID are making it easier for editors to identify scientists and their work. Laura Dormer, Co-Founder of Becaris Publishing, explains how technology is helping solve name disambiguation issues in scientific publishing. #AI #scientificpublishing #orcid #editors #technology
Welcome to another edition of the VT Podcast which I’ve called Ideas That Matter. In this episode, I talk about Disambiguation. If you want to change the world, you have to see the world for what it is. We humans are pattern-seeking animals. We love stories. Our minds are hard-wired to organize the world using patterns, which saves our conscious minds a lot of mental effort. But it's also become a limitation for us - it's easy to get stuck in patterns that don't serve us well. If you're dispelling myths about yourself, or if you're trying to change your life, start by looking at the small things - the patterns that shape your life on a daily basis. Listen in. Book Vusi for a Keynote: https://vusithembekwayo.com/book-vusi/ Get mentored by Vusi: https://vtclub100.com/ Make sure to sta...
Static Analysis for Checking the Disambiguation Robustness of Regular Expressions (Video, PLDI 2024) Konstantinos Mamouras, Alexis Le Glaunec, Wu Angela Li, and Agnishom Chattopadhyay (Rice University, USA; Rice University, USA; Rice University, USA; Rice University, USA) Abstract: Regular expressions are commonly used for finding and extracting matches from sequence data. Due to the inherent ambiguity of regular expressions, a disambiguation policy must be considered for the match extraction problem, in order to uniquely determine the desired match out of the possibly many matches. The most common disambiguation policies are the POSIX policy and the greedy (PCRE) policy. The POSIX policy chooses the longest match out of the leftmost ones. The greedy policy chooses a leftmost match and fu...
This video tutorial is about Word Sense Disambiguation in Natural Language Processing ( nlp ) in the language Hindi using lesk algorithm. Purchase notes right now, more details below: https://perfectcomputerengineer.classx.co.in/new-courses/13-natural-language-processing-notes * Natural Language Processing Playlist: https://youtube.com/playlist?list=PLPIwNooIb9vimsumdWeKF3BRzs9tJ-_gy * Human-Machine Interaction entire Playlist: https://www.youtube.com/playlist?list=PLPIwNooIb9vhFRT_3JDQ0CGbW5HeFg3yK * Distributed Computing: https://youtube.com/playlist?list=PLPIwNooIb9vhYroMrNpoBYiBUFzTwEZot *Gears used for this YouTube Channel: https://linktr.ee/perfectcomputerengineer *Let's connect: Instagram: https://www.instagram.com/planetojas/
From Correspondences to Pose: Non-minimal Certifiably Optimal Relative Pose without Disambiguation Authors: Javier Tirado-Garín and Javier Civera Project Page: https://javrtg.github.io/C2P Paper: https://arxiv.org/abs/2312.05995 Code: https://github.com/javrtg/C2P Abstract: Estimating the relative camera pose from n ≥ 5 correspondences between two calibrated views is a fundamental task in computer vision. This process typically involves two stages: 1) estimating the essential matrix between the views, and 2) disambiguating among the four candidate relative poses that satisfy the epipolar geometry. In this paper, we demonstrate a novel approach that, for the first time, bypasses the second stage. Specifically, we show that it is possible to directly estimate the correct relative camera po...
Crackpots 2: Aliens, harvard, harvard aliens? 'Oumuamua? Planet 9? Dinosaurs? Can physicists be physics crackpots? Of course. Is Avi Loeb a crackpot? Maybe. The Avi Loeb criticism starts around 24:00. Francis Perey atlantic article: https://www.theatlantic.com/science/archive/2018/11/science-full-mavericks-like-my-grandfather-was-his-physics-theory-right/574573/
You can find the Google Drive folder with the notebooks here: https://drive.google.com/drive/folders/1paIso1fqasLblXgjvkzOwEns4cO81ipc
Get your Free Spark NLP and Spark OCR Free Trial: https://www.johnsnowlabs.com/spark-nlp-try-free/ Register for NLP Summit 2021: https://www.nlpsummit.org/2021-events/ Watch all NLP Summit 2020 sessions: https://www.nlpsummit.org/ Disambiguation or Entity Linking is the assignment of a knowledge base identifier (Wikidata, Wikipedia) to a named entity. Our goal was to improve an MVP model by adding newly created knowledge while maintaining competitive F1 scores. Taking an entity linking model from MVP into production in a spaCy-native pipeline architecture posed several data science and engineering challenges, such as hyperparameter estimation and knowledge enhancement, which we addressed by taking advantage of the engineering tools Docker and Kubernetes to semi-automate training as a...
Access Innovations' Bob Kasenchak explains how to disambiguate duplicate named entities in data extraction and conversion in this clip from his presentation at Data Summit 2019.
HIDDEN ERROR: Usage of "spouse" is not recognized
Amanda MacKinnon Gaiman Palmer (born April 30, 1976), sometimes known as Amanda Fucking Palmer, is an American singer-songwriter who first rose to prominence as the lead singer, pianist, and lyricist/composer of the duo The Dresden Dolls. She has had a successful solo career, is also one-half of the duo Evelyn Evelyn, and is the lead singer and songwriter of Amanda Palmer and the Grand Theft Orchestra.
Palmer was born Amanda MacKinnon Palmer in New York City's Mount Sinai Hospital, and grew up in Lexington, Massachusetts. She attended Lexington High School, where she was involved in the drama department, and attended Wesleyan University where she was a member of the Eclectic Society. She staged performances based on work by the Legendary Pink Dots, an early influence, and was involved in the Legendary Pink Dots electronic mailing list, Cloud Zero. She then formed the Shadowbox Collective, devoted to street theatre and putting on theatrical shows (such as the 2002 play, Hotel Blanc, which she directed). Another early influence is Judy Blume, an author of children books.
Hearts on a string
Like an older fashioned phone can
Bang bringy bring and you think you're gonna get some
Thing you can bring to a party at your wake not
Thinking of the thing that you pay back when you take it
Take it, like rats in a cage
Pushed the button got the shock trick
Stickers in your bag
Had your number but I lost it
Bets are all off, you're a little lilly giver
Indie in the hidden cost, you're a sucker and you win it
Doesn't matter if you want it back,
You've given it away, you've given it away
It doesn't matter if you want it back,
You've given it away away away away away away
He's already on the outskirts
I'm still pulling at his sweatshit
He says "Fate is not a factor"
I'm in love with every actor.
So, once when you're gone and I wanna do it backwards
Just like the song, we're addicted to the L word
Up past your head, down your back, around your ankles
Ready for attack, you're obsessioned and then strangled
Cringe like you're cursed
With your wreckingbally necklace
I saw it first and I crushed it with my hamfist
High for the contest, who's the better nazi
Eye to eye to eye, now I'm blind and you can catch me
Catch me if you can, if you can, if you can, if you can.
It doesn't matter if you want it back
You've given it away, you've given it away
It doesn't matter if you want it back
You've given it away, you've given it away
It doesn't matter if you want it back
You've given it away, you've given it away
It doesn't matter if you want it back
You've given it away, away, away, away, away
He's already on the outskirts,
I'm still pulling at his sweatshirt
He says "Fate is not a factor"
I'm in love with every actor.
He's already on the outskirts,
I'm still pulling at his sweatshirt
He says "Fate is not a factor"
I will let you go if you would let some
I will let you go if you would let somebody
I will let you go if you would let somebody love you
I will let you go if you would let somebody love you like
I will let you go if you would let somebody love you like I do.