- published: 11 Jul 2020
- views: 969448
'+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; })); }); -->
Jonathan Luther "John" "Casey" Jones (March 14, 1863 – April 30, 1900) from Jackson, Tennessee, was an American railroader who worked for the Illinois Central Railroad (IC). As a boy, he lived near Cayce, Kentucky, where he acquired the nickname of "Cayce," which he chose to spell as "Casey." On April 30, 1900, he was killed when his passenger train, the Cannonball Express, collided with a stalled freight train at Vaughan, Mississippi, on a foggy and rainy night.
His dramatic death while trying to stop his train and save lives made him a hero; he was immortalized in a popular ballad sung by his friend Wallace Saunders, an African-American engine wiper for the IC.
Jones married Mary Joanna ("Janie") Brady (born 1866), whose father owned the boarding house where Jones was staying. Since she was Catholic, he decided to convert and was baptized on November 11, 1886 at St. Bridget's Catholic Church in Whistler, Alabama, to please her. They were married at St. Mary's Catholic Church in Jackson on November 25, 1886. They bought a house at 211 West Chester Street in Jackson, where they raised their three children. By all accounts he was a devoted family man and teetotaler.
Casey Jones is an American Western series that ran during the 1957-1958 television season, based around the pioneering western railroads. The series aired in syndication in the United States. Casey Jones aired on the BBC in the United Kingdom and on the Seven Network in Australia.
The series is set in the late 19th century, featuring the adventures of railroad engineer Casey Jones and the crew of the Cannonball Express steam locomotive, fireman Wallie Sims and conductor Redrock Smith, working for the Midwest and Central Railroad. Casey lived in Midvale, a fictional town within commuting distance of St. Louis, Missouri, with his wife, Alice, their young son, Casey, Jr., and their dog Cinders. Although there really was a famous locomotive engineer named Casey Jones of the Illinois Central, the television series is only very loosely based on him. However, it uses the real names of his train, the Cannonball Express, and his fireman, Wallie.
Kenneth Gamet, the producer of Casey Jones, offers a gentler Western series against the more violent adult shows of the time. Casey Jones features the same classical types of plots as other westerns such as train robbers and vandals, but the episodes center as much on Casey's interaction with his family, particularly Casey, Jr.
Casey Jones (1863–1900) was an American railroad engineer.
Casey Jones may also refer to:
George Riley Puckett (May 7, 1894 – July 13, 1946) was an American country music pioneer mostly known for being a member of Gid Tanner and the Skillet Lickers.
Puckett was born in Dallas, Paulding County, Georgia. An accident during infancy left him blind. He had his formal education at the Georgia School for the Blind in Macon, Georgia.
He sang and played guitar and banjo. He was first heard on the radio as a part of Clayton McMichen's Hometown Band.
His vocalizing was a regular feature at the Georgia Old-Time Fiddlers Conventions. Newspaper reporters covering these events referred to him as the "Bald Mountain Caruso" in admiration of his renditions of such songs as "When You and I Were Young, Maggie" and "Sleep, Baby, Sleep". For several years Puckett played and sang with the Home Town Boys, a string-band ensemble composed of Atlanta-area musicians. They made their debut on Atlanta's six-month-old radio station, WSB, on September 18, 1922. Until going off the air in 1926, they remained one of the station's most popular acts.
Arnold Bernid "Casey" Jones is a fictional character from the Teenage Mutant Ninja Turtles comics and all related media. Like the turtles, Casey Jones is a vigilante, and was created as a parody of vigilante characters that were in comics. Casey sometimes has long, dark hair, wears a hockey mask and sometimes cut-off biking gloves, and sometimes carries his weapons in a golf bag over his shoulder.
His weapons include baseball bats, golf clubs, cricket bats, and hockey sticks. In most installments, he becomes a love interest of April O'Neil.
When Jones was young, his father, Arnold Casey Jones Sr., owned an auto shop. A group of Purple Dragon members (led by a young Hun) burned the shop down, killed his father and took his mother and sister hostage. The badly beaten Casey refused to lay down and take Hun’s blows. He attacked Hun with a knife, stabbing him in the neck. Enraged, Hun had beaten him to within an inch of his life. It seemed that the beating he took from Hun as a teenager resulted in several mental and emotional disorders, explaining his often violent and erratic behavior.
Casey C. Jones (June 14, 1915 – April 2, 2002) is a former member of the Ohio House of Representatives.
Al Anthony (born Almondo Antonio Vincenzo Fiori in Endicott, New York) is an American former Los Angeles radio personality and pioneer rock and roll DJ. Anthony was most well known as a disc jockey for KAFY 550 AM in Bakersfield, California during the 1950s and later at KFXM 590 AM(KDUO-FM) in San Bernardino, California during the 1960s, where he was also the station's Director of Operations. Later, he was Executive Vice President of the Tullis & Hearne California chain of broadcasting stations. In 1958 and 1959, Anthony was the top rated DJ in the United States.
Anthony served in the Korean War as an aircraft flight engineer in a B-29 heavy bomber in the United States Air Force. In 1949, he participated in the first ever non-stop, around-the-world flight, in a Boeing B-50 Superfortress named Lucky Lady II. The flight took 96 hours and 4 minutes.
After his military service, Anthony graduated from college in Los Angeles, where he majored in television and radio broadcasting. He later attended Ogden's Radio Operational Engineering School and earned a First Class FCC Radiotelephone Operators License.
The Workingman's Dead 50th Anniversary Deluxe Edition is out now. Shop the Workingman's Dead store on dead.net below or click here https://lnk.to/WD50 "This was, sort of, stepping out of our spacesuit and coming down to Earth and putting on a pair of Osh Kosh and digging the furrows ... we would have to bring the music in, to support the texts: Hunter's Holy Grail" - Mickey Hart The three-CD set featuring the original album with newly remastered sound, plus an unreleased complete concert recorded on February 21, 1971 at the Capitol Theatre in Port Chester, NY. The show was mixed from the 16-track analog master tapes by Jeffrey Norman at Bob Weir’s Marin County TRI Studios and mastered by Grammy® Award-winning engineer, David Glasser, along with restoration and speed correction by Plang...
Loads more TV Themes at: http://teeveesgreatest.webs.com/ Casey Jones is an American children's Western TV series that ran during the 1957-1958 television season, based around the pioneering western railroads. The series aired in syndication in the United States. Casey Jones aired on the BBC in the United Kingdom and on the Nine Network in Australia. The series is set in the late 19th century, featuring the adventures of railroad engineer Casey Jones and the crew of the Cannonball Express steam locomotive, fireman Wallie Sims and conductor Redrock Smith, working for the Midwest and Central Railroad. Casey lived in Midvale, a fictional town within commuting distance of St. Louis, Missouri, with his wife, Alice, their young son, Casey, Jr., and their dog Cinders. Although there really was...
Greenhorns - Casey Jones
Official audio for "Casey Jones" by Johnny Cash Listen to Johnny Cash: https://JohnnyCash.lnk.to/listenYD Subscribe to the official Johnny Cash YouTube channel: https://JohnnyCash.lnk.to/subscribeYD Watch more of Johnny Cash's music videos: https://JohnnyCash.lnk.to/listenYC Johnny Cash was a legendary country music singer, songwriter and musician. Born on February 26, 1932 in Kingsland, Arkansas, Johnny made his way up to be one of the most influential artists of all time. His genre-spanning music embraced country, rock and roll, rockabilly, blues, folk, and gospel sounds with top hits such as “Ring of Fire,” “Walk the Line,” and “Folsom Prison Blues.” Honored with multiple Grammy awards throughout his lifetime, Johnny was also inducted into both the Rock & Roll Hall of Fame and the Co...
From the album " The Very Best of The Grateful Dead ", originally from the 1970 album "Working Man's Dead".
Animation of disney Watch this video until next time i can upload the new video about economy
Johnny Cash Singing "The Ballad of Casey Jones" and "The Wreck of the Ol' 97" in Ridin' the Rails, The Great American train story. Credit- Ridin' The rails, The Great American Train Story *I do not own any of this, Credit goes to there Respectful owner(s)* I do highly recommend you watch that though, I'll link the video in the pinned comment.
copyright obliterated the first one,, so here's my attempt to avoid that again 🤩 also sorry for the awful quality- i need to find a new editing software bc my current one is clearly not that good !!! bg music sans - undertale all clips are from 2012 tmnt
¡NO SEA ENOJÓN! https://www.youtube.com/channel/UCQNd7VI6_zmTJtFKcTMVezw?sub_confirmation=1 teenage mutant ninja turtles,teenage mutant ninja turtles unboxing,teenage mutant ninja turtles neca,ninja turtles toys,teenage mutant ninja turtles mad hunter,tge mutant ninja turtles action figures,neca toy unboxing,hot toys reviews,teenage mutant ninja turtles neca unboxing,tortugas ninja bootleg unboxing,las tortugas ninja de neca,neca tokka y rahzar tmnt unboxing el secreto del ooze,neca supera lata,the top comics,la botella de kandor,teenage mutant ninja turtles,ninja turtles,neca ninja turtles,neca tmnt,tmnt,pixel dan tmnt,neca,action figure,action figure review,figure review,toy review,secret of the ooze,tokka,rahzar,tokka and rahzar,tortugas ninja,tortuninjas,destructor,tgri,tcri,el secret...
In this video, I discuss the impacts to highway bridges and roadways from the massive rainfall that occurred from the passage of Hurricane Helene for the areas of eastern Tennessee and western North Carolina. Here is my free digital download of my guide to the biggest civil engineering disasters during the last 100 years. https://ftandc.com/top-engineering-disasters-from-the-last-100-years Here is my free digital download summarizing NASA Artemis program to return humans back to the moon. https://ftandc.com/the-artemis-program Affiliate Links: (I may receive a commission for a related sale) Neale Martin – Catastrophe Theory https://amzn.to/3WuAN39 Skunkworks https://amzn.to/4dnYu4q Join this channel to get access to perks: https://www.youtube.com/channel/UCJgU-4V308a_7XVApOuCamg/join ...
casey and his crew land them selves in trouble again just watch
Loads more TV Themes at: http://teeveesgreatest.webs.com/ Casey Jones is an American children's Western TV series that ran during the 1957-1958 television season, based around the pioneering western railroads. The series aired in syndication in the United States. Casey Jones aired on the BBC in the United Kingdom and on the Nine Network in Australia. The series is set in the late 19th century, featuring the adventures of railroad engineer Casey Jones and the crew of the Cannonball Express steam locomotive, fireman Wallie Sims and conductor Redrock Smith, working for the Midwest and Central Railroad. Casey lived in Midvale, a fictional town within commuting distance of St. Louis, Missouri, with his wife, Alice, their young son, Casey, Jr., and their dog Cinders. Although there really was...
in this episode casey's best friend has a gift ben malery is a fire eater
Casey Jones Steamin' and a-rollin' Casey Jones You never have to guess When you hear the tooting of the whistle It's Casey at the throttle of the Cannonball Express
A Western for the whole family, 1957's 'Casey Jones' was a feel good series that helped youngsters with basic concepts of morality: doing the right thing, and looking out for the other guy (or gal). But the train is why the kids watched, that and the adventure of watching Casey outrun a collapsing dam, or helping to transport a prisoner named Geronimo. Alan Hale may be best known as 'The Skipper' but to people old enough to remember, he'll always be 'Casey Jones'. The theme song is based on the famous 'Ballad of Casey Jones', composed by Wallace Saunders, with some lyrics altered.
Starring Alan Hale, Bobby Clark, Eddy Waller, Dub Taylor and Mary Lawrence with Guest Stars Harry Lauter, Robert Knapp, Jim Bannon, Paul Keast and Ben Erway
Starring Alan Hale, Bobby Clark, Eddy Waller, Dub Taylor and Mary Lawrence with Guest Stars Paul Keast, Tom Fadden and William Challee
Starring Alan Hale, Bobby Clark, Dub Taylor, Eddy Waller and Mary Lawrence with Guest Stars James Bell, Leo Gordon, Roy Barcroft and John Dierkes
All Rights Goes To Their Respectful/Rightful Owners.
Starring Alan Hale, Bobby Clark and Dub Taylor with Guest Stars Jan Merlin, Richard Bakalyan, Ken Becker, Walter Baldwin, Grant Richards and Ann Baker
Jonathan Luther "John" "Casey" Jones (March 14, 1863 – April 30, 1900) from Jackson, Tennessee, was an American railroader who worked for the Illinois Central Railroad (IC). As a boy, he lived near Cayce, Kentucky, where he acquired the nickname of "Cayce," which he chose to spell as "Casey." On April 30, 1900, he was killed when his passenger train, the Cannonball Express, collided with a stalled freight train at Vaughan, Mississippi, on a foggy and rainy night.
His dramatic death while trying to stop his train and save lives made him a hero; he was immortalized in a popular ballad sung by his friend Wallace Saunders, an African-American engine wiper for the IC.
Jones married Mary Joanna ("Janie") Brady (born 1866), whose father owned the boarding house where Jones was staying. Since she was Catholic, he decided to convert and was baptized on November 11, 1886 at St. Bridget's Catholic Church in Whistler, Alabama, to please her. They were married at St. Mary's Catholic Church in Jackson on November 25, 1886. They bought a house at 211 West Chester Street in Jackson, where they raised their three children. By all accounts he was a devoted family man and teetotaler.
You've fucked a 100 girls
And no plans to stop
You've crushed a 1000 pills & always drink till you drop
Well holy fucking shit
You're such a fucking man
Ladies and gentlemen
Let him take a stand
You are the dead
And you think you're so far ahead
You're just another one walking dead
Deadman and you think you're so far ahead