- published: 21 Dec 2012
- views: 83258342
'+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; })); }); -->
Thomas "Tom" Sawyer is the title character of the Mark Twain novel The Adventures of Tom Sawyer (1876). He appears in three other novels by Twain: Adventures of Huckleberry Finn (1884), Tom Sawyer Abroad (1894), and Tom Sawyer, Detective (1896).
Sawyer also appears in at least three unfinished Twain works, Huck and Tom Among the Indians, Schoolhouse Hill and Tom Sawyer's Conspiracy. While all three uncompleted works were posthumously published, only Tom Sawyer's Conspiracy has a complete plot, as Twain abandoned the other two works after finishing only a few chapters.
The fictional character's name may have been derived from a jolly and flamboyant fireman named Tom Sawyer with whom Twain was acquainted in San Francisco, California, while Twain was employed as a reporter at the San Francisco Call. Twain used to listen to Sawyer tell stories of his youth, "Sam, he would listen to these pranks of mine with great interest and he'd occasionally take 'em down in his notebook. One day he says to me: ‘I am going to put you between the covers of a book some of these days, Tom.’ ‘Go ahead, Sam,’ I said, ‘but don’t disgrace my name.’" Twain himself said the character sprang from three people, later identified as: John B. Briggs (who died in 1907), William Bowen (who died in 1893) and Twain; however Twain later changed his story saying Sawyer was fully formed solely from his imagination, but as Robert Graysmith says, "The great appropriator liked to pretend his characters sprang fully grown from his fertile mind."
Tom Sawyer is a song by Canadian rock band Rush, originally released on their 1981 album Moving Pictures as its opener. The song relies heavily on Geddy Lee's synthesizer playing and Neil Peart's drumming. Lee has referred to the track as the band's "defining piece of music...from the early '80s". It is one of Rush's best-known songs and a staple of both classic rock radio and Rush's live performances, having been played on every concert tour since its release. It peaked at #25 on the UK Singles chart in October 1981, at #44 on the US Billboard Hot 100, and at #8 on the Billboard Top Tracks chart. In 2009 it was named the 19th-greatest hard rock song of all time by VH1. "Tom Sawyer" was one of five Rush songs inducted into the Canadian Songwriters Hall of Fame on March 28, 2010.
The song was written by Lee, Peart, and guitarist Alex Lifeson in collaboration with lyricist Pye Dubois of the band Max Webster, who also co-wrote the Rush songs "Force Ten," "Between Sun and Moon," and "Test For Echo." According to the US radio show In the Studio with Redbeard (which devoted an entire episode to the making of Moving Pictures), "Tom Sawyer" came about during a summer rehearsal vacation that Rush spent at Ronnie Hawkins' farm outside Toronto. Peart was presented with a poem by Dubois named "Louis the Lawyer" (often incorrectly cited as "Louis the Warrior") that he modified and expanded. Lee and Lifeson then helped set the poem to music. The "growling" synthesizer sound heard in the song came from Lee experimenting with his Oberheim OB-X.
Tom Sawyer is a 2000 direct-to-video animated film from MGM Animation and was released in the year 2000. It is an adaptation of Mark Twain's The Adventures of Tom Sawyer, with a cast of anthropomorphic animals instead of humans. The characters' voices are generally performed by country music singers.
Tom Sawyer and his half-brother Sid are on their way to school when they see Huckleberry Finn fishing. Tom skips school to join Huck, but changes his mind after he sees Becky Thatcher. He tries to sneak into class, but Sid snitches on him to the teacher. Tom's teacher makes him sit with the girls, which Tom actually likes since he's able to sit next to Becky. He is also sat beside Amy Lawrence, a friend to whom he became "engaged". She still has romantic feelings for him but he is too transfixed by Becky to notice. Tom's pet frog Rebel then disrupts the class, meaning they are given early dismissal.
On the way home from school, during the musical number "Hook, Line and Sinker", Tom tries multiple times to steal a kiss from Becky, but is thwarted each time by her father, Judge Thatcher. The next day, as Tom is about to go fishing with his friends, Aunt Polly makes him paint the house as punishment for what happened at school. Tom, however, gets his friends to paint the house for him instead.
REMASTERED IN HD! Watch the official music video for "Tom Sawyer" performed by Rush Amazon: http://bit.ly/Rush2112SDE_Web Music video by Rush performing Tom Sawyer. (C) 1981 The Island Def Jam Music Group and Anthem Entertainment #Rush #TomSawyer #Remastered #Vevo #Rock #GeddyLee #OfficialMusicVideo
The Adventures of Tom Sawyer is a 1938 American drama film produced by David O. Selznick and directed by Norman Taurog who had previously directed Huckleberry Finn (1931 film) (1931) with Jackie Coogan and Junior Durkin. The film starred Tommy Kelly in the title role, with Jackie Moran and Ann Gillis. The screenplay by John V. A. Weaver was based on the classic 1876 novel of the same name by Mark Twain. The movie was the first film version of the novel to be made in color. Cast : Tommy Kelly as Tom Sawyer Jackie Moran as Huckleberry Finn Ann Gillis as Becky Thatcher May Robson as Aunt Polly Walter Brennan as Muff Potter Victor Jory as Injun Joe David Holt as Sid Sawyer Victor Kilian as Sheriff Nana Bryant as Mrs. Thatcher Olin Howland as Mr. Dobbins, school teacher Donald Meek as Sunday ...
Sentiment rules in this version of Twain's beloved classic tale of boyhood in 1850 Missouri. Tom Sawyer (Tommy Kelly) and his pal Huckleberry Finn (Jackie Moran) have great adventures on the Mississippi River, including most sequences familiar to readers of the book. The fence-whitewashing episode. A wild raft ride down the Mississippi River. Tom and Huckleberry Finn's attendance at their own funeral, after the boys, who were enjoying an adventure remote Jackson's Island, are presumed dead. The murder trial and salvation of local drunkard Muff Potter (Walter Brennan). Tom and Becky Thatcher's (Ann Gillis) adventure through a cave as they try to escape Injun Joe (Victor Jory), who is revealed to be the real killer. A 1938 American drama film directed by Norman Taurog. The screenplay b...
A remaster I did myself of a classic. After downloading the album, I thought it was just a little muddy and stale sounding (no insult to the original master.) Just wanted to put my touch of whatever on it for my own satisfaction. I managed to maintain all the dynamic brilliance of this track while making it "sparkle" and louder overall.
Video is from the Snakes & Arrows Tour, recorded at the Ahoy Arena in Rotterdam, Netherlands on October 16 and 17, 2007.
The Adventures of Tom Sawyer is a 1938 American drama film produced by David O. Selznick and directed by Norman Taurog who had previously directed Huckleberry Finn (1931) with Jackie Coogan and Junior Durkin. The film starred Tommy Kelly in the title role, with Jackie Moran and Ann Gillis. The screenplay by John V. A. Weaver was based on the classic 1876 novel of the same name by Mark Twain. The movie was the first film version of the novel to be made in color.
The Adventures of Tom Sawyer You can check out our stories on the Little Fox YouTube channel. -------------------------- 00:00 00:04 Introduction 02:29 The Adventures of Tom Sawyer 1: Cheeky Tom 07:38 The Adventures of Tom Sawyer 2: Tom at Work 12:50 The Adventures of Tom Sawyer 3: The New Girl 17:00 The Adventures of Tom Sawyer 4: Tom and Becky's Engagement 22:36 The Adventures of Tom Sawyer 5: Murder at Midnight 27:42 The Adventures of Tom Sawyer 6: The Right Medicine 32:46 The Adventures of Tom Sawyer 7: Life as a Pirate 38:23 The Adventures of Tom Sawyer 8: The Dead Return 43:15 The Adventures of Tom Sawyer 9: Tom's Dream 48:37 The Adventures of Tom Sawyer 10: Tom's Days of Glory 53:39 The Adventures of Tom Sawyer 11: Muff Potter's Trial 58:53 The Adventures of Tom Sawyer 12: Summ...
DOBRODOŠLI - http://www.dobra-stara-vremena.com Avanture Toma Sojera - The Adventures Of Tom Sawyer - Ceo film sa prevodom Tom Sojer je dečak koji nema roditelja i koji svoje detinjstvo, puno avantura i neobičnih dogodovština, provodi u kući svoje tetke obali reke Misisipi. Tom je pun ideja za igru i njemu nikada ne može biti dosadno, čak ni onda kada obavlja neke dosadne i njemu mrske poslove. To se najbolje vidi na primjeru kada je od tetke dobio zadatak da ofarba ogradu. Ograda je bila velika i Tomu se nije radilo. Mrzovoljno je povlačio četku i razmišljao kako da se izvuče iz tog posla, a onda ga je jedan dečak u uprolazu upitao da li on može da malo farba. Tomu je istog trenutka pala na pamet fantastična ideja kako da od farbanje ograde napravi zanimljivu nagradu igru za sebe. Dop...
A Film from back in the days when Cartoon Networks showed good animated films that I share with you.
REMASTERED IN HD! Watch the official music video for "Tom Sawyer" performed by Rush Amazon: http://bit.ly/Rush2112SDE_Web Music video by Rush performing Tom Sawyer. (C) 1981 The Island Def Jam Music Group and Anthem Entertainment #Rush #TomSawyer #Remastered #Vevo #Rock #GeddyLee #OfficialMusicVideo
I did not write this song and I do not intend any copyright infringement. Rush-Tom Sawyer from the 1981 album 'Moving Pictures'. Enjoy! Check my channel for more Rush lyrics videos.
Générique / Soundtrack
Enjoy!
Video is from the Snakes & Arrows Tour, recorded at the Ahoy Arena in Rotterdam, Netherlands on October 16 and 17, 2007.
. Tom Sawyer (1973) Director: Don Taylor Writers: Mark Twain (novel), Robert B. Sherman (screenplay) Stars: Johnny Whitaker, Celeste Holm, Warren Oates
they think about this song
Join us on Spinnin' Facebook: http://facebook.com/spinninrecords Follow us on Twitter: http://twitter.com/spinninrecords Join us on G+ : http://gplus.to/spinninrecords --- The Spinnin’ Records YouTube channel is the home for all music videos of the world’s leading dance record label! We feature the latest music videos by Spinnin’ artists like Oliver Heldens, Sam Feldt, KSHMR, Ummet Ozcan, Blasterjaxx, Merk & Kremont, Timmy Trumpet, Tujamo, Alok, Curbi, Mike Williams, Lucas & Steve and many, many more! Expect daily uploads of official music videos, lyric videos and artwork videos across genres like dance, house, electro house, future house, deep house, big room and trap. Make sure to subscribe to Spinnin' Records: http://bit.do/spinnintv ..and turn on notifications to stay updated with ...
A Film from back in the days when Cartoon Networks showed good animated films that I share with you.
The Adventures of Tom Sawyer is a 1938 American drama film produced by David O. Selznick and directed by Norman Taurog who had previously directed Huckleberry Finn (1931 film) (1931) with Jackie Coogan and Junior Durkin. The film starred Tommy Kelly in the title role, with Jackie Moran and Ann Gillis. The screenplay by John V. A. Weaver was based on the classic 1876 novel of the same name by Mark Twain. The movie was the first film version of the novel to be made in color. Cast : Tommy Kelly as Tom Sawyer Jackie Moran as Huckleberry Finn Ann Gillis as Becky Thatcher May Robson as Aunt Polly Walter Brennan as Muff Potter Victor Jory as Injun Joe David Holt as Sid Sawyer Victor Kilian as Sheriff Nana Bryant as Mrs. Thatcher Olin Howland as Mr. Dobbins, school teacher Donald Meek as Sunday ...
Here is a video I made in High Quality With Lyrics of this song! I really love this movie ever since I was little. So thought I would upload this project!
TW stands for trigger warning, by the way. Disclaimer: I am in no way supporting bullying or child abuse. I just wanted to show this very weird and very accurate representation of my private school trauma(well, except for the ruler part, obviously). Also to add more variety to my channel, rather than constantly obsessing over Barney, Bear In The Big Blue House, Teletubbies, and All Dogs Go To Heaven. Honestly, the teacher is one of Richard Kind's best performances, with a different kind of voice rather than his usual wise guy voice. He should also voice more bad guys. Becky's face at the end explains it all. Plus the snitch brother. Content is owned by MGM. I own none of it. No copyright infringement intended. If you are the original owner of this video and want it removed for copyrigh...
No copyright infringement intended for entertainment purposes only!
Sometimes, a movie has equal parts good and bad. This is one of them. That, and a heaping helping of crazy.
Thomas "Tom" Sawyer is the title character of the Mark Twain novel The Adventures of Tom Sawyer (1876). He appears in three other novels by Twain: Adventures of Huckleberry Finn (1884), Tom Sawyer Abroad (1894), and Tom Sawyer, Detective (1896).
Sawyer also appears in at least three unfinished Twain works, Huck and Tom Among the Indians, Schoolhouse Hill and Tom Sawyer's Conspiracy. While all three uncompleted works were posthumously published, only Tom Sawyer's Conspiracy has a complete plot, as Twain abandoned the other two works after finishing only a few chapters.
The fictional character's name may have been derived from a jolly and flamboyant fireman named Tom Sawyer with whom Twain was acquainted in San Francisco, California, while Twain was employed as a reporter at the San Francisco Call. Twain used to listen to Sawyer tell stories of his youth, "Sam, he would listen to these pranks of mine with great interest and he'd occasionally take 'em down in his notebook. One day he says to me: ‘I am going to put you between the covers of a book some of these days, Tom.’ ‘Go ahead, Sam,’ I said, ‘but don’t disgrace my name.’" Twain himself said the character sprang from three people, later identified as: John B. Briggs (who died in 1907), William Bowen (who died in 1893) and Twain; however Twain later changed his story saying Sawyer was fully formed solely from his imagination, but as Robert Graysmith says, "The great appropriator liked to pretend his characters sprang fully grown from his fertile mind."
In this concrete jungle where I lie awake and my breathing matches my heartbeats, the percussion to my symphony, my symphony. And the traffic signs my song, if I knew the words I would sing along but I cant sing that loud, cant sing that high. These white washed walls extending to the heavens and above, I swear your eyes are all I need to keep me wandering it seems. These white washed walls, these white washed walls. Ill make these rights and lefts, you were right to leave, you didn't write when you left. I knew right when you left that you'd be back some day. When your hearts sailed off to the sunny California shores I knew right then a second chance was born. Street lights, city signs, the cars they go and fall in line, a little white pill you never knew before. Something about the way you look tonight like your bleeding all your life out on the floor. These white washed walls extending to the heavens and above, I swear your eyes are all I need to keep me wandering it seems. These white washed walls, these white washed walls. I swear to god theres something more to drop before we crash. Its too much to carry, too much to drop before we crash [repeat]