- published: 01 Oct 2011
- views: 164519728
'+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; })); }); -->
The Brothers Grimm (die Brüder Grimm or die Gebrüder Grimm), Jacob (1785–1863) and Wilhelm Grimm (1786–1859), were German academics, linguists, cultural researchers, lexicographers and authors who together specialized in collecting and publishing folklore during the 19th century. They were among the best-known storytellers of folk tales, and popularized stories such as "Cinderella" ("Aschenputtel"), "The Frog Prince" ("Der Froschkönig"), "The Goose-Girl" ("Die Gänsemagd"), "Hansel and Gretel" ("Hänsel und Gretel"), "Rapunzel", "Rumpelstiltskin" ("Rumpelstilzchen"),"Sleeping Beauty" ("Dornröschen"), and "Snow White" ("Schneewittchen"). Their first collection of folk tales, Children's and Household Tales (Kinder- und Hausmärchen), was published in 1812.
The brothers spent their formative years in the German town of Hanau. Their father's death in 1796 caused great poverty for the family and affected the brothers for many years after. They both attended the University of Marburg where they developed a curiosity about German folklore, which grew into a lifelong dedication to collecting German folk tales. The rise of romanticism during the 19th century revived interest in traditional folk stories, which to the brothers represented a pure form of national literature and culture. With the goal of researching a scholarly treatise on folk tales, they established a methodology for collecting and recording folk stories that became the basis for folklore studies. Between 1812 and 1857, their first collection was revised and republished many times, growing from 86 stories to more than 200. In addition to writing and modifying folk tales, the brothers wrote collections of well-respected German and Scandinavian mythologies, and in 1838 they began writing a definitive German dictionary (Deutsches Wörterbuch), which they were unable to finish during their lifetime.
Brothers Grym (also known as Ghetto Repaired Young Minds, or The Bee-Geez) was a New York hip-hop group formed by Too Poetic (born Anthony Berkeley on November 15, 1964 – died July 15, 2001) and his two younger brothers, lyricists Brainstorm (born Joel Berkeley in 1969) and R&B hip-hop producer E# (born Edward Berkeley in 1971, aka E Sharp, Goalfingaz).
The first incarnation of the group was formed around 1989 in Amityville, Long Island, New York, although the family grew up in Wyandanch, Long Island. The family of four brothers (Anthony, Richard, Joel, and Edward) and one sister (Dawne), of which Poetic (Anthony) was the eldest, were born to Trinidadian parents who moved from Trinidad and Tobago in 1971, making their first residence in Queens, New York for a short time, then moving to Wyandanch. John Berkeley (a pastor and a local businessman) and Ela Berkeley (a homemaker, cook-nutritionist, and teacher) were both singers and artistic in general, and they encouraged artistic expression in their five children. The family was well-rounded musically, singing gospel and R&B up to their early teens all around New York, other states, and Canada as "The Berkeley Singers". Anthony (Poetic), Dawne, and Joel (Brainstorm) sang, accompanied by Richard on the drums and Eddie (E-Sharp) on the piano or keyboard.
The Brothers Grimm is a 2005 adventure fantasy film directed by Terry Gilliam. The film stars Matt Damon, Heath Ledger, and Lena Headey in an exaggerated and fictitious portrait of the Brothers Grimm as traveling con-artists in French-occupied Germany during the early 19th century. However, the brothers eventually encounter a genuine fairy tale curse which requires real courage instead of their usual bogus exorcisms. Supporting characters are played by Peter Stormare, Jonathan Pryce, and Monica Bellucci.
In February 2001, Ehren Kruger sold his spec script to Metro-Goldwyn-Mayer (MGM). With Gilliam's hiring as director, the script was rewritten by Gilliam and Tony Grisoni, but the Writers Guild of America refused to credit them for their work, thus Kruger received sole credit. MGM eventually dropped out as distributor, but decided to co-finance The Brothers Grimm with Dimension Films and Summit Entertainment, while Dimension took over distribution duties.
The film was shot entirely in the Czech Republic. Gilliam often had on-set tensions with brothers Bob and Harvey Weinstein, which caused the original theatrical release date to be delayed nearly ten months. The Brothers Grimm was finally released on 26 August 2005 with mixed reviews and a $105.3 million box office performance.
The Cult are a British rock band formed in 1983. They gained a dedicated following in the UK in the mid-1980s as a post-punk/gothic rock band with singles such as "She Sells Sanctuary", before breaking mainstream in the US in the late 1980s as a hard rock band with singles such as "Love Removal Machine" and "Fire Woman". The band fuse a "heavy metal revivalist" sound with the "pseudo-mysticism ... of the Doors [and] the guitar-orchestrations of Led Zeppelin ... while adding touches of post-punk goth rock". Since their earliest form in Bradford during 1981, the band have had various line-ups; the longest-serving members are vocalist Ian Astbury and guitarist Billy Duffy, the band's two songwriters.
After moving to London, the band released the album Love in 1985, which charted at No. 4 in the UK, and which included singles such as "She Sells Sanctuary" and "Rain". In the late 1980s, the band supplemented their post-punk sound with hard rock in their third album, Electric; the polish on this new sound was facilitated by Rick Rubin, who produced the record. Their fourth album, Sonic Temple, proceeded in a similar vein, and these two LPs enabled them to break into the North American market.
The Cult is a New Zealand serial drama television series in which a group of people try to rescue their loved ones from a mysterious cult called Two Gardens.
The Cult held the 8:30-9:30 spot on TV2 in New Zealand. The series debuted in New Zealand on September 24, 2009 and finished with a 2-hour season finale on December 10. It was airing on Polish and Portuguese television in 2011, and commenced screening on Australian television from December 2012.
A few years prior to the starting of the series, a number of people started disappearing, later turning up in a mysterious compound, known as "Two Gardens". Amongst these people were Ryan Lewis, Andy Wills and Jenni Seger. Years later, another group of people, the relatives of Ryan, Andy and Jenni, receive pictures of their loved ones in "Two Gardens". They each learn of the fellow liberators seeking to find their loved ones and decide to band together to rescue the trio and the great mystery surrounding their disappearance...
The Cult is a fiction book by Max Simon Ehrlich published in 1979 by Mayflower and was the tenth book by the author.
Jeff was a loving son to Mr and Mrs Reed. But when he went to Ashtaroth, they lost him. He took a new name. He cursed his parents and spurned their love. Forever. for Jeff is now a member of The Cult. The Souls for Jesus, the brainchild of the Master, Buford Hodges, a tax-deductible, multi-million dollar industry feeding on the minds and bodies of the young and vulnerable. Only one man can redeem these lost souls. Only one man dares to take on the sinister forces of the Master. Only one man can help the Reeds. The man they call The Devil..
Jeff Reed - The main character of the book, Renamed Simeon by the SFJ
Frank Reed - Father of Jeff
Kate Reed - Mother of Jeff
Ken Reed - Brother of Jeff
Cindy Hyland - Girlfriend of Jeff, renamed Athaliah by the SFJ
Joe - Surf Buddy of Jeff
John Morse - The Devil, Enemy of the SFJ
Buford Hodges - The Master of the SFJ
The Brothers Grimm are two sets of fictional twin supervillains appearing in American comic books published by Marvel Comics.
The first appearance of the first Brothers Grimm came in Spider-Woman #3. These were a pair of identical, magically animated mannequins created by doll collector Nathan Dolly (also known as Mister Doll) and his wife Priscilla. During their initial appearances only one was ever seen at a time and the singular identity, Brother Grimm was used instead of their true plural name. After three return appearances in Spider-Woman, they perished in issue #12.
Though the characters were introduced while Marv Wolfman was writing Spider-Woman, their origin and identities were not revealed until Mark Gruenwald's run on the series. Questioned as to whether he had told Gruenwald the characters' origin or Gruenwald had come up with it himself, Wolfman admitted that he could not even remember if the origin he had originally envisioned for the characters was the same as the one ultimately used by Gruenwald, except that "Brother Grimm" actually being two people was his intention from the beginning. Though Wolfman could not remember how the Brothers Grimm were created, he has said he is confident that their visual design must have come from series penciler Carmine Infantino: "I usually gave the artist a concept of what I wanted and then let them have a field day with it. Carmine created brilliant designs in The Flash, so I would certainly have bowed to his expertise."
The Brothers Grimm movie clips: http://j.mp/15w2Jst BUY THE MOVIE: http://amzn.to/slsuYo Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: A mud monster attacks Sasha (Laura Greenwood) and carries her away. FILM DESCRIPTION: Two men who have made a career out of spinning remarkable stories find themselves bringing them to life in this inventive fantasy inspired by the creators of some of the world's best-loved fairy tales. Will Grimm (Matt Damon) and his brother Jake Grimm (Heath Ledger) earn their living by traveling from village to village and vanquishing strange supernatural beasts that have been menacing the populace. Or at least that's what their clients think has been happening; as it happens, Will and Jake are confidence men who cleverly stage the ghostl...
Will (Matt Damon) and Jake Grimm (Heath Ledger) earn their living by traveling from village to village and vanquishing strange supernatural beasts. At least that's what they trick their clients into thinking. Actually, Will and Jake are con artists who cleverly stage the ghostly attacks and then get paid to make them go away. The scam goes as planned until they arrive at a town that is bordered by an actual enchanted forest. Now The Grimm Brothers must learn to deal with real magic as they encounter many of the fantastic characters and thrilling situations found in their beloved fairy tales. Starring, in alphabetical order: Roger Ashton-Griffiths, Monica Bellucci, Mackenzie Crook, Matt Damon, Lena Headey, Deborah Hyde, Heath Ledger, Peter Tormare About Miramax: Miramax is a global film ...
A pair of con-artist brothers pretend to be experts in supernatural matters and get in some serious trouble when they come across a real magical case. Subscribe to our friends channel: https://tinyurl.com/Movie-Recaps
🔺Note: the original GRIMM'S FAIRY TALES by the Brothers Grimm were not intended for kids of all ages per se, as some contain violence and adult content which may not be deemed suitable for children. PARENTS: This video IS NOT made for kids. It's advisable to download the *YouTube Kids* app: [ https://www.youtube.com/intl/ALL_us/kids/ ] or [https://youtubekids.com] to find content specifically created for kids and deemed appropriate for young children.🔺Grimm's Fairy Tales (German: Kinder- und Hausmärchen) is a collection of European folk tales and short stories first published in 1812 by the German brothers Jacob and Wilhelm Grimm. The collection is commonly known in the Anglosphere as Grimm's Fairy Tales (German: Grimms Märchen). 🌟🎧📚 https://GreatestAudioBooks.co 🌐 💙 T w i t t e r : https...
A horse swallows Elsie. The brothers (Matt Damon and Heath Ledger) and Angelika (Lena Headey) immediately rush to the forest to try and help her. BINGE MORE: https://youtu.be/nxMG0Hcy4qw Credits: © 2005 Miramax Films. The Brothers Grimm. AVAILABLE FOR RENT OR BUY THE BROTHERS GRIMM: https://amzn.to/30LhwS2 #BingeSociety #TheBrothersGrimm #Horse Subscribe: https://bit.ly/3aVlqJm BINGE MORE: The Fast & The Furious Tokyo Drift - Winner gets me: https://bit.ly/3b3Dstn Minions - The...
Once upon a time there were two brothers, united for life by their passion for literature and their study of language: Wilhelm and Jacob Grimm. Their name is mostly connected with their fairy tales, those wonderful stories of ugly witches and brave girls, of young princes and great dangers. But they collected these stories for political reasons. They wanted to preserve the past in order to change the present. This docu-drama tells the unknown story of the famous fairy-tale collectors. The Grimms have a very clear vision: a unified Germany based on a common German language. Their fairy tales are meant to serve as a framework for unity. But in 1837, Germany is still divided into many principalities. When they started their careers, Napoleon Bonaporte’s brother had just been installed as Kin...
In the western world, fairy tales collected by the Brothers Grimm, Jacob and Wilhelm, in the early 1800's resonate with children to this very day. Stories like Little Red Riding Hood, Hansel and Gretel, Rapunzel, and Snow White all make the cut. But what set off the Grimms to collect these stories? And if they didn't write the stories, then who did? MYTHOLOGY HAS BEEN TOLD AND RETOLD IN MANY FORMS ACROSS TIME, STORIES AND ACCOUNTS MAY VARY. MUSIC: "The Wishing Pool" Brandon & Derek Fiechter "Ach meiden du vil sende pein" Augsburg Early Music Ensemble OPENING: https://www.fiverr.com/saif_edits ARTISTS FEATURED: Arthur Rackham Thomas Kinkade Franz Juttner Jesus Blasco Elizabeth Adela Stanhope REFERENCES: “Grimm’s Fairy Tales” translation by Margaret Hunt https://www.historytoday.com/arc...
#shorts Movie title:The Brothers Grimm (2005) Overview: Will Green (Matt Damon Matt Damon) and Jack Green (Heath Ledger Heath Ledger) is a pair of idle, by fraud for a living con man. They often hire people to play demons and monsters in different places to wreak havoc, and then they appear as exorcists to "destroy" the demons, so as to cheat the villagers of payment. Due to this repeated success, the reputation of the Grimm brothers as exorcists grew, and they were even summoned by the King of France, who invited them to the cursed forest to unravel the mystery of the missing girl. Now, the Brothers Grimm have to go to the enchanted forest with their heads in the sand. In the forest, Cinderella and Little Red Riding Hood, the original fairy tale characters, make their appearance. .........
The Brothers Grimm movie clips: http://j.mp/15w2Jst BUY THE MOVIE: http://amzn.to/slsuYo Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: Jake (Heath Ledger) destroys the Queen (Monica Bellucci) by destroying the magic mirror. FILM DESCRIPTION: Two men who have made a career out of spinning remarkable stories find themselves bringing them to life in this inventive fantasy inspired by the creators of some of the world's best-loved fairy tales. Will Grimm (Matt Damon) and his brother Jake Grimm (Heath Ledger) earn their living by traveling from village to village and vanquishing strange supernatural beasts that have been menacing the populace. Or at least that's what their clients think has been happening; as it happens, Will and Jake are confidence men who clev...
The Brothers Grimm is a 2005 adventure fantasy film directed by Terry Gilliam. The film stars Matt Damon, Heath Ledger, and Lena Headey in an exaggerated and fictitious portrait of the Brothers Grimm as traveling con-artists in French-occupied Germany, during the early 19th century. However, the brothers eventually encounter a genuine fairy tale curse which requires real courage instead of their usual bogus exorcisms. Supporting characters are played by Peter Stormare, Jonathan Pryce, and Monica Bellucci. In February 2001, Ehren Kruger sold his spec script to Metro-Goldwyn-Mayer (MGM). With Gilliam's hiring as director, the script was rewritten by Gilliam and Tony Grisoni, but the Writers Guild of America refused to credit them for their work, thus Kruger received sole credit. MGM eventua...
The Brothers Grimm (die Brüder Grimm or die Gebrüder Grimm), Jacob (1785–1863) and Wilhelm Grimm (1786–1859), were German academics, linguists, cultural researchers, lexicographers and authors who together specialized in collecting and publishing folklore during the 19th century. They were among the best-known storytellers of folk tales, and popularized stories such as "Cinderella" ("Aschenputtel"), "The Frog Prince" ("Der Froschkönig"), "The Goose-Girl" ("Die Gänsemagd"), "Hansel and Gretel" ("Hänsel und Gretel"), "Rapunzel", "Rumpelstiltskin" ("Rumpelstilzchen"),"Sleeping Beauty" ("Dornröschen"), and "Snow White" ("Schneewittchen"). Their first collection of folk tales, Children's and Household Tales (Kinder- und Hausmärchen), was published in 1812.
The brothers spent their formative years in the German town of Hanau. Their father's death in 1796 caused great poverty for the family and affected the brothers for many years after. They both attended the University of Marburg where they developed a curiosity about German folklore, which grew into a lifelong dedication to collecting German folk tales. The rise of romanticism during the 19th century revived interest in traditional folk stories, which to the brothers represented a pure form of national literature and culture. With the goal of researching a scholarly treatise on folk tales, they established a methodology for collecting and recording folk stories that became the basis for folklore studies. Between 1812 and 1857, their first collection was revised and republished many times, growing from 86 stories to more than 200. In addition to writing and modifying folk tales, the brothers wrote collections of well-respected German and Scandinavian mythologies, and in 1838 they began writing a definitive German dictionary (Deutsches Wörterbuch), which they were unable to finish during their lifetime.
Yeah
Ooh now baby, baby, baby, baby, baby
Hey there people, have you heard the news?
Ooh oh yeah
The world's on fire, I'm telling you, yeah, I'm telling you
Brothers and sisters everywhere, come together
People like you should
Ooh, like you should
Drive on people
Drive on people
Ooh, I never thought we'd get too far, yeah
Living on the wrong side talking 'bout life
Ow, yeah, yeah, yeah, yeah
Lovers and sinners, cats and fools
Shake it together, come on people, please, yeah
Drive on people
People drive on, say
Drive on people
I ain't no sucker, I ain't no fool
Talking about the automatic blues, yeah
I ain't no sucker, I ain't no fool
Talking about the automatic blues
Ain't no sucker, ain't no fool, no
Ain't no sucker, yeah, yeah, yeah, yeah
Come on and shake it, boy
Drive on people
People drive on, yeah
Drive on people, yeah, yeah, yeah, yeah
Drive on people
People drive on, say
Drive on people
I ain't no sucker, I ain't no fool
I'm talking about the automatic blues, yeah
I ain't no sucker, I ain't no fool
I'm talking about the automatic blues, now
I ain't no sucker, I ain't no fool
I'm talking about the automatic blues
I ain't no sucker, I ain't no fool
I'm talking about the automatic blues, yeah, uh