- published: 24 Aug 2024
- views: 288813
'+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; })); }); -->
Joan of Arc (French: Jeanne d'Arc,IPA: [ʒan daʁk]; 6 January c. 1412 – 30 May 1431), nicknamed "The Maid of Orléans" (French: La Pucelle d'Orléans) is considered a heroine of France for her role during the Lancastrian phase of the Hundred Years' War, and was canonized as a Roman Catholic saint. Joan of Arc was born to Jacques d'Arc and Isabelle, a peasant family, at Domrémy in north-east France. Joan said she received visions of the Archangel Michael, Saint Margaret, and Saint Catherine instructing her to support Charles VII and recover France from English domination late in the Hundred Years' War. The uncrowned King Charles VII sent Joan to the siege of Orléans as part of a relief mission. She gained prominence after the siege was lifted only nine days later. Several additional swift victories led to Charles VII's coronation at Reims. This long-awaited event boosted French morale and paved the way for the final French victory.
On 23 May 1430, she was captured at Compiègne by the Burgundian faction which was allied with the English. She was later handed over to the English, and then put on trial by the pro-English Bishop of Beauvais Pierre Cauchon on a variety of charges. After Cauchon declared her guilty she was burned at the stake on 30 May 1431, dying at about nineteen years of age.
Joan of Arc are an American indie rock band from Chicago, Illinois. They formed in 1995, following the breakup of Cap'n Jazz.
Singer Tim Kinsella has been the only permanent member of the group; he has also recorded as a solo artist.
Joan of Arc are known for their use of electronics, samples, and multi-track recording in their songs; some songs on The Gap contained over 100 tracks.
Joan of Arc's lyrics and cover art are often intentionally misleading, humorous, or confusing. For example, the album Live in Chicago 1999 is not a live album, but a reference to the fact that the band lived in Chicago in the year 1999.
Members of Joan of Arc have been in many other bands including Friend/Enemy with Califone's Tim Rutili; American Football with Kinsella's brother Mike; Owls, a Cap'n Jazz reunion; Ghosts and Vodka; Everyoned, and most recently Make Believe.
Joan of Arc began as a band named Red Blue Yellow. They broke up after their first show, threw away all of their old material, and started afresh with new songs and a new name. Three months later, Joan of Arc had their first show at Autonomous Zone in Chicago. After two promising 7" singles, the band recorded their debut album A Portable Model Of... on the Jade Tree label.
Joan of Arc, also known as Joan of Arc, Maiden of Orleans, is an outdoor copy of Emmanuel Frémiet's equestrian statue Jeanne d'Arc (1874), installed in Portland, Oregon's Laurelhurst neighborhood, in the United States. The bronze sculpture, which depicts Joan of Arc, was donated to the city by Henry Waldo Coe, who saw Frémiet's original statue in Paris. Portland's copy arrived from France in 1924 and was dedicated on Memorial Day in 2015 in honor of the Doughboys of World War I.
Joan of Arc is an outdoor equestrian statue installed in Coe Circle, at the intersection of Northeast 39th and Glisan, in Portland's Laurelhurst neighborhood. The sculpture is one of several copies of Emmanuel Frémiet's 1874 gilded bronze statue, Jeanne d'Arc, which is installed at the Place des Pyramides in Paris. Portland's statue is also made of bronze and measures approximately 12 feet (3.7 m) x 5.5 feet (1.7 m) x 9 feet (2.7 m). The flag held by Joan of Arc is made of copper. The statue rests on a granite base that measures approximately 8 feet (2.4 m) x 3 feet (0.91 m) x 9 feet (2.7 m).
Joan of Arc is a 1999 two-part television miniseries about the 15th century Catholic saint of the same name. The film stars Leelee Sobieski as Saint Joan. A joint production of the Canadian Broadcasting Corporation and Alliance Atlantis Communications, the film was shown internationally in 1999.
The miniseries received thirteen Primetime Emmy Awards nominations and four Golden Globe Award nominations.
The miniseries tells the story of Joan of Arc, from her birth in 1412 until her death in 1431.
Joan of Arc is born in 1412 in the village of Domrémy in the war zone of Northern France. During her youth she often witnesses the horrors of war, but her spirit is kept high by the legend of the Maiden of Lorraine. This says that a young maiden one day will unite the divided country and lead the people to freedom.
Joan of Arc (French: Jeanne d'Arc) is a 1900 French silent film directed by Georges Méliès, based on the life of Joan of Arc.
In the village of Domrémy, the young Joan is visited by Saint Michael, Saint Catherine, and Saint Margaret, who exhort her to fight for her country. Her father Jacques d'Arc, mother Isabelle Romée, and uncle beg her to stay at home, but she leaves them and travels to Vaucouleurs, where she meets with the governor, Captain Robert de Baudricourt. The dissipated Baudricourt initially scorns Joan's ideals, but her zeal eventually wins him over, and he gives her authority to lead French soldiers. Joan and her army lead a triumphal procession into Orléans, followed by a large crowd. Then, in Reims Cathedral, Charles VII is crowned King of France.
At the Siege of Compiègne, Joan is taken prisoner while her army attempts to storm the castle. In prison, Joan has another dream in which she sees her visions again. Taken to the interrogation, Joan refuses to sign a retraction, and is condemned as a heretic. In the Rouen marketplace, Joan is burned at the stake. The wood carrier at the execution, bringing in fuel for the burning, dies on the spot from the fumes. In a final apotheosis scene, Joan rises to heaven, where she is greeted by God and the saints.
Joan of Arc is a public artwork by Paul Dubois, located at Meridian Hill Park in Washington, D.C., United States of America. Joan of Arc was originally surveyed as part of the Smithsonian's Save Outdoor Sculpture! survey in 1994.
Joan of Arc is an equestrian statue, with Joan of Arc riding a trotting horse, resting upon a three-tiered granite base (H. 52 in. x W 11. ft.). Her body is twisted slightly, and her right arm is raised behind her. She is wearing a helmet with a raised visor and she looks skywards. In her left hand she holds the reins to her horse. The sword she originally held in her right hand was stolen in 1978, and not replaced until December 2011. The pedestal was designed by American artist H.L. Davis.
The front of the base has the inscription:
In 1921 the United States Commission of Fine Arts suggested that the sculpture be placed at the terrace of Meridian Hill Park.
The piece was first proposed in May 1916 by Mme Polifème to the Commission of Fine Arts in order to celebrate the friendship between France and the United States. During its creation, DuBois worked closely with the French Minister of Education and Fine Arts in producing a credible representation of the peasant girl.
Enjoying Joan of Arc? You can watch Extra Credits episodes 24 early, join our discord, vote for and suggest new history topics with Patreon! https://bit.ly/EHPatreon Joan of Arc was on a mission from God, during her siege of Orleans. However, nothing could have prepared Joan for being captured and sold out to the English. As Bishop Pierre Cauchon was determined to prove the inaccuracy of her visions and her motivations so that Charles could have no claim to the throne. But Joan held on till the bitter end. We really enjoyed revisiting this series and getting to implement the viewer feedback that Rob had previously only been able to address in Lies. Please let us know in the comments below if you enjoyed this, and we look forward to sharing the next one with you all. * Watch Extra...
📜 Joan of Arc: The Mad King - Before we can really get into Joan of Arc's life, we have to get a bit into the civil war between the Burgundians and the Armagnacs. Time for some royal family drama with King Charles VI's madness and Queen Isabeau's friend Louis. * Watch Extra History ad-free & get 1-week early access on *NEBULA* https://go.nebula.tv/extrahistory * Suggest & Vote on our next episodes, get exclusive content & 24-hour early access on *PATREON* https://bit.ly/EHPatreon * Show off your fandom with *MERCH* from our store! http://extracredits.store/ * Interested in sponsoring an episode?* Email us: [email protected] TWITTER: http://bit.ly/ECTweet I FACEBOOK: http://bit.ly/ECFBPage INSTAGRAM: http://bit.ly/ECisonInstagram I TIKTOK: https://bit.ly/ECtiktokz BLUESKY:...
Join the Captivating History Book Club: https://bit.ly/3TMmpU2 Get a FREE mythology bundle ebook covering Greek, Norse, and Egyptian mythology here: http://www.captivatinghistory.com/ebook You can get the audiobook version of Joan of Arc here: https://www.audible.com/pd/B07Q8BWSNV/?source_code=AUDFPWS0223189MWT-BK-ACX0-148094&ref=acx_bty_BK_ACX0_148094_rh_us You can get the paperback version of Joan of Arc here: https://www.amazon.com/Joan-Arc-Captivating-Heroine-Lancastrian/dp/1798516128 And the ebook version of Joan of Arc here: https://www.amazon.com/Joan-Arc-Captivating-Heroine-Lancastrian-ebook/dp/B07P6CR9G8 Joan's story almost feels like a novel instead of a part of history. She was a shining savior on a warhorse, waving her white banner and calling her soldiers forth to victor...
She’s one of history’s youngest warriors. At an age when most of us were still stressing over what to wear to school, Joan of Arc was leading thousands of French troops into battle against the English. Supposedly inspired by divine visions of Catholicism’s greatest saints, Joan first took up her sword at 16, was leading armies by 17, and was burned at the stake before she was 20. In her short life, she managed to change the course of the Hundred Years’ War, ending English domination of France. Not bad for an illiterate girl from the sticks. But while most of us know the name Joan of Arc and know her tragic end, how much do we know about her life? Join us today as we take a look at the simple peasant girl who changed European history, before dying alone and disgraced, convinced she was a fa...
Who was Joan of Arc? The holy warrior - The Life of Joan of Arc Documentary - The Maid of Orléans - The Medieval History #Medieval #SeeUinHistory #History Check out our comics: Japanese Mythology in Comics: The Essential - https://amzn.to/3nCv1dn Eros and Psyche: The Quest for Love - https://amzn.to/2I9XrLt Medusa: The Cursed Priestess - https://amzn.to/34Jf5O0
Music video by Little Mix performing Joan of Arc (Audio). (C) 2018 Simco Limited under exclusive licence to Sony Music Entertainment UK Limited http://vevo.ly/bQTFJ4
Starring: Milla Jovovich, John Malkovich, Rab Affleck The Messenger: The Story of Joan of Arc (1999) Official Trailer 1 - Milla Jovovich Movie A young girl receives a vision that drives her to rid France of its oppressors. Subscribe to CLASSIC TRAILERS: http://bit.ly/1u43jDe Subscribe to TRAILERS: http://bit.ly/sxaw6h Subscribe to COMING SOON: http://bit.ly/H2vZUn We're on SNAPCHAT: http://bit.ly/2cOzfcy Like us on FACEBOOK: http://bit.ly/1QyRMsE Follow us on TWITTER: http://bit.ly/1ghOWmt Welcome to the Fandango MOVIECLIPS Trailer Vault Channel. Where trailers from the past, from recent to long ago, from a time before YouTube, can be enjoyed by all. We search near and far for original movie trailer from all decades. Feel free to send us your trailer requests and we will do our best to ...
Join us on Patreon! http://bit.ly/EHPatreon When Joan met the army of Orleans, they weren't exactly keen on her idea to just GET 'EM and go completely offensive--thinking she would have more use as a mascot. But both they, and she, would be in for many surprises... Follow us on Instagram: http://bit.ly/ECisonInstagram (--More below) Check out all our shows at http://becauselearningmatters.com Miss an episode? Part 1 - The Mad King: https://youtu.be/4XFVzpJxgUk Part 2 - Angels and Demons: https://youtu.be/ZphBpO5qUkg Part 3 - The Maid of Orleans: https://youtu.be/WQZimRmHEuw Part 4 - Thy Kingdom Come: https://youtu.be/JuuYBVsg_Hg Part 5 - Heroine or Heretic?: https://youtu.be/C12SCeVmGAw Grab your Extra Credits gear at the store! http://bit.ly/ExtraStore Subscribe for new episodes every S...
Join us on Patreon! http://bit.ly/EHPatreon Joan had been sold out to the English. Bishop Pierre Cauchon was determined to prove the inaccuracy of her visions and her motivations so that Charles could have no claim to the throne. But Joan held on till the bitter end. Follow us on Instagram: http://bit.ly/ECisonInstagram (--More below) Check out all our shows at http://becauselearningmatters.com Miss an episode? Part 1 - The Mad King: https://youtu.be/4XFVzpJxgUk Part 2 - Angels and Demons: https://youtu.be/ZphBpO5qUkg Part 3 - The Maid of Orleans: https://youtu.be/WQZimRmHEuw Part 4 - Thy Kingdom Come: https://youtu.be/JuuYBVsg_Hg Part 5 - Heroine or Heretic?: https://youtu.be/C12SCeVmGAw Grab your Extra Credits gear at the store! http://bit.ly/ExtraStore Subscribe for new episodes every...
From the album "He's Got The Whole This Land Is Your Land In His Hands", available from Joyful Noise Recordings: http://joyfulnoi.se/HGTWJOA
Your War (I'm One Of You) chronicles the life and career of Chicago's Tim Kinsella, frontman of ever-shifting band Joan of Arc and '90's pioneers Cap'n Jazz. With appearances from Tim's friends, family, and admirers, we learn what has made his legacy so unique and enduring for more than 20 years. WATCH NEXT: NOISEY: Atlanta with Migos, Killer Mike (Full Episode): http://bit.ly/2k3hNJv You Should Subscribe Here Now: http://bit.ly/Subscribe-to-Noisey ** Subscribe to Noisey on YouTube to stay updated on our daily releases: http://bit.ly/Subscribe-to-Noisey Videos, daily editorial and more: http://www.noisey.com Like Noisey on Facebook: http://fb.com/noisey Follow Noisey on Twitter: http://twitter.com/noiseymusic Read our tumblr: http://noiseymusic.tumblr.com Check out our Instagram:http://i...
Joan sings Cheap Trick's The Flame.
"Punk Kid" from Joan of Arc off the album '1984' out on Joyful Noise Recordings. Directed by Mike Gibisser, and featuring family members and fellow Chicago artists and musicians, Joan of Arc finds heroism (and punk) in the everyday. LP/CD/Digital: http://joyfulnoi.se/1984
Honor, bravery, and spirit mark the character of Joan of Arc. Beginning with a solemn introduction signifying the visions that this martyr experienced, the work gives way to an exciting and rhythmic section that depicts her many battles. Active percussion, dark harmonies, and motivic development add to the sophistication of this work based on the enigmatic historical figure. It will be a fine addition to your next concert or festival performance as well as an opportunity for cross-curricular education.
"Destiny Revision" from Joan of Arc off their album 'Tim Melina Theo Bobby' out on Joyful Noise Recordings. Video by Bobby Burg Stream the audio: https://lnk.to/DestinyRevision LP/Cass/Digital: http://joyfulnoi.se/JOA-TMTB Lyrics: In between the body and the mind lives the voice; Reflected, fragmented, redacted. Your voice, saying my name: Let go, let go. Let go, let go: Revising my destiny. In between my body and my mind, it’s your hands, your perfect sweet sweat smell: Hold on, hold on. Hold on, hold on. Oh my dream my destiny, now no one ever even says your name to me.
Joan sings Anouk's Nobody's wife
Although most bands struggle with distancing themselves from the seemingly infinite number of musicians who have come before, when Joan of Arc set about writing its new record the innovative group had only one past example to compete with: itself. "I think it's harder for a band to make a tenth record, than it is to make a first record," says Tim Kinsella, who remains the one permanent member of the Joan of Arc lineup. "There is more freedom to be daring, but there is also your own standard to live up to and surpass." It's obvious that Kinsella has succeeded in doing just that. Given the unconventional music style that characterizes the group's discography, Flowers pushes new boundaries by housing 13 songs that seamlessly glide together in a unique fashion. Here, the band weaves organized,...
Joan of Arc - White Out Recorded Live: Horseshack - Davenport, IA More Joan of Arc: http://www.daytrotter.com/search.html?t=joan-of-arc Visit Daytrotter: http://www.daytrotter.com
Joan of Arc live at Swarthmore College in Philadelphia, PA on September 18,1999.
Joan of Arc (French: Jeanne d'Arc,IPA: [ʒan daʁk]; 6 January c. 1412 – 30 May 1431), nicknamed "The Maid of Orléans" (French: La Pucelle d'Orléans) is considered a heroine of France for her role during the Lancastrian phase of the Hundred Years' War, and was canonized as a Roman Catholic saint. Joan of Arc was born to Jacques d'Arc and Isabelle, a peasant family, at Domrémy in north-east France. Joan said she received visions of the Archangel Michael, Saint Margaret, and Saint Catherine instructing her to support Charles VII and recover France from English domination late in the Hundred Years' War. The uncrowned King Charles VII sent Joan to the siege of Orléans as part of a relief mission. She gained prominence after the siege was lifted only nine days later. Several additional swift victories led to Charles VII's coronation at Reims. This long-awaited event boosted French morale and paved the way for the final French victory.
On 23 May 1430, she was captured at Compiègne by the Burgundian faction which was allied with the English. She was later handed over to the English, and then put on trial by the pro-English Bishop of Beauvais Pierre Cauchon on a variety of charges. After Cauchon declared her guilty she was burned at the stake on 30 May 1431, dying at about nineteen years of age.
Can you hear me? Nageki no kane to zawameku tetsu no shinyouju
Select due to the Lord
Mabayui gogo ni fui ni shoujo wa koe o kiku
Kiseki o hoshigatte yowasa ni me o sorasu
Katamuita hi wa terasezuni
Hosoku shiroi karenna te ni hata wa kakagerare
I just realize
Chikai no hate ni motometeita hikari ga aru to
I believe in me bara o fumishimete yuri o sakihokore
Why you selected me
Mayoi no koe mo kakikeshi moumoku ni susumu
She finally served
Yakusoku no hate kanojo wa tada nagesuterareta
Kuchibiru o kamishime sokoku o mitsumete mo
Urumu keshiki wa toozakaru
Yobi tsudzuketa anata no koe mou kikoenai
What's left of me
Shiren no hate ni motometeita hikari ga aru to
I believe in you mimi o sumashite sukui o shinjita
Kimekomareta aa fujourina kaitou
Seki o kitte iu mada ikitai to ikitai to
Why you not?
Tell me why
Tell me why
Tell me why
Tell your lies
I just realise
Soredemo kitto anata no namae o yobitsudzuke