- published: 25 Aug 2020
- views: 17858
'+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; })); }); -->
A whipping boy was a young boy who was assigned to a young prince and was punished when the prince misbehaved or fell behind in his schooling. Whipping boys were established in the English court during the monarchies of the 16th and 17th centuries. They were created because of the idea of the divine right of kings, which stated that kings were appointed by God, and implied that no one but the king was worthy of punishing the king’s son. Since the king was rarely around to punish his son when necessary, tutors to the young prince found it extremely difficult to enforce rules or learning.
Whipping boys were generally of high status, and were educated with the prince from birth. Because the prince and whipping boy grew up together they usually formed a strong emotional bond, especially since the prince usually did not have playmates as other children would have had. The strong bond that developed between a prince and his whipping boy dramatically increased the effectiveness of using a whipping boy as a form of punishment for a prince. The idea of the whipping boys was that seeing a friend being whipped or beaten for something that he had done wrong would be likely to ensure that the prince would not make the same mistake again.
A whipping boy was a young boy who was assigned to a prince and was punished in his place.
Whipping boy may also refer to:
The Whipping Boy is a Newbery medal-winning children's book by Sid Fleischman, published in 1987.
Prince Horace can be spoiled and, craving attention from his father, he frequently misbehaves—to the point he is nicknamed "Prince Brat." Since he is a prince, no one may raise a hand against him. Therefore, his family provides him with a whipping boy, Jemmy, an orphaned boy who will be punished in the prince's stead. Though he has learned to read, write and do mathematics while living in the castle, Jemmy is beaten several times a day and longs for the freedom he had on the streets. When the prince decides to run away on a whim he demands that Jemmy act as his servant during his journey. While on the run, the boys are picked up by two notorious highwaymen, Hold-Your-Nose Billy and Cutwater, who hatch a scheme to ransom the prince. Jemmy talks them into believing that he is the prince, and sets into motion a plan of escape. The prince misunderstands Jemmy's intentions and betrays him. Even so, the boys escape. They come across a girl searching for her lost dancing bear and she directs them to the river where they find a kind man with a wagon full of potatoes. The boys help the man get his wagon from the mud, and in return the potato man gives the boys, the girl, and the bear a lift to the fair, but they are soon intercepted by the highwaymen. Still believing Jemmy is the prince, and believing it to be a crime worse than murder to beat the prince, they beat Horace instead.
HIDDEN ERROR: Usage of "spouse" is not recognized
Benjamin Chase "Ben" Harper (born October 28, 1969) is an American singer-songwriter and multi-instrumentalist. Harper plays an eclectic mix of blues, folk, soul, reggae and rock music and is known for his guitar-playing skills, vocals, live performances, and activism. He has released twelve regular studio albums, mostly through Virgin Records and has toured internationally. Harper is a three-time Grammy Award winner as well, winning awards for Best Pop Instrumental Performance and Best Traditional Soul Gospel Album, in 2005. He also won a Grammy for Best Blues Album in 2014.
Harper was born in Pomona, California. His father, Leonard, was of African-American and possibly Cherokee ancestry, and his mother, Ellen Chase-Verdries, is Jewish. His maternal great-grandmother was a Russian-Lithuanian Jew. His parents divorced when he was five years old, and he grew up with his mother's family. Harper has two brothers, Joel and Peter.
This is a list of characters for the British sitcom My Family that has aired on BBC One since 17 September 2000. Lucy Chestifield played by Hollie Dodds is in the 9th series till the end. My Family centres on the fictional Harper family, who live in Chiswick, west London. The family is led by parents Ben and Susan, played by Robert Lindsay and Zoë Wanamaker. They have three children, Nick (Kris Marshall), Janey (Daniela Denby-Ashe) and Michael (Gabriel Thomson). Nick is a regular character until the 2003 Christmas special, and makes one appearance in 2004's fifth series before making his final My Family appearance in the 2005 Comic Relief short as Marshall wanted to do other projects and avoid being type-cast. Janey is a regular until the 2002 Christmas special and does not appear in Series Four (2003), while the character is at University. Janey returns as a main character in Series Five.
Abi Harper, played by Siobhan Hayes, first appears in Series Three as the daughter of Ben's cousin Richard (Anthony Head). Series Three also sees the first appearance of Roger Bailey, Jnr, played by Keiron Self. Roger, who becomes a main character in the fourth series, is a dentist and the son of Ben's former mentor. In the 2005 Christmas special Alfie Butts (Rhodri Meilir), a friend of Nick's, moves into the Harper household.
Not to be confused with Ben Harper
Benjamin Eric Harper is an American rock musician. He is best known for being the former lead guitarist for the American pop punk band Yellowcard, as well as for the bands Amber Pacific and HeyMike!. Harper is co-owner of Takeover Records.
Harper formed Yellowcard in 1997 along with Longineu W. Parsons III, Ben Dobson, Todd Clary, Warren Cooke, and Sean Mackin after meeting at Douglas Anderson School of the Arts. The band released their first album, Midget Tossing, in 1997. They then released their second album, Where We Stand in 1999. After Dobson left the band Harper asked friend Ryan Key to be the band's new lead singer. The band then released the Still Standing EP in early 2000. Shortly after the release of their EP Todd Clary left the band, Key then filled in as the rhythm guitarist. The band then moved to Camarillo, CA, after being signed to Lobster Records. They then begin working on their next album.
Whipping Boy are an Irish alternative rock band who were mainly active in the 1980s and 1990s. The band reformed briefly in 2005 for a series of shows. 2011 saw Whipping Boy emerge again, this time without Paul Page and Myles McDonnell. The Whipping Boy Periscopes Up tour summer 2011 saw Joey (bass) and Finn (guitar) replace them with longtime live guitarist Killian McGowan completing the line up.
Whipping Boy formed in Dublin in 1988, the band comprising Fearghal McKee (vocals), Paul Page (guitar), Myles McDonnell (bass, vocals), and Colm Hassett (drums). They initially performed cover versions of songs by The Velvet Underground and The Fall, and went by the name Lolita and the Whipping Boy, shortening their name when their female guitarist left. After a couple of EP's on the Cheree label, they released their low-key debut album, Submarine in 1992 on Liquid Records . Their live performances raised their profile, with McKee known to cut himself with broken glass on stage. The album was critically acclaimed though commercially unsuccessful, and led to a deal with Columbia Records, who issued the band's second album, Heartworm, in 1995, along with three minor hit singles.Heartworm received much critical acclaim, with Allmusic calling it "an earth-shatteringly powerful experience". The group split up in 1998 after being dropped by Columbia, leaving a third album unreleased. The self-titled album was eventually released in 2000 on their own Low Rent label.
SPOILED CHILD TAKE ANYTHING FOR GRANTED’#editha Janssen#
Music video by Whipping Boy performing When We Were Young (Official Video). (C) 1995 Sony Music Entertainment UK Limited http://vevo.ly/vIkt8W
Music video by Whipping Boy performing We Don't Need Nobody Else (Official Video). (C) 1995 Sony Music Entertainment UK Limited http://vevo.ly/oktloD
Music video by Whipping Boy performing Twinkle (Directors Cut). (C) 1995 Sony Music Entertainment UK Limited http://vevo.ly/uta7Fy
My Patreon: https://www.patreon.com/Kobean_History My Twitter: https://twitter.com/Kobean_History Were whipping boys real? In this video we look for the answer to that question by analyzing historical accounts of whipping boys and punishment by proxy. We check how accurate they are and how they match with our views of them today. Music by Vindsvept (Lake of Light) https://www.youtube.com/user/Vindsvept CC BY 4.0 License: https://creativecommons.org/licenses/by/4.0/
The role of a whipping boy was to receive the punishment that was meant for a royal child. It was believed that the transfer of physical suffering from the prince to his surrogate would have a profound psychological impact, reminding the heir of the consequences of their actions without directly harming them. By experiencing the pain on behalf of the prince, it was thought that the whipping boy would effectively deter the young royal from repeating the offense. the whipping boy Royal Whipping boy A whipping Boy The whipping boy whipping boy royal punishment royal school punishments DISCLAIMER: All content in these videos is intended for educational use only and complies with fair use principles. I don't own any image or video in this video, all images or videos are the property of thei...
Please read description! Horrible Histories if you (owners) want to REMOVED this video, PLEASE CONTACT US DIRECTLY. We will(Respectfully) remove it. Uploading this for people who are unable to watch live or on iPlayer. I do not own any of this. All content belongs to the BBC. Enjoy :))) Horrible Histories http://en.wikipedia.org/wiki/List_of_Horrible_Histories_episodes Terrible Tudors: Edward VI's whipping boy, Barnaby Fitzpatrick, faces the wrath of the royal tutors. Song "Mary I" (parody of Wuthering Heights by Kate Bush). Performed by Sarah Hadland
1994
Music video by Ben Harper performing Whipping Boy.
Provided to YouTube by Universal Music Group Whipping Boy · Elton John Too Low For Zero ℗ 1983 Mercury Records Limited Released on: 1998-01-01 Producer: Chris Thomas Studio Personnel, Recording Engineer: Bill Price Associated Performer, Vocals, Keyboards: Elton John Associated Performer, Guitar, Background Vocalist: Davey Johnstone Associated Performer, Bass Guitar, Background Vocalist: Dee Murray Associated Performer, Drums, Background Vocalist: Nigel Olsson Composer Lyricist: Bernie Taupin Composer Lyricist: Elton John Auto-generated by YouTube.
1994
Prince Brat And The Whipping Boy Trailer 1994 Director: Syd Macartney Starring: George C. Scott, Kevin Conway, Vincent Schiavelli, Truan Monro, Nic Knight, Karen Salt Official Content From Sony Pictures Home Entertainment A spoiled prince and his designated whipping boy are caught up in a case of mistaken identity when they are kidnapped by some bumbling criminals. Movie, Prince Brat And The Whipping Boy Movie,Prince Brat And The Whipping Boy Trailer,Prince Brat And The Whipping Boy 1994, Syd Macartney,George C. Scott, Kevin Conway, Vincent Schiavelli, Truan Monro, Nic Knight, Karen Salt
This commentary unravels a chapter of weird history in medieval England, examining the curious practice of whipping boys. Rooted in the peculiar norms of the time, this system used a young companion to bear the punishment intended for a noble child, driven by the belief that disciplining aristocrats was undignified. As we delve into this strange slice of history, the concept raises ethical questions and sheds light on the inherent inequalities of medieval society. It's a journey into a bygone era, where weird and fascinating customs shaped the narrative of the past.
"The Whipping Boy" is a children's book written by Sid Fleischman and first published in 1986. The book tells the story of Jemmy, a poor boy who is forced to serve as the whipping boy for the spoiled and mischievous Prince Brat. Whenever the prince misbehaves, Jemmy is punished in his place. However, when the two boys are kidnapped by two dangerous outlaws, they must work together to escape and find their way back to the castle. Along the way, they encounter various challenges and obstacles, but ultimately learn to appreciate each other and work as a team. Through the adventures of Jemmy and the Prince, the book explores themes of friendship, loyalty, and personal growth. The book has been widely acclaimed and has won several awards, including the Newbery Medal in 1987.
Mr. Galvan reads chapter 1 of The Whipping Boy
In the Newberry Award winner, The Whipping Boy, by Sid Fleischman, illustrated by Peter Sis, the spoiled Prince Brat is coddled that when he does bad things, another boy gets whipped. Chapter 1-3. Read along or just listen!
In ancient Rome, there was a surprising and unusual custom related to the education and upbringing of the children of high-ranking personalities, including the sons of emperors. This custom involved the use of a so-called "whipping boy".
A whipping boy was a young boy who was assigned to a young prince and was punished when the prince misbehaved or fell behind in his schooling. Whipping boys were established in the English court during the monarchies of the 16th and 17th centuries. They were created because of the idea of the divine right of kings, which stated that kings were appointed by God, and implied that no one but the king was worthy of punishing the king’s son. Since the king was rarely around to punish his son when necessary, tutors to the young prince found it extremely difficult to enforce rules or learning.
Whipping boys were generally of high status, and were educated with the prince from birth. Because the prince and whipping boy grew up together they usually formed a strong emotional bond, especially since the prince usually did not have playmates as other children would have had. The strong bond that developed between a prince and his whipping boy dramatically increased the effectiveness of using a whipping boy as a form of punishment for a prince. The idea of the whipping boys was that seeing a friend being whipped or beaten for something that he had done wrong would be likely to ensure that the prince would not make the same mistake again.
Inevitability
Is pounding at my door
Screaming for more
In a world that owes you nothing
You give everything
Everything
Now I'm caught in between
What I can't leave behind
And what I may never find
So fly one time
Fly one time
Standing
At the edge of your life
At the edge of our lives
Don't hold on, there's no fighting back the years
It's so hard to unlearn fears
Now that you're caught between
What you can't leave behind
And all that you may never find
So fly, just fly
Just fly one time
I see you so clearly, so clearly up so high
I see you up so clearly, up so clearly high
Now you're caught in between
What you can't leave behind
And what we may never find
So fly, so fly one time
So clearly, so clearly
So high, fly one time
Just fly one time