- published: 08 Nov 2015
- views: 136832
'+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.
Time After Time is a 1979 American Metrocolor science fiction film starring Malcolm McDowell, David Warner and Mary Steenburgen filmed in Panavision. It was the directing debut of screenwriter Nicholas Meyer, whose screenplay is based largely on the uncredited novel of the same name by Karl Alexander (which was unfinished during the time the film was made) and a story by the latter and Steve Hayes.
The film concerns British author H. G. Wells and his fictional use of a time machine to pursue Jack the Ripper into the 20th century.
In 1893 London, popular writer Herbert George Wells (Malcolm McDowell) displays a time machine to his skeptical dinner guests. After he explains how it works (including a "non-return key" that keeps the machine at the traveler's destination and a "vaporizing equalizer" that keeps the traveler and machine on equal terms), police constables arrive at the house searching for Jack the Ripper. A bag with blood-stained gloves belonging to one of Herbert's friends, a surgeon named John Leslie Stevenson (David Warner), leads them to conclude that Stevenson might be the infamous killer. Wells races to his laboratory, but the time machine is gone.
No More Tears is the sixth studio album by British heavy metal vocalist and songwriter Ozzy Osbourne. Released on 17 September 1991, the album charted at number 17 on the UK Albums Chart and number seven on the US Billboard 200 albums chart.No More Tears spawned four songs which reached the top ten of the US Hot Mainstream Rock Tracks chart, including the number-two "Mama, I'm Coming Home", and it contains the Grammy-winning track "I Don't Want to Change the World". It is also one of Osbourne's two best-selling albums in North America, along with Blizzard of Ozz, having been certified quadruple platinum by the RIAA and double platinum by CRIA. It was the last Ozzy Osbourne album to feature drummer Randy Castillo and bassist Bob Daisley.
Guitarist Zakk Wylde contributed songwriting and guitar to the album, while Motörhead bassist/vocalist Lemmy Kilmister co-wrote the lyrics for four songs. Although Mike Inez performs in the album's videos and promotional tours, long-time Ozzy Osbourne bassist Bob Daisley plays on the entire album. Inez is credited as a writer for the title track; although he does not perform on the actual recording, the intro bass riff was composed by him.
Time After Time is a 1986 album by Oscar Peterson.
The Cassandra metaphor (variously labelled the Cassandra 'syndrome', 'complex', 'phenomenon', 'predicament', 'dilemma', or 'curse') occurs when valid warnings or concerns are dismissed or disbelieved.
The term originates in Greek mythology. Cassandra was a daughter of Priam, the King of Troy. Struck by her beauty, Apollo provided her with the gift of prophecy, but when Cassandra refused Apollo's romantic advances, he placed a curse ensuring that nobody would believe her warnings. Cassandra was left with the knowledge of future events, but could neither alter these events nor convince others of the validity of her predictions.
The metaphor has been applied in a variety of contexts such as psychology, environmentalism, politics, science, cinema, the corporate world, and in philosophy, and has been in circulation since at least 1949 when French philosopher Gaston Bachelard coined the term 'Cassandra Complex' to refer to a belief that things could be known in advance.
Cassandra is a Greek given name. In Greek mythology, Cassandra was the daughter of King Priam and Queen Hecuba of Troy; she had the gift of prophecy but the curse that her prophecies would never be believed.
The name peaked in popularity in America in the year 1990 with over 7000 girls named Cassandra born that year; the name is now rarer in the US for babies, with only about 1000 given it in 2010.
1. Children Of The Night 2. Skylark 3. Soft Winds 4. Corcovado 5. Last Train To Clarksville 6. Broken Drum 7. Drunk As Cooter Brown 8. Tupelo Honey 9. I Want More 10. Lay Lady Lay 11. Waters Of March
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
Grammy award winning jazz singer Cassandra Wilson stops by the WSJ Cafe to perform 'No More Blues,' off her new album 'Another Country.' Don’t miss a WSJ video, subscribe here: http://bit.ly/14Q81Xy More from the Wall Street Journal: Visit WSJ.com: http://www.wsj.com Visit the WSJ Video Center: https://wsj.com/video On Facebook: https://www.facebook.com/pg/wsj/videos/ On Twitter: https://twitter.com/WSJ On Snapchat: https://on.wsj.com/2ratjSM
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.
Lying in my bed I hear the clock tick,
And think of you
Turning in circles confusion--
Is nothing new
Flashback to warm nights--
Almost left behind
Suitcase of memories,
Time after--
Sometimes you picture me--
I'm walking too far ahead
You're calling to me, I can't hear
What you have said--
And you say--go slow--
I've fall behind--
The second hand unwinds
If you're lost you can look--and you will find me
Time after time
If you fall I will catch you--I'll be waiting
Time after time
If you fall I will catch you--I will be waiting
Time after time
Time after time
After your picture fades and darkness has
Turned to gray
Watching through windows--I'm wondering
If you're OK
You say--go slow--
I fall behind--
The drum beats out of time--
If you're lost you can look--and you will find me
Time after time
If you fall I will catch you--I'll be waiting
Time after time
The drum beats out of time--