'+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; })); }); -->

Podcasts:

  • How Andrew Carnegie Became The Richest Man In The World

    📨 Follow Business Casual on Substack ➡️ https://businesscasualhq.substack.com Andrew Carnegie rose from abject poverty in 1835 Scotland to become the richest man in the world, embodying the American Dream. However, his legacy is a study in contrasts. Publicly, he championed workers' rights, but privately, he slashed wages, lengthened hours, and subjected employees to brutal, unsafe conditions, leading to tragedies like Homestead. Carnegie crushed unions and built his fortune in steel through exploitation and harsh practices. Yet, Carnegie is also celebrated as one of history’s greatest philanthropists. After amassing immense wealth, he dedicated his life to giving it away, funding universities, schools, and nearly 3,000 public libraries worldwide, inspiring future billionaires to embrace ...

    published: 22 Nov 2019
  • Almanac: Andrew Carnegie

    On November 25, 1835, the steel industrialist and philanthropist Andrew Carnegie was born in Scotland. Lee Cowan reports. Subscribe to the "CBS Sunday Morning" Channel HERE: http://bit.ly/20gXwJT Get more of "CBS Sunday Morning" HERE: http://cbsn.ws/1PlMmAz Follow "CBS Sunday Morning" on Instagram HERE: http://bit.ly/23XunIh Like "CBS Sunday Morning" on Facebook HERE: http://on.fb.me/1UUe0pY Follow "CBS Sunday Morning" on Twitter HERE: http://bit.ly/1RquoQb Follow "CBS Sunday Morning" on Google+ HERE: http://bit.ly/1O3jk4x Get the latest news and best in original reporting from CBS News delivered to your inbox. Subscribe to newsletters HERE: http://cbsn.ws/1RqHw7T Get your news on the go! Download CBS News mobile apps HERE: http://cbsn.ws/1Xb1WC8 Get new episodes of shows you love acro...

    published: 25 Nov 2018
  • Andrew Carnegie: Robber Baron or America’s Greatest Philanthropist?

    Check out Squarespace: http://squarespace.com/biographics for 10% off on your first purchase → Subscribe for new videos four times per week. https://www.youtube.com/c/biographics?sub_confirmation=1 This video is #sponsored by Squarespace. TopTenz Properties Our companion website for more: http://biographics.org Our sister channel TopTenz: https://www.youtube.com/channel/UCQ-hpFPF4nOKoKPEAZM_THw/ Our Newest Channel about Interesting Places: https://studio.youtube.com/channel/UCHKRfxkMTqiiv4pF99qGKIw Credits: Host - Simon Whistler Author - Radu Alexander Producer - Jennifer Da Silva Executive Producer - Shell Harris Business inquiries to biographics.email@gmail.com Other Biographics Videos: Frida Kahlo: World–Renowned Artist Who Overcame Polio https://youtu.be/FuhCy01YU3E Nikita Khr...

    published: 27 Nov 2019
  • Andrew Carnegie Documentary: One Of The Wealthiest Person Of All The Time.

    Andrew Carnegie is the third-wealthiest figure of the modern period (net worth of $310 billion). Andrew Carnegie Documentary: One Of The Wealthiest Person Of All The Time Follow us on Social Network https://www.facebook.com/wolors/ https://www.twitter.com/wolorsdotcom/ https://www.instagram.com/wolorsdotcom/ Andrew Carnegie was a Scottish-American industrialist, business magnate, and philanthropist. Carnegie led the expansion of the American steel industry in the late 19th century and is often identified as one of the richest people in history. Andrew Carnegie Documentary, andrew carnegie steel, andrew carnegie facts, andrew carnegie family, andrew carnegie education, andrew carnegie philanthropy, andrew carnegie net worth, andrew carnegie wife, andrew carnegie quotes,

    published: 22 Apr 2019
  • Andrew Carnegie, the Law of Competition

    Steel titan Andrew Carnegie was born into a poor family, but through hardwork and dedication became one of America's wealthiest citizens.

    published: 01 May 2020
  • Andrew Carnegie's 7 secrets of Success (No. 6 Will Change Your Life)

    We make this video to share with you Andrew Carnegie's 7 secrets of Success 1. Let Poverty Inspire You 2. Be Willing to Walk Your Way to The Top. 3. You Don’t Need Experience 4. Create a "master-mind alliance." 5. Have personal initiative. 6. Profit from adversity. 7. Avoid Distractions Subscribe to this channel (Success Secrets TV) to join the success driven community. Click Here... http://bit.ly/2LrTxua We Love You.

    published: 10 Jul 2018
  • THIS IS THE ONLY SECRET OF WEALTH | Andrew Carnegie

    Andrew Carnegie, the first billionaire in human history, went the long way from deep poverty to great wealth.Andrew Carnegie's story is an invaluable experience which a person can learn to make a lot of money by adopting. Because making money is a skill. Some people can make money faster and others slower. But if you study the biography of Andrew Carnegie, and use his tips for making money, then you can make a lot of money very quickly. The secrets of Andrew Carnegie, the first billionaire in world history, are very simple. Anyone can learn from the billionaire how to understand big business and how to become an entrepreneur and make millions from scratch. That's why Andrew Carnegie started small. He made pennies and eventually became a billionaire. Notice how billionaire Andrew Carnegie ...

    published: 06 Jul 2022
  • $5 Billion Man Andrew Carnegie's Quotes which are better known in youth to not to Regret in Old Age

    Andrew Carnegie was a Scottish-American industrialist and philanthropist. Andrew Carnegie led the expansion of the American steel industry in the late 19th century and became one of the richest Americans in history. Andrew Carnegie became a leading philanthropist in the United States and in the British Empire. During the last 18 years of his life, he gave away around $350 million (roughly $5.2 billion in 2020), almost 90 percent of his fortune, to charities, foundations and universities. These are vivid thoughts and quotes from Andrew Carnegie. The best quotes and aphorisms of Andrew Carnegie that will make you think about many things in life. Life quotes from Andrew Carnegie are definitely worth your time. ►► We don't insist, but you might want to subscribe to our channel — https://www....

    published: 14 Sep 2022
  • Autobiography of Andrew Carnegie - FULL AudioBook - Business | Money | Investing | Entrepreneur

    The Autobiography of Andrew Carnegie - FULL AudioBook - Business | Money | Investing | Entrepreneurship 🌐🌟🎧📚 https://GreatestAudioBooks.co 🎁 S H O P great books & gifts: https://www.amazon.com/shop/GreatestAudioBooks 💙 T w i t t e r : https://www.twitter.com/GAudioBooks 🔲Koji ► https://koji.to/GreatestAudioBooks 🎧 30 day Audible audiobooks trial ► https://amzn.to/2Iu08SE 📙👩🏿‍🚀 More vids on O d y s e e : https://odysee.com/$/invite/@GreatestAudioBooks:c 🎧 Audiobooks .com 🎧 30 day trial ► https://tinyurl.com/2x6ac4ff - READ along by clicking (CC) for Closed Caption Transcript! - LISTEN to the entire audiobook for free!

    published: 21 Dec 2012
