- published: 25 Feb 2009
- views: 2542778
'+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; })); }); -->
Lena Corinne "Lee" Morse (November 30, 1897 – December 16, 1954) was an American jazz and blues singer-songwriter, guitarist, and actress. Morse's greatest popularity was in the 1920s and early 1930s as a torch singer, although her career began around 1917 and continued until her death in 1954.
Morse was known for her strong, deep singing voice and vocal range, which often belied her petite frame. She possessed a contralto vocal range, and one of her trademarks was her unique style of yodeling. Recording over 200 songs over her career, Morse was one of the most recorded female singers of the 1920s. She was also moderately successful as an actress on the Broadway stage. Her life and career, however, were marred by alcoholism.
In 2014, Morse's rendition of "If You Want the Rainbow" was used in an episode of the HBO series Boardwalk Empire.
Morse was born Lena Corinne Taylor in Cove, Oregon, a small town in the Grande Ronde Valley. Some sources list Morse's birthplace as Portland, Oregon, though this is disputed by her death certificate, which lists her birthplace as Union County, Oregon. She was the ninth of twelve children (and the third daughter) of Pleasant John Taylor, a local pastor from Texas, and his wife Olive Higgins Fleming. Morse's younger brother was Glen H. Taylor, a country singer and Democratic politician who served on the United States Senate in Idaho, and also ran for the Vice-President of the United States with Henry Wallace. Morse's other siblings included six other brothers: Robert, Davis, Jackson, Ephraim, Ruford, and Paul; two half-sisters, Elinor and Carrie; and two half-brothers, Lemuel and Pleasant.
The Music were an English alternative rock band, formed in Kippax, Leeds in 1999. Comprising Robert Harvey (vocals, guitar), Adam Nutter (lead guitar), Stuart Coleman (bass) and Phil Jordan (drums), the band came to prominence with the release of their debut album, The Music, in 2002. The band released two further studio albums, Welcome to the North (2004) and Strength in Numbers (2008), before parting ways in 2011.
The Music all met at Brigshaw High School, except Phil Jordan who went to Garforth, and began playing in 1999 as Insense. In 2001 the song "Take the Long Road and Walk It" circulated as a demo before being released by Fierce Panda as a 1000-copies-only single, a rarity from its day of release. Around this time the NME and Steve Lamacq were describing them as the best unsigned band in Britain. The band were quickly signed by Hut, who released their first EP You Might as Well Try to Fuck Me.
In 2002, following another EP (The People) they released their eponymous début album which reached No. 4 in the UK album charts. Their début single was re-issued as part of a two-disc set to promote the album, and reached No. 14 in the singles chart. Two further singles from the album, "Getaway" and "The Truth is No Words" reached No. 26 and No. 18 respectively. June 2003 saw them filling in for an absent Zwan on the Pyramid Stage at Glastonbury Festival.
Kamal Humphrey De Iruretagoyena, better known by his stage name Radioinactive, is an indie hip hop artist from Los Angeles, California. He is a member of the Shape Shifters collective. He was a member of Log Cabin along with Eligh, Murs and Scarub. He has released a number of solo albums, as well as collaborating with artists such as Busdriver, Daedelus and Antimc.
Radioinactive released the first album, Pyramidi, on Mush Records in 2001.The Weather, his collaborative album with rapper Busdriver and producer Daedelus, was released on the label in 2003.
In 2004, he released Free Kamal with producer Antimc. Josh Drimmer of Dusted Magazine said: "Intelligent and fun, it’s a good record to listen to with a cool glass of lemonade. And a dictionary."
The second solo album, Soundtrack to a Book, was released on Stranger Touch Records in 2006. Mason Jones of Dusted Magazine said, "Soundtrack to a Book is an excellent mini-album, perhaps the best yet from Radioinactive."
He released the third solo album, The Akashic Record, on Flying Carpet Studios in 2012.
The Music is the eponymous debut album by British rock band The Music, first released in September 2002. It was certified gold in Japan for 100,000 copies shipped in March 2003.
The UK release of this album also contains a track in the pregap called "New Instrumental", which plays upon rewinding from the start of "The Dance". A live version of this song also appeared as the B-side to "Take the Long Road and Walk It".
Goes ( pronunciation ) is a municipality and a city in the southwestern Netherlands on Zuid-Beveland, in the province of Zeeland. The town of Goes has approximately 27,000 residents.
Goes was founded in the 10th century on the edge of a creek: de Korte Gos (the Short Gos). The village grew fast, and in the early 12th century it had a market square and a church devoted to Mary Magdalene. In 1405 Goes received city rights from William, Duke of Bavaria, by his right as count of Holland, and in 1417 it was allowed to build town walls. The prosperity of the city was based upon the cloth industry and the production of salt. In the 16th century Goes declined. Its connection to the sea silted up and in 1554 a large fire destroyed part of the city.
In Autumn 1572, during the course of the Eighty Years' War, Goes, in the Spanish Netherlands, was besieged by Dutch forces with the support of English troops. The siege was relieved in October 1572 by Spanish Tercios, who waded across the Scheldt to attack the besieging forces. In 1577 the Spanish soldiers who occupied Goes were driven out by Prince Maurits of Nassau. The prince built a defence wall around Goes, which is still partly standing. From the 17th century Goes did not play an important role, except as an agricultural centre. In 1868 a railway was constructed through it, but this did not lead to industrialisation. Agriculture remains the most important economic activity.
Goes is a genus of longhorn beetles, containing the following species:
GOES 11, known as GOES-L before becoming operational, is an American weather satellite, which is part of the US National Oceanic and Atmospheric Administration's Geostationary Operational Environmental Satellite system. It was launched in 2000, and operated at the GOES-WEST position, providing coverage of the west coast of the United States, until December 6, 2011.
GOES-L was launched aboard an International Launch Services Atlas IIA rocket, flying from Space Launch Complex 36A at the Cape Canaveral Air Force Station. The launch occurred at 07:07 GMT on 3 May. The launch was originally scheduled for 15 March 1999, however it was delayed to allow the Eutelsat W3 satellite to be launched first. Following this, it was rescheduled for 15 May. On 30 April, the Centaur upper stage of a Titan IV(401)B failed during the launch of USA-143. Since a version of the Centaur was also used on the Atlas II, the launch of GOES-L was delayed a week to ensure that the same problem would not affect its launch. Less than five days after the Titan failure, a Delta III failed to launch Orion 3. The failure occurred during the second stage restart, and as the Delta III and Atlas II both used RL10 engines on their second stages, this resulted in a further delay.
Music video by The Music performing Getaway.
Music video by The Music performing Strength In Numbers (new FINAL version). (C) 2008 Polydor Ltd. (UK)
Music video by The Music performing Freedom Fighters.
Music Videos
🎵 Follow the official 7clouds playlist on Spotify : https://lnkfi.re/7cloudsSpotify 🎧 Rihanna - Don't Stop The Music (Lyrics) ⏬ Download / Stream: https://spoti.fi/2SJsUcZ 🔔 Turn on notifications to stay updated with new uploads! ⭐ Listen the song on all platforms: http://smarturl.it/dlxANTI 👉 Rihanna https://open.spotify.com/artist/5pKCCKE2ajJHZ9KAiaK11H https://instagram.com/badgalriri https://facebook.com/rihanna ❤️ Follow our Spotify playlists: http://bit.ly/7cloudsSpotify ☁️ 7clouds: https://open.spotify.com/user/7cloudsmusic https://soundcloud.com/7cloudsmusic https://audiomack.com/7cloudsmusic https://facebook.com/7cloudsofficial https://discord.com/invite/d5Arh8Y https://twitter.com/7cloudsmusic https://instagram.com/7clouds https://tiktok.com/@7clouds ......... 🎤 Lyrics: Rih...
The Music The People Live at Fuji Rock Festival '11 2011年で解散するThe Musicの日本でのラストライブ Japan Last Live フジロックフェステバル 2011 in Japan
Subscribe to Ninja Tune on YouTube: https://found.ee/nt-ys Taken from Blockhead's album 'The Music Scene' - released 18 January 2010 on Ninja Tune. Buy on the Ninjashop: http://bit.ly/UKNJdY Download on iTunes: http://glnk.it/1uz Download Ninja Jamm, the new remix app from Ninja Tune, FREE via the App Store: http://smarturl.it/getninjajamm http://www.ninjatune.net Animated/Directed by Anthony F. Schepperd.
Music video by The Music performing Welcome To The North (Live In Liverpool).
You can't change the music industry, but you can change yourself. Take control today. #LiamPayne #SimonCowell #onedirection@onedirectionchannel @LiamPayneOfficial Follow for more daily motivation: @guitartrainingstudio #mindset #selfimprovement #lifeadvice #SelfDevelopment #mindset #motivation #inspirational #mentalmodels #shorts #tonyrobbins #simonsinek #guitar #guitarist
Live from the Big Day Out festival '03. Big thanks to KevC.
Official video for "Mint Tea", the first single off RADIOINACTIVE's fourth studio album "The Akashic Record" available in May via Flying Carpet Studios/LELP Follow @Radioinactive1 on Twitter Track produced by LA CAUTION. Video directed by TUCKER CAPPS. DIGITAL SINGLE "MINT TEA/BURY ME STANDING" AVAILABLE AVAILABLE APRIL 9. - Vidéo officielle de "Mint Tea", le premier single issu du quatrième album studio de RADIOINACTIVE, "The Akashic Record" disponible en mai prochain sur Flying Carpet Studios/IDOL. Morceau produit par LA CAUTION. Clip réalisé par TUCKER CAPPS. SINGLE "MINT TEA/BURY ME STANDING" DISPONIBLE SUR ITUNES ET AUTRES PLATEFORMES LE 9 AVRIL. (C) 2012 FLYING CARPET STUDIOS.
Official video for "Mint Tea", the first single off RADIOINACTIVE's fourth studio album "The Akashic Record" available in May via Flying Carpet Studios/LELP Follow @Radioinactive1 on Twitter! Track produced by LA CAUTION. Video directed by TUCKER CAPPS. HD version Vidéo officielle de "Mint Tea", le premier single issu du quatrième album studio de RADIOINACTIVE, "The Akashic Record" disponible en mai prochain sur Flying Carpet Studios/LELP. Morceau produit par LA CAUTION. Clip réalisé par TUCKER CAPPS. SINGLE "MINT TEA/BURY ME STANDING" DISPONIBLE SUR ITUNES ET AUTRES PLATEFORMES LE 9 AVRIL. (C) 2012 FLYING CARPET STUDIOS. Facebook: KAMALSOUND Buy It Now! http://itunes.apple.com/us/album/the-akashic-record/
Music video for "Pyramidi" by Radioinactive. Directed by Anisa Qureshi. From the album Pyramidi on Mush Records. www.mushrecords.com. Lyrics: Prophet of god In quest of the uttermost Long have you searched the distances for your ship And now your ship has come and you must needs go Deep is your longing for the land of your memories And the dwelling place of your greater desires And our love would not bind you Nor our needs hold you Yet this we ask ere you leave us That you speak to us and give us of your truth This is a journey Into the desert As I enter the measure On the back of a camel That was robotic And I got it from a lizard-man That came from a hole in the sky That came down in a prehistoric time With a holographic rhyme Accelerating mankind From a grunt...
"Hip-Hop Helmet" out now (Flying Carpet Studios/Laitdbac) LP, CD, Tape and digital North America/Asia: http://radioinactive.bandcamp.com Europe: https://laitdbac.bandcamp.com/album/radioinactive-hip-hop-helmet HHV: http://www.hhv.de/shop/en/catalog/all/artist:radioinactive/sort:R/per:25?term=radioinactive iTunes: bit.ly/1mcxNQX Official website: http://www.radioinactivemusic.com Directed, edited, and Shot by Hazard Gibson, additional camera by Isaac Campos.
Official Music video for Never Ends from Radioinactive's "The Akashic Record". Directed by Matthew Holt. Director of Photography: Bobby Gibson Edit/Montage by Matthew Holt. Assistant Editor: Nathan Seifert Produced by Radioinactive Bass: Burt Gregory Background vocals: Alyssa Noui toasting: Andre Afram Asmar. Album available on Itunes http://itunes.apple.com/us/album/the-akashic-record/id520787097
Follow @Radioinactive1 on Twitter! Official Music Video from Radioinactive's The Akashic Record. Directed by Owen A. Smith Cinematographer Diego Torroija B-side off the first single of RADIOINACTIVE's fourth studio album "The Akashic Record" available on Itunes now http://itunes.apple.com/us/album/the-akashic-record/id520787097
:Radioinactive La Caution 2Mex - Mint Tea [Clean]
Provided to YouTube by The Orchard Enterprises Launch Padlock Smithereen · Radioinactive Pyramidi ℗ 2001 Mush Released on: 2001-08-28 Music Publisher: On The Down Low Music (ASCAP) Music Publisher: Mally Godzilla Music (ASCAP) Music Publisher: Art Rap Music (ASCAP) Auto-generated by YouTube.
XOLOLANXINXO, JIZZM, AWOL ONE, RADIOINACTIVE, AND CIRCUS, LIVE @ THE EL REY THEATER IN LOS ANGELES 2002 Mush Records tour with Radionactives band led by Anti MC the Pyramidi Allstars
From Radioinactive "The Akashik Record" 2012
"Hip-Hop Helmet" out april 22 Pre-order (LP, CD, Tape and digital) http://radioinactive.bandcamp.com (North America/Asia...) http://laitdbac.bandcamp.com (Europe)
Music video for "Pyramidi" by Radioinactive. Directed by Anisa Qureshi. Shot by Eric Jones. From the album Pyramidi on Mush Records. www.mushrecords.com. Follow @Radioinactive1 on Twitter
Provided to YouTube by IDOL Gobo · Radioinactive The Akashic Record ℗ Flying Carpet Studios Released on: 2012-04-30 Lyricist: Kamal de Iruretagoyena Humphrey Composer: Kamal de Iruretagoyena Humphrey Auto-generated by YouTube.
Directed by Tucker Capps. DP Owen Smith, Terrance Lofton-Camera, Tim Baker Gaffer,Maxi SIngle available on iTunes. https://itunes.apple.com/us/album/chump-remixes-ep/id654934462 Flying Carpet Studios 2013 Follow Radioinactive on twitter @Radioinactive1 introducing Sheldon Sims as "the Champ",Matt Alsberg-Bass,guitar, Radioinactive- Drums, Clarinet, Bass Clarinet, David Moyer-Baritone Sax, Burt-Claps, Background vocals,Alyssa Noui- Background vocals, David Humphrey, background vocals, Andre Asmar,-additional arrangement,
Lena Corinne "Lee" Morse (November 30, 1897 – December 16, 1954) was an American jazz and blues singer-songwriter, guitarist, and actress. Morse's greatest popularity was in the 1920s and early 1930s as a torch singer, although her career began around 1917 and continued until her death in 1954.
Morse was known for her strong, deep singing voice and vocal range, which often belied her petite frame. She possessed a contralto vocal range, and one of her trademarks was her unique style of yodeling. Recording over 200 songs over her career, Morse was one of the most recorded female singers of the 1920s. She was also moderately successful as an actress on the Broadway stage. Her life and career, however, were marred by alcoholism.
In 2014, Morse's rendition of "If You Want the Rainbow" was used in an episode of the HBO series Boardwalk Empire.
Morse was born Lena Corinne Taylor in Cove, Oregon, a small town in the Grande Ronde Valley. Some sources list Morse's birthplace as Portland, Oregon, though this is disputed by her death certificate, which lists her birthplace as Union County, Oregon. She was the ninth of twelve children (and the third daughter) of Pleasant John Taylor, a local pastor from Texas, and his wife Olive Higgins Fleming. Morse's younger brother was Glen H. Taylor, a country singer and Democratic politician who served on the United States Senate in Idaho, and also ran for the Vice-President of the United States with Henry Wallace. Morse's other siblings included six other brothers: Robert, Davis, Jackson, Ephraim, Ruford, and Paul; two half-sisters, Elinor and Carrie; and two half-brothers, Lemuel and Pleasant.
[chorus:]
Round and round upside down
Livin my life underneath the ground (x 4)
I never had the skills that it took to sell weed
I was too generous too understanding to your needs
As far as school I lacked the motivation for the occupation preparation
Guess I'll never catch that bacon
I need to find a duty doin sales or some shit
'cause I was always good at talking people into dumb shit
Fuck it. Just program some drums
I'll be honest to myself and take the wealth if it comes
Run baby run baby run
Because this metro is destined for ruin
Let go of that echo baby what are you pursuing
Priorities are twisted head's not on straight
I think I'm gonna pop a bottle stop and take a long break
And find time to reflect
I need to take a second quit breakin my neck
Tryin to get this fat pay check
Because money is the root of all evil
Ay yo most people are evil so I'm on the roof shootin at bald eagles
Adrenaline, mescaline, ephedrine and apple sauce
Aint nowhere to hang a platinum record on these padded walls
Every man's a faggot and all women are sluts
So Immuh ho out my love for all of ya'll to shake your butts and
[chorus]
somewhat exotic how a lot of these cats went about it
and when they got crowded let the boundaries clouded
I doubted if they only knew how I was comin through
Probably be the oasis they was runnin to
Fashion the lifestyle around the bashings and lifestyles
of entities you don't know much less trust
Judgment judgmental the soldier with the common pencil
So say wussup when you see me on the bus man
Ay yo the worst is yet to come
In fact its on its way you better go and get you some
Before there aint no more today and hey
I'll be just fine tryin to bust rhymes
Got my eye on my son and my hand on my
Nine O'clock. The clock stops
For everybody that you know that got shot
And eight o'clock the seconds get hesitant
For every cat that went in an accident
And seven o'clock time stands still
For every man killed by the planet's build
Consumed by the elements: water, earth, wind, fire
when I die I wanna go like that
Fuck the devil's developments
[chorus]
run away, come away from the land of Sodom and Gomorra
run away, come away from the land of the sinking sands
(x 4)
[chorus]