- published: 24 Dec 2018
- views: 220115
'+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; })); }); -->
John Murphy (1786 – September 21, 1841) was the fourth Governor of the U.S. state of Alabama, serving two terms from 1825 to 1829.
John Murphy was born in 1786 in Robeson County, North Carolina. He attended South Carolina College, now the University of South Carolina, where he was a member of the Clariosophic Society. Among his classmates at South Carolina College were John Gayle and James Dellet. Gayle also became Governor of Alabama while Dellet became a U.S. Congressman from Alabama. Murphy graduated in 1808.
He became a clerk at the South Carolina Senate. He served as trustee for the University of South Carolina from 1808 to 1818.
In 1818, he moved to Alabama and was elected to the Alabama House in 1820 and the Alabama Senate in 1822. He was elected Governor of Alabama in 1824, and in 1827 he was elected a second term. He represented Alabama in the United States House of Representatives from 1833 to 1835.
Under date of April 2, 1834, John Quincy Adams records in his diary that Congressman James Blair "shot himself last evening at his lodgings ... after reading part of an affectionate letter from his wife, to Governor Murphy, of Alabama, who was alone in the chamber with him, and a fellow-lodger at the same house." Diary (New York: Longmans, Green, 1929) p. 434.
John Murphy may refer to:
John Murphy (born April 14, 1945) was the City Councilman for Place 3 in Richardson, Texas for 20 years and still serves as president of Max Impressions, Inc., a printing and graphics communications company.
John Murphy came to the Dallas, Texas area in 1975 to work for Southern Union Company in the oil and gas industry as a Rate Manager, working with municipal and state agencies negotiating energy pricing. In 1981, Murphy went to work for Republic Bank (now Bank of America), married, and moved to Richardson, Texas. At Bank of America, Murphy rose to the position of Vice President, providing banking support to small businesses, corporations and to local and state governments. Murphy retired from Bank of America in 2001 and now serves as president of Max Impressions, Inc., a printing and graphics communications company.
John Murphy served as City Councilman for the City of Richardson, Texas. He was elected to the City Council representing Place 3 in 1991 and served as the Place 3 representative until 2011. Murphy served as Mayor Pro Tem for the City of Richardson from 1995 to 2007. Murphy was most recently re-elected (May 2009) in a field of three with 55.66% of the vote.
John Murphy (born 18 October 1976) is an English former professional footballer who is a coach with one of his former clubs, Blackpool.
He had two spells with Chester City, having left first time round to join Blackpool in 1999. He came through the youth ranks with Chester and made his first-team debut in 1994–95. He remained with the club until the eve of the 1999–2000 season, when he moved up to Division Two by joining Blackpool, where he enjoyed a long and successful seven-year stint that included three victories at the Millennium Stadium.
Murphy rejoined Chester from Cheshire neighbours Macclesfield Town, whom he joined from Blackpool in January 2007 after making a loan move permanent. On 6 January 2007, during his loan spell, Murphy scored Macclesfield's goal in their 6–1 FA Cup Third Round defeat against Chelsea at Stamford Bridge to briefly bring the tie level.
He rejoined Chester on 29 June 2007. His first league game back at the club saw Murphy feature in the starting line-up in the goalless draw with Chesterfield on 11 August 2007, with his first two goals back at the club coming in a 4–0 demolition of Dagenham & Redbridge a fortnight later. Almost inevitably, he scored on his return to Macclesfield in a 2–1 win for Chester on 29 September 2007.
Alabama is a southern state in the United States.
Alabama may also refer to:
Alabama is a Gloucester fishing schooner that was built in 1926 and served as the pilot boat for Mobile, Alabama. The Alabama's home port is Vineyard Haven Harbor, Martha's Vineyard, Massachusetts. The Alabama is owned by The Black Dog Tall Ships, along with the Shenandoah, and offers cruises of Nantucket Sound.
The schooner Alabama was one of the last vessels built from the design of one of the most notable designers of Gloucester Fishing Schooners, Thomas F. McManus. Commissioned by the Mobile Bar Pilot Association of Mobile, Alabama, the vessel was built in Pensacola, Florida, launched in 1926, and originally called Alabamian until her predecessor the Bar Pilot Association's original Alabama was retired. Though the hull bore strong resemblance of McMannus' famous Gloucester fishing schooner designs, it served as a pilot boat stationed on the Mobile Bar until 1966.
In 1967 the schooner was bought by Captain Robert S. Douglas, master and designer of the Shenandoah, and moved to Vineyard Haven. There she sat on a mooring with minimal necessary upkeep until 1994. In the early nineties with a dwindling market for windjammer cruises which leave out most modern amenities kids became the new direction for the Coastwise Packet Company - the original name for what is now also The Black Dog Tall Ships. Because of the success of these "Kids Cruises" on board the Shenandoah, Alabama was to be rebuilt by the Five Corners Shipbuilding Company headed by Gary Maynard a former First Mate that sailed on the Shenandoah. Most of the work was done in Vineyard Haven with the vessel afloat on her mooring using Captain Douglas' own power tools and shop space. Any other work was done in Fairhaven, Massachusetts at D.N. Kelly's Shipyard.
Alabama wine refers to wine made from grapes grown in the U.S. state of Alabama. The wine industry in Alabama received a boost in 2002 when agricultural reforms lifted restrictions on wineries. Most wineries in the state focus on French hybrid grape varieties and the Muscadine grape, rather than Vitis vinifera grapes, which are vulnerable to Pierce's disease. There are no designated American Viticultural Areas in the state of Alabama.
"Good can come out of even the darkest acts" ▶ Please watch in 1080p [HD] ▶ The 100 ▶ Coloring: mine ▶ Song: https://youtu.be/kJW6jLzAgt4 https://youtu.be/G3MBTI5qork https://youtu.be/nbbVeKWjBA4 https://youtu.be/lnypaKhr7FY Thank you for watching ! ——————————————————— And I want to say a separate thank you to everyone who supported me in patreon. You are unreal people! Moritz Hopfer, ElionD, Eventhorizon, Paul, Shan Wickremesinghe, Darshan Desai, João Rodrigues - thank you so much! And thanks to everyone who donated before! Thanks to you - Clara McClatchy, Dara Emory, Craig Sinclair, James Kimball, javier! ——————————————————— ▷ patreon: https://www.patreon.com/MargaritaLife ▷ VK: https://vk.com/margarita_life_group ▷ ASK.FM: https://ask.fm/Margarita_Life ▷ INSTAGRAM: https://www.inst...
Compilation of best film scores composed by John Murphy. 00:00 - In The House In A Heartbeat - 28 Days Later (2002) 04:14 - Fade To - Anonymous Rejected Filmscore (2014) 10:54 - Ty Escapes - Armored (2009) 13:00 - Welcome To Britain - 28 Weeks Later (2007) 15:19 - How To Leave Your Body - Anonymous Rejected Filmscore (2014) 21:24 - Boathouse - The Last House on the Left (2009) 23:10 - Capa Meets The Sun - Sunshine (2007) 25:19 - In Paradisium - 28 Days Later (2002) 27:17 - Automatic - Anonymous Rejected Filmscore (2014) 30:13 - Theme 3 - 28 Weeks Later (2007) 32:37 - 1-2-3-4 - Anonymous Rejected Filmscore (2014) 39:22 - End Credits - 28 Days Later (2002) 40:58 - The end - The Last House on the Left (2009) 43:25 - In Extremis - Anonymous Rejected Filmscore (2014) 48:43 - Adagio In D Minor...
Updated version: https://www.youtube.com/watch?v=yjVGpziInwY SPOTIFY : https://open.spotify.com/artist/3pvu9Vljl1aHMScXzPqyga ITUNES/APPLE MUSIC : https://music.apple.com/us/artist/remstage-music/1511450607 BANDCAMP: https://remstage.bandcamp.com/ AMAZON : https://www.amazon.com/s?k=Remstage+Music&i=digital-music&search-type=ss&ref=ntt_srch_drd_B0881H12CF And more platforms like TikTok/Resso, Pandora, Deezer, Tidal, Napster, iHeartRadio, ClaroMusica, Saavn, Anghami, KKBox, NetEase, MediaNet...
My interpretation of this amazing piece. Clips are for the beautiful movie Sunshine. I didn't use any stems from the original song and the use of the clips from the movie fall under fair use.
"The only dream I ever have. The surface of the sun... every time I shut my eyes it's always the same."
Interview with John Murphy http://fx-gateway.com
John Murphy talks with you about how he uses support and resistance to determine when the market has gone too far and may be due for a pull back, or when it may be due for a rally. ––––– ABOUT STOCKCHARTS StockCharts.com is the web's leading technical analysis and financial charting platform. Trusted by millions of online investors around the world, the company has been an industry leader in the financial technology space for more than two decades. With innovative, award-winning charting and analysis tools, our mission is to help you better analyze the markets, monitor and manage your portfolios, find promising new stocks and funds to buy, and ultimately make smarter investment decisions. DISCLAIMER Past performance is not indicative of future results. Neither the Show Participants nor ...
PRESCOT EDGE OUT LEEK IN GAME OF FINE MARGINS The Blues unbeaten away record in the league came to an abrupt end at Prescot Cables, the game had little quality on show but was decided by a stunning first half free kick from Francis Smith and a cool finish from John Murphy in the second half after an uncharacteristic lapse in judgement from Dino Visser in goal. Leeks injury worries continued with Dara McGuinness pulling up in the warm up and handing a debut to Max Woodcock, whilst Alex Hurst, Billy Reeves, OIli Shenton and Tom Scully were still unavailable for selection. Liam Edwards did return to the starting line up after recovering from a knock the previous week
facebook : http://www.facebook.com/synesthesia.fr bandcamp (to download or purchase) : http://synesthesiamusicband.bandcamp.com/ *Lyrics below* * Life's but a walking shadow A poor player that struts And frets his hour upon the stage And then is heard no more It is a tale, told by an idiot Full of sound and fury Signifying nothing --- Macbecth (Act 5, Scene 5) played by Patrick Stewart * This is what I mean when I'm talking about time and death and futility. But right there in the last instant it's an unmistakable relief. See, 'cause they where afraid and now they saw for the very first time... How easy it was to just let go. All your life, all your love, all your hate, all your memories, all your pain, it was all the same thing. It was all the same dream. A dream that you had inside a l...
In this fascinating documentary, Susanna Reid interviews death row prisoner Patrick Murphy in the lead up to his execution. Subscribe to Our Life: https://bit.ly/3dBMxvl Susanna Reid travels to Huntsville, home of the most active death chamber in the United States, to come face to face with Death Row inmate Patrick Murphy - one of the seven members of the notorious Texas 7 gang - who violently murdered a police officer whilst on the run. His execution date has been set, and his days are counting down. Through an hour long, intense interview, Susanna revisits the prison escape which lead to the crime - one of the most infamous prison breakouts in American history - and Patrick reveals how the seven men managed to overpower prison guards and evade capture. Delving into what motivated Patric...
PELÍCULAS QUE DEBES VER ANTES DE LAS 40 ➷WESTERN➷ PELÍCULA COMPLETA EN ESPAÑOL PELÍCULAS QUE DEBES VER ANTES DE LAS 40 ➷WESTERN➷ PELÍCULA COMPLETA EN ESPAÑOL PELÍCULAS QUE DEBES VER ANTES DE LAS 40 ➷WESTERN➷ PELÍCULA COMPLETA EN ESPAÑOL
Get ready for a rollercoaster ride of emotions as we showcase the top 5 most intense and explosive moments in courtrooms. From judges losing their cool to defendants pushing their buttons, this video takes you on a journey of judicial fury. Witness as tempers flare and voices rise in these unforgettable outbursts of anger. These moments will leave you shocked and stunned as you see some of the most powerful figures in the courtroom lose control. This video is not for the faint of heart, but if you're looking for a captivating and intriguing look at the darker side of the justice system, then this is the video for you. So sit back and enjoy the Top 5 Furious Judge Moments in Court. #Top5FuriousJudges #JudicialOutbursts #AngryJudges #CourtroomTempers #RageOnTheBench #FiercestJudges #Judicia...
Watch highlights featuring Quinn Ewers, Arch Manning and others during the Texas Longhorns’ Orange vs. White Spring Game. ✔️Subscribe to ESPN+ http://espnplus.com/youtube ✔️ Get the ESPN App: http://www.espn.com/espn/apps/espn ✔️Subscribe to ESPN on YouTube: http://es.pn/SUBSCRIBEtoYOUTUBE ✔️ Subscribe to NBA on ESPN on YouTube: http://bit.ly/SUBSCRIBEtoNBAonESPN ✔️ Watch ESPN on YouTube TV: http://es.pn/YouTubeTV
Just days before he was set to die for murdering an Irving police officer in 2000, death row inmate Patrick Murphy will have his execution delayed for the second time this year.
Sen. Chris Murphy (D-CT) reacts on the Senate floor after the deadly mass shooting at an elementary school in Uvalde, Texas. #Uvalde #CNN #News
John Murphy (1786 – September 21, 1841) was the fourth Governor of the U.S. state of Alabama, serving two terms from 1825 to 1829.
John Murphy was born in 1786 in Robeson County, North Carolina. He attended South Carolina College, now the University of South Carolina, where he was a member of the Clariosophic Society. Among his classmates at South Carolina College were John Gayle and James Dellet. Gayle also became Governor of Alabama while Dellet became a U.S. Congressman from Alabama. Murphy graduated in 1808.
He became a clerk at the South Carolina Senate. He served as trustee for the University of South Carolina from 1808 to 1818.
In 1818, he moved to Alabama and was elected to the Alabama House in 1820 and the Alabama Senate in 1822. He was elected Governor of Alabama in 1824, and in 1827 he was elected a second term. He represented Alabama in the United States House of Representatives from 1833 to 1835.
Under date of April 2, 1834, John Quincy Adams records in his diary that Congressman James Blair "shot himself last evening at his lodgings ... after reading part of an affectionate letter from his wife, to Governor Murphy, of Alabama, who was alone in the chamber with him, and a fellow-lodger at the same house." Diary (New York: Longmans, Green, 1929) p. 434.