How Andrew Carnegie Became The Richest Man In The World
14:00

How Andrew Carnegie Became The Richest Man In The World

  • Order:
  • Duration: 14:00
  • Uploaded Date: 22 Nov 2019
  • views: 3902218
📨 Follow Business Casual on Substack ➡️ https://businesscasualhq.substack.com Andrew Carnegie rose from abject poverty in 1835 Scotland to become the richest man in the world, embodying the American Dream. However, his legacy is a study in contrasts. Publicly, he championed workers' rights, but privately, he slashed wages, lengthened hours, and subjected employees to brutal, unsafe conditions, leading to tragedies like Homestead. Carnegie crushed unions and built his fortune in steel through exploitation and harsh practices. Yet, Carnegie is also celebrated as one of history’s greatest philanthropists. After amassing immense wealth, he dedicated his life to giving it away, funding universities, schools, and nearly 3,000 public libraries worldwide, inspiring future billionaires to embrace philanthropy. His career was marked by fierce rivalries, including clashes with Rockefeller, and historic business deals, such as selling his steel empire to J.P. Morgan in the largest transaction of its time. Carnegie’s story is both a rags-to-riches triumph and a tale of corporate controversy, showcasing the dual nature of ambition and wealth. Enjoy our mini Andrew Carnegie documentary as we explore the story of how one industrial giant rose from abject poverty to the title of the world's richest man. Sign-up for Acorns! 👉 https://acorns.com | Upon registration, Acorns will deposit $5 in your account to help you get started with investing! 📚 Enjoyed our #AndrewCarnegie documentary and want to learn more? For further reading, we highly recommend David Nasaw's Carnegie biography! 👉 https://amzn.to/2zAtyA0 (Note: As an Amazon Associate, Business Casual earns from qualifying purchases). Watch more American Titan by Business Casual: ➡️ https://www.youtube.com/playlist?list=PLBMT5AMBzkBcFXG428A0bERtFEUQO5Tgv Follow Business Casual on X and Substack! ⬇️ 𝕏 → https://x.com/@CasualDigestCom 📨 Substack → https://businesscasualhq.substack.com Disclaimer: Business Casual receives a $5 affiliate commission from Acorns per verified new account registration. Thank you for supporting our sponsors which make videos like these possible!
https://wn.com/How_Andrew_Carnegie_Became_The_Richest_Man_In_The_World
Almanac: Andrew Carnegie
1:50

