- published: 13 Apr 2015
- views: 309253
'+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; })); }); -->
Cassandra Wilson (born December 4, 1955) is an American jazz musician, vocalist, songwriter, and producer from Jackson, Mississippi. Described by critic Gary Giddins as "a singer blessed with an unmistakable timbre and attack [who has] expanded the playing field" by incorporating blues, country, and folk music into her work, Wilson has won two Grammy Awards.
Cassandra Wilson is the third and youngest child of Herman Fowlkes, Jr., a guitarist, bassist, and music teacher; and Mary McDaniel, an elementary school teacher who earned her PhD in education. Her ancestry includes Fon, Yoruba, Irish and Welsh. Between her mother’s love for Motown and her father’s dedication to jazz, Wilson’s parents sparked her early interest in music.
Wilson’s earliest formal musical education consisted of classical lessons; she studied piano from the age of six to thirteen and played clarinet in the middle school concert and marching bands. When she was tired of this training, she asked her father to teach her the guitar. Instead, he gave her a lesson in self-reliance, suggesting she study Mel Bay method books. Wilson explored guitar on her own, developing what she has described as an “intuitive” approach. During this time she began writing her own songs, adopting a folk style. She also appeared in the musical theater productions, including The Wizard of Oz as Dorothy, crossing racial lines in a recently desegregated school system.
The Royal New Zealand Ballet is based in Wellington, New Zealand. It was originally known as The New Zealand Ballet Company.
New Zealand Ballet was established in 1953 as an independent charitable trust by Royal Danish Ballet Principal Poul Gnatt, Beryl Nettleton, Bettina Edwards, another female dancer, and pianist Dorothea Franchi.
In the late 1950s notable New Zealand dancers, Rowena Jackson and Philip Chatfield, her English dancer husband, returned from overseas to join the company. A third returning dancer, Russell Kerr, who had been since 1950 dancing in Europe with the Jose Greco Company, Sadlers Wells Ballet and Ballet Rambert, and from 1952–57 with London Festival Ballet as their principal character dancer. In 1959 Kerr joined forces with NZ Ballet director Poul Gnatt, bringing with him a number of dancers from his own company, Auckland Ballet Theatre for the 1959–60 season. As United Ballet, the augmented company presented a ground-breaking season which is prefigured the things to come – included amongst the classical works was a major contemporary work, "Prismatic Variations, a collaborative piece between Gnatt and Kerr, with guest artists the celebrated New Zealand dancers Rowena Jackson and Sara Neil.
Aégis is the third studio album by Norwegian gothic metal band Theatre of Tragedy, and the last album of their musical period defined by gothic stylings and Early Modern English lyrics.
As with Theatre of Tragedy's previous albums, the lyrics are written in Early Modern English which sounds very different from modern English: Vaunt! - Devil tyne - Wadst thou wane fore'ermae? (from the song "Angélique"). The subject matter is drawn from a range of European folklore and history: Venus and Poppæa are from Roman sources; Aœde, Cassandra, Bacchante and Siren are drawn from Greek mythology; while Lorelei refers to a Nix from German stories.
From this period there were 2 releases.
Marks and Spencer plc (also known as M&S) is a major British multinational retailer headquartered in the City of Westminster, London. It specialises in the selling of clothing, home products and luxury food products. M&S was founded in 1884 by Michael Marks and Thomas Spencer in Leeds.
In 1998, the company became the first British retailer to make a pre-tax profit of over £1 billion, although subsequently it went into a sudden slump, which took the company, its shareholders, who included hundreds of thousands of small investors, and nearly all retail analysts and business journalists, by surprise. In November 2009, it was announced that Marc Bolland, formerly of Morrisons, would take over as chief executive from executive chairman Stuart Rose in early 2010; Rose remained in the role of non-executive chairman until he was replaced by Robert Swannell in January 2011.
It is listed on the London Stock Exchange and is a constituent of the FTSE 100 Index.
The company was founded by a partnership between Michael Marks, a Polish Jew from Słonim (Marks was born into a Polish-Jewish family, a Polish refugee living in the Russian Empire, now in Belarus), and Thomas Spencer, a cashier from the English market town of Skipton in North Yorkshire. On his arrival in England, Marks worked for a company in Leeds, called Barran, which employed refugees (see Sir John Barran, 1st Baronet). In 1884 he met Isaac Jowitt Dewhirst while looking for work. Dewhirst lent Marks £5 which he used to establish his Penny Bazaar on Kirkgate Market, in Leeds. Dewhirst also taught him a little English. Dewhirst's cashier was Tom Spencer, an excellent bookkeeper, whose lively and intelligent second wife, Agnes, helped improve Marks' English. In 1894, when Marks acquired a permanent stall in Leeds' covered market, he invited Spencer to become his partner.
More… is the third studio album from American country music artist Trace Adkins. It was released on November 2, 1999 on Capitol Nashville. It features the singles "Don't Lie", "More", and "I'm Gonna Love You Anyway", which respectively reached No. 27, No. 10, and No. 36 on the Hot Country Songs charts. It was also the only album of his career not to achieve RIAA certification. Trey Bruce produced all but two of the album's tracks. "Don't Lie" was produced by Paul Worley, while "All Hat, No Cattle" was produced by Ray Benson of Asleep at the Wheel.
The album's release date was advanced due to initial radio demand for "Don't Lie".
More… is the second studio album by Montell Jordan, released on August 27, 1996 through Def Jam Recordings. Though the album did not do as well on the Billboard charts as his previous album, only making it to #47 on the Billboard 200, More… nevertheless was certified gold by the RIAA on May 21, 1997.
The album also spawned three hit singles, "I Like", "Falling" and "What's on Tonight", the later two being certified gold by the RIAA.
Album - Billboard (United States)
Singles - Billboard (United States)
The song "Don't Explain" from the album Coming Forth By Day by Cassandra Wilson. Buy Coming Forth By Day: Amazon - http://smarturl.it/4kgr8l?IQid=yt.cw.DEP iTunes - http://smarturl.it/vxnj5c?IQid=yt.cw.DEP Google Play - http://smarturl.it/CassandraGooglePlay?IQid=yt.cw.DEP About the album: An otherworldly musical homage to legendary jazz vocalist Billie Holiday (born Eleanora Fagan on April 7, 1915) on the 100th anniversary of the singer's birth, Coming Forth By Day is Cassandra Wilson's moody, soulful new album showcase for contemporary yet timeless interpretations of standards associated with Lady Day. Coming Forth By Day was produced by Nick Launay, known as Nick Cave's producer for the last decade among many other adventurous credits. Follow Cassandra Wilson on Spotify: http://smar...
Cassandra Wilson, en estado de gracia, versionando el clásico de Neil Young ...
The song "Strange Fruit" from the album Coming Forth By Day by Cassandra Wilson. Buy Coming Forth By Day: Amazon - http://smarturl.it/4kgr8l?IQid=Strange iTunes - http://smarturl.it/vxnj5c?IQid=Strange Google Play - http://smarturl.it/CassandraGooglePlay?IQid=Strange About the album: An otherworldly musical homage to legendary jazz vocalist Billie Holiday (born Eleanora Fagan on April 7, 1915) on the 100th anniversary of the singer's birth, Coming Forth By Day is Cassandra Wilson's moody, soulful new album showcase for contemporary yet timeless interpretations of standards associated with Lady Day. Coming Forth By Day was produced by Nick Launay, known as Nick Cave's producer for the last decade among many other adventurous credits. Follow Cassandra Wilson on Spotify: http://smarturl....
The song "You Go To My Head" from the album Coming Forth By Day by Cassandra Wilson. Buy Coming Forth By Day: Amazon - http://smarturl.it/4kgr8l?IQid=ygtmh iTunes - http://smarturl.it/vxnj5c?IQid=ygtmh Google Play - http://smarturl.it/CassandraGooglePlay?IQid=ygtmh About the album: An otherworldly musical homage to legendary jazz vocalist Billie Holiday (born Eleanora Fagan on April 7, 1915) on the 100th anniversary of the singer's birth, Coming Forth By Day is Cassandra Wilson's moody, soulful new album showcase for contemporary yet timeless interpretations of standards associated with Lady Day. Coming Forth By Day was produced by Nick Launay, known as Nick Cave's producer for the last decade among many other adventurous credits. Follow Cassandra Wilson on Spotify: http://smarturl.it/...
http://wfuv.org. Cassandra Wilson performs "Red Guitar" live in Studio A. Recorded 6/28/12. Host: Rita Houston Engineer: Daniel Hodd Cameras: Erica Talbott, Fenizia Maffucci Editor: Erica Talbott
Music Video directed and shot by Frank Suffert. www.tivolientertainment.com
Hear what some of our dancers are most looking forward to for our 2024 season, and see behind the scenes of our season photoshoot here at the St James Theatre 🩰 With our presale packages available now, this is your best chance to get an excellent deal for a wonderful year of dance! Save 20% on tickets, receive complimentary programmes, get the best available seats in the house, and even more subscriber perks 🤩 See what we have on offer in 2024 and book your subscription to the RNZB today! rnzb.org.nz/subscribe https://new.express.adobe.com/webpage/O82aFXbxtRA3P Video by Dan Harris, RNZB.
Fri 6 - Sat 7 November This beautiful new staging of a much-loved ballet is produced by two superstar performers, Ethan Stiefel and Johan Kobborg (former principal dancers of American Ballet Theater and the Royal Ballet respectively). Disguise and revelation, love and jealousy combine in this tragic tale. A love story unfolds against the ghostly backdrop of a Rhineland forest haunted by the fearful presence of the “Wilis” - vengeful spirits of abandoned brides. The beautiful peasant girl, Giselle, falls for Albrecht who conceals his identity to win her. The discovery of her lover’s deception shatters Giselle’s innocence and causes her to die of a broken heart. Albrecht is thrown into the hands of the merciless Wilis, but Giselle cannot bear to watch him die and returns as a ghost to sav...
Welcome and welcome back to full-time classical students at the New Zealand School of Dance! Yesterday Ballet Master Clytie Campbell headed up to our Official School to teach a weekly class with the second and third year classical students 🩰 In addition to everything they do with teaching daily class, staging works, taking rehearsals and managing schedules at the RNZB, our Ballet Masters love teaching weekly classes at NZSD - and are excited to support these young dancers in their journey towards full-time dance careers. 🎥 Video: Jeremy Brick. Music: Nigel Gaynor.
This weekend, our dancers are moving out of the studio and on to the St James Theatre stage to begin our technical rehearsals for the Ryman Healthcare Season of A Midsummer Night’s Dream! Catch a glimpse of our last in-studio costume run this week; all the finishing touches are in place, ready to welcome you into the magical world that we’ve created. 🎟️ rnzb.org.nz/midsummer 🎥 Video by Dan Harris.
It’s time to bring the magic with the Ryman Healthcare Season of A MIDSUMMER NIGHT’S DREAM! This fantastical festive performance is perfect for the whole family, sparkling its way across Aotearoa in October to December 2024 ✨🌙 Find out more: http://rnzb.org.nz/MSND
Enjoy this glimpse into SWAN LAKE, in association with Avis. 🦢 Join us across Aotearoa for this beautiful performance steeped in history, with grand designs, iconic music, luscious costumes and the best ballet talent in New Zealand. BOOK NOW | rnzb.org.nz/swan-lake 🎥 RNZB dancers performing excerpts from Swan Lake in Tutus on Tour 2024. Video by Dan Harris, RNZB.
Check out our stunning TV ad featuring dancer Mayu Tanigaito for SPEED OF LIGHT - three incredible danceworks by some of the world's most important choreographers - William Forsythe (In the Middle, Somewhat Elevated), Alexander Ekman (Cacti), Andonis Foniadakis (Selon desir). Tickets are going fast. Book now. 2016: WGTN Fri 26 - Sun 28 Feb, AUCK Wed 2 - Sun 6 Mar, CHCH Thur 10 - Sat 12 Mar, DUN Wed 16 Mar. http://rnzb.org.nz/shows/speed-of-light/
Meaghan Grace Hinkis, Isabella Gasparini, Romany Pajdak and Elizabeth Harrod dance as cygnets in Liam Scarlett's production of Swan Lake which will be broadcast on Christmas Day 2018 on BBC Four. Find out more at https://www.roh.org.uk/news/the-royal-ballets-swan-lake-to-be-broadcast-on-bbc-four-on-christmas-day-2018 Swan Lake was Tchaikovsky’s first score for ballet. Given its status today as arguably the best loved and most admired of all classical ballets, it is perhaps surprising that at its premiere in 1877 Swan Lake was poorly received. It is thanks to the 1895 production by Marius Petipa and Lev Ivanov that Swan Lake has become part of not only ballet consciousness but also wider popular culture. That success is secured not only by the sublime, symphonic sweep of Tchaikovsky’s scor...
“To Hold is a work that explores ways of holding and being held. It is a movement poem to the conscious and subconscious mind, built in the wake of a personal family experience. It is a love letter from a parent to a child.” Choreographer in Residence Sarah Foster-Sproull shares her experience of creating her fifth work for the RNZB, TO HOLD, as part of our Solace programme. Book for SOLACE, in association with Ryman Healthcare. http://rnzb.org.nz/show/solace 🎥 Video by Dan Harris.
Check out our hauntingly beautiful Giselle TV advert with dancers Lucy Green and Mayu Tanigaito. Don't miss this internationally acclaimed classical ballet: created for the RNZB by Ethan Stiefel and Johan Kobborg 11 August - 9 September 2016, Wellington, Napier, Christchurch, Dunedin, Auckland, Rotorua, Palmerston North. http://rnzb.org.nz/shows/giselle #RNZBGiselle
Cassandra Wilson (born December 4, 1955) is an American jazz musician, vocalist, songwriter, and producer from Jackson, Mississippi. Described by critic Gary Giddins as "a singer blessed with an unmistakable timbre and attack [who has] expanded the playing field" by incorporating blues, country, and folk music into her work, Wilson has won two Grammy Awards.
Cassandra Wilson is the third and youngest child of Herman Fowlkes, Jr., a guitarist, bassist, and music teacher; and Mary McDaniel, an elementary school teacher who earned her PhD in education. Her ancestry includes Fon, Yoruba, Irish and Welsh. Between her mother’s love for Motown and her father’s dedication to jazz, Wilson’s parents sparked her early interest in music.
Wilson’s earliest formal musical education consisted of classical lessons; she studied piano from the age of six to thirteen and played clarinet in the middle school concert and marching bands. When she was tired of this training, she asked her father to teach her the guitar. Instead, he gave her a lesson in self-reliance, suggesting she study Mel Bay method books. Wilson explored guitar on her own, developing what she has described as an “intuitive” approach. During this time she began writing her own songs, adopting a folk style. She also appeared in the musical theater productions, including The Wizard of Oz as Dorothy, crossing racial lines in a recently desegregated school system.
The man I love, took from my best friend
That girl got lucky, stole 'em back again
You betta come on in my kitchen 'cause its gonna be
raining outdoors.
He's gone
I know he won't come back
I took his last nickle from his nation sack
You betta come on in my kitchen 'cause its going to be
raining outdoors.
Can't you hear that wind howl
Can't you hear that wind howling
You betta come on in my kitchen 'cause its going to be
raining outdoors.
When a man gets in trouble
Everybody throws him down
Lookin' for his good friend
None can be found
You betta come on in my kitchen 'cause its going to be
raining outdoors.
The winter time is coming
And its going to be slow
You can't make the weather baby
it's dry long so
You betta come on in my kitchen because its going to be
raining outdoors.
Gonna be raining outdoors.
Gonna be raining outdoors.