- published: 10 May 2018
- views: 172150
'+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; })); }); -->
Dwight David "Ike" Eisenhower (/ˈaɪzənˌhaʊər/ EYE-zən-HOW-ər; October 14, 1890 – March 28, 1969) was the 34th President of the United States from 1953 until 1961. He was a five-star general in the United States Army during World War II and served as Supreme Commander of the Allied Forces in Europe. He was responsible for planning and supervising the invasion of North Africa in Operation Torch in 1942–43 and the successful invasion of France and Germany in 1944–45 from the Western Front. In 1951, he became the first Supreme Commander of NATO.
Eisenhower was of Pennsylvania Dutch ancestry and was raised in a large family in Kansas by parents with a strong religious background. He graduated from West Point in 1915 and later married Mamie Doud and had two sons. After World War II, Eisenhower served as Army Chief of Staff under President Harry S. Truman and then accepted the post of President at Columbia University.
Eisenhower entered the 1952 presidential race as a Republican to counter the non-interventionism of Senator Robert A. Taft, campaigning against "communism, Korea and corruption". He won in a landslide, defeating Democratic candidate Adlai Stevenson and temporarily upending the New Deal Coalition.
Thomas Alva Edison (February 11, 1847 – October 18, 1931) was an American inventor and businessman. He developed many devices that greatly influenced life around the world, including the phonograph, the motion picture camera, and the long-lasting, practical electric light bulb. Dubbed "The Wizard of Menlo Park", he was one of the first inventors to apply the principles of mass production and large-scale teamwork to the process of invention, and because of that, he is often credited with the creation of the first industrial research laboratory.
Edison was a prolific inventor, holding 1,093 US patents in his name, as well as many patents in the United Kingdom, France, and Germany. More significant than the number of Edison's patents was the widespread impact of his inventions: electric light and power utilities, sound recording, and motion pictures all established major new industries world-wide. Edison's inventions contributed to mass communication and, in particular, telecommunications. These included a stock ticker, a mechanical vote recorder, a battery for an electric car, electrical power, recorded music and motion pictures.
War hero Dwight D. Eisenhower used his legendary leadership ability to steward the nation through a surprisingly turbulent time. #Biography Subscribe for more Biography: http://aetv.us/2AsWMPH Dive deeper into Biography on our site: http://www.biography.com Follow Biography for more surprising stories from fascinating lives: Facebook - https://www.facebook.com/Biography Instagram - https://www.instagram.com/biography Twitter - https://twitter.com/biography Biography Season 1 Episode 1 Biography features in-depth profiles of the exceptional people whose lives and times stir our imagination. An Emmy award-winning documentary series, Biography thrives on rich details, fascinating portraits and historical accuracy, seasoned with insider insights and observations. bio believes that the ...
Watch a short biography video about President Dwight D. Eisenhower, who served as the Supreme Commander for the Allied forces during World War II. #Biography Subscribe for more Biography: http://aetv.us/2AsWMPH Delve deeper into Biography on our site: http://www.biography.com Follow Biography for more surprising stories from fascinating lives: Facebook - https://www.facebook.com/Biography Instagram - https://www.instagram.com/biography Twitter - https://twitter.com/biography Biography.com captures the most gripping, surprising, and fascinating stories about famous people: The biggest break. The defining opportunity. The most shattering failure. The unexpected connection. The decision that changed everything. With over 7,000 biographies and daily features that highlight newsworthy and...
This order was issued by Gen. Dwight D. Eisenhower to encourage Allied soldiers taking part in the D-day invasion of June 6, 1944. Almost immediately after France fell to the Nazis in 1940, the Allies planned a cross-Channel assault on the German occupying forces, ultimately code-named Operation Overlord. By May 1944, 2,876,000 Allied troops were amassed in southern England. The largest armada in history, made up of more than 4,000 American, British, and Canadian ships, lay in wait, and more that 1,200 planes stood ready. Against a tense backdrop of uncertain weather forecasts, disagreements in strategy, and related timing dilemmas, Eisenhower decided before dawn on June 5 to proceed with Overlord. Later that same afternoon, he scribbled a note intended for release, accepting responsibilit...
USS Dwight D. Eisenhower (CVN 69) was commissioned at Norfolk, Va. The Ike, named after the nations 34th president, is the third nuclear-powered and second Nimitz-class aircraft carrier. (U.S. Navy video/Released)
Join Dwight D. Eisenhower Presidential Library and Museum director Dawn Hammatt and National Archives Foundation Executive Director Patrick Madden for a conversation on the life and legacy of the 34th President of the United States. Program begins at 5:00 p.m. ET. Captioning: https://www.streamtext.net/player?event=DCVirtualConversation15420
War hero Dwight D. Eisenhower used his legendary leadership ability to steward the nation through a surprisingly turbulent time. #Biography #DwightEisenhower Subscribe for more Biography: http://aetv.us/2AsWMPH Dive deeper into Biography on our site: http://www.biography.com Follow Biography for more surprising stories from fascinating lives: Facebook - https://www.facebook.com/Biography Instagram - https://www.instagram.com/biography Twitter - https://twitter.com/biography Biography features in-depth profiles of the exceptional people whose lives and times stir our imagination. An Emmy award-winning documentary series, Biography thrives on rich details, fascinating portraits and historical accuracy, seasoned with insider insights and observations. bio believes that the truth is m...
Mini-biography on the life of Dwight D. Eisenhower. Subscribe for more History: http://histv.co/SubscribeHistoryYT Check out exclusive HISTORY videos and full episodes: http://www.history.com/videos Get daily updates on history: http://www.history.com/news/ Check out our Facebook games, and other exclusive content: https://www.facebook.com/History Keep up to date with everything HISTORY by following us on Twitter: https://twitter.com/history Get the latest on show premieres, special events, sweepstakes and more. Sign up for HISTORY email updates: http://www.history.com/emails/sign-up Follow HISTORY on StumbleUpon: http://www.stumbleupon.com/channel/HISTORY The World Wars Episode 6 HISTORY®, now reaching more than 98 million homes, is the leading destination for award-winning ori...
“I Like Ike,” 1952 Dwight D. Eisenhower (R) vs. Adlai Stevenson (D) The year 1952 ushered in the TV election ad wars, fighting to win the hearts and minds of Americans. With music by Irving Berlin, the highly likeable “I Like Ike" was produced by Walt Disney’s brother Roy at the Disney Studios. Studies show that when it comes to political advertising, we feel first and think later. So the most impactful campaign ads aim for our hearts—fear, anger, hope and pride—and they run the gamut from stirring to downright dirty. I Approve This Message, an exhibition about the emotional impact of political advertising in a landscape altered by the internet, was scheduled to open at the New-York Historical Society in September 2020. The COVID-19 lockdown halted those plans, but we want to share a few...
The Commanding Officer of the Nimitz-class aircraft carrier USS Dwight D. Eisenhower (CVN 69), Capt. Paul F. Campagna, describes the challenges of deployment and the determination of the Sailors aboard IKE to be "Greater Each Day".
Watch a short biography of Thomas Edison, the "Wizard of Menlo Park" who changed the world with his inventions such as the light bulb and movie camera. #Biography Subscribe for more Biography: http://aetv.us/2AsWMPH Delve deeper into Biography on our site: http://www.biography.com Follow Biography for more surprising stories from fascinating lives: Facebook - https://www.facebook.com/Biography Instagram - https://www.instagram.com/biography Twitter - https://twitter.com/biography Biography.com captures the most gripping, surprising, and fascinating stories about famous people: The biggest break. The defining opportunity. The most shattering failure. The unexpected connection. The decision that changed everything. With over 7,000 biographies and daily features that highlight newsworth...
Friend me on Facebook! http://on.fb.me/gCSs8F For freelance/business inquiries - [email protected] Read more about Thomas Edison http://www.todayifoundout.com/index.php/2012/09/thomas-edison-facts/ Made for the 165th anniversary of the birth of Thomas Edison. I figured I should do a video on him since I did one on Tesla. :D
Edison explores the complex alchemy that accounts for the enduring celebrity of America’s most famous inventor, offering new perspectives and revealing not only the true nature of invention, but its role in America’s rush into the future. #PBSAmerica #ThomasEdison #History #Engineering #Business About PBS America: Welcome to PBS America, a British TV channel from America’s public service broadcaster, PBS, showcasing award-winning American history, science, current affairs, plus arts and culture shows alongside the works of living legend Ken Burns, output is all hand-picked by a British team. Get More PBS America: Website: https://www.pbsamerica.co.uk/ Twitter: https://twitter.com/pbsamerica Facebook: https://www.facebook.com/PBSAmerica/ Instagram: https://www.instagram.com/pbsintheuk/ T...
Learn some interesting facts about Thomas Edison in this lesson video for children! You'll learn about his early life, his career and more! This video was originally uploaded as a shortened version of my Thomas Edison for Kids video. Thanks for watching! I hope you have an AMAZING day! Daniel "Homeschool Pop"
How the famous inventor lied, cheated, and scammed his way to the top Credits: https://www.buzzfeed.com/bfmp/videos/158224 Welcome to the BuzzFeed Unsolved Network! This channel is your one-stop destination for all things mystery, conspiracy, supernatural, true crime, and everything in between. Subscribe here: http://bit.ly/2zuaR06. MERCH: We've got it! SHOP NOW: https://bzfd.it/2MDBk2d MUSIC Licensed via Audio Network SFX Provided By AudioBlocks (https://www.audioblocks.com) Decisions Made_Full Licensed via Warner Chappell Production Music Inc. Straining_Full Licensed via Warner Chappell Production Music Inc. The Killer Next Door_Main Licensed via Warner Chappell Production Music Inc. Suspicion In A Small Town_Main Licensed via Warner Chappell Production Music Inc. Downfall of Faith_...
Full title reads: "Florida. America's 'G.O.M.' Thomas Edison is an inspiration to World's youth at 84!" Florida, United States of America (USA). Scientist and inventor Thomas Edison sits on a garden bench. A woman seated next to him comments that it is a nice day for his birthday. Edison, seated by a man. Edison says it feels very fine to be 84. He discusses talking pictures and says he's never seen one. (Picture runs out - sound continues). He says he can't understand Einstein's theory. N.B. GOM stands for Grand Old Man. FILM ID:763.01 A VIDEO FROM BRITISH PATHÉ. EXPLORE OUR ONLINE CHANNEL, BRITISH PATHÉ TV. IT'S FULL OF GREAT DOCUMENTARIES, FASCINATING INTERVIEWS, AND CLASSIC MOVIES. http://www.britishpathe.tv/ FOR LICENSING ENQUIRIES VISIT http://www.britishpathe.com/ B...
Perfecting the electric light bulb wasn't easy. But Thomas Edison had the patience and determination to succeed! The StoryBots are curious little creatures who live beneath our screens, offering a world of learning and fun for kids. Watch the Emmy Award-winning “Ask the StoryBots” now on Netflix → https://www.netflix.com/title/80108159 Get our collection of StoryBots learning books from Random House → https://sbot.co/StoryBotsBooks FACEBOOK: www.facebook.com/storybots TWITTER: www.twitter.com/storybots INSTAGRAM: www.instagram.com/storybots LYRICS: One gloomy night in Menlo Park, Tom Edison said, "Gee, it's dark!" But then he had a brilliant thought. Electric lights would help a lot! Now others too had tried their best To build a bulb that passed the test, And yet their light would...
In this short video, we explore the incredible life and achievements of Thomas Alva Edison, one of the most prolific inventors in history. From his humble beginnings in Milan, Ohio, to becoming the "Wizard of Menlo Park," Edison revolutionized the world with inventions like the phonograph, the electric light bulb, and the motion picture camera. With over 1,000 patents to his name, Edison's innovations continue to impact our daily lives. Join us for a quick journey through the life of a man who shaped the modern world. Don't forget to like, comment, and subscribe for more quick historical insights!
Learn about Thomas Edison, the American inventor of the lightbulb and many other modern technologies. The Podcast/Text ▶ (https://bedtimehistorystories.com/history-of-thomas-edison-for-kids/) Other Stories ▶ https://bedtimehistorystories.com/ Find the Podcast wherever you like to listen! Bedtime History is a podcast and video series with the goal of teaching historical stories and legends in a kid-friendly way. Stay tuned to hear many more stories covering historical figures and events from our past!
Dwight David "Ike" Eisenhower (/ˈaɪzənˌhaʊər/ EYE-zən-HOW-ər; October 14, 1890 – March 28, 1969) was the 34th President of the United States from 1953 until 1961. He was a five-star general in the United States Army during World War II and served as Supreme Commander of the Allied Forces in Europe. He was responsible for planning and supervising the invasion of North Africa in Operation Torch in 1942–43 and the successful invasion of France and Germany in 1944–45 from the Western Front. In 1951, he became the first Supreme Commander of NATO.
Eisenhower was of Pennsylvania Dutch ancestry and was raised in a large family in Kansas by parents with a strong religious background. He graduated from West Point in 1915 and later married Mamie Doud and had two sons. After World War II, Eisenhower served as Army Chief of Staff under President Harry S. Truman and then accepted the post of President at Columbia University.
Eisenhower entered the 1952 presidential race as a Republican to counter the non-interventionism of Senator Robert A. Taft, campaigning against "communism, Korea and corruption". He won in a landslide, defeating Democratic candidate Adlai Stevenson and temporarily upending the New Deal Coalition.
Imagine you could ride a thought
Like a train, at a station that you just caught
Now imagine that the head you're in
Belongs to Thomas Albert Edison
He's thinking about a light
And not just a light that will burn for an hour
But a light that can last for months and months
And illuminate our home with just a trickle of power
And now he's not thinking only of one
He's thinking of millions, nobillions for everyone
So no matter where on Earth you go
London, Rio, Tokyo,
You can lean back in your easy chair
Flick a switch, and the light bulb's there
And now this train has jumped the tracks
He's thinking of a way to have sound play back
With a spool and a wire and an aluminum foil
He's wrapping the sound like a string around the coil
And now what was that? A bird that sings
The sounds are flying off this thing
A dog, a cat, a baby's laugh,
Captured and played by his phonograph
In fact, the reason that you're hearing me here
Is because Edison had an incredible idea
Now off he goes with another invention
His mind is so full of dreams and intentions
Sounds and pictures, thoughts and hopes
Light bulbs, phonographs, scopes
Well now it's time to apply the brakes
A thousand patterns it's too much to take
But when you get an idea, let's make a deal