Almanac: Andrew Carnegie

  • Order:
  • Duration: 1:50
  • Uploaded Date: 25 Nov 2018
  • views: 59018
On November 25, 1835, the steel industrialist and philanthropist Andrew Carnegie was born in Scotland. Lee Cowan reports. Subscribe to the "CBS Sunday Morning" Channel HERE: http://bit.ly/20gXwJT Get more of "CBS Sunday Morning" HERE: http://cbsn.ws/1PlMmAz Follow "CBS Sunday Morning" on Instagram HERE: http://bit.ly/23XunIh Like "CBS Sunday Morning" on Facebook HERE: http://on.fb.me/1UUe0pY Follow "CBS Sunday Morning" on Twitter HERE: http://bit.ly/1RquoQb Follow "CBS Sunday Morning" on Google+ HERE: http://bit.ly/1O3jk4x Get the latest news and best in original reporting from CBS News delivered to your inbox. Subscribe to newsletters HERE: http://cbsn.ws/1RqHw7T Get your news on the go! Download CBS News mobile apps HERE: http://cbsn.ws/1Xb1WC8 Get new episodes of shows you love across devices the next day, stream local news live, and watch full seasons of CBS fan favorites anytime, anywhere with CBS All Access. Try it free! http://bit.ly/1OQA29B --- "CBS Sunday Morning" features stories on the arts, music, nature, entertainment, sports, history, science, Americana and highlights unique human accomplishments and achievements. Check local listings for CBS Sunday Morning broadcast times.
https://wn.com/Almanac_Andrew_Carnegie
Andrew Carnegie: Robber Baron or America’s Greatest Philanthropist?
21:22

Andrew Carnegie: Robber Baron or America’s Greatest Philanthropist?

  • Order:
  • Duration: 21:22
  • Uploaded Date: 27 Nov 2019
  • views: 296975
Check out Squarespace: http://squarespace.com/biographics for 10% off on your first purchase → Subscribe for new videos four times per week. https://www.youtube.com/c/biographics?sub_confirmation=1 This video is #sponsored by Squarespace. TopTenz Properties Our companion website for more: http://biographics.org Our sister channel TopTenz: https://www.youtube.com/channel/UCQ-hpFPF4nOKoKPEAZM_THw/ Our Newest Channel about Interesting Places: https://studio.youtube.com/channel/UCHKRfxkMTqiiv4pF99qGKIw Credits: Host - Simon Whistler Author - Radu Alexander Producer - Jennifer Da Silva Executive Producer - Shell Harris Business inquiries to biographics.email@gmail.com Other Biographics Videos: Frida Kahlo: World–Renowned Artist Who Overcame Polio https://youtu.be/FuhCy01YU3E Nikita Khrushchev – The Man Behind the Missile Crisis https://youtu.be/gjGLD8bx7Qo
https://wn.com/Andrew_Carnegie_Robber_Baron_Or_America’S_Greatest_Philanthropist
Andrew Carnegie Documentary: One Of The Wealthiest  Person Of All The Time.
1:45:26

Andrew Carnegie Documentary: One Of The Wealthiest Person Of All The Time.

  • Order:
  • Duration: 1:45:26
  • Uploaded Date: 22 Apr 2019
  • views: 247706
Andrew Carnegie is the third-wealthiest figure of the modern period (net worth of $310 billion). Andrew Carnegie Documentary: One Of The Wealthiest Person Of All The Time Follow us on Social Network https://www.facebook.com/wolors/ https://www.twitter.com/wolorsdotcom/ https://www.instagram.com/wolorsdotcom/ Andrew Carnegie was a Scottish-American industrialist, business magnate, and philanthropist. Carnegie led the expansion of the American steel industry in the late 19th century and is often identified as one of the richest people in history. Andrew Carnegie Documentary, andrew carnegie steel, andrew carnegie facts, andrew carnegie family, andrew carnegie education, andrew carnegie philanthropy, andrew carnegie net worth, andrew carnegie wife, andrew carnegie quotes,
https://wn.com/Andrew_Carnegie_Documentary_One_Of_The_Wealthiest_Person_Of_All_The_Time.
Andrew Carnegie, the Law of Competition
3:19

Andrew Carnegie, the Law of Competition

  • Order:
  • Duration: 3:19
  • Uploaded Date: 01 May 2020
  • views: 55355
Steel titan Andrew Carnegie was born into a poor family, but through hardwork and dedication became one of America's wealthiest citizens.
https://wn.com/Andrew_Carnegie,_The_Law_Of_Competition
Andrew Carnegie's 7 secrets of Success (No. 6 Will Change Your Life)
8:55

Andrew Carnegie's 7 secrets of Success (No. 6 Will Change Your Life)

  • Order:
  • Duration: 8:55
  • Uploaded Date: 10 Jul 2018
  • views: 249433
We make this video to share with you Andrew Carnegie's 7 secrets of Success 1. Let Poverty Inspire You 2. Be Willing to Walk Your Way to The Top. 3. You Don’t Need Experience 4. Create a "master-mind alliance." 5. Have personal initiative. 6. Profit from adversity. 7. Avoid Distractions Subscribe to this channel (Success Secrets TV) to join the success driven community. Click Here... http://bit.ly/2LrTxua We Love You.
https://wn.com/Andrew_Carnegie's_7_Secrets_Of_Success_(No._6_Will_Change_Your_Life)
THIS IS THE ONLY SECRET OF WEALTH | Andrew Carnegie
8:47

THIS IS THE ONLY SECRET OF WEALTH | Andrew Carnegie

  • Order:
  • Duration: 8:47
  • Uploaded Date: 06 Jul 2022
  • views: 293871
Andrew Carnegie, the first billionaire in human history, went the long way from deep poverty to great wealth.Andrew Carnegie's story is an invaluable experience which a person can learn to make a lot of money by adopting. Because making money is a skill. Some people can make money faster and others slower. But if you study the biography of Andrew Carnegie, and use his tips for making money, then you can make a lot of money very quickly. The secrets of Andrew Carnegie, the first billionaire in world history, are very simple. Anyone can learn from the billionaire how to understand big business and how to become an entrepreneur and make millions from scratch. That's why Andrew Carnegie started small. He made pennies and eventually became a billionaire. Notice how billionaire Andrew Carnegie talked about money and his life. How he acted and what motivated him. You will become successful and rich if you use Andrew Carnegie's experience in your life. If you can channel the experience of billionaire Andrew Carnegie into making money, you will become rich. If you listen to Andrew Carnegie's words, you can build your own business and become a billionaire. #money #andrewcarnegie #wealth #howtobecomebillionaire #financialfreedom #business #rich #motivation #moneysecrets #moneymaking #moneymindset
https://wn.com/This_Is_The_Only_Secret_Of_Wealth_|_Andrew_Carnegie
$5 Billion Man Andrew Carnegie's Quotes which are better known in youth to not to Regret in Old Age
8:02

$5 Billion Man Andrew Carnegie's Quotes which are better known in youth to not to Regret in Old Age

  • Order:
  • Duration: 8:02
  • Uploaded Date: 14 Sep 2022
  • views: 120972
Andrew Carnegie was a Scottish-American industrialist and philanthropist. Andrew Carnegie led the expansion of the American steel industry in the late 19th century and became one of the richest Americans in history. Andrew Carnegie became a leading philanthropist in the United States and in the British Empire. During the last 18 years of his life, he gave away around $350 million (roughly $5.2 billion in 2020), almost 90 percent of his fortune, to charities, foundations and universities. These are vivid thoughts and quotes from Andrew Carnegie. The best quotes and aphorisms of Andrew Carnegie that will make you think about many things in life. Life quotes from Andrew Carnegie are definitely worth your time. ►► We don't insist, but you might want to subscribe to our channel — https://www.youtube.com/channel/UCeM09s9na5Hwq7hQptgEkJg?sub_confirmation=1 ► Watch more: Most popular — https://youtu.be/RmEY88jfPMc Our Favorite — https://youtu.be/XYmwwfZh_ZQ Latest video — https://youtu.be/cHQZQ8XlzXA #quotes #andrewcarnegie #lifequotes We hope you enjoyed Andrew Carnegie's quotes and our video with Andrew Carnegie's quotes in general, a lot of time and effort was invested in it.
https://wn.com/5_Billion_Man_Andrew_Carnegie's_Quotes_Which_Are_Better_Known_In_Youth_To_Not_To_Regret_In_Old_Age
Autobiography of Andrew Carnegie - FULL AudioBook - Business | Money | Investing | Entrepreneur
10:51:55

Autobiography of Andrew Carnegie - FULL AudioBook - Business | Money | Investing | Entrepreneur

  • Order:
  • Duration: 10:51:55
  • Uploaded Date: 21 Dec 2012
  • views: 82449
The Autobiography of Andrew Carnegie - FULL AudioBook - Business | Money | Investing | Entrepreneurship 🌐🌟🎧📚 https://GreatestAudioBooks.co 🎁 S H O P great books & gifts: https://www.amazon.com/shop/GreatestAudioBooks 💙 T w i t t e r : https://www.twitter.com/GAudioBooks 🔲Koji ► https://koji.to/GreatestAudioBooks 🎧 30 day Audible audiobooks trial ► https://amzn.to/2Iu08SE 📙👩🏿‍🚀 More vids on O d y s e e : https://odysee.com/$/invite/@GreatestAudioBooks:c 🎧 Audiobooks .com 🎧 30 day trial ► https://tinyurl.com/2x6ac4ff - READ along by clicking (CC) for Closed Caption Transcript! - LISTEN to the entire audiobook for free!
https://wn.com/Autobiography_Of_Andrew_Carnegie_Full_Audiobook_Business_|_Money_|_Investing_|_Entrepreneur
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • How Andrew Carnegie Became The Richest Man In The World
    14:00
    How Andrew Carnegie Became The Richest Man In The Worldremove from playlist
  • Almanac: Andrew Carnegie
    1:50
    Almanac: Andrew Carnegieremove from playlist
  • Andrew Carnegie: Robber Baron or America’s Greatest Philanthropist?
    21:22
    Andrew Carnegie: Robber Baron or America’s Greatest Philanthropist?remove from playlist
  • Andrew Carnegie Documentary: One Of The Wealthiest  Person Of All The Time.
    1:45:26
    Andrew Carnegie Documentary: One Of The Wealthiest Person Of All The Time.remove from playlist
  • Andrew Carnegie, the Law of Competition
    3:19
    Andrew Carnegie, the Law of Competitionremove from playlist
  • Andrew Carnegie's 7 secrets of Success (No. 6 Will Change Your Life)
    8:55
    Andrew Carnegie's 7 secrets of Success (No. 6 Will Change Your Life)remove from playlist
  • THIS IS THE ONLY SECRET OF WEALTH | Andrew Carnegie
    8:47
    THIS IS THE ONLY SECRET OF WEALTH | Andrew Carnegieremove from playlist
  • $5 Billion Man Andrew Carnegie's Quotes which are better known in youth to not to Regret in Old Age
    8:02
    $5 Billion Man Andrew Carnegie's Quotes which are better known in youth to not to Regret in Old Ageremove from playlist
  • Autobiography of Andrew Carnegie - FULL AudioBook - Business | Money | Investing | Entrepreneur
    10:51:55
    Autobiography of Andrew Carnegie - FULL AudioBook - Business | Money | Investing | Entrepreneurremove from playlist
PLAYLIST TIME: 0:00 / 13:43:36

How Andrew Carnegie Became The Richest Man In The World

📨 Follow Business Casual on Substack ➡️ https://businesscasualhq.substack.com Andrew Carnegie rose from abject poverty in 1835 Scotland to become the richest man in the world, embodying the American Dream. However, his legacy is a study in contrasts. Publicly, he championed workers' rights, but privately, he slashed wages, lengthened hours, and subjected employees to brutal, unsafe conditions, leading to tragedies like Homestead. Carnegie crushed unions and built his fortune in steel through exploitation and harsh practices. Yet, Carnegie is also celebrated as one of history’s greatest philanthropists. After amassing immense wealth, he dedicated his life to giving it away, funding universities, schools, and nearly 3,000 public libraries worldwide, inspiring future billionaires to embrace philanthropy. His career was marked by fierce rivalries, including clashes with Rockefeller, and historic business deals, such as selling his steel empire to J.P. Morgan in the largest transaction of its time. Carnegie’s story is both a rags-to-riches triumph and a tale of corporate controversy, showcasing the dual nature of ambition and wealth. Enjoy our mini Andrew Carnegie documentary as we explore the story of how one industrial giant rose from abject poverty to the title of the world's richest man. Sign-up for Acorns! 👉 https://acorns.com | Upon registration, Acorns will deposit $5 in your account to help you get started with investing! 📚 Enjoyed our #AndrewCarnegie documentary and want to learn more? For further reading, we highly recommend David Nasaw's Carnegie biography! 👉 https://amzn.to/2zAtyA0 (Note: As an Amazon Associate, Business Casual earns from qualifying purchases). Watch more American Titan by Business Casual: ➡️ https://www.youtube.com/playlist?list=PLBMT5AMBzkBcFXG428A0bERtFEUQO5Tgv Follow Business Casual on X and Substack! ⬇️ 𝕏 → https://x.com/@CasualDigestCom 📨 Substack → https://businesscasualhq.substack.com Disclaimer: Business Casual receives a $5 affiliate commission from Acorns per verified new account registration. Thank you for supporting our sponsors which make videos like these possible!
14:00
How Andrew Carnegie Became The Richest Man In The World
📨 Follow Business Casual on Substack ➡️ https://businesscasualhq.substack.com Andrew Carne...
published: 22 Nov 2019
Play in Full Screen
1:50
Almanac: Andrew Carnegie
On November 25, 1835, the steel industrialist and philanthropist Andrew Carnegie was born ...
published: 25 Nov 2018
Play in Full Screen
21:22
Andrew Carnegie: Robber Baron or America’s Greatest Philanthropist?
Check out Squarespace: http://squarespace.com/biographics for 10% off on your first purcha...
published: 27 Nov 2019
Play in Full Screen
1:45:26
Andrew Carnegie Documentary: One Of The Wealthiest Person Of All The Time.
Andrew Carnegie is the third-wealthiest figure of the modern period (net worth of $310 bil...
published: 22 Apr 2019
Play in Full Screen
3:19
Andrew Carnegie, the Law of Competition
Steel titan Andrew Carnegie was born into a poor family, but through hardwork and dedicati...
published: 01 May 2020
Play in Full Screen
8:55
Andrew Carnegie's 7 secrets of Success (No. 6 Will Change Your Life)
We make this video to share with you Andrew Carnegie's 7 secrets of Success 1. Let Pover...
published: 10 Jul 2018
Play in Full Screen
8:47
THIS IS THE ONLY SECRET OF WEALTH | Andrew Carnegie
Andrew Carnegie, the first billionaire in human history, went the long way from deep pover...
published: 06 Jul 2022
Play in Full Screen
8:02
$5 Billion Man Andrew Carnegie's Quotes which are better known in youth to not to Regret in Old Age
Andrew Carnegie was a Scottish-American industrialist and philanthropist. Andrew Carnegie ...
published: 14 Sep 2022
Play in Full Screen
10:51:55
Autobiography of Andrew Carnegie - FULL AudioBook - Business | Money | Investing | Entrepreneur
The Autobiography of Andrew Carnegie - FULL AudioBook - Business | Money | Investing | Ent...
published: 21 Dec 2012
Play in Full Screen
'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: andrew carnegie

Edit

Fallowfield Township native named director of the Frick Pittsburgh

Observer-Reporter 11 May 2025
It’s in my DNA,” Dunyak Gillen explained ... Her father was the right-hand man of steel magnate Andrew Carnegie, and the elder Frick amassed his own considerable fortune, some of which he poured into collecting art ... ....
Edit

Sir Tom Farmer dies aged 84: Kwik Fit founder's family shares emotional tribute after man ...

The Daily Mail 10 May 2025
Worth an estimated £126 million, Sir Tom received many accolades for his philanthropic work and was the first Scot to be awarded the Andrew Carnegie Medal for Philanthropy ... Sir Tom with his Andrew ...
Edit

Kwik Fit founder Sir Tom Farmer dies aged 84

AOL 10 May 2025
He was the first Scot to be awarded the prestigious Andrew Carnegie Medal for philanthropy, and was made a Knight Commander with Star of the Order of St Gregory the Great by the Catholic Church ... .
Edit

Bill Gates pledges to donate 99% of fortune over next 20 years

NewstalkZB 10 May 2025
Bill Gates will go broke to make the earth better &nbsp;. The Microsoft founder says he plans to give away 99% of his vast fortune over the next 20 years. In a blog post, he wrote that he will not die rich. He cited Andrew Carnegie’s line ...   ...  .
Edit

John Swinney leads tributes after Kwik Fit founder Sir Tom Farmer dies aged 84

AOL 10 May 2025
He was the first Scot to be awarded the prestigious Andrew Carnegie Medal for philanthropy, and was made a Knight Commander with Star of the Order of St Gregory the Great by the Catholic Church ... I express my condolences to his family.” ... .
Edit

I don’t want to die rich…: Bill Gates will give away 99% of his wealth

The Times of India 10 May 2025
Legacy and future outlook Gates's decision to give away the majority of his wealth is influenced by the philosophy of Andrew Carnegie, who believed that 'the man who dies thus rich dies disgraced.' By ...
Edit

'Killing children': Gates slams Musk as billionaire battle escalates

NewstalkZB 10 May 2025
Photo / Getty Images&nbsp; ... In a blog post detailing his decision, Gates does not mention Musk or the Trump administration, but says “the wealthy have a responsibility to return their resources to society”, citing an 1889 Andrew Carnegie essay. .
Edit

'People will say a lot of things about me when I die, but...': Microsoft co-founder Bill Gates on “last chapter” of his career

The Times of India 09 May 2025
Bill Gates has announced plans to donate virtually all his wealth through the Gates Foundation over the next 20 years, citing Andrew Carnegie's famous assertion that 'the man who dies thus rich dies ...
Edit

Bill Gates to donate 99% of his wealth— What will his children actually inherit?

The Times of India 09 May 2025
Tech billionaire and Microsoft co-founder Bill Gates is known for his philanthropic works across the world ... He also shared that the Gates Foundation would close its operations by 2045 ... Rockefeller and Andrew Carnegie ... It’s not a dynasty ... .
Edit

Net Worth of Bill Gates: Where does the Microsoft founder rank on the list of the world’s richest?

The Times of India 09 May 2025
Bill Gates is giving away his wealth ... Rockefeller and Andrew Carnegie ... Gates’ collection also features works by celebrated artists, including Andrew Wyeth, Winslow Homer, and George Bellows, with a total estimated value exceeding $100 million ... .
Edit

Bill Gates vows to give away $200B fortune by 2045, hits Musk for derailing aid efforts

Interesting Engineering 09 May 2025
Foundation to double its giving ... Gates noted that this decision was inspired by Andrew Carnegie’s 1889 essay, “The Gospel of Wealth,” which argues that the wealthy have a responsibility to return their resources to society ... .
Edit

Gates accuses Musk of ‘killing the world’s poorest children’ with DOGE cuts

Detroit news 09 May 2025
In a blog post detailing his decision, Gates does not mention Musk or the Trump administration, but says “the wealthy have a responsibility to return their resources to society,” citing an 1889 Andrew Carnegie essay ... foreign aid budget as of 2023.
Edit

Bill Gates says he’ll donate almost all his money to his foundation, and set a ...

The Oregonian 09 May 2025
Bill Gates says he will donate 99% of his remaining tech fortune to the Gates Foundation, which will now close in 2045, earlier than previously planned ... Rockefeller and Andrew Carnegie when adjusted for inflation ... In a league of its own ... More business.
Edit

Bill Gates pledges his remaining fortune to the Gates Foundation, which will close in 20 years

Chatanooga Times Free Press 09 May 2025
SEATTLE (AP) — Bill Gates says he will donate 99% of his remaining tech fortune to the Gates Foundation, which will now close in 2045, earlier than previously planned ... Rockefeller and Andrew Carnegie when adjusted for inflation ... In a league of its own.
Edit

The Not at All Funny Life of Mark Twain

The Atlantic 09 May 2025
clearly an idiot, and a born sucker ... [Read ... He begged Andrew Carnegie to invest in a drink called Plasmon—little more than reconstituted skim milk—and claimed that a pound of Plasmon powder “contains the nutriment of 16 pounds of the best beef.”.